* Fixed spell error revealed by lintian.

git-svn-id: trunk@16094 -
This commit is contained in:
mazen 2010-10-06 20:33:57 +00:00
parent 1f215ecc86
commit b127fc154a
126 changed files with 617 additions and 617 deletions

View File

@ -185,7 +185,7 @@ endif
endif
endif
# set correct defines (-d$(CPU_TARGET) is automaticly added in makefile.fpc)
# set correct defines (-d$(CPU_TARGET) is automatically added in makefile.fpc)
override LOCALOPT+=-d$(CPC_TARGET) -dGDB -dBROWSERLOG
# i386 specific

View File

@ -21,7 +21,7 @@
}
{ @abstract(This unit implements an abstract asm output class for all processor types)
This unit implements an abstract assembler output class for all processors, these
are then overriden for each assembler writer to actually write the data in these
are then overridden for each assembler writer to actually write the data in these
classes to an assembler file.
}

View File

@ -21,7 +21,7 @@
}
{ @abstract(This unit implements an abstract asm output class for all processor types)
This unit implements an abstract assembler output class for all processors, these
are then overriden for each assembler writer to actually write the data in these
are then overridden for each assembler writer to actually write the data in these
classes to an assembler file.
}

View File

@ -21,7 +21,7 @@
}
{ @abstract(This unit implements an abstract asm output class for all processor types)
This unit implements an abstract assembler output class for all processors, these
are then overriden for each assembler writer to actually write the data in these
are then overridden for each assembler writer to actually write the data in these
classes to an assembler file.
}
@ -2154,7 +2154,7 @@ implementation
function tai_cpu_abstract.is_same_reg_move(regtype: Tregistertype):boolean;
begin
{ When the generic RA is used this needs to be overriden, we don't use
{ When the generic RA is used this needs to be overridden, we don't use
virtual;abstract; to prevent a lot of warnings of unimplemented abstract methods
when tai_cpu is created (PFV) }
internalerror(200404091);

View File

@ -66,7 +66,7 @@ interface
{# This is the base class for writing instructions.
The WriteInstruction() method must be overriden
The WriteInstruction() method must be overridden
to write a single instruction to the assembler
file.
}

View File

@ -60,7 +60,7 @@ interface
procedure MakeObject;virtual;abstract;
end;
{# This is the base class which should be overriden for each each
{# This is the base class which should be overridden for each each
assembler writer. It is used to actually assembler a file,
and write the output to the assembler file.
}
@ -115,11 +115,11 @@ interface
procedure AsmCreate(Aplace:tcutplace);
procedure AsmClose;
{# This routine should be overriden for each assembler, it is used
{# This routine should be overridden for each assembler, it is used
to actually write the abstract assembler stream to file.}
procedure WriteTree(p:TAsmList);virtual;
{# This routine should be overriden for each assembler, it is used
{# This routine should be overridden for each assembler, it is used
to actually write all the different abstract assembler streams
by calling for each stream type, the @var(WriteTree) method.}
procedure WriteAsmList;virtual;

View File

@ -1484,7 +1484,7 @@ end;
procedure ProcessDefIfStruct(definition: tdef);
begin
{ still led to infinite recursions
only usefull for unamed types PM }
only useful for unamed types PM }
if assigned(definition) and not assigned(definition.typesym) then
begin
case definition.typ of

View File

@ -651,7 +651,7 @@ end;
exit;
end;
end;
{ Set foundfile to something usefull }
{ Set foundfile to something useful }
FoundFile:=fn;
end;

View File

@ -49,7 +49,7 @@ unit cgobj;
{# @abstract(Abstract code generator)
This class implements an abstract instruction generator. Some of
the methods of this class are generic, while others must
be overriden for all new processors which will be supported
be overridden for all new processors which will be supported
by Free Pascal. For 32-bit processors, the base class
should be @link(tcg64f32) and not @var(tcg).
}
@ -131,7 +131,7 @@ unit cgobj;
{# Pass a parameter, which is a constant, to a routine.
A generic version is provided. This routine should
be overriden for optimization purposes if the cpu
be overridden for optimization purposes if the cpu
permits directly sending this type of parameter.
It must generate register allocation information for the cgpara in
case it consists of cpuregisters.
@ -144,7 +144,7 @@ unit cgobj;
{# Pass the value of a parameter, which is located in memory, to a routine.
A generic version is provided. This routine should
be overriden for optimization purposes if the cpu
be overridden for optimization purposes if the cpu
permits directly sending this type of parameter.
It must generate register allocation information for the cgpara in
case it consists of cpuregisters.
@ -171,7 +171,7 @@ unit cgobj;
case it consists of cpuregisters.
A generic version is provided. This routine should
be overriden for optimization purposes if the cpu
be overridden for optimization purposes if the cpu
permits directly sending this type of parameter.
@param(r reference to get address from)
@ -222,7 +222,7 @@ unit cgobj;
}
{# Emits instruction to call the method specified by symbol name.
This routine must be overriden for each new target cpu.
This routine must be overridden for each new target cpu.
There is no a_call_ref because loading the reference will use
a temp register on most cpu's resulting in conflicts with the
@ -231,7 +231,7 @@ unit cgobj;
procedure a_call_name(list : TAsmList;const s : string; weak: boolean);virtual; abstract;
procedure a_call_reg(list : TAsmList;reg : tregister);virtual; abstract;
procedure a_call_ref(list : TAsmList;ref : treference);virtual; abstract;
{ same as a_call_name, might be overriden on certain architectures to emit
{ same as a_call_name, might be overridden on certain architectures to emit
static calls without usage of a got trampoline }
procedure a_call_name_static(list : TAsmList;const s : string);virtual;
@ -419,7 +419,7 @@ unit cgobj;
{# This should emit the opcode to copy len bytes from the source
to destination.
It must be overriden for each new target processor.
It must be overridden for each new target processor.
@param(source Source reference of copy)
@param(dest Destination reference of copy)
@ -429,7 +429,7 @@ unit cgobj;
{# This should emit the opcode to copy len bytes from the an unaligned source
to destination.
It must be overriden for each new target processor.
It must be overridden for each new target processor.
@param(source Source reference of copy)
@param(dest Destination reference of copy)
@ -452,7 +452,7 @@ unit cgobj;
procedure g_finalize(list : TAsmList;t : tdef;const ref : treference);
{# Generates range checking code. It is to note
that this routine does not need to be overriden,
that this routine does not need to be overridden,
as it takes care of everything.
@param(p Node which contains the value to check)
@ -469,7 +469,7 @@ unit cgobj;
{# Emits instructions when compilation is done in profile
mode (this is set as a command line option). The default
behavior does nothing, should be overriden as required.
behavior does nothing, should be overridden as required.
}
procedure g_profilecode(list : TAsmList);virtual;
{# Emits instruction for allocating @var(size) bytes at the stackpointer

View File

@ -854,7 +854,7 @@ implementation
procedure TDebugInfoDwarf.set_def_dwarf_labs(def:tdef);
begin
{ Keep track of used dwarf entries, this info is only usefull for dwarf entries
{ Keep track of used dwarf entries, this info is only useful for dwarf entries
referenced by the symbols. Definitions will always include all
required stabs }
if def.dbg_state=dbg_state_unused then

View File

@ -290,7 +290,7 @@ implementation
not(def.dbg_state in [dbg_state_writing,dbg_state_written,dbg_state_queued]) then
internalerror(200403091);
{ Keep track of used stabs, this info is only usefull for stabs
{ Keep track of used stabs, this info is only useful for stabs
referenced by the symbols. Definitions will always include all
required stabs }
if def.dbg_state=dbg_state_unused then
@ -514,7 +514,7 @@ implementation
st:=def_stabstr_evaluate(def,'"'+symname+':$1$2=',[stabchar,def_stab_number(def)]);
end;
st:=st+ss;
{ line info is set to 0 for all defs, because the def can be in an other
{ line info is set to 0 for all defs, because the def can be in another
unit and then the linenumber is invalid in the current sourcefile }
st:=st+def_stabstr_evaluate(def,'",${N_LSYM},0,0,0',[]);
{ add to list }

View File

@ -1079,7 +1079,7 @@ var
writeusedunit(true);
{ write the objectfiles and libraries that come for this unit,
preserve the containers becuase they are still needed to load
preserve the containers because they are still needed to load
the link.res.
All doesn't depend on the crc! It doesn't matter
if a unit is in a .o or .a file }
@ -1161,7 +1161,7 @@ var
{ write whole program optimisation-related information }
tunitwpoinfo(wpoinfo).ppuwrite(ppufile);
{ the last entry ibend is written automaticly }
{ the last entry ibend is written automatically }
{ flush to be sure }
ppufile.flush;

View File

@ -1447,7 +1447,7 @@ implementation
RelocSection:=false;
RelocSectionSetExplicitly:=false;
LinkTypeSetExplicitly:=false;
{ memory sizes, will be overriden by parameter or default for target
{ memory sizes, will be overridden by parameter or default for target
in options or init_parser }
stacksize:=0;
{ not initialized yet }

View File

@ -41,7 +41,7 @@ const
con_ref = 1;
con_const = 2;
{ The contents aren't usable anymore for CSE, but they may still be }
{ usefull for detecting whether the result of a load is actually used }
{ useful for detecting whether the result of a load is actually used }
con_invalid = 3;
{ the reverse of the above (in case a (conditional) jump is encountered): }
{ CSE is still possible, but the original instruction can't be removed }

View File

@ -521,7 +521,7 @@ parser_e_cant_access_private_member=03063_E_Aqu
% declaration cannot be accessed outside the module where the class is
% defined.
parser_e_overridden_methods_not_same_ret=03066_E_Els mètodes sobrecarregats han de retornar el mateix tipus: "$2" està sobrecarregat per "$1", el qual retorna un altre tipus
% If you declare overriden methods in a class definition, they must
% If you declare overridden methods in a class definition, they must
% have the same return type.
parser_e_dont_nest_export=03067_E_Les funcions declarades amb EXPORT no poden estar niades
% You cannot declare a function or procedure within a function or procedure
@ -784,7 +784,7 @@ parser_e_threadvars_only_sg=03147_E_Les variables del fil nom
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_L'assemblador directe no és compatible amb el format binari de la sortida
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
% \end{description}
parser_w_no_objpas_use_mode=03149_W_No carregueu manualment l'unitat OBJPAS, utilitzeu {\$mode objfpc\} o {\$mode delphi\}
% You are trying to load the ObjPas unit manual from a uses clause. This is
@ -1192,7 +1192,7 @@ type_w_signed_unsigned_always_true=04045_W_La comparaci
type_w_instance_with_abstract=04046_W_S'està construint una classe "$1" amb mètodes abstractes
% An instance of a class is created which contains non_implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_L'operand esquerra per a l'operador d'IN ha de tenir el tamany d'un octet
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -1547,7 +1547,7 @@ type_w_signed_unsigned_always_true=04045_W_Wegen des Bereichs der Werte ist das
type_w_instance_with_abstract=04046_W_Konstruktion der Klasse "$1" mit der abstrakten Methode "$2"
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_Der linke Operand des IN Operators sollte byte Gr”sse haben
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8 bits. This may lead to range check errors. The \var{in} operator

View File

@ -811,7 +811,7 @@ parser_e_threadvars_only_sg=03147_E_Trådvariabler kan kun erklæres static elle
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_Direkte assembler er ikke understøttet i det binære udformat
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_Inkludér ikke unit'en OBJPAS manuelt, brug i stedet {$mode objfpc} eller {$mode delphi}
% You are trying to load the ObjPas unit manually from a uses clause. This is
% not a good idea. Use the \var{\{\$mode objfpc\}} or
@ -1245,7 +1245,7 @@ type_w_signed_unsigned_always_true=04045_W_Sammenligning er altid sand, grundet
type_w_instance_with_abstract=04046_W_Konstruerer klassen "$1" med abstrakte metoder
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_Den venstre operand til IN-operatoren skal være én byte stor
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -1547,7 +1547,7 @@ type_w_signed_unsigned_always_true=04045_W_Wegen des Bereichs der Werte ist das
type_w_instance_with_abstract=04046_W_Konstruktion der Klasse "$1" mit der abstrakten Methode "$2"
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_Der linke Operand des IN Operators sollte byte Grösse haben
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8 bits. This may lead to range check errors. The \var{in} operator

View File

@ -576,7 +576,7 @@ parser_e_cant_access_private_member=03063_E_Cannot access a private field of an
% Fields that are declared in a \var{private} section of an object or class
% declaration cannot be accessed outside the module where the class is
% defined.
parser_e_overridden_methods_not_same_ret=03066_E_Overridden methods must have the same return type: "$2" is overriden by "$1" which has another return type
parser_e_overridden_methods_not_same_ret=03066_E_Overridden methods must have the same return type: "$2" is overridden by "$1" which has another return type
% If you declare overridden methods in a class definition, they must
% have the same return type.
parser_e_dont_nest_export=03067_E_EXPORT declared functions can't be nested
@ -1538,7 +1538,7 @@ type_w_signed_unsigned_always_true=04045_W_Comparison is always true due to rang
type_w_instance_with_abstract=04046_W_Constructing a class "$1" with abstract method "$2"
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_The left operand of the IN operator should be byte sized
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8 bits. This may lead to range check errors. The \var{in} operator
@ -2539,7 +2539,7 @@ unit_u_ppu_invalid_version=10008_U_PPU Invalid Version $1
unit_u_ppu_invalid_processor=10009_U_PPU is compiled for another processor
% This unit file was compiled for a different processor type, and
% cannot be read.
unit_u_ppu_invalid_target=10010_U_PPU is compiled for an other target
unit_u_ppu_invalid_target=10010_U_PPU is compiled for another target
% This unit file was compiled for a different target, and
% cannot be read.
unit_u_ppu_source=10011_U_PPU Source: $1

View File

@ -788,7 +788,7 @@ parser_e_threadvars_only_sg=03147_E_Threadvars s
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_Ensamblador directo no soportado para formato binario de salida
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_No carges manuamente la unidad OBJPAS, usa \{\$mode objfpc\} o \{\$mode delphi\}
% You are trying to load the ObjPas unit manually from a uses clause. This is
% not a good idea. Use the \var{\{\$mode objfpc\}} or
@ -1195,7 +1195,7 @@ type_w_signed_unsigned_always_true=04045_W_La comparaci
type_w_instance_with_abstract=04046_W_Constuyendo un objeto de clase "$1" que contiene métodos abstractos
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_El operando a la izquierda de IN debe ser de tamaño un byte
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -814,11 +814,11 @@ parser_e_threadvars_only_sg=03147_E_THREADVARS peuvent seulement
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_Assembleur direct non support pour la sortie binaire
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_Ne chargez pas l'unit OBJPAS manuellement, utilisez {$mode objfpc} ou {$mode delphi}
% You're trying to load the ObjPas unit manual from a uses clause. This is
% not a good idea to do, you can better use the {$mode objfpc} or {$mode delphi}
% directives which load the unit automaticly
% directives which load the unit automatically
parser_e_no_object_override=03150_E_OVERRIDE nepeut ˆtre utilis pour des objets
% Override isn't support for objects, use VIRTUAL instead to override
% a method of an anchestor object
@ -1548,10 +1548,10 @@ unit_u_ppu_invalid_header=10007_U_PPU Invalid Header (no PPU at the begin)
unit_u_ppu_invalid_version=10008_U_PPU Invalid Version $1
% This unit file was compiled with a different version of the compiler, and
% cannot be read.
unit_u_ppu_invalid_processor=10009_U_PPU is compiled for an other processor
unit_u_ppu_invalid_processor=10009_U_PPU is compiled for another processor
% This unit file was compiled for a different processor type, and
% cannot be read
unit_u_ppu_invalid_target=10010_U_PPU is compiled for an other target
unit_u_ppu_invalid_target=10010_U_PPU is compiled for another target
% This unit file was compiled for a different processor type, and
% cannot be read
unit_u_ppu_source=10011_U_PPU Source: $1

View File

@ -816,7 +816,7 @@ parser_e_threadvars_only_sg=03147_E_Les variables de Threads peuvent seulement
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_Assembleur direct non supporté pour la sortie binaire
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_Ne chargez pas l'unité OBJPAS manuellement, utilisez de préférence \{\$mode Objfpc\} ou \{\$mode Delphi\}
% You are trying to load the ObjPas unit manually from a uses clause. This is
% not a good idea. Use the \var{\{\$mode objfpc\}} or
@ -1270,7 +1270,7 @@ type_w_signed_unsigned_always_true=04045_W_La comparaison est toujours VRAIE du
type_w_instance_with_abstract=04046_W_Construction d´une classe "$1" avec des méthodes abstraites
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=L´opérande à gauche de l´opérateur IN doit avoir la longueur d´un octet (8 bits)
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -829,7 +829,7 @@ parser_e_threadvars_only_sg=03147_E_Threadvars
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_äùéîåù áîàñó äðåëçé àéðå úåîê áåñâ äúåöàä äáéðàøéú
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_àñåø ì÷øåà ìéçéãú OBJPAS éùéøåú, éù ìäùúîù á \{\$mode objfpc\} àå á \{\$mode delphi\} áî÷åí
% You are trying to load the ObjPas unit manually from a uses clause. This is
% not a good idea. Use the \var{\{\$mode objfpc\}} or
@ -1336,7 +1336,7 @@ type_w_signed_unsigned_always_true=04045_W_
type_w_instance_with_abstract=04046_W_îàúçì àú äîçì÷ä "$1" òí îúåãåú ìà îîåîùåú
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_äòøê äùîàìé ùì äàåôøðã IN öøéê ìäéåú áâåãì ùì áéú
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -829,7 +829,7 @@ parser_e_threadvars_only_sg=03147_E_Threadvars חייבים להיות סטטי
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_השימוש במאסף הנוכחי אינו תומך בוסג התוצאה הבינארית
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_אסור לקרוא ליחידת OBJPAS ישירות, יש להשתמש ב \{\$mode objfpc\} או ב \{\$mode delphi\} במקום
% You are trying to load the ObjPas unit manually from a uses clause. This is
% not a good idea. Use the \var{\{\$mode objfpc\}} or
@ -1336,7 +1336,7 @@ type_w_signed_unsigned_always_true=04045_W_ההשוואה תמיד תחזיר ע
type_w_instance_with_abstract=04046_W_מאתחל את המחלקה "$1" עם מתודות לא ממומשות
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_הערך השמאלי של האופרנד IN צריך להיות בגודל של בית
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -815,7 +815,7 @@ parser_e_threadvars_only_sg=03147_E_Threadvariabelen kunnen alleen globaal of st
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_Directe assemblercode wordt niet ondersteund door de interne assembler.
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_Laad de OBJPAS unit niet manueel, gebruik {$mode objfpc} of {$mode delphi}.
% You are trying to load the ObjPas unit manually from a uses clause. This is
% not a good idea. Use the \var{\{\$mode objfpc\}} or
@ -1243,7 +1243,7 @@ type_w_signed_unsigned_always_true=04045_W_e vergelijking is steeds waar omwill
type_w_instance_with_abstract=04046_W_Constructie van een klasse "$1" met abstracte methoden
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_De linker operand van de IN operator moet de grootte van een byte hebben
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -791,7 +791,7 @@ parser_e_threadvars_only_sg=03147_E_Zmienne threadvar mog
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_Wstawki asemblera niedost©pne gdy wyj˜ciowym formatem jest wbudowane zapisywanie binarne
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_Nie ˆaduj moduˆu OBJPAS bezpo˜rednio - u¾yj trybu obiektowego (objfpc, delphi)
% You are trying to load the ObjPas unit manually from a uses clause. This is
% not a good idea. Use the \var{\{\$mode objfpc\}} or
@ -1200,7 +1200,7 @@ type_w_signed_unsigned_always_true=04045_W_To por
type_w_instance_with_abstract=04046_W_Tworzenie klasy "$1" posiadaj¥cej metody abstrakcyjne
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_Lewy operand operatora IN powinien by† wielko˜ci jednego bajta
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -791,7 +791,7 @@ parser_e_threadvars_only_sg=03147_E_Zmienne threadvar mog
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_Wstawki asemblera niedostêpne gdy wyj¶ciowym formatem jest wbudowane zapisywanie binarne
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_Nie ³aduj modu³u OBJPAS bezpo¶rednio - u¿yj trybu obiektowego (objfpc, delphi)
% You are trying to load the ObjPas unit manually from a uses clause. This is
% not a good idea. Use the \var{\{\$mode objfpc\}} or
@ -1200,7 +1200,7 @@ type_w_signed_unsigned_always_true=04045_W_To por
type_w_instance_with_abstract=04046_W_Tworzenie klasy "$1" posiadaj±cej metody abstrakcyjne
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_Lewy operand operatora IN powinien byæ wielko¶ci jednego bajta
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -1528,7 +1528,7 @@ type_w_signed_unsigned_always_true=04045_W_Compara
type_w_instance_with_abstract=04046_W_Construindo uma classe "$1" com mtodo abstrato "$2"
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_O operador esquerdo em um operador 'IN' deve ser tamanho byte
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8 bits. This may lead to range check errors. The \var{in} operator

View File

@ -1528,7 +1528,7 @@ type_w_signed_unsigned_always_true=04045_W_Comparação será sempre verdadeira
type_w_instance_with_abstract=04046_W_Construindo uma classe "$1" com método abstrato "$2"
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_O operador esquerdo em um operador 'IN' deve ser tamanho byte
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8 bits. This may lead to range check errors. The \var{in} operator

View File

@ -782,7 +782,7 @@ parser_e_threadvars_only_sg=03147_E_Threadvars sólo pueden ser globales o está
% are stored on the stack
parser_f_direct_assembler_not_allowed=03148_F_Ensamblador directo no soportado para formato binario de salida
% You can't use direct assembler when using a binary writer, choose an
% other outputformat or use an other assembler reader
% other outputformat or use another assembler reader
parser_w_no_objpas_use_mode=03149_W_No carges manuamente la unidad OBJPAS, usa \{\$mode objfpc\} o \{\$mode delphi\}
% You are trying to load the ObjPas unit manually from a uses clause. This is
% not a good idea. Use the \var{\{\$mode objfpc\}} or
@ -1189,7 +1189,7 @@ type_w_signed_unsigned_always_true=04045_W_La comparación es siempre verdadera
type_w_instance_with_abstract=04046_W_Constuyendo un objeto de clase "$1" que contiene métodos abstractos
% An instance of a class is created which contains non-implemented abstract
% methods. This will probably lead to a runtime error 211 in the code if that
% routine is ever called. All abstract methods should be overriden.
% routine is ever called. All abstract methods should be overridden.
type_h_in_range_check=04047_H_El operando a la izquierda de IN debe ser de tamaño un byte
% The left operand of the \var{in} operator is not an ordinal or enumeration which fits
% within 8-bits, this may lead to range check errors. The \var{in} operator

View File

@ -182,681 +182,681 @@ const msgtxt : array[0..000240,1..240] of char=(
'03062_E_Cannot access a protected field of an object here'#000+
'03063_E_Cannot access a private field of an object here'#000+
'03066_E_Overridden methods must have the same return type: "$2','" is o'+
'verriden by "$1" which has another return type'#000+
'verridden by "$1" which has another return type'#000+
'03067_E_EXPORT declared functions can'#039't be nested'#000+
'03068_E_Methods can'#039't be EXPORTed'#000+
'03069_E_Call by var for arg no. $1 has to match exactly: Got "$2" expe'+
'cted "$3"'#000+
'03070_E_Class isn'#039't a p','arent class of the current class'#000+
'03070_E_Class isn'#039't a ','parent class of the current class'#000+
'03071_E_SELF is only allowed in methods'#000+
'03072_E_Methods can be only in other methods called direct with type i'+
'dentifier of the class'#000+
'03073_E_Illegal use of '#039':'#039#000+
'03074_E_range check error in set constructor or',' duplicate set elemen'+
'03074_E_range check error in set constructor o','r duplicate set elemen'+
't'#000+
'03075_E_Pointer to object expected'#000+
'03076_E_Expression must be constructor call'#000+
'03077_E_Expression must be destructor call'#000+
'03078_E_Illegal order of record elements'#000+
'03079_E_Expression type must be class or record type'#000+
'0','3080_E_Procedures can'#039't return a value'#000+
'03079_E_Expression type must be class or record type'#000,
'03080_E_Procedures can'#039't return a value'#000+
'03081_E_constructors and destructors must be methods'#000+
'03082_E_Operator is not overloaded'#000+
'03083_E_Impossible to overload assignment for equal types'#000+
'03084_E_Impossible operator overload'#000+
'03085_E_Re-raise i','sn'#039't possible there'#000+
'03085_E_Re-raise ','isn'#039't possible there'#000+
'03086_E_The extended syntax of new or dispose isn'#039't allowed for a '+
'class'#000+
'03088_E_Procedure overloading is switched off'#000+
'03089_E_It is not possible to overload this operator. Related overload'+
'able operators (if any) are: $1'#000,
'able operators (if any) are: $1',#000+
'03090_E_Comparative operator must return a boolean value'#000+
'03091_E_Only virtual methods can be abstract'#000+
'03092_F_Use of unsupported feature!'#000+
'03093_E_The mix of different kind of objects (class, object, interface'+
', etc) isn'#039't allowed'#000+
'03094_W_Unk','nown procedure directive had to be ignored: "$1"'#000+
'03094_W_Un','known procedure directive had to be ignored: "$1"'#000+
'03095_E_absolute can only be associated to one variable'#000+
'03096_E_absolute can only be associated with a var or const'#000+
'03097_E_Only one variable can be initialized'#000+
'03098_E_Abstract methods shoul','dn'#039't have any definition (with fun'+
'03098_E_Abstract methods shou','ldn'#039't have any definition (with fun'+
'ction body)'#000+
'03099_E_This overloaded function can'#039't be local (must be exported)'+
#000+
'03100_W_Virtual methods are used without a constructor in "$1"'#000+
'03101_CL_Macro defined: $1'#000+
'03102_CL_Macro undefined: $1'#000+
'03103_CL','_Macro $1 set to $2'#000+
'03103_C','L_Macro $1 set to $2'#000+
'03104_I_Compiling $1'#000+
'03105_UL_Parsing interface of unit $1'#000+
'03106_UL_Parsing implementation of $1'#000+
'03107_DL_Compiling $1 for the second time'#000+
'03109_E_No property found to override'#000+
'03110_E_Only one default property is allowe','d'#000+
'03110_E_Only one default property is allow','ed'#000+
'03111_E_The default property must be an array property'#000+
'03112_E_Virtual constructors are only supported in class object model'#000+
'03113_E_No default property available'#000+
'03114_E_The class can'#039't have a published section, use the {$M+} sw'+
'itch'#000+
'0311','5_E_Forward declaration of class "$1" must be resolved here to u'+
'031','15_E_Forward declaration of class "$1" must be resolved here to u'+
'se the class as ancestor'#000+
'03116_E_Local operators not supported'#000+
'03117_E_Procedure directive "$1" not allowed in interface section'#000+
'03118_E_Procedure directive "$1" not allowed in',' implementation secti'+
'03118_E_Procedure directive "$1" not allowed i','n implementation secti'+
'on'#000+
'03119_E_Procedure directive "$1" not allowed in procvar declaration'#000+
'03120_E_Function is already declared Public/Forward "$1"'#000+
'03121_E_Can'#039't use both EXPORT and EXTERNAL'#000+
'03123_W_"$1" not yet supported inside inline pro','cedure/function'#000+
'03123_W_"$1" not yet supported inside inline pr','ocedure/function'#000+
'03124_W_Inlining disabled'#000+
'03125_I_Writing Browser log $1'#000+
'03126_H_may be pointer dereference is missing'#000+
'03127_F_Selected assembler reader not supported'#000+
'03128_E_Procedure directive "$1" has conflicts with other directives'#000+
'0312','9_E_Calling convention doesn'#039't match forward'#000+
'031','29_E_Calling convention doesn'#039't match forward'#000+
'03131_E_Property can'#039't have a default value'#000+
'03132_E_The default value of a property must be constant'#000+
'03133_E_Symbol can'#039't be published, can be only a class'#000+
'03134_E_This kind of property can'#039't be ','published'#000+
'03134_E_This kind of property can'#039't be',' published'#000+
'03136_E_An import name is required'#000+
'03138_E_Division by zero'#000+
'03139_E_Invalid floating point operation'#000+
'03140_E_Upper bound of range is less than lower bound'#000+
'03141_W_string "$1" is longer than "$2"'#000+
'03142_E_string length is larger tha','n array of char length'#000+
'03142_E_string length is larger th','an array of char length'#000+
'03143_E_Illegal expression after message directive'#000+
'03144_E_Message handlers can take only one call by ref. parameter'#000+
'03145_E_Duplicate message label: "$1"'#000+
'03146_E_Self can only be an explicit parameter in methods whic','h are '+
'03146_E_Self can only be an explicit parameter in methods whi','ch are '+
'message handlers'#000+
'03147_E_Threadvars can be only static or global'#000+
'03148_F_Direct assembler not supported for binary output format'#000+
'03149_W_Don'#039't load OBJPAS unit manually, use \{\$mode objfpc\} or '+
'\{\$mode delphi\} instead'#000+
'03150_E_OVERR','IDE can'#039't be used in objects'#000+
'03150_E_OVER','RIDE can'#039't be used in objects'#000+
'03151_E_Data types which require initialization/finalization can'#039't'+
' be used in variant records'#000+
'03152_E_Resourcestrings can be only static or global'#000+
'03153_E_Exit with argument can'#039't be used here'#000+
'03154_E_The type o','f the storage symbol must be boolean'#000+
'03154_E_The type ','of the storage symbol must be boolean'#000+
'03155_E_This symbol isn'#039't allowed as storage symbol'#000+
'03156_E_Only classes which are compiled in $M+ mode can be published'#000+
'03157_E_Procedure directive expected'#000+
'03158_E_The value for a property index must b','e of an ordinal type'#000+
'03158_E_The value for a property index must ','be of an ordinal type'#000+
'03159_E_Procedure name too short to be exported'#000+
'03160_E_No DEFFILE entry can be generated for unit global vars'#000+
'03161_E_Compile without -WD option'#000+
'03162_F_You need ObjFpc (-S2) or Delphi (-Sd) mode to compile this mod'+
'ule',#000+
'ul','e'#000+
'03163_E_Can'#039't export with index under $1'#000+
'03164_E_Exporting of variables is not supported under $1'#000+
'03165_E_Improper GUID syntax'#000+
'03168_W_Procedure named "$1" not found that is suitable for implementi'+
'ng the $2.$3'#000+
'03169_E_interface identifier ','expected'#000+
'03169_E_interface identifier',' expected'#000+
'03170_E_Type "$1" can'#039't be used as array index type'#000+
'03171_E_Con- and destructors aren'#039't allowed in interfaces'#000+
'03172_E_Access specifiers can'#039't be used in INTERFACEs and OBJCPROT'+
'OCOLs'#000+
'03173_E_An interface or Objective-C protocol or c','ategory cannot cont'+
'03173_E_An interface or Objective-C protocol or ','category cannot cont'+
'ain fields'#000+
'03174_E_Can'#039't declare local procedure as EXTERNAL'#000+
'03175_W_Some fields coming before "$1" weren'#039't initialized'#000+
'03176_E_Some fields coming before "$1" weren'#039't initialized'#000+
'03177_W_Some fields coming after "$1" were','n'#039't initialized'#000+
'03177_W_Some fields coming after "$1" wer','en'#039't initialized'#000+
'03178_E_VarArgs directive (or '#039'...'#039' in MacPas) without CDecl/C'+
'PPDecl/MWPascal and External'#000+
'03179_E_Self must be a normal (call-by-value) parameter'#000+
'03180_E_Interface "$1" has no interface identification'#000+
'03181_E_Unknown class ','field or method identifier "$1"'#000+
'03181_E_Unknown class',' field or method identifier "$1"'#000+
'03182_W_Overriding calling convention "$1" with "$2"'#000+
'03183_E_Typed constants of the type "procedure of object" can only be '+
'initialized with NIL'#000+
'03184_E_Default value can only be assigned to one parameter'#000+
'0318','5_E_Default parameter required for "$1"'#000+
'031','85_E_Default parameter required for "$1"'#000+
'03186_W_Use of unsupported feature!'#000+
'03187_H_C arrays are passed by reference'#000+
'03188_E_C array of const must be the last argument'#000+
'03189_H_Type "$1" redefinition'#000+
'03190_W_cdecl'#039'ared functions have no high',' parameter'#000+
'03190_W_cdecl'#039'ared functions have no hig','h parameter'#000+
'03191_W_cdecl'#039'ared functions do not support open strings'#000+
'03192_E_Cannot initialize variables declared as threadvar'#000+
'03193_E_Message directive is only allowed in Classes'#000+
'03194_E_Procedure or Function expected'#000+
'03195_W_Calling conven','tion directive ignored: "$1"'#000+
'03195_W_Calling conve','ntion directive ignored: "$1"'#000+
'03196_E_REINTRODUCE can'#039't be used in objects'#000+
'03197_E_Each argument must have its own location'#000+
'03198_E_Each argument must have an explicit location'#000+
'03199_E_Unknown argument location'#000+
'03200_E_32 Bit-Integer or poin','ter variable expected'#000+
'03200_E_32 Bit-Integer or poi','nter variable expected'#000+
'03201_E_Goto statements aren'#039't allowed between different procedure'+
's'#000+
'03202_F_Procedure too complex, it requires too many registers'#000+
'03203_E_Illegal expression'#000+
'03204_E_Invalid integer expression'#000+
'03205_E_Illegal qualifier'#000,
'03205_E_Illegal qualifier',#000+
'03206_E_High range limit < low range limit'#000+
'03207_E_Exit'#039's parameter must be the name of the procedure it is u'+
'sed in'#000+
'03208_E_Illegal assignment to for-loop variable "$1"'#000+
'03209_E_Can'#039't declare local variable as EXTERNAL'#000+
'03210_E_Procedure is a','lready declared EXTERNAL'#000+
'03210_E_Procedure is ','already declared EXTERNAL'#000+
'03211_W_Implicit uses of Variants unit'#000+
'03212_E_Class and static methods can'#039't be used in INTERFACES'#000+
'03213_E_Overflow in arithmetic operation'#000+
'03214_E_Protected or private expected'#000+
'03215_E_SLICE can'#039't be used outside ','of parameter list'#000+
'03215_E_SLICE can'#039't be used outside',' of parameter list'#000+
'03216_E_A DISPINTERFACE can'#039't have a parent class'#000+
'03217_E_A DISPINTERFACE needs a guid'#000+
'03218_W_Overridden methods must have a related return type. This code '+
'may crash, it depends on a Delphi parser bug ("$2" is overridden ','by '+
'may crash, it depends on a Delphi parser bug ("$2" is overridden',' by '+
'"$1" which has another return type)'#000+
'03219_E_Dispatch IDs must be ordinal constants'#000+
'03220_E_The range of the array is too large'#000+
'03221_E_The address cannot be taken of bit packed array elements and r'+
'ecord fields'#000+
'03222_E_Dynamic arrays cann','ot be packed'#000+
'03222_E_Dynamic arrays can','not be packed'#000+
'03223_E_Bit packed array elements and record fields cannot be used as '+
'loop variables'#000+
'03224_E_VAR, TYPE and CONST are allowed only in generics and classes'#000+
'03225_E_This type can'#039't be a generic'#000+
'03226_W_Don'#039't load LINEINFO unit man','ually, Use the -gl compiler '+
'03226_W_Don'#039't load LINEINFO unit ma','nually, Use the -gl compiler '+
'switch instead'#000+
'03227_E_No function result type specified for function "$1"'#000+
'03228_E_Specialization is only supported for generic types'#000+
'03229_E_Generics can'#039't be used as parameters when specializing gen'+
'erics'#000+
'03230_','E_Constants of objects containing a VMT aren'#039't allowed'#000+
'03230','_E_Constants of objects containing a VMT aren'#039't allowed'#000+
'03231_E_Taking the address of labels defined outside the current scope'+
' isn'#039't allowed'#000+
'03233_E_Cannot initialize variables declared as external'#000+
'03234_E_Illegal function result type'#000+
'03235_','E_No common type possible between "$1" and "$2"'#000+
'03235','_E_No common type possible between "$1" and "$2"'#000+
'03236_E_Generics without specialization cannot be used as a type for a'+
' variable'#000+
'03237_W_Register list is ignored for pure assembler routines'#000+
'03238_E_Implements property must have class or inte','rface type'#000+
'03238_E_Implements property must have class or int','erface type'#000+
'03239_E_Implements-property must implement interface of correct type, '+
'found "$1" expected "$2"'#000+
'03240_E_Implements-property must have read specifier'#000+
'03241_E_Implements-property must not have write-specifier'#000+
'03242_E_Implements-prop','erty must not have stored-specifier'#000+
'03242_E_Implements-pro','perty must not have stored-specifier'#000+
'03243_E_Implements-property used on unimplemented interface: "$1"'#000+
'03244_E_Floating point not supported for this target'#000+
'03245_E_Class "$1" does not implement interface "$2"'#000+
'03246_E_Type used by implements ','must be an interface'#000+
'03246_E_Type used by implements',' must be an interface'#000+
'03247_E_Variables cannot be exported with a different name on this tar'+
'get, add the name to the declaration using the "export" directive (var'+
'iable name: $1, declared export name: $2)'#000+
'03248_E_Weak external symbols are not',' supported for the current targ'+
'03248_E_Weak external symbols are no','t supported for the current targ'+
'et'#000+
'03249_E_Forward type definition does not match'#000+
'03250_N_Virtual method "$1" has a lower visibility ($2) than parent cl'+
'ass $3 ($4)'#000+
'03251_E_Fields cannot appear after a method or property definition, st'+
'art a n','ew visibility section first'#000+
'art a ','new visibility section first'#000+
'03252_E_Parameters cannot contain local type definitions. Use a separa'+
'te type definition in a type block.'#000+
'03253_E_ABSTRACT and SEALED conflict'#000+
'03254_E_Cannot create a descendant of the sealed class "$1"'#000+
'03255_E_S','EALED class cannot have an ABSTRACT method'#000+
'03255_E_','SEALED class cannot have an ABSTRACT method'#000+
'03256_E_Only virtual methods can be final'#000+
'03257_E_Final method cannot be overridden: "$1"'#000+
'03258_E_Only one message can be used per method.'#000+
'03259_E_Invalid enumerator identifier: "$1"'#000+
'03260_E_Enumer','ator identifier required'#000+
'03260_E_Enume','rator identifier required'#000+
'03261_E_Enumerator MoveNext pattern method is not valid. Method must b'+
'e a function with the Boolean return type and no required arguments.'#000+
'03262_E_Enumerator Current pattern property is not valid. Property mus'+
't have',' a getter.'#000+
't hav','e a getter.'#000+
'03263_E_Only one enumerator MoveNext method is allowed per class/objec'+
't'#000+
'03264_E_Only one enumerator Current property is allowed per class/obje'+
'ct'#000+
'03265_E_For in loop cannot be used for the type "$1"'#000+
'03266_E_Objective-C messages re','quire their Objective-C selector name'+
'03266_E_Objective-C messages r','equire their Objective-C selector name'+
' to be specified using the "message" directive.'#000+
'03267_E_Objective-C does not have formal constructors nor destructors.'+
' Use the alloc, initXXX and dealloc messages.'#000+
'03268_E_Message name is too long (max. ','255 characters)'#000+
'03268_E_Message name is too long (max.',' 255 characters)'#000+
'03269_E_Objective-C message symbol name for "$1" is too long'#000+
'03270_H_Defining a new Objective-C root class. To derive from another '+
'root class (e.g., NSObject), specify it as the parent class.'#000+
'03271_E_Objective-C classes cann','ot have published sections.'#000+
'03271_E_Objective-C classes can','not have published sections.'#000+
'03272_F_This module requires an Objective-C mode switch to be compiled'+
#000+
'03273_E_Inherited methods can only be overridden in Objective-C, add "'+
'override" (inherited method defined in $1)'#000+
'03274_H_Inherited methods ca','n only be overridden in Objective-C, add'+
'03274_H_Inherited methods c','an only be overridden in Objective-C, add'+
' "override" (inherited method defined in $1).'#000+
'03275_E_Message name "$1" in inherited class is different from message'+
' name "$2" in current class.'#000+
'03276_E_It is not yet possible to make unique copies of',' Objective-C '+
'03276_E_It is not yet possible to make unique copies o','f Objective-C '+
'types'#000+
'03277_E_Objective-C categories cannot be used as types'#000+
'03278_E_Categories do not override, but replace methods. Use "reintrod'+
'uce" instead.'#000+
'03279_E_Replaced methods can only be reintroduced in Objective-C, add '+
'"reintroduce','" (replaced method defined in $1).'#000+
'"reintroduc','e" (replaced method defined in $1).'#000+
'03280_H_Replaced methods can only be reintroduced in Objective-C, add '+
'"reintroduce" (replaced method defined in $1).'#000+
'03281_E_Getter for implements interface must use the target'#039's defa'+
'ult calling convention','.'#000+
'ult calling conventio','n.'#000+
'03282_E_Typed files cannot contain reference-counted types.'#000+
'03283_E_Operator is not overloaded: $2 "$1"'#000+
'03284_E_Operator is not overloaded: "$1" $2 "$3"'#000+
'03285_E_Expected another $1 array elements'#000+
'03286_E_String constant too long while ans','istrings are disabled'#000+
'03286_E_String constant too long while an','sistrings are disabled'#000+
'03287_E_Type cannot be used as univ parameter because its size is unkn'+
'own at compile time: "$1"'#000+
'03288_E_Only one class constructor can be declared in class: "$1"'#000+
'03289_E_Only one class destructor can be declared in cla','ss: "$1"'#000+
'03289_E_Only one class destructor can be declared in cl','ass: "$1"'#000+
'03290_E_Class constructors can'#039't have parameters'#000+
'03291_E_Class destructors can'#039't have parameters'#000+
'03292_F_This construct requires the \{\$modeswitch objectivec1\} mode '+
'switch to be active'#000+
'03293_E_Unicodechar/string constants cannot ','be converted to ansi/sho'+
'03293_E_Unicodechar/string constants cannot',' be converted to ansi/sho'+
'rtstring at compile-time'#000+
'03294_E_For-in Objective-Pascal loops require \{\$modeswitch Objective'+
'C2\} to be active'#000+
'03295_E_The compiler cannot find the NSFastEnumerationProtocol or NSFa'+
'stEnumerationState type in the Co','coaAll unit'#000+
'stEnumerationState type in the C','ocoaAll unit'#000+
'03296_E_Typed constants of the type '#039'procedure is nested'#039' can '+
'only be initialized with NIL and global procedures/functions'#000+
'04000_E_Type mismatch'#000+
'04001_E_Incompatible types: got "$1" expected "$2"'#000+
'04002_E_Type mismatch between "$','1" and "$2"'#000+
'04002_E_Type mismatch between "','$1" and "$2"'#000+
'04003_E_Type identifier expected'#000+
'04004_E_Variable identifier expected'#000+
'04005_E_Integer expression expected, but got "$1"'#000+
'04006_E_Boolean expression expected, but got "$1"'#000+
'04007_E_Ordinal expression expected'#000+
'04008_E_pointer type e','xpected, but got "$1"'#000+
'04008_E_pointer type ','expected, but got "$1"'#000+
'04009_E_class type expected, but got "$1"'#000+
'04011_E_Can'#039't evaluate constant expression'#000+
'04012_E_Set elements are not compatible'#000+
'04013_E_Operation not implemented for sets'#000+
'04014_W_Automatic type conversion from floating ty','pe to COMP which i'+
'04014_W_Automatic type conversion from floating t','ype to COMP which i'+
's an integer type'#000+
'04015_H_use DIV instead to get an integer result'#000+
'04016_E_String types have to match exactly in $V+ mode'#000+
'04017_E_succ or pred on enums with assignments not possible'#000+
'04018_E_Can'#039't read or write variables of',' this type'#000+
'04018_E_Can'#039't read or write variables o','f this type'#000+
'04019_E_Can'#039't use readln or writeln on typed file'#000+
'04020_E_Can'#039't use read or write on untyped file.'#000+
'04021_E_Type conflict between set elements'#000+
'04022_W_lo/hi(dword/qword) returns the upper/lower word/dword'#000+
'04023_E_Integer or real e','xpression expected'#000+
'04023_E_Integer or real ','expression expected'#000+
'04024_E_Wrong type "$1" in array constructor'#000+
'04025_E_Incompatible type for arg no. $1: Got "$2", expected "$3"'#000+
'04026_E_Method (variable) and Procedure (variable) are not compatible'#000+
'04027_E_Illegal constant passed to inter','nal math function'#000+
'04027_E_Illegal constant passed to inte','rnal math function'#000+
'04028_E_Can'#039't take the address of constant expressions'#000+
'04029_E_Argument can'#039't be assigned to'#000+
'04030_E_Can'#039't assign local procedure/function to procedure variabl'+
'e'#000+
'04031_E_Can'#039't assign values to an address'#000+
'04032_E_Can'#039't assig','n values to const variable'#000+
'04032_E_Can'#039't assi','gn values to const variable'#000+
'04033_E_Array type required'#000+
'04034_E_interface type expected, but got "$1"'#000+
'04035_H_Mixing signed expressions and longwords gives a 64bit result'#000+
'04036_W_Mixing signed expressions and cardinals here may cause a range',
' check error'#000+
'04036_W_Mixing signed expressions and cardinals here may cause a rang',
'e check error'#000+
'04037_E_Typecast has different size ($1 -> $2) in assignment'#000+
'04038_E_enums with assignments can'#039't be used as array index'#000+
'04039_E_Class or Object types "$1" and "$2" are not related'#000+
'04040_W_Class types "$1" and "$2" are not rela','ted'#000+
'04040_W_Class types "$1" and "$2" are not rel','ated'#000+
'04041_E_Class or interface type expected, but got "$1"'#000+
'04042_E_Type "$1" is not completely defined'#000+
'04043_W_String literal has more characters than short string length'#000+
'04044_W_Comparison is always false due to range of values'#000+
'04045_W_Com','parison is always true due to range of values'#000+
'04045_W_Co','mparison is always true due to range of values'#000+
'04046_W_Constructing a class "$1" with abstract method "$2"'#000+
'04047_H_The left operand of the IN operator should be byte sized'#000+
'04048_W_Type size mismatch, possible loss of data / range check error',
'04048_W_Type size mismatch, possible loss of data / range check erro','r'+
#000+
'04049_H_Type size mismatch, possible loss of data / range check error'#000+
'04050_E_The address of an abstract method can'#039't be taken'#000+
'04051_E_Assignments to formal parameters and open arrays are not possi'+
'ble'#000+
'04052_E_Constant Expression expected'#000+
'0','4053_E_Operation "$1" not supported for types "$2" and "$3"'#000+
'04052_E_Constant Expression expected'#000,
'04053_E_Operation "$1" not supported for types "$2" and "$3"'#000+
'04054_E_Illegal type conversion: "$1" to "$2"'#000+
'04055_H_Conversion between ordinals and pointers is not portable'#000+
'04056_W_Conversion between ordinals and pointers is not portable'#000+
'0405','7_E_Can'#039't determine which overloaded function to call'#000+
'040','57_E_Can'#039't determine which overloaded function to call'#000+
'04058_E_Illegal counter variable'#000+
'04059_W_Converting constant real value to double for C variable argume'+
'nt, add explicit typecast to prevent this.'#000+
'04060_E_Class or COM interface type expe','cted, but got "$1"'#000+
'04060_E_Class or COM interface type exp','ected, but got "$1"'#000+
'04061_E_Constant packed arrays are not yet supported'#000+
'04062_E_Incompatible type for arg no. $1: Got "$2" expected "(Bit)Pack'+
'ed Array"'#000+
'04063_E_Incompatible type for arg no. $1: Got "$2" expected "(not pack'+
'ed) Array"'#000+
'04064_E','_Elements of packed arrays cannot be of a type which need to '+
'04064_','E_Elements of packed arrays cannot be of a type which need to '+
'be initialised'#000+
'04065_E_Constant packed records and objects are not yet supported'#000+
'04066_W_Arithmetic "$1" on untyped pointer is unportable to {$T+}, sug'+
'gest typecast'#000+
'04076_E_Can'#039't ','take address of a subroutine marked as local'#000+
'04076_E_Can'#039't',' take address of a subroutine marked as local'#000+
'04077_E_Can'#039't export subroutine marked as local from a unit'#000+
'04078_E_Type is not automatable: "$1"'#000+
'04079_H_Converting the operands to "$1" before doing the add could pre'+
'vent overflow errors.'#000+
'04080','_H_Converting the operands to "$1" before doing the subtract co'+
'0408','0_H_Converting the operands to "$1" before doing the subtract co'+
'uld prevent overflow errors.'#000+
'04081_H_Converting the operands to "$1" before doing the multiply coul'+
'd prevent overflow errors.'#000+
'04082_W_Converting pointers to signed integers may ','result in wrong c'+
'04082_W_Converting pointers to signed integers may',' result in wrong c'+
'omparison results and range errors, use an unsigned type instead.'#000+
'04083_E_Interface type $1 has no valid GUID'#000+
'04084_E_Invalid selector name "$1"'#000+
'04085_E_Expected Objective-C method, but got $1'#000+
'04086_E_Expected Objective-C m','ethod or constant method name'#000+
'04086_E_Expected Objective-C ','method or constant method name'#000+
'04087_E_No type info available for this type'#000+
'04088_E_Ordinal or string expression expected'#000+
'04089_E_String expression expected'#000+
'04090_W_Converting 0 to NIL'#000+
'04091_E_Objective-C protocol type expected, but got "$1"',#000+
'04091_E_Objective-C protocol type expected, but got "$1','"'#000+
'04092_E_The type "$1" is not supported for interaction with the Object'+
'ive-C runtime.'#000+
'04093_E_Class or objcclass type expected, but got "$1"'#000+
'04094_E_Objcclass type expected'#000+
'04095_W_Coerced univ parameter type in procedural variable may caus','e'+
'04095_W_Coerced univ parameter type in procedural variable may cau','se'+
' crash or memory corruption: $1 to $2'#000+
'04096_E_Type parameters of specializations of generics cannot referenc'+
'e the currently specialized type'#000+
'05000_E_Identifier not found "$1"'#000+
'05001_F_Internal Error in SymTableStack()'#000+
'05002_E_Duplicate iden','tifier "$1"'#000+
'05002_E_Duplicate ide','ntifier "$1"'#000+
'05003_H_Identifier already defined in $1 at line $2'#000+
'05004_E_Unknown identifier "$1"'#000+
'05005_E_Forward declaration not solved "$1"'#000+
'05007_E_Error in type definition'#000+
'05009_E_Forward type not resolved "$1"'#000+
'05010_E_Only static variable','s can be used in static methods or outsi'+
'05010_E_Only static variabl','es can be used in static methods or outsi'+
'de methods'#000+
'05012_F_record or class type expected'#000+
'05013_E_Instances of classes or objects with an abstract method are no'+
't allowed'#000+
'05014_W_Label not defined "$1"'#000+
'05015_E_Label used but not defined "$1"'#000,
'05015_E_Label used but not defined "$1"',#000+
'05016_E_Illegal label declaration'#000+
'05017_E_GOTO and LABEL are not supported (use switch -Sg)'#000+
'05018_E_Label not found'#000+
'05019_E_identifier isn'#039't a label'#000+
'05020_E_label already defined'#000+
'05021_E_illegal type declaration of set elements'#000+
'05022_E_Forw','ard class definition not resolved "$1"'#000+
'05022_E_For','ward class definition not resolved "$1"'#000+
'05023_H_Unit "$1" not used in $2'#000+
'05024_H_Parameter "$1" not used'#000+
'05025_N_Local variable "$1" not used'#000+
'05026_H_Value parameter "$1" is assigned but never used'#000+
'05027_N_Local variable "$1" is assigned but',' never used'#000+
'05027_N_Local variable "$1" is assigned bu','t never used'#000+
'05028_H_Local $1 "$2" is not used'#000+
'05029_N_Private field "$1.$2" is never used'#000+
'05030_N_Private field "$1.$2" is assigned but never used'#000+
'05031_N_Private method "$1.$2" never used'#000+
'05032_E_Set type expected'#000+
'05033_W_Function result d','oes not seem to be set'#000+
'05033_W_Function result ','does not seem to be set'#000+
'05034_W_Type "$1" is not aligned correctly in current record for C'#000+
'05035_E_Unknown record field identifier "$1"'#000+
'05036_W_Local variable "$1" does not seem to be initialized'#000+
'05037_W_Variable "$1" does not seem to be ini','tialized'#000+
'05037_W_Variable "$1" does not seem to be in','itialized'#000+
'05038_E_identifier idents no member "$1"'#000+
'05039_H_Found declaration: $1'#000+
'05040_E_Data element too large'#000+
'05042_E_No matching implementation for interface method "$1" found'#000+
'05043_W_Symbol "$1" is deprecated'#000+
'05044_W_Symbol "$1" is not p','ortable'#000+
'05044_W_Symbol "$1" is not ','portable'#000+
'05055_W_Symbol "$1" is not implemented'#000+
'05056_E_Can'#039't create unique type from this type'#000+
'05057_H_Local variable "$1" does not seem to be initialized'#000+
'05058_H_Variable "$1" does not seem to be initialized'#000+
'05059_W_Function result variabl','e does not seem to initialized'#000+
'05059_W_Function result variab','le does not seem to initialized'#000+
'05060_H_Function result variable does not seem to be initialized'#000+
'05061_W_Variable "$1" read but nowhere assigned'#000+
'05062_H_Found abstract method: $1'#000+
'05063_W_Symbol "$1" is experimental'#000+
'05064_W_Forward declaratio','n "$1" not resolved, assumed external'#000+
'05064_W_Forward declarati','on "$1" not resolved, assumed external'#000+
'05065_W_Symbol "$1" is belongs to a library'#000+
'05066_W_Symbol "$1" is deprecated: "$2"'#000+
'05067_E_Cannot find an enumerator for the type "$1"'#000+
'05068_E_Cannot find a "MoveNext" method in enumerator "$1"'#000+
'05069_E','_Cannot find a "Current" property in enumerator "$1"'#000+
'05069_','E_Cannot find a "Current" property in enumerator "$1"'#000+
'05070_E_Mismatch between number of declared parameters and number of c'+
'olons in message string.'#000+
'05071_N_Private type "$1.$2" never used'#000+
'05072_N_Private const "$1.$2" never used'#000+
'05073_N_Pri','vate property "$1.$2" never used'#000+
'05073_N_Pr','ivate property "$1.$2" never used'#000+
'05074_W_Unit "$1" is deprecated'#000+
'05075_W_Unit "$1" is deprecated: "$2"'#000+
'05076_W_Unit "$1" is not portable'#000+
'05077_W_Unit "$1" is belongs to a library'#000+
'05078_W_Unit "$1" is not implemented'#000+
'05079_W_Unit "$1" is exp','erimental'#000+
'05079_W_Unit "$1" is ex','perimental'#000+
'05080_E_No complete definition of the formally declared objcclass "$1"'+
' is in scope'#000+
'05081_E_Gotos into initialization or finalization blocks of units are '+
'not allowed'#000+
'06009_E_Parameter list size exceeds 65535 bytes'#000+
'06012_E_File type','s must be var parameters'#000+
'06012_E_File typ','es must be var parameters'#000+
'06013_E_The use of a far pointer isn'#039't allowed there'#000+
'06015_E_EXPORT declared functions can'#039't be called'#000+
'06016_W_Possible illegal call of constructor or destructor'#000+
'06017_N_Inefficient code'#000+
'06018_W_unreachable code'#000+
'060','20_E_Abstract methods can'#039't be called directly'#000+
'06','020_E_Abstract methods can'#039't be called directly'#000+
'06027_DL_Register $1 weight $2 $3'#000+
'06029_DL_Stack frame is omitted'#000+
'06031_E_Object or class methods can'#039't be inline.'#000+
'06032_E_Procvar calls cannot be inline.'#000+
'06033_E_No code for inline procedure s','tored'#000+
'06033_E_No code for inline procedure ','stored'#000+
'06035_E_Element zero of an ansi/wide- or longstring can'#039't be acces'+
'sed, use (set)length instead'#000+
'06037_E_Constructors or destructors cannot be called inside a '#039'wit'+
'h'#039' clause'#000+
'06038_E_Cannot call message handler methods directly'#000+
'06039_E_Ju','mp in or outside of an exception block'#000+
'06039_E_J','ump in or outside of an exception block'#000+
'06040_E_Control flow statements aren'#039't allowed in a finally block'#000+
'06041_W_Parameters size exceeds limit for certain cpu'#039's'#000+
'06042_W_Local variable size exceed limit for certain cpu'#039's'#000+
'06043_E_Local variab','les size exceeds supported limit'#000+
'06043_E_Local varia','bles size exceeds supported limit'#000+
'06044_E_BREAK not allowed'#000+
'06045_E_CONTINUE not allowed'#000+
'06046_F_Unknown compilerproc "$1". Check if you use the correct run ti'+
'me library.'#000+
'06047_F_Cannot find system type "$1". Check if you use the correct run',
' time library.'#000+
'06047_F_Cannot find system type "$1". Check if you use the correct ru',
'n time library.'#000+
'06048_H_Inherited call to abstract method ignored'#000+
'06049_E_Goto label "$1" not defined or optimized away'#000+
'06050_F_Cannot find type "$1" in unit "$2". Check if you use the corre'+
'ct run time library.'#000+
'06051_E_Interprocedural gotos ','are allowed only to outer subroutines'#000+
'06051_E_Interprocedural gotos',' are allowed only to outer subroutines'#000+
'06052_E_Label must be defined in the same scope as it is declared'#000+
'07000_DL_Starting $1 styled assembler parsing'#000+
'07001_DL_Finished $1 styled assembler parsing'#000+
'07002_E_Non-label pattern contains @'#000+
'07004_E','_Error building record offset'#000+
'07004_','E_Error building record offset'#000+
'07005_E_OFFSET used without identifier'#000+
'07006_E_TYPE used without identifier'#000+
'07007_E_Cannot use local variable or parameters here'#000+
'07008_E_need to use OFFSET here'#000+
'07009_E_need to use $ here'#000+
'07010_E_Cannot use mul','tiple relocatable symbols'#000+
'07010_E_Cannot use mu','ltiple relocatable symbols'#000+
'07011_E_Relocatable symbol can only be added'#000+
'07012_E_Invalid constant expression'#000+
'07013_E_Relocatable symbol is not allowed'#000+
'07014_E_Invalid reference syntax'#000+
'07015_E_You cannot reach $1 from that code'#000+
'07016_E_Local s','ymbols/labels aren'#039't allowed as references'#000+
'07016_E_Local ','symbols/labels aren'#039't allowed as references'#000+
'07017_E_Invalid base and index register usage'#000+
'07018_W_Possible error in object field handling'#000+
'07019_E_Wrong scale factor specified'#000+
'07020_E_Multiple index register usage'#000+
'07021_E_Invalid operand type',#000+
'07021_E_Invalid operand typ','e'#000+
'07022_E_Invalid string as opcode operand: $1'#000+
'07023_W_@CODE and @DATA not supported'#000+
'07024_E_Null label references are not allowed'#000+
'07025_E_Divide by zero in asm evaluator'#000+
'07026_E_Illegal expression'#000+
'07027_E_escape sequence ignored: $1'#000+
'07028_E','_Invalid symbol reference'#000+
'07028_','E_Invalid symbol reference'#000+
'07029_W_Fwait can cause emulation problems with emu387'#000+
'07030_W_$1 without operand translated into $1P'#000+
'07031_W_ENTER instruction is not supported by Linux kernel'#000+
'07032_W_Calling an overload function in assembler'#000+
'070','33_E_Unsupported symbol type for operand'#000+
'07','033_E_Unsupported symbol type for operand'#000+
'07034_E_Constant value out of bounds'#000+
'07035_E_Error converting decimal $1'#000+
'07036_E_Error converting octal $1'#000+
'07037_E_Error converting binary $1'#000+
'07038_E_Error converting hexadecimal $1'#000+
'07039_H_$1 transl','ated to $2'#000+
'07039_H_$1 trans','lated to $2'#000+
'07040_W_$1 is associated to an overloaded function'#000+
'07041_E_Cannot use SELF outside a method'#000+
'07042_E_Cannot use OLDEBP outside a nested procedure'#000+
'07043_W_Procedures can'#039't return any value in asm code'#000+
'07044_E_SEG not supported'#000+
'0704','5_E_Size suffix and destination or source size do not match'#000+
'070','45_E_Size suffix and destination or source size do not match'#000+
'07046_W_Size suffix and destination or source size do not match'#000+
'07047_E_Assembler syntax error'#000+
'07048_E_Invalid combination of opcode and operands'#000+
'07049_E_Assembler syntax error in ','operand'#000+
'07049_E_Assembler syntax error in',' operand'#000+
'07050_E_Assembler syntax error in constant'#000+
'07051_E_Invalid String expression'#000+
'07052_W_constant with symbol $1 for address which is not on a pointer'#000+
'07053_E_Unrecognized opcode $1'#000+
'07054_E_Invalid or missing opcode'#000+
'07055_E_Invalid comb','ination of prefix and opcode: $1'#000+
'07055_E_Invalid com','bination of prefix and opcode: $1'#000+
'07056_E_Invalid combination of override and opcode: $1'#000+
'07057_E_Too many operands on line'#000+
'07058_W_NEAR ignored'#000+
'07059_W_FAR ignored'#000+
'07060_E_Duplicate local symbol $1'#000+
'07061_E_Undefined local symbol $1'#000+
'07062_E_U','nknown label identifier $1'#000+
'07062_E_','Unknown label identifier $1'#000+
'07063_E_Invalid register name'#000+
'07064_E_Invalid floating point register name'#000+
'07066_W_Modulo not supported'#000+
'07067_E_Invalid floating point constant $1'#000+
'07068_E_Invalid floating point expression'#000+
'07069_E_Wrong symbol typ','e'#000+
'07069_E_Wrong symbol ty','pe'#000+
'07070_E_Cannot index a local var or parameter with a register'#000+
'07071_E_Invalid segment override expression'#000+
'07072_W_Identifier $1 supposed external'#000+
'07073_E_Strings not allowed as constants'#000+
'07074_No type of variable specified'#000+
'07075_E_assembl','er code not returned to text section'#000+
'07075_E_assemb','ler code not returned to text section'#000+
'07076_E_Not a directive or local symbol $1'#000+
'07077_E_Using a defined name as a local label'#000+
'07078_E_Dollar token is used without an identifier'#000+
'07079_W_32bit constant created for address'#000+
'07080_N_.align is ta','rget specific, use .balign or .p2align'#000+
'07080_N_.align is t','arget specific, use .balign or .p2align'#000+
'07081_E_Can'#039't access fields directly for parameters'#000+
'07082_E_Can'#039't access fields of objects/classes directly'#000+
'07083_E_No size specified and unable to determine the size of the oper'+
'ands'#000+
'07084_E_Cannot use',' RESULT in this function'#000+
'07084_E_Cannot us','e RESULT in this function'#000+
'07086_W_"$1" without operand translated into "$1 %st,%st(1)"'#000+
'07087_W_"$1 %st(n)" translated into "$1 %st,%st(n)"'#000+
'07088_W_"$1 %st(n)" translated into "$1 %st(n),%st"'#000+
'07089_E_Char < not allowed here'#000+
'07090_E_Char > not',' allowed here'#000+
'07090_E_Char > no','t allowed here'#000+
'07093_W_ALIGN not supported'#000+
'07094_E_Inc and Dec cannot be together'#000+
'07095_E_Invalid reglist for movem'#000+
'07096_E_Reglist invalid for opcode'#000+
'07097_E_Higher cpu mode required ($1)'#000+
'07098_W_No size specified and unable to determine th','e size of the op'+
'07098_W_No size specified and unable to determine t','he size of the op'+
'erands, using DWORD as default'#000+
'07099_E_Syntax error while trying to parse a shifter operand'#000+
'07100_E_Address of packed component is not at a byte boundary'#000+
'07101_W_No size specified and unable to determine the size of the oper',
'ands, using BYTE as default'#000+
'07101_W_No size specified and unable to determine the size of the ope',
'rands, using BYTE as default'#000+
'07102_W_Use of +offset(%ebp) for parameters invalid here'#000+
'07103_W_Use of +offset(%ebp) is not compatible with regcall convention'+
#000+
'07104_W_Use of -offset(%ebp) is not recommended for local variable acc'+
'ess'#000+
'07105_W_Us','e of -offset(%esp), access may cause a crash or value may '+
'07105_W_U','se of -offset(%esp), access may cause a crash or value may '+
'be lost'#000+
'07106_E_VMTOffset must be used in combination with a virtual method, a'+
'nd "$1" is not virtual'#000+
'07107_E_Generating PIC, but reference is not PIC-safe'#000+
'07108_E_All registers in a ','register set must be of the same kind and'+
'07108_E_All registers in a',' register set must be of the same kind and'+
' width'#000+
'07109_E_A register set cannot be empty'#000+
'07110_W_@GOTPCREL is useless and potentially dangereous for local symb'+
'ols'#000+
'08000_F_Too many assembler files'#000+
'08001_F_Selected assembler output not supporte','d'#000+
'08001_F_Selected assembler output not support','ed'#000+
'08002_F_Comp not supported'#000+
'08003_F_Direct not support for binary writers'#000+
'08004_E_Allocating of data is only allowed in bss section'#000+
'08005_F_No binary writer selected'#000+
'08006_E_Asm: Opcode $1 not in table'#000+
'08007_E_Asm: $1 invalid combination o','f opcode and operands'#000+
'08007_E_Asm: $1 invalid combination ','of opcode and operands'#000+
'08008_E_Asm: 16 Bit references not supported'#000+
'08009_E_Asm: Invalid effective address'#000+
'08010_E_Asm: Immediate or reference expected'#000+
'08011_E_Asm: $1 value exceeds bounds $2'#000+
'08012_E_Asm: Short jump is out of range $1'#000+
'08013_','E_Asm: Undefined label $1'#000+
'08013','_E_Asm: Undefined label $1'#000+
'08014_E_Asm: Comp type not supported for this target'#000+
'08015_E_Asm: Extended type not supported for this target'#000+
'08016_E_Asm: Duplicate label $1'#000+
'08017_E_Asm: Redefined label $1'#000+
'08018_E_Asm: First defined here'#000+
'08019_E_','Asm: Invalid register $1'#000+
'08019_E','_Asm: Invalid register $1'#000+
'08020_E_Asm: 16 or 32 Bit references not supported'#000+
'08021_E_Asm: 64 Bit operands not supported'#000+
'09000_W_Source operating system redefined'#000+
'09001_I_Assembling (pipe) $1'#000+
'09002_E_Can'#039't create assembler file: $1'#000+
'09003_E_Ca','n'#039't create object file: $1'#000+
'09003_E_C','an'#039't create object file: $1'#000+
'09004_E_Can'#039't create archive file: $1'#000+
'09005_E_Assembler $1 not found, switching to external assembling'#000+
'09006_T_Using assembler: $1'#000+
'09007_E_Error while assembling exitcode $1'#000+
'09008_E_Can'#039't call the assembler, error',' $1 switching to external'+
'09008_E_Can'#039't call the assembler, erro','r $1 switching to external'+
' assembling'#000+
'09009_I_Assembling $1'#000+
'09010_I_Assembling with smartlinking $1'#000+
'09011_W_Object $1 not found, Linking may fail !'#000+
'09012_W_Library $1 not found, Linking may fail !'#000+
'09013_E_Error while linking'#000+
'09014_E_Can'#039't ca','ll the linker, switching to external linking'#000+
'09014_E_Can'#039't c','all the linker, switching to external linking'#000+
'09015_I_Linking $1'#000+
'09016_E_Util $1 not found, switching to external linking'#000+
'09017_T_Using util $1'#000+
'09018_E_Creation of Executables not supported'#000+
'09019_E_Creation of Dynamic/Shared Libraries not su','pported'#000+
'09019_E_Creation of Dynamic/Shared Libraries not s','upported'#000+
'09020_I_Closing script $1'#000+
'09021_E_resource compiler "$1" not found, switching to external mode'#000+
'09022_I_Compiling resource $1'#000+
'09023_T_unit $1 can'#039't be statically linked, switching to smart lin'+
'king'#000+
'09024_T_unit $1 can'#039't be smart linke','d, switching to static linki'+
'09024_T_unit $1 can'#039't be smart link','ed, switching to static linki'+
'ng'#000+
'09025_T_unit $1 can'#039't be shared linked, switching to static linkin'+
'g'#000+
'09026_E_unit $1 can'#039't be smart or static linked'#000+
'09027_E_unit $1 can'#039't be shared or static linked'#000+
'09028_D_Calling resource compiler "$1" with ','"$2" as command line'#000+
'09028_D_Calling resource compiler "$1" with',' "$2" as command line'#000+
'09029_E_Error while compiling resources'#000+
'09030_E_Can'#039't call the resource compiler "$1", switching to extern'+
'al mode'#000+
'09031_E_Can'#039't open resource file "$1"'#000+
'09032_E_Can'#039't write resource file "$1"'#000+
'09128_F_Can'#039't post process e','xecutable $1'#000+
'09128_F_Can'#039't post process ','executable $1'#000+
'09129_F_Can'#039't open executable $1'#000+
'09130_X_Size of Code: $1 bytes'#000+
'09131_X_Size of initialized data: $1 bytes'#000+
'09132_X_Size of uninitialized data: $1 bytes'#000+
'09133_X_Stack space reserved: $1 bytes'#000+
'09134_X_Stack space committed: $1 by','tes'#000+
'09134_X_Stack space committed: $1 b','ytes'#000+
'09200_F_Executable image size is too big for $1 target.'#000+
'09201_W_Object file "$1" contains 32-bit absolute relocation to symbol'+
' "$2".'#000+
@ -864,13 +864,13 @@ const msgtxt : array[0..000240,1..240] of char=(
'10001_T_PPU Loading $1'#000+
'10002_U_PPU Name: $1'#000+
'10003_U_PPU Flags: $1'#000+
'10004_U_PPU Cr','c: $1'#000+
'10004_U_PPU C','rc: $1'#000+
'10005_U_PPU Time: $1'#000+
'10006_U_PPU File too short'#000+
'10007_U_PPU Invalid Header (no PPU at the begin)'#000+
'10008_U_PPU Invalid Version $1'#000+
'10009_U_PPU is compiled for another processor'#000+
'10010_U_PPU is compiled for an other target'#000+
'10010_U_PPU is compiled for another target'#000+
'10011_U_PPU Sour','ce: $1'#000+
'10012_U_Writing $1'#000+
'10013_F_Can'#039't Write PPU-File'#000+

View File

@ -2216,7 +2216,7 @@ implementation
(tabstractvarsym(tloadnode(realassignmenttarget).symtableentry).varregable in [vr_none,vr_addr])
) then
begin
{ If the funcret is also used as a parameter we can't optimize becuase the funcret
{ If the funcret is also used as a parameter we can't optimize because the funcret
and the parameter will point to the same address. That means that a change of the result variable
will result also in a change of the parameter value }
result:=not foreachnodestatic(left,@check_funcret_used_as_para,tloadnode(realassignmenttarget).symtableentry);
@ -2434,7 +2434,7 @@ implementation
end;
{ now all parents are in the correct order
insert all abstract methods in the list, and remove
those which are overriden by parent classes.
those which are overridden by parent classes.
}
objectinfo:=tobjectinfoitem(parents.first);
while assigned(objectinfo) do

View File

@ -261,7 +261,7 @@ interface
ait_instruction :
begin
{ remove cached insentry, because the new code can
require an other less optimized instruction }
require another less optimized instruction }
{$ifdef i386}
{$ifndef NOAG386BIN}
taicpu(hp2).ResetPass1;
@ -306,7 +306,7 @@ interface
ait_instruction :
begin
{ remove cached insentry, because the new code can
require an other less optimized instruction }
require another less optimized instruction }
{$ifdef i386}
{$ifndef NOAG386BIN}
taicpu(hp).ResetPass1;

View File

@ -35,7 +35,7 @@ interface
floating point value in the floating point
register r.
This routine should be overriden, since
This routine should be overridden, since
the generic version is not optimal at all. The
generic version assumes that floating
point values are stored in the register
@ -277,7 +277,7 @@ implementation
procedure tcgmoddivnode.emit64_div_reg_reg(signed: boolean; denum,num:tregister64);
begin
{ handled in pass_1 already, unless pass_1 is
overriden
overridden
}
{ should be handled in pass_1 (JM) }
internalerror(200109052);

View File

@ -257,7 +257,7 @@ implementation
propaccesslist:=hpropsym.propaccesslist[pap];
if not propaccesslist.empty then
break;
hpropsym:=hpropsym.overridenpropsym;
hpropsym:=hpropsym.overriddenpropsym;
until not assigned(hpropsym);
if not(assigned(propaccesslist) and assigned(propaccesslist.firstsym)) then
begin

View File

@ -2532,7 +2532,7 @@ implementation
LOC_REFERENCE instead for all none register variables. This is
required because we can't store an asmsymbol in the localloc because
the asmsymbol is invalid after an unit is compiled. This gives
problems when this procedure is inlined in an other unit (PFV) }
problems when this procedure is inlined in another unit (PFV) }
if vs.is_regvar(false) then
begin
vs.initialloc.loc:=tvarregable2tcgloc[vs.varregable];

View File

@ -47,7 +47,7 @@ interface
{ All the following routines currently
call compilerprocs, unless they are
overriden in which case, the code
overridden in which case, the code
generator handles them.
}
function first_pi: tnode ; virtual;

View File

@ -667,7 +667,7 @@ implementation
{ Optimize the reuse of the destination of the assingment in left.
Allow the use of the left inside the tree generated on the right.
This is especially usefull for string routines where the destination
This is especially useful for string routines where the destination
is pushed as a parameter. Using the final destination of left directly
save a temp allocation and copy of data (PFV) }
oldassignmentnode:=aktassignmentnode;

View File

@ -1016,7 +1016,7 @@ implementation
hpropsym : tpropertysym;
begin
result:=false;
{ find property in the overriden list }
{ find property in the overridden list }
hpropsym:=propsym;
repeat
propaccesslist:=hpropsym.propaccesslist[pap];
@ -1025,7 +1025,7 @@ implementation
result:=true;
exit;
end;
hpropsym:=hpropsym.overridenpropsym;
hpropsym:=hpropsym.overriddenpropsym;
until not assigned(hpropsym);
end;

View File

@ -36,7 +36,7 @@ unit paramgr;
type
{# This class defines some methods to take care of routine
parameters. It should be overriden for each new processor
parameters. It should be overridden for each new processor
}
{ tparamanager }

View File

@ -299,7 +299,7 @@ implementation
sym : tsym;
srsymtable: tsymtable;
p : tpropertysym;
overriden : tsym;
overridden : tsym;
varspez : tvarspez;
hdef : tdef;
arraytype : tdef;
@ -410,7 +410,7 @@ implementation
if paranr>0 then
include(p.propoptions,ppo_hasparameters);
end;
{ overriden property ? }
{ overridden property ? }
{ force property interface
there is a property parameter
a global property }
@ -451,18 +451,18 @@ implementation
else
begin
{ do an property override }
overriden:=search_class_member(aclass.childof,p.name);
if assigned(overriden) and
(overriden.typ=propertysym) and
overridden:=search_class_member(aclass.childof,p.name);
if assigned(overridden) and
(overridden.typ=propertysym) and
not(is_dispinterface(aclass)) then
begin
p.overridenpropsym:=tpropertysym(overriden);
p.overriddenpropsym:=tpropertysym(overridden);
{ inherit all type related entries }
p.indexdef:=tpropertysym(overriden).indexdef;
p.propdef:=tpropertysym(overriden).propdef;
p.index:=tpropertysym(overriden).index;
p.default:=tpropertysym(overriden).default;
p.propoptions:=tpropertysym(overriden).propoptions;
p.indexdef:=tpropertysym(overridden).indexdef;
p.propdef:=tpropertysym(overridden).propdef;
p.index:=tpropertysym(overridden).index;
p.default:=tpropertysym(overridden).default;
p.propoptions:=tpropertysym(overridden).propoptions;
if ppo_indexed in p.propoptions then
add_index_parameter(paranr,p,readprocdef,writeprocdef,storedprocdef);
end
@ -581,8 +581,8 @@ implementation
if assigned(aclass) and not(is_dispinterface(aclass)) and not is_classproperty then
begin
{ ppo_stored is default on for not overriden properties }
if not assigned(p.overridenpropsym) then
{ ppo_stored is default on for not overridden properties }
if not assigned(p.overriddenpropsym) then
include(p.propoptions,ppo_stored);
if try_to_consume(_STORED) then
begin

View File

@ -1688,7 +1688,7 @@ implementation
{ read all entries until the end and write them also to the new ppu }
repeat
b:=inppu.readentry;
{ don't write ibend, that's written automaticly }
{ don't write ibend, that's written automatically }
if b<>ibend then
begin
if b=iblinkothersharedlibs then

View File

@ -1667,7 +1667,7 @@ implementation
old_current_objectdef:=current_objectdef;
{ reset current_procinfo.procdef to nil to be sure that nothing is writing
to an other procdef }
to another procdef }
current_procinfo:=nil;
current_objectdef:=nil;

View File

@ -124,7 +124,7 @@ unit rgobj;
code generator to allocate and free registers which might be valid
across nodes. It also contains utility routines related to registers.
Some of the methods in this class should be overriden
Some of the methods in this class should be overridden
by cpu-specific implementations.
--------------------------------------------------------------------}
@ -164,7 +164,7 @@ unit rgobj;
{ default subregister used }
defaultsub : tsubregister;
live_registers:Tsuperregisterworklist;
{ can be overriden to add cpu specific interferences }
{ can be overridden to add cpu specific interferences }
procedure add_cpu_interferences(p : tai);virtual;
procedure add_constraints(reg:Tregister);virtual;
function get_alias(n:Tsuperregister):Tsuperregister;
@ -1974,7 +1974,7 @@ unit rgobj;
exit;
{$ifdef x86}
{ Try replacing the register with the spilltemp. This is usefull only
{ Try replacing the register with the spilltemp. This is useful only
for the i386,x86_64 that support memory locations for several instructions }
for counter := 0 to pred(regindex) do
with regs[counter] do

View File

@ -233,8 +233,8 @@ interface
tpropertysym = class(Tstoredsym)
propoptions : tpropertyoptions;
overridenpropsym : tpropertysym;
overridenpropsymderef : tderef;
overriddenpropsym : tpropertysym;
overriddenpropsymderef : tderef;
propdef : tdef;
propdefderef : tderef;
indexdef : tdef;
@ -906,7 +906,7 @@ implementation
begin
inherited ppuload(propertysym,ppufile);
ppufile.getsmallset(propoptions);
ppufile.getderef(overridenpropsymderef);
ppufile.getderef(overriddenpropsymderef);
ppufile.getderef(propdefderef);
index:=ppufile.getlongint;
default:=ppufile.getlongint;
@ -930,7 +930,7 @@ implementation
var
pap : tpropaccesslisttypes;
begin
overridenpropsymderef.build(overridenpropsym);
overriddenpropsymderef.build(overriddenpropsym);
propdefderef.build(propdef);
indexdefderef.build(indexdef);
for pap:=low(tpropaccesslisttypes) to high(tpropaccesslisttypes) do
@ -942,7 +942,7 @@ implementation
var
pap : tpropaccesslisttypes;
begin
overridenpropsym:=tpropertysym(overridenpropsymderef.resolve);
overriddenpropsym:=tpropertysym(overriddenpropsymderef.resolve);
indexdef:=tdef(indexdefderef.resolve);
propdef:=tdef(propdefderef.resolve);
for pap:=low(tpropaccesslisttypes) to high(tpropaccesslisttypes) do
@ -962,7 +962,7 @@ implementation
begin
inherited ppuwrite(ppufile);
ppufile.putsmallset(propoptions);
ppufile.putderef(overridenpropsymderef);
ppufile.putderef(overriddenpropsymderef);
ppufile.putderef(propdefderef);
ppufile.putlongint(index);
ppufile.putlongint(default);

View File

@ -1281,7 +1281,7 @@ implementation
exit;
end;
{ check also parasymtable, this needs to be done here becuase
{ check also parasymtable, this needs to be done here because
of the special situation with the funcret sym that needs to be
hidden for tp and delphi modes }
hsym:=tsym(tabstractprocdef(defowner).parast.FindWithHash(hashedid));

View File

@ -423,7 +423,7 @@ begin
begin
While not SharedLibFiles.Empty do
begin
{becuase of upper/lower case mix, we may get duplicate
{because of upper/lower case mix, we may get duplicate
names but nlmconv ignores that.
Here we are setting the import-files for nlmconv. I.e. for
the module libc or libc.nlm we add IMPORT @libc.imp and also

View File

@ -405,7 +405,7 @@ begin
begin
While not SharedLibFiles.Empty do
begin
{becuase of upper/lower case mix, we may get duplicate
{because of upper/lower case mix, we may get duplicate
names but nlmconv ignores that.
Here we are setting the import-files for nlmconv. I.e. for
the module clib or clib.nlm we add IMPORT @clib.imp and also

View File

@ -385,7 +385,7 @@ begin
{ read all entries until the end and write them also to the new ppu }
repeat
b:=inppu.readentry;
{ don't write ibend, that's written automaticly }
{ don't write ibend, that's written automatically }
if b<>ibend then
begin
if b=iblinkothersharedlibs then

View File

@ -2231,7 +2231,7 @@ implementation
begin
{ these are dissambler hints or 32 bit prefixes which
are not needed
It's usefull to write rex :) (FK) }
It's useful to write rex :) (FK) }
{$ifdef x86_64}
maybewriterex;
{$endif x86_64}

View File

@ -1570,7 +1570,7 @@ Unit Rax86int;
case oper.opr.typ of
OPR_LOCAL :
begin
{ don't allow direct access to fields of parameters, becuase that
{ don't allow direct access to fields of parameters, because that
will generate buggy code. Allow it only for explicit typecasting
and when the parameter is in a register (delphi compatible) }
if (not oper.hastype) and

View File

@ -210,7 +210,7 @@ resourcestring
{$else}
const
{$endif}
msg_automaticallycreateddontedit = 'Automaticly created file, don''t edit.';
msg_automaticallycreateddontedit = 'Automatically created file, don''t edit.';
{ Compiler options }
opt_objectpascal = 'Object pascal support';

View File

@ -211,7 +211,7 @@ type
procedure ShowTopic(SourceFileID: word; Context: THelpCtx); virtual;
procedure HandleEvent(var Event: TEvent); virtual;
procedure Close; virtual;
function GetPalette: PPalette; virtual; { needs to be overriden }
function GetPalette: PPalette; virtual; { needs to be overridden }
end;
implementation

View File

@ -724,7 +724,7 @@ begin
end;
Function THTMLTopicRenderer.CanonicalizeURL(const Base,Relative:String):string;
// uses info from filesystem (curdir) -> overriden for CHM.
// uses info from filesystem (curdir) -> overridden for CHM.
begin
CanonicalizeURL:=CompleteURL(Base,relative);
end;

View File

@ -67,7 +67,7 @@ const
WHEEL_Green = (WHEEL_Dummy+6) ; { set/get Green }
WHEEL_Blue = (WHEEL_Dummy+7) ; { set/get Blue }
WHEEL_RGB = (WHEEL_Dummy+8) ; { set/get ColorWheelRGB }
WHEEL_Screen = (WHEEL_Dummy+9) ; { init screen/enviroment }
WHEEL_Screen = (WHEEL_Dummy+9) ; { init screen/environment }
WHEEL_Abbrv = (WHEEL_Dummy+10); { "GCBMRY" if English }
WHEEL_Donation = (WHEEL_Dummy+11); { colors donated by app }
WHEEL_BevelBox = (WHEEL_Dummy+12); { inside a bevel box }

View File

@ -1382,7 +1382,7 @@ end;";
if ($struct["param_array"] != null) $struct["has_params"] = true;
// determine if the method can be overriden
// determine if the method can be overridden
// (!eregi("^(set|get|is)+", $name))
if ($kind != "constructor") $struct["can_override"] = true;

View File

@ -1382,7 +1382,7 @@ end;";
if ($struct["param_array"] != null) $struct["has_params"] = true;
// determine if the method can be overriden
// determine if the method can be overridden
// (!eregi("^(set|get|is)+", $name))
if ($kind != "constructor") $struct["can_override"] = true;

View File

@ -73,7 +73,7 @@ end;
// To determine how many environment variables have been stored you can
// use the VariableCount property.
//
// The following procedure loops through all of the enviroment variables
// The following procedure loops through all of the environment variables
// and prints them back to the client. This is a good CGI example to
// show you exactly what information you have to work with.

View File

@ -870,7 +870,7 @@ begin
{$R-}
x := FieldBinding[FieldDef.FieldNo-1];
// Joost, 5 jan 2006: I disabled the following, since it's usefull for
// Joost, 5 jan 2006: I disabled the following, since it's useful for
// debugging, but it also slows things down. In principle things can only go
// wrong when FieldDefs is changed while the dataset is opened. A user just
// shoudn't do that. ;) (The same is done in PQConnection)

View File

@ -1227,8 +1227,8 @@ begin
ODBCCheckResult(
SQLStatistics(
StmtHandle,
nil, 0, // catalog unkown; request for all catalogs
nil, 0, // schema unkown; request for all schemas
nil, 0, // catalog unknown; request for all catalogs
nil, 0, // schema unknown; request for all schemas
PChar(TableName), Length(TableName), // request information for TableName
SQL_INDEX_ALL,
SQL_QUICK

View File

@ -697,7 +697,7 @@ begin
begin
x := FieldBinding[FieldDef.FieldNo-1];
// Joost, 5 jan 2006: I disabled the following, since it's usefull for
// Joost, 5 jan 2006: I disabled the following, since it's useful for
// debugging, but it also slows things down. In principle things can only go
// wrong when FieldDefs is changed while the dataset is opened. A user just
// shoudn't do that. ;) (The same is done in IBConnection)

View File

@ -65,7 +65,7 @@ type
YPelsPerMeter:Longint;
{46+04 : Number of colors used}
ClrUsed:longint;
{50+04 : Number of imprtant colors used : usefull for displaying on VGA256}
{50+04 : Number of imprtant colors used : useful for displaying on VGA256}
ClrImportant:longint;
end;
PBitMapInfoHeader = ^TBitMapInfoHeader;

View File

@ -104,12 +104,12 @@ end;
procedure TEZcgi.DoPost;
begin
// Must be overriden by child class
// Must be overridden by child class
end;
procedure TEZcgi.DoGet;
begin
// Must be overriden by child class
// Must be overridden by child class
end;
procedure TEZcgi.WriteContent(ctype : String);

View File

@ -62,7 +62,7 @@ type
function FormButton (aname, caption, aOnClick: DOMstring) : THTML_Input;
function FormHidden (aname, aValue: DOMstring) : THTML_Input;
function FormFile (aname, aValue:DOMstring) : THTML_Input;
{ Other usefull links to elements }
{ Other useful links to elements }
function Meta (aname, ahtpequiv,acontent: DOMString) : THTML_meta;
function Link (arel, ahref, athetype, amedia: DOMString) : THTML_link;
function Script (s, athetype, asrc: DOMString) : THTML_script;

View File

@ -105,7 +105,7 @@
must not be freed. }
function g_getenv(variable:Pgchar):Pgchar;cdecl;external gliblib name 'g_getenv';
{ we try to provide a usefull equivalent for ATEXIT if it is
{ we try to provide a useful equivalent for ATEXIT if it is
not defined, but use is actually abandoned. people should
use g_atexit() instead.
}

View File

@ -41,7 +41,7 @@
of brackets. Returns G_TOKEN_NONE if succesful, otherwise returns
the token it expected but didn't get.
}
{ Combine RC style data from src into dest. If overriden, this
{ Combine RC style data from src into dest. If overridden, this
function should chain to the parent.
}
{ Create an empty style suitable to this RC style

View File

@ -114,7 +114,7 @@ char *ap_init_mutex_method(char *t);}
{$ifndef NO_OTHER_CHILD}
{
* register an other_child -- a child which the main loop keeps track of
* register another_child -- a child which the main loop keeps track of
* and knows it is different than the rest of the scoreboard.
*
* pid is the pid of the child.
@ -149,7 +149,7 @@ const
* us knowing ... buggy os? }
{
* unregister an other_child. Note that the data pointer is used here, and
* unregister another_child. Note that the data pointer is used here, and
* is assumed to be unique' per other_child. This is because the pid and
* write_fd are possibly killed off separately.
}

View File

@ -88,7 +88,7 @@ type
* <pre>
* | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
* ---------------------------------
* | | | | | | | | x | General debug code enabled (usefull in
* | | | | | | | | x | General debug code enabled (useful in
* combination with --with-efence).
*
* | | | | | | | x | | Verbose output on stderr (report

View File

@ -144,7 +144,7 @@ type
apr_os_file_t: Integer; {< native file }
typedef DIR apr_os_dir_t; {< native dir }
apr_os_sock_t: Integer; {< native dir }
typedef struct apr_os_proc_mutex_t apr_os_proc_mutex_t; {< native proces
typedef struct apr_os_proc_mutex_t apr_os_proc_mutex_t; {< native process
* mutex
}
{$if defined(APR_HAS_THREADS) and defined(APR_HAVE_PTHREAD_H)}

View File

@ -679,7 +679,7 @@ const
// external LibAPR name LibNamePrefix + 'apr_proc_detach' + LibSuff4;
{
* Register an other_child -- a child associated to its registered
* Register another_child -- a child associated to its registered
* maintence callback. This callback is invoked when the process
* dies, is disconnected or disappears.
* @param proc The child process to register.

View File

@ -144,7 +144,7 @@ type
apr_os_file_t: Integer; {< native file }
typedef DIR apr_os_dir_t; {< native dir }
apr_os_sock_t: Integer; {< native dir }
typedef struct apr_os_proc_mutex_t apr_os_proc_mutex_t; {< native proces
typedef struct apr_os_proc_mutex_t apr_os_proc_mutex_t; {< native process
* mutex
}
{$if defined(APR_HAS_THREADS) and defined(APR_HAVE_PTHREAD_H)}

View File

@ -716,7 +716,7 @@ const
// external LibAPR name LibNamePrefix + 'apr_proc_detach' + LibSuff4;
{
* Register an other_child -- a child associated to its registered
* Register another_child -- a child associated to its registered
* maintence callback. This callback is invoked when the process
* dies, is disconnected or disappears.
* @param proc The child process to register.

View File

@ -88,7 +88,7 @@ begin
//load our ball pcx file into an image
loadPCX(pcuint8(ball_pcx), @ball);
//tile it so it is usefull as sprite data
//tile it so it is useful as sprite data
imageTileData(@ball);
// Sprite initialisation

View File

@ -556,7 +556,7 @@
(**
* XML_SCHEMAS_TYPE_REDEFINING:
*
* The type redefines an other type.
* The type redefines another type.
*)
(* XML_SCHEMAS_TYPE_REDEFINING = (1 shl 31); *)
{$ENDIF}
@ -872,7 +872,7 @@
(**
* XML_SCHEMAS_INCLUDING_CONVERT_NS:
*
* the schema is currently including an other schema with
* the schema is currently including another schema with
* no target namespace.
*)
XML_SCHEMAS_INCLUDING_CONVERT_NS = (1 shl 9);

View File

@ -368,7 +368,7 @@ var
writeln(f: 10)
else
writeln;
Writeln(' proces afgebroken, te hoge nauwkeurigheid?');
Writeln(' process afgebroken, te hoge nauwkeurigheid?');
end;
3: Writeln('Verkeerde waarde ae (<=0) bij aanroep: ', ae: 8);
4:
@ -378,7 +378,7 @@ var
writeln(f: 10)
else
writeln;
writeln(' proces afgebroken, moeilijk, mogelijk divergent?');
writeln(' process afgebroken, moeilijk, mogelijk divergent?');
end;
end;
end;
@ -866,7 +866,7 @@ var
writeln(f: 10)
else
writeln;
Writeln(' proces afgebroken, te hoge nauwkeurigheid?');
Writeln(' process afgebroken, te hoge nauwkeurigheid?');
end;
3: Writeln('Verkeerde waarde ae (<=0) bij aanroep: ', ae: 8);
4:
@ -876,7 +876,7 @@ var
writeln(f: 10)
else
writeln;
writeln(' proces afgebroken, moeilijk, mogelijk divergent?');
writeln(' process afgebroken, moeilijk, mogelijk divergent?');
end;
end;
end;

View File

@ -258,7 +258,7 @@ var
writeln(f: 10)
else
writeln;
Writeln(' proces afgebroken, te hoge nauwkeurigheid?');
Writeln(' process afgebroken, te hoge nauwkeurigheid?');
end;
3: Writeln('Verkeerde parameterwaarde (<=0) bij aanroep: ', ae: 8);
4:
@ -268,7 +268,7 @@ var
writeln(f: 10)
else
writeln;
writeln(' proces afgebroken, moeilijk, mogelijk divergent?');
writeln(' process afgebroken, moeilijk, mogelijk divergent?');
end;
end;
end;
@ -684,7 +684,7 @@ var
writeln(f: 10)
else
writeln;
Writeln(' proces afgebroken, te hoge nauwkeurigheid?');
Writeln(' process afgebroken, te hoge nauwkeurigheid?');
end;
3: Writeln('Verkeerde parameterwaarde (<=0) bij aanroep: ', ae: 8);
4:
@ -694,7 +694,7 @@ var
writeln(f: 10)
else
writeln;
writeln(' proces afgebroken, moeilijk, mogelijk divergent?');
writeln(' process afgebroken, moeilijk, mogelijk divergent?');
end;
end;
end;

View File

@ -81,7 +81,7 @@ b) Add support for IBM Multimedia Classes and CWMM Classes for WPS (as fast as
SOM and WPS toolkits will be presented)
c) SEAL library interface (seal.pas) www.netlabs.org/hobbes.nmsu.edu
SEAL is module player library. At the present time SEAL not developing
anymore (for all platforms), but still very usefull for mudule music fans.
anymore (for all platforms), but still very useful for mudule music fans.
d) DualMode Library (dual.pas) www.netlabs.org
DualMode library allows to use common access method as for fullscreen (MGL)
as for windowed (DIVE) video modes.

View File

@ -4982,7 +4982,7 @@ CARDINAL32 * Error);
//* exception to this is if ProcessItem sets *Error to */
//* DLIST_SEARCH_COMPLETE, in which case ForEachItem */
//* terminates and sets *Error to DLIST_SUCCESS. This is */
//* usefull for using ForEachItem to search a list and then */
//* useful for using ForEachItem to search a list and then */
//* terminating the search once the desired item is found. */
//* */
//* A word about the Parameters parameter. This parameter */
@ -5083,7 +5083,7 @@ CARDINAL32 * Error);
//* exception to this is if KillItem sets *Error to */
//* DLIST_SEARCH_COMPLETE, in which case KillItem */
//* terminates and sets *Error to DLIST_SUCCESS. This is */
//* usefull for using KillItem to search a list and then */
//* useful for using KillItem to search a list and then */
//* terminating the search once the desired item is found. */
//* */
//* A word about the Parameters parameter. This parameter */

View File

@ -552,7 +552,7 @@ procedure AEDisposeRemoteProcessResolver( ref: AERemoteProcessResolverRef ); ext
*
* Discussion:
* Returns a CFArrayRef containing CFDictionary objects containing
* information about processses running on a remote machine. If the
* information about processes running on a remote machine. If the
* result array is NULL, the query failed and the error out
* parameter will contain information about the failure. If the
* resolver had not been previously scheduled for execution, this

View File

@ -1054,7 +1054,7 @@ const
@constant kAudioHardwarePropertyPlugInForBundleID
Using an AudioValueTranslation structure, this property translates the input
CFString containing a bundle ID into the AudioObjectID of the AudioPlugIn
that corresponds to it. This property will return kAudioObjectUnkown if the
that corresponds to it. This property will return kAudioObjectUnknown if the
given bundle ID doesn't match any AudioPlugIns.
@constant kAudioHardwarePropertyUserSessionIsActiveOrHeadless
A UInt32 where a value other than 0 indicates that the login session of the

View File

@ -395,7 +395,7 @@ type AuthorizationEnvironmentPtr = ^AuthorizationEnvironment;
The reason for passing in this flag is to provide correct audit trail information and to avoid unnecessary user interaction.
@param rights (input/optional) An AuthorizationItemSet containing rights for which authorization is being requested. If none are specified the resulting AuthorizationRef will authorize nothing at all.
@param environment (input/optional) An AuthorizationItemSet containing enviroment state used when making the autorization decision. See the AuthorizationEnvironment type for details.
@param environment (input/optional) An AuthorizationItemSet containing environment state used when making the autorization decision. See the AuthorizationEnvironment type for details.
@param flags (input) options specified by the AuthorizationFlags enum. set all unused bits to zero to allow for future expansion.
@param authorization (output optional) A pointer to an AuthorizationRef to be returned. When the returned AuthorizationRef is no longer needed AuthorizationFree should be called to prevent anyone from using the aquired rights. If NULL is specified no new rights are returned, but the system will attempt to authorize all the requested rights and return the appropriate status.
@ -450,7 +450,7 @@ function AuthorizationFree( authorization: AuthorizationRef; flags: Authorizatio
@param authorization (input) The authorization object on which this operation is performed.
@param rights (input) A rights set (see AuthorizationCreate).
@param environment (input/optional) An AuthorizationItemSet containing enviroment state used when making the autorization decision. See the AuthorizationEnvironment type for details.
@param environment (input/optional) An AuthorizationItemSet containing environment state used when making the autorization decision. See the AuthorizationEnvironment type for details.
@param flags (input) options specified by the AuthorizationFlags enum. set all unused bits to zero to allow for future expansion.
@param authorizedRights (output/optional) A pointer to a newly allocated AuthorizationInfoSet in which the authorized subset of rights are returned (authorizedRights should be deallocated by calling AuthorizationFreeItemSet() when it is no longer needed). If NULL the only information returned is the status. Note that if the kAuthorizationFlagPreAuthorize flag was specified rights that could not be preauthorized are returned in authorizedRights, but their flags contains the kAuthorizationFlagCanNotPreAuthorize bit.

View File

@ -510,7 +510,7 @@ function CFURLCreateStringByReplacingPercentEscapesUsingEncoding( allocator: CFA
{ are not legal URL characters (based on RFC 2396), plus any characters }
{ in legalURLCharactersToBeEscaped, less any characters in }
{ charactersToLeaveUnescaped. To simply correct any non-URL characters }
{ in an otherwise correct URL string, do: }
{ in anotherwise correct URL string, do: }
{ newString = CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault, origString, NULL, NULL, kCFStringEncodingUTF8); }
function CFURLCreateStringByAddingPercentEscapes( allocator: CFAllocatorRef; originalString: CFStringRef; charactersToLeaveUnescaped: CFStringRef; legalURLCharactersToBeEscaped: CFStringRef; encoding: CFStringEncoding ): CFStringRef; external name '_CFURLCreateStringByAddingPercentEscapes';

View File

@ -262,7 +262,7 @@ procedure CGImageDestinationAddImage( idst: CGImageDestinationRef; image: CGImag
{ Set the next image in the image destination `idst' to be the image at
* `index' in the image source `isrc'. The index is zero-based. The
* properties of the source image can be added to or overriden by supplying
* properties of the source image can be added to or overridden by supplying
* additional keys/values in `properties'. If a key in `properties' has
* the value kCFNull, the corresponding property in the destination will be
* removed. }

View File

@ -3181,7 +3181,7 @@ function CMSetDeviceFactoryProfiles( deviceClass: CMDeviceClass; deviceID: CMDev
@abstract Returns all the device's factory profiles
@discussion This API allows the caller to retrieve the original profiles for a device.
These may differ from the profiles currently in use for that device in the
case where factory profiles have been overriden with custom profiles.
case where factory profiles have been overridden with custom profiles.
@param deviceClass (in) Device class to query
@param deviceID (in) Device id to query (can be cmDefaultDeviceID)
@param defaultProfID (out) Returns id of default mode (optional)

View File

@ -6380,7 +6380,7 @@ const
* performed (kQTPropertyClass_Visual /
* kQTVisualPropertyID_ApertureMode). When a movie is in clean,
* production or encoded pixels aperture mode, each track's
* dimensions are overriden by special dimensions for that mode. The
* dimensions are overridden by special dimensions for that mode. The
* original track dimensions are preserved and can be restored by
* setting the movie into classic aperture mode. Aperture modes are
* not saved in movies.

View File

@ -8785,7 +8785,7 @@ const
type
QTParamComponentPropertyRecord = record
component: ComponentInstance; { component to call for get/set properties}
defaultClass: OSType; { default property class if not overriden by a given parameter}
defaultClass: OSType; { default property class if not overridden by a given parameter}
end;
type
QTParamSampleTimeRecordPtr = ^QTParamSampleTimeRecord;
@ -10568,7 +10568,7 @@ const
* performed. The values for this property have the prefix
* kQTApertureMode_ and are in ImageCompression.h.
* When a movie is in clean, production or encoded pixels aperture
* mode, each track's dimensions are overriden by special dimensions
* mode, each track's dimensions are overridden by special dimensions
* for that mode. The original track dimensions are preserved and can
* be restored by setting the movie into classic aperture mode.
}

View File

@ -18,7 +18,7 @@ type
tDevice_name = String[Device_name_length];
tUser_name = String[User_name_length];
tHost_name = String[Host_name_length];
tLogin_type = (Unkown, Run_level, Boot_time, New_time, Old_time,
tLogin_type = (Unknown, Run_level, Boot_time, New_time, Old_time,
Init_process, Login_process, User_process, Dead_process);
tLogin_types = set of tLogin_type;
tParameter_type = (Include, Exclude);
@ -38,9 +38,9 @@ type
Const
DefaultLoginType : TLogin_Types = [User_Process];
Login_type_names : array [TLogin_type] of string[20] =
('Unkown', 'Run level', 'Boot time','New time', 'Old time',
('Unknown', 'Run level', 'Boot time','New time', 'Old time',
'Init process', 'Login process', 'User process', 'Dead process');
All_Login_types : TLogin_types = [Unkown, Run_level, Boot_time, New_time, Old_time,
All_Login_types : TLogin_types = [Unknown, Run_level, Boot_time, New_time, Old_time,
Init_process, Login_process, User_process, Dead_process];
procedure Read_logged_users;

View File

@ -90,7 +90,7 @@ function WriteModuleData(Module: TModuleHandle; SymbolName: string; var Buffer;
// Simple DLL loading class. The idea is to use it to dynamically load
// a DLL at run-time using the GetProcedure method. Another (better) use is to derive a
// new class for each DLL you are interested in and explicitly call GetProcedure for
// each function in an overriden Load method. You would then add procedure/function
// each function in an overridden Load method. You would then add procedure/function
// aliases to the new class that maps down to the internally managed function pointers.
// This class is built from an idea I read about in Delphi Magazine a while ago but
// I forget who was the originator. If you know, let me know and I'll put it in the credits
@ -384,7 +384,7 @@ end;
procedure TModuleLoader.Error(ErrorCode: Cardinal);
begin
// overriden classes should handle this
// overridden classes should handle this
end;
function TModuleLoader.GetExportedSymbol(const AName: string; var Buffer;

View File

@ -584,7 +584,7 @@ function BluetoothRemoveDevice(var pAddress: BLUETOOTH_ADDRESS): DWORD; stdcall;
// if ( pbtdi->fAuthenticated || pbtdi->fRemembered )
// {
// //
// // TODO: Do something usefull with the device info
// // TODO: Do something useful with the device info
// //
// }
//

View File

@ -66,7 +66,7 @@ uses
type
// TODO STUBS see CmdTree.h (cmdtree.idl)
IFilter = Pointer;
IUnkown = Pointer;
IUnknown = Pointer;
ICommand = Pointer;
{$IFNDEF JWA_INCLUDEMODE}
PPWCHAR = ^PWCHAR;
@ -115,7 +115,7 @@ function LoadIFilterEx(pwcsPath: PWCHAR; dwFlags: DWORD; const riid: REFIID; out
function BindIFilterFromStorage(pStg: IStorage; pUnkOuter: IUnknown; out ppIUnk: IFilter): HRESULT; stdcall;
{$EXTERNALSYM BindIFilterFromStorage}
function BindIFilterFromStream(pStm: IStream; pUnkOuter: IUnkown; out ppIUnk: IFilter): HRESULT; stdcall;
function BindIFilterFromStream(pStm: IStream; pUnkOuter: IUnknown; out ppIUnk: IFilter): HRESULT; stdcall;
{$EXTERNALSYM BindIFilterFromStream}
function LocateCatalogsW(pwszScope: PWCHAR; iBmk: ULONG; pwszMachine: PWCHAR;

View File

@ -81,7 +81,7 @@ begin
end;
begin
{ application default. Can be overriden by the command line options }
{ application default. Can be overridden by the command line options }
fl_set_border_width(-2);
fl_initialize(@argc, argv, 'FormDemo', nil, 0);

View File

@ -1,7 +1,7 @@
Program yesno;
{
A box with two buttons and a string. Simple boxes like this
are very usefull for asking questions
are very useful for asking questions
}
Uses xforms;

View File

@ -227,7 +227,7 @@ type
PgmInputs:PChar; {Command parameters (nil allowed).}
TermQ:PChar; {System queue. (nil allowed).}
Environment:PChar; {Environment to pass (nil allowed).}
InheritOpt:word; {Inherit enviroment from shell/
InheritOpt:word; {Inherit environment from shell/
inherit environment from parent (0/1).}
SessionType:word; {Auto/full screen/window/presentation
manager/full screen Dos/windowed Dos

View File

@ -213,7 +213,7 @@ procedure fpc_dynarray_setlength(var p : pointer;pti : pointer;
int_addref(pointer(newp)+sizeof(tdynarray)+elesize*i,eletype);
{ a declock(ref. count) isn't enough here }
{ it could be that the in MT enviroments }
{ it could be that the in MT environments }
{ in the mean time the refcount was }
{ decremented }

View File

@ -556,7 +556,7 @@ end;
parent directory and so on (Amiga). Please, note that you can decide
to support both '..' and DirectorySeparator as references to the parent
directory at the same time for compatibility reasons - however this
support makes it impossible to use an otherwise possibly valid name
support makes it impossible to use anotherwise possibly valid name
of '..'.
FPC_FEXPAND_DIRSEP_IS_CURDIR - DirectorySeparator at the beginning of

View File

@ -1143,7 +1143,7 @@ end;
Function StringToPPChar(Var S:AnsiString;ReserveEntries:integer):ppchar;
{
Create a PPChar to structure of pchars which are the arguments specified
in the string S. Especially usefull for creating an ArgV for Exec-calls
in the string S. Especially useful for creating an ArgV for Exec-calls
}
begin

View File

@ -334,7 +334,7 @@ Begin
{ restore file position if not working with a device }
if not isdevice then
{ if we didn't modify the buffer, simply restore the BufPos and BufEnd }
{ (the latter becuase it's now probably set to zero because nothing was }
{ (the latter because it's now probably set to zero because nothing was }
{ was read anymore) }
if (reads = 0) then
begin

View File

@ -5176,7 +5176,7 @@ end;
Function StringToPPChar(Var S:String):ppchar;
{
Create a PPChar to structure of pchars which are the arguments specified
in the string S. Especially usefull for creating an ArgV for Exec-calls
in the string S. Especially useful for creating an ArgV for Exec-calls
Note that the string S is destroyed by this call.
}
@ -5188,7 +5188,7 @@ end;
Function StringToPPChar(Var S:AnsiString):ppchar;
{
Create a PPChar to structure of pchars which are the arguments specified
in the string S. Especially usefull for creating an ArgV for Exec-calls
in the string S. Especially useful for creating an ArgV for Exec-calls
}
begin

View File

@ -77,7 +77,7 @@
#ENDIF
This adds the search path for the rtl-units as well as for the needed import-files.
You can use the import files from the rtl/netware directory, they are automaticly
You can use the import files from the rtl/netware directory, they are automatically
installed. If you want to use import files from novell, be aware that you have to
convert the files to unix format (i.e. with dos2unix).
@ -138,7 +138,7 @@
searching import files via the specified library path (-Fl). If you plan to use
import files from novell be aware that they have to be converted from CR/LF to
LF only. The script 'convertimp' in rtl/netware/nwimp will do that.
If a module name is specified in an import, the module is automaticly
If a module name is specified in an import, the module is automatically
declared as autoload by FreePascal.
I.e. the following declaration needs nlmlib.imp and sets nlmlib.nlm as autoload:

View File

@ -18,7 +18,7 @@
{$Copyright (c) 2002 the FreePascal development team}
{ using crt automaticly calls _SetAutoScreenDestructionMode (TRUE);
{ using crt automatically calls _SetAutoScreenDestructionMode (TRUE);
so no "Press any key to close screeen" will be shown by netware }
uses crt;

Some files were not shown because too many files have changed in this diff Show More