errorpt.msg 199 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240
  1. #
  2. # This file is part of the Free Pascal Compiler
  3. # Copyright (c) 1999-2009 by the Free Pascal Development team
  4. #
  5. # Portuguese (DOS CP850) language file for Free Pascal Compiler
  6. # Contributed by Marcelo B Paula, based on errore.msg SVN Rev.15527
  7. # Former translator: Ari Ricardo Ody <ary.odi at japinfo.com.br>
  8. #
  9. # See the file COPYING.FPC, included in this distribution,
  10. # for details about the copyright.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. #
  16. #
  17. # The constants are build in the following order:
  18. # <part>_<type>_<txtidentifier>
  19. #
  20. # <part> is the part of the compiler the message is used
  21. # asmr_ assembler parsing
  22. # asmw_ assembler writing/binary writers
  23. # unit_ unit handling
  24. # scan_ scanner
  25. # parser_ parser
  26. # type_ type checking
  27. # general_ general info
  28. # exec_ calls to assembler, external linker, binder
  29. # link_ internal linker
  30. #
  31. # <type> the type of the message it should normally used for
  32. # f_ fatal error
  33. # e_ error
  34. # w_ warning
  35. # n_ note
  36. # h_ hint
  37. # i_ info
  38. # l_ add linenumber
  39. # u_ used
  40. # t_ tried
  41. # c_ conditional
  42. # d_ debug message
  43. # x_ executable informations
  44. # o_ normal (e.g., "press enter to continue")
  45. #
  46. #
  47. # General
  48. #
  49. # 01023 is the last used one
  50. #
  51. # BeginOfTeX
  52. % \section{General compiler messages}
  53. % This section gives the compiler messages which are not fatal, but which
  54. % display useful information. The number of such messages can be
  55. % controlled with the various verbosity level \var{-v} switches.
  56. % \begin{description}
  57. general_t_compilername=01000_T_Compilador: $1
  58. % When the \var{-vt} switch is used, this line tells you what compiler
  59. % is used.
  60. general_d_sourceos=01001_D_SO Compilador: $1
  61. % When the \var{-vd} switch is used, this line tells you what the source
  62. % operating system is.
  63. general_i_targetos=01002_I_SO Alvo: $1
  64. % When the \var{-vd} switch is used, this line tells you what the target
  65. % operating system is.
  66. general_t_exepath=01003_T_Usando caminho execut vel: $1
  67. % When the \var{-vt} switch is used, this line tells you where the compiler
  68. % looks for its binaries.
  69. general_t_unitpath=01004_T_Usando caminho unidade: $1
  70. % When the \var{-vt} switch is used, this line tells you where the compiler
  71. % looks for compiled units. You can set this path with the \var{-Fu} option.
  72. general_t_includepath=01005_T_Usando caminho inclusäes: $1
  73. % When the \var{-vt} switch is used, this line tells you where the compiler
  74. % looks for its include files (files used in \var{\{\$I xxx\}} statements).
  75. % You can set this path with the \var{-Fi} option.
  76. general_t_librarypath=01006_T_Usando caminho biblioteca: $1
  77. % When the \var{-vt} switch is used, this line tells you where the compiler
  78. % looks for the libraries. You can set this path with the \var{-Fl} option.
  79. general_t_objectpath=01007_T_Usando caminho objeto: $1
  80. % When the \var{-vt} switch is used, this line tells you where the compiler
  81. % looks for object files you link in (files used in \var{\{\$L xxx\}} statements).
  82. % You can set this path with the \var{-Fo} option.
  83. general_i_abslines_compiled=01008_I_$1 linhas compiladas, $2 seg $3
  84. % When the \var{-vi} switch is used, the compiler reports the number
  85. % of lines compiled, and the time it took to compile them (real time,
  86. % not program time).
  87. general_f_no_memory_left=01009_F_Mem¢ria insuficiente
  88. % The compiler doesn't have enough memory to compile your program. There are
  89. % several remedies for this:
  90. % \begin{itemize}
  91. % \item If you're using the build option of the compiler, try compiling the
  92. % different units manually.
  93. % \item If you're compiling a huge program, split it up into units, and compile
  94. % these separately.
  95. % \item If the previous two don't work, recompile the compiler with a bigger
  96. % heap. (You can use the \var{-Ch} option for this, \seeo{Ch}.)
  97. % \end{itemize}
  98. general_i_writingresourcefile=01010_I_Gravando arquivo Tabela Recursos 'String': $1
  99. % This message is shown when the compiler writes the Resource String Table
  100. % file containing all the resource strings for a program.
  101. general_e_errorwritingresourcefile=01011_E_Gravando arquivo Tabela Recursos 'String': $1
  102. % This message is shown when the compiler encounters an error when writing
  103. % the Resource String Table file.
  104. general_i_fatal=01012_I_Fatal:
  105. % Prefix for Fatal Errors.
  106. general_i_error=01013_I_Erro:
  107. % Prefix for Errors.
  108. general_i_warning=01014_I_Aviso:
  109. % Prefix for Warnings.
  110. general_i_note=01015_I_Nota:
  111. % Prefix for Notes.
  112. general_i_hint=01016_I_Dica:
  113. % Prefix for Hints.
  114. general_e_path_does_not_exist=01017_E_Caminho "$1" nÆo existe
  115. % The specified path does not exist.
  116. general_f_compilation_aborted=01018_F_Compila‡Æo abortada
  117. % Compilation was aborted.
  118. general_text_bytes_code=01019_bytes (c¢digo gerado)
  119. % The size of the generated executable code, in bytes.
  120. general_text_bytes_data=01020_bytes (dados gerados)
  121. % The size of the generated program data, in bytes.
  122. general_i_number_of_warnings=01021_I_$1 aviso(s) emitido(s)
  123. % Total number of warnings issued during compilation.
  124. general_i_number_of_hints=01022_I_$1 dica(s) emitida(s)
  125. % Total number of hints issued during compilation.
  126. general_i_number_of_notes=01023_I_$1 nota(s) emitida(s)
  127. % Total number of notes issued during compilation.
  128. % \end{description}
  129. #
  130. # Scanner
  131. #
  132. # 02087 is the last used one
  133. #
  134. % \section{Scanner messages.}
  135. % This section lists the messages that the scanner emits. The scanner takes
  136. % care of the lexical structure of the pascal file, i.e. it tries to find
  137. % reserved words, strings, etc. It also takes care of directives and
  138. % conditional compilation handling.
  139. % \begin{description}
  140. scan_f_end_of_file=02000_F_Fim de arquivo inesperado
  141. % This typically happens in one of the following cases:
  142. % \begin{itemize}
  143. % \item The source file ends before the final \var{end.} statement. This
  144. % happens mostly when the \var{begin} and \var{end} statements aren't
  145. % balanced;
  146. % \item An include file ends in the middle of a statement.
  147. % \item A comment was not closed.
  148. % \end{itemize}
  149. scan_f_string_exceeds_line=02001_F_'String' excendo linha
  150. % There is a missing closing ' in a string, so it occupies
  151. % multiple lines.
  152. scan_f_illegal_char=02002_F_caractere ilegal "$1" ($2)
  153. % An illegal character was encountered in the input file.
  154. scan_f_syn_expected=02003_F_Erro sintaxe, "$1" esperado, mas "$2" encontrado
  155. % This indicates that the compiler expected a different token than
  156. % the one you typed. It can occur almost anywhere it is possible to make an error
  157. % against the Pascal language.
  158. scan_t_start_include_file=02004_TL_Iniciando leitura arquivo de inclusäes $1
  159. % When you provide the \var{-vt} switch, the compiler tells you
  160. % when it starts reading an included file.
  161. scan_w_comment_level=02005_W_N¡vel coment rio $1 encontrado
  162. % When the \var{-vw} switch is used, then the compiler warns you if
  163. % it finds nested comments. Nested comments are not allowed in Turbo Pascal
  164. % and Delphi, and can be a possible source of errors.
  165. scan_n_ignored_switch=02008_N_Ignorar chave compilador "$1"
  166. % With \var{-vn} on, the compiler warns if it ignores a switch.
  167. scan_w_illegal_switch=02009_W_Chave ilegal compilador "$1"
  168. % You included a compiler switch (i.e. \var{\{\$... \}}) which the compiler
  169. % does not recognise.
  170. scan_w_switch_is_global=02010_W_Chave global compilador fora de lugar
  171. % The compiler switch is misplaced, and should be located at
  172. % the start of the unit or program.
  173. scan_e_illegal_char_const=02011_E_Constante caractere ilegal
  174. % This happens when you specify a character with its ASCII code, as in
  175. % \var{\#96}, but the number is either illegal, or out of range.
  176. scan_f_cannot_open_input=02012_F_Imposs¡vel abrir arquivo "$1"
  177. % \fpc cannot find the program or unit source file you specified on the
  178. % command line.
  179. scan_f_cannot_open_includefile=02013_F_Imposs¡vel abrir arquivo de inclusäes "$1"
  180. % \fpc cannot find the source file you specified in a \var{\{\$include ..\}}
  181. % statement.
  182. scan_e_illegal_pack_records=02015_E_Especificador alinhamento registro ilegal "$1"
  183. % You are specifying \var{\{\$PACKRECORDS n\} } or \var{\{\$ALIGN n\} }
  184. % with an illegal value for \var{n}. For \$PACKRECORDS valid alignments are 1, 2, 4, 8, 16, 32, C,
  185. % NORMAL, DEFAULT, and for \$ALIGN valid alignments are 1, 2, 4, 8, 16, 32, ON,
  186. % OFF. Under mode MacPas \$ALIGN also supports MAC68K, POWER and RESET.
  187. scan_e_illegal_pack_enum=02016_E_Especificador tamanho-m¡nimo enumera‡Æo ilegal "$1"
  188. % You are specifying the \var{\{\$PACKENUM n\}} with an illegal value for
  189. % \var{n}. Only 1,2,4, NORMAL or DEFAULT is valid here.
  190. scan_e_endif_expected=02017_E_$ENDIF esperado para $1 $2 definido em $3 linha $4
  191. % Your conditional compilation statements are unbalanced.
  192. scan_e_preproc_syntax_error=02018_E_Erro sintaxe enquanto analisando uma expressÆo compila‡Æo condicional
  193. % There is an error in the expression following the \var{\{\$if ..\}}, \var{\{\$ifc \}}
  194. % or \var{\{\$setc \}} compiler directives.
  195. scan_e_error_in_preproc_expr=02019_E_Avaliando uma expressÆo compila‡Æo condicional
  196. % There is an error in the expression following the \var{\{\$if ..\}}, $ifc or $setc compiler
  197. % directives.
  198. scan_w_macro_cut_after_255_chars=02020_W_Conte£do macro limitada ao tamanho de 255 caracteres
  199. % The contents of macros cannot be longer than 255 characters.
  200. scan_e_endif_without_if=02021_E_ENDIF sem IF(N)DEF
  201. % Your \var{\{\$IFDEF ..\}} and {\{\$ENDIF\}} statements aren't balanced.
  202. scan_f_user_defined=02022_F_Definido pelo usu rio: $1
  203. % A user defined fatal error occurred. See also the \progref.
  204. scan_e_user_defined=02023_E_Definido pelo usu rio: $1
  205. % A user defined error occurred. See also the \progref.
  206. scan_w_user_defined=02024_W_Definido pelo usu rio: $1
  207. % A user defined warning occurred. See also the \progref.
  208. scan_n_user_defined=02025_N_Definido pelo usu rio: $1
  209. % A user defined note was encountered. See also the \progref.
  210. scan_h_user_defined=02026_H_Definido pelo usu rio: $1
  211. % A user defined hint was encountered. See also the \progref.
  212. scan_i_user_defined=02027_I_Definido pelo usu rio: $1
  213. % User defined information was encountered. See also the \progref.
  214. scan_e_keyword_cant_be_a_macro=02028_E_Palavra-chave redefinida como macro nÆo tem efeito
  215. % You cannot redefine keywords with macros.
  216. scan_f_macro_buffer_overflow=02029_F_Transbordamento "buffer" macro durante leitura ou expansÆo de uma macro
  217. % Your macro or its result was too long for the compiler.
  218. scan_w_macro_too_deep=02030_W_ExpansÆo de macros excede profundidade de 16.
  219. % When expanding a macro, macros have been nested to a level of 16.
  220. % The compiler will expand no further, since this may be a sign that
  221. % recursion is used.
  222. scan_w_wrong_styled_switch=02031_W_chaves compilador nÆo sÆo suportadas no estilo de coment rio //
  223. % Compiler switches should be in normal Pascal style comments.
  224. scan_d_handling_switch=02032_DL_Chave manipula‡Æo "$1"
  225. % When you set debugging info on (\var{-vd}) the compiler tells you when it
  226. % is evaluating conditional compile statements.
  227. scan_c_endif_found=02033_CL_ENDIF $1 encontrado
  228. % When you turn on conditional messages (\var{-vc}), the compiler tells you
  229. % where it encounters conditional statements.
  230. scan_c_ifdef_found=02034_CL_IFDEF $1 encontrado, $2
  231. % When you turn on conditional messages (\var{-vc}), the compiler tells you
  232. % where it encounters conditional statements.
  233. scan_c_ifopt_found=02035_CL_IFOPT $1 encontrado, $2
  234. % When you turn on conditional messages (\var{-vc}), the compiler tells you
  235. % where it encounters conditional statements.
  236. scan_c_if_found=02036_CL_IF $1 encontrado, $2
  237. % When you turn on conditional messages (\var{-vc}), the compiler tells you
  238. % where it encounters conditional statements.
  239. scan_c_ifndef_found=02037_CL_IFNDEF $1 encontrado, $2
  240. % When you turn on conditional messages (\var{-vc}), the compiler tells you
  241. % where it encounters conditional statements.
  242. scan_c_else_found=02038_CL_ELSE $1 encontrado, $2
  243. % When you turn on conditional messages (\var{-vc}), the compiler tells you
  244. % where it encounters conditional statements.
  245. scan_c_skipping_until=02039_CL_Pulando at‚...
  246. % When you turn on conditional messages (\var{-vc}), the compiler tells you
  247. % where it encounters conditional statements, and whether it is skipping or
  248. % compiling parts.
  249. scan_i_press_enter=02040_I_Tecle <return> para continuar
  250. % When the \var{-vi} switch is used, the compiler stops compilation
  251. % and waits for the \var{Enter} key to be pressed when it encounters
  252. % a \var{\{\$STOP\}} directive.
  253. scan_w_unsupported_switch=02041_W_Chave nÆo suportada "$1"
  254. % When warnings are turned on (\var{-vw}), the compiler warns you about
  255. % unsupported switches. This means that the switch is used in Delphi or
  256. % Turbo Pascal, but not in \fpc.
  257. scan_w_illegal_directive=02042_W_Diretiva compilador ilegal "$1"
  258. % When warnings are turned on (\var{-vw}), the compiler warns you about
  259. % unrecognised switches. For a list of recognised switches, see the \progref.
  260. scan_t_back_in=02043_TL_De volta $1
  261. % When you use the \var{-vt} switch, the compiler tells you when it has finished
  262. % reading an include file.
  263. scan_w_unsupported_app_type=02044_W_Tipo aplica‡Æo nÆo suportada: "$1"
  264. % You get this warning if you specify an unknown application type
  265. % with the directive \var{\{\$APPTYPE\}}.
  266. scan_w_app_type_not_support=02045_W_APPTYPE nÆo ‚ suportado pelo SO alvo
  267. % The \var{\{\$APPTYPE\}} directive is supported by certain operating systems only.
  268. scan_w_description_not_support=02046_W_DESCRIPTION nÆo ‚ suportado pelo SO alvo
  269. % The \var{\{\$DESCRIPTION\}} directive is not supported on this target OS.
  270. scan_n_version_not_support=02047_N_VERSION nÆo ‚ suportado pelo SO alvo
  271. % The \var{\{\$VERSION\}} directive is not supported on this target OS.
  272. scan_n_only_exe_version=02048_N_VERSION apenas para EXEs ou DLLs
  273. % The \var{\{\$VERSION\}} directive is only used for executable or DLL sources.
  274. scan_w_wrong_version_ignored=02049_W_Formato incorreto para a diretiva VERSION "$1"
  275. % The \var{\{\$VERSION\}} directive format is majorversion.minorversion
  276. % where majorversion and minorversion are words.
  277. scan_e_illegal_asmmode_specifier=02050_E_Estilo especificado assembler ilegal "$1"
  278. % When you specify an assembler mode with the \var{\{\$ASMMODE xxx\}} directive,
  279. % the compiler didn't recognize the mode you specified.
  280. scan_w_no_asm_reader_switch_inside_asm=02051_W_ASM reader switch is not possible inside asm statement, "$1" will be effective only for next
  281. % It is not possible to switch from one assembler reader to another
  282. % inside an assembler block. The new reader will be used for next
  283. % assembler statements only.
  284. scan_e_wrong_switch_toggle=02052_E_Chave alternƒncia incorreta, usar ON/OFF ou +/-
  285. % You need to use ON or OFF or a + or - to toggle the switch.
  286. scan_e_resourcefiles_not_supported=02053_E_Arquivo recursos nÆo suportado para este alvo
  287. % The target you are compiling for doesn't support resource files.
  288. scan_w_include_env_not_found=02054_W_Vari vel inclusÆo ambiente "$1" nÆo encontrado no ambiente
  289. % The included environment variable can't be found in the environment; it will
  290. % be replaced by an empty string instead.
  291. scan_e_invalid_maxfpureg_value=02055_E_Valor ilegal para o registrador limite UPF
  292. % Valid values for this directive are 0..8 and NORMAL/DEFAULT.
  293. scan_w_only_one_resourcefile_supported=02056_W_Apenas um arquivo de recursos ‚ suportado para este alvo
  294. % The target you are compiling for supports only one resource file.
  295. % The first resource file found is used, the others are discarded.
  296. scan_w_macro_support_turned_off=02057_W_Suporte Macro foi desativado
  297. % A macro declaration has been found, but macro support is currently off,
  298. % so the declaration will be ignored. To turn macro support on compile with
  299. % -Sm on the command line or add \{\$MACRO ON\} in the source.
  300. scan_e_invalid_interface_type=02058_E_Tipo ilegal de interface especificado. SÆo v lidos COM, CORBA ou DEFAULT.
  301. % The interface type that was specified is not supported.
  302. scan_w_appid_not_support=02059_W_APPID ‚ suportado apenas para PalmOS
  303. % The \var{\{\$APPID\}} directive is only supported for the PalmOS target.
  304. scan_w_appname_not_support=02060_W_APPNAME ‚ suportado apenas para PalmOS
  305. % The \var{\{\$APPNAME\}} directive is only supported for the PalmOS target.
  306. scan_e_string_exceeds_255_chars=02061_E_Constante 'String' nÆo pode ser maior que 255 caracteres
  307. % A single string constant can contain at most 255 chars. Try splitting up the
  308. % string into multiple smaller parts and concatenate them with a + operator.
  309. scan_f_include_deep_ten=02062_F_Incluindo arquivos inclusÆo excede um n¡vel de 16.
  310. % When including include files the files have been nested to a level of 16.
  311. % The compiler will expand no further, since this may be a sign that
  312. % recursion is used.
  313. scan_e_too_many_push=02063_F_Muitos n¡veis de PUSH. Max. 20
  314. % A maximum of 20 levels is allowed. This error occurs only in mode MacPas.
  315. scan_e_too_many_pop=02064_E_Um POP sem um PUSH anterior
  316. % This error occurs only in mode MacPas.
  317. scan_e_error_macro_lacks_value=02065_E_Macro ou vari vel tempo compila‡Æo "$1" sem nenhum valor
  318. % Thus the conditional compile time expression cannot be evaluated.
  319. scan_e_wrong_switch_toggle_default=02066_E_Chave alternƒncia incorreta, usar ON/OFF/DEFAULT ou +/-/*
  320. % You need to use ON or OFF or DEFAULT or a + or - or * to toggle the switch.
  321. scan_e_mode_switch_not_allowed=02067_E_Chave modo "$1" nÆo permitida aqui
  322. % A mode switch has already been encountered, or, in the case of option -Mmacpas,
  323. % a mode switch occurs after UNIT.
  324. scan_e_error_macro_undefined=02068_E_Vari vel tempo compila‡Æo ou macro "$1" nÆo definida.
  325. % Thus the conditional compile time expression cannot be evaluated. Only in mode MacPas.
  326. scan_e_utf8_bigger_than_65535=02069_E_C¢digo UTF-8 maior que 65535 encontrado
  327. % \fpc handles UTF-8 strings internally as widestrings, i.e. the char codes are limited to 65535.
  328. scan_e_utf8_malformed=02070_E_'String' UTF-8 mal-formada
  329. % The given string isn't a valid UTF-8 string.
  330. scan_c_switching_to_utf8=02071_C_Assinatura UTF-8 encontrada, usando codifica‡Æo UTF-8
  331. % The compiler found a UTF-8 encoding signature (\$ef, \$bb, \$bf) at the beginning of a file,
  332. % so it interprets it as a UTF-8 file.
  333. scan_e_compile_time_typeerror=02072_E_ExpressÆo tempo compila‡Æo: Procurado $1 mas obtido $2 na $3
  334. % The type-check of a compile time expression failed.
  335. scan_n_app_type_not_support=02073_N_APPTYPE nÆo ‚ suportado pelo SO alvo
  336. % The \var{\{\$APPTYPE\}} directive is supported by certain operating systems only.
  337. scan_e_illegal_optimization_specifier=02074_E_Otimiza‡Æo especificada ilegal "$1"
  338. % You specified an optimization with the \var{\{\$OPTIMIZATION xxx\}} directive,
  339. % and the compiler didn't recognize the optimization you specified.
  340. scan_w_setpeflags_not_support=02075_W_SETPEFLAGS nÆo ‚ suportado pelo SO alvo
  341. % The \var{\{\$SETPEFLAGS\}} directive is not supported by the target OS.
  342. scan_w_imagebase_not_support=02076_W_IMAGEBASE nÆo ‚ suportado pelo SO alvo
  343. % The \var{\{\$IMAGEBASE\}} directive is not supported by the target OS.
  344. scan_w_minstacksize_not_support=02077_W_MINSTACKSIZE nÆo ‚ suportado pelo SO alvo
  345. % The \var{\{\$MINSTACKSIZE\}} directive is not supported by the target OS.
  346. scan_w_maxstacksize_not_support=02078_W_MAXSTACKSIZE nÆo ‚ suportado pelo SO alvo
  347. % The \var{\{\$MAXSTACKSIZE\}} directive is not supported by the target OS.
  348. scanner_e_illegal_warn_state=02079_E_Estado "$1" ilegal para a diretiva $WARN
  349. % Only ON and OFF can be used as state with a \var{\{\$WARN\}} compiler directive.
  350. scan_e_only_packset=02080_E_Valor ilegal para conjunto empacotamento
  351. % Only 0, 1, 2, 4, 8, DEFAULT and NORMAL are allowed as packset parameters.
  352. scan_w_pic_ignored=02081_W_Diretiva PIC ou chave ignorada
  353. % Several targets, such as \windows, do not support nor need PIC,
  354. % so the PIC directive and switch are ignored.
  355. scan_w_unsupported_switch_by_target=02082_W_A chave "$1" nÆo ‚ suportada pelo alvo selecionado atualmente
  356. % Some compiler switches like \$E are not supported by all targets.
  357. scan_w_frameworks_darwin_only=02084_W_Op‡äes relacionadas a "Framework" sÆo apenas suportadas para Darwin/Mac OS X
  358. % Frameworks are not a known concept, or at least not supported by FPC,
  359. % on operating systems other than Darwin/Mac OS X.
  360. scan_e_illegal_minfpconstprec=02085_E_Constante precisÆo m¡nima ponto flutuante ilegal "$1"
  361. % Valid minimal precisions for floating point constants are default, 32 and 64,
  362. % which mean respectively minimal (usually 32 bit), 32 bit and 64 bit precision.
  363. scan_w_multiple_main_name_overrides=02086_W_Sobrescrevendo nome do procedimento "main" m£ltiplas vezes, foi previamente ajustado para "$1"
  364. % The name for the main entry procedure is specified more than once. Only the last
  365. % name will be used.
  366. scanner_w_illegal_warn_identifier=02087_W_Identificador "$1" ilegal para a diretiva $WARN
  367. % Identifier is not known by a \var{\{\$WARN\}} compiler directive.
  368. % \end{description}
  369. #
  370. # Parser
  371. #
  372. # 03295 is the last used one
  373. #
  374. % \section{Parser messages}
  375. % This section lists all parser messages. The parser takes care of the
  376. % semantics of you language, i.e. it determines if your Pascal constructs
  377. % are correct.
  378. % \begin{description}
  379. parser_e_syntax_error=03000_E_Analizador - Erro sintaxe
  380. % An error against the Turbo Pascal language was encountered. This typically
  381. % happens when an illegal character is found in the source file.
  382. parser_e_dont_nest_interrupt=03004_E_Procedimento INTERRUPT nÆo pode ser aninhado
  383. % An \var{INTERRUPT} procedure must be global.
  384. parser_w_proc_directive_ignored=03005_W_Tipo procedimento "$1" ignorado
  385. % The specified procedure directive is ignored by FPC programs.
  386. parser_e_no_overload_for_all_procs=03006_E_Nem todas as declara‡äes de "$1" estÆo declaradas com OVERLOAD
  387. % When you want to use overloading using the \var{OVERLOAD} directive, then
  388. % all declarations need to have \var{OVERLOAD} specified.
  389. parser_e_export_name_double=03008_E_Nome fun‡Æo exportada duplicada "$1"
  390. % Exported function names inside a specific DLL must all be different.
  391. parser_e_export_ordinal_double=03009_E_Öndice fun‡Æo exportada duplicada $1
  392. % Exported function indexes inside a specific DLL must all be different.
  393. parser_e_export_invalid_index=03010_E_¡ndice inv lido para fun‡Æo exportada
  394. % DLL function index must be in the range \var{1..\$FFFF}.
  395. parser_w_parser_reloc_no_debug=03011_W_Informa‡Æo depura‡Æo DLL reloc vel ou execut vel $1 nÆo funciona, desabilitado.
  396. % It is currently not possible to include debug information in a relocatable DLL.
  397. parser_w_parser_win32_debug_needs_WN=03012_W_Para permitir depura‡Æo para c¢digo win32 vocˆ necessita desabilitar reloca‡Æo com op‡Æo -WN
  398. % Stabs debug info is wrong for relocatable DLL or EXES. Use -WN
  399. % if you want to debug win32 executables.
  400. parser_e_constructorname_must_be_init=03013_E_Nome Construtor deve ser INIT
  401. % You are declaring an object constructor with a name which is not \var{init}, and the
  402. % \var{-Ss} switch is in effect. See the switch \seeo{Ss}.
  403. parser_e_destructorname_must_be_done=03014_E_Nome Destruidor deve ser DONE
  404. % You are declaring an object destructor with a name which is not \var{done}, and the
  405. % \var{-Ss} switch is in effect. See the switch \seeo{Ss}.
  406. parser_e_proc_inline_not_supported=03016_E_Tipo procedimento INLINE nÆo suportado
  407. % You tried to compile a program with C++ style inlining, and forgot to
  408. % specify the \var{-Si} option (\seeo{Si}). The compiler doesn't support C++
  409. % styled inlining by default.
  410. parser_w_constructor_should_be_public=03018_W_Construtor deve ser p£blico
  411. % Constructors must be in the 'public' part of an object (class) declaration.
  412. parser_w_destructor_should_be_public=03019_W_Destruidor deve ser p£blico
  413. % Destructors must be in the 'public' part of an object (class) declaration.
  414. parser_n_only_one_destructor=03020_N_Classe deve ter apenas um destruidor
  415. % You can declare only one destructor for a class.
  416. parser_e_no_local_objects=03021_E_Defini‡äes classe local nÆo permitidas
  417. % Classes must be defined globally. They cannot be defined inside a
  418. % procedure or function.
  419. parser_f_no_anonym_objects=03022_F_Defini‡äes classe an“nima nÆo permitidas
  420. % An invalid object (class) declaration was encountered, i.e. an
  421. % object or class without methods that isn't derived from another object or
  422. % class. For example:
  423. % \begin{verbatim}
  424. % Type o = object
  425. % a : longint;
  426. % end;
  427. % \end{verbatim}
  428. % will trigger this error.
  429. parser_n_object_has_no_vmt=03023_N_O objeto "$1" nÆo tem VMT
  430. % This is a note indicating that the declared object has no
  431. % virtual method table.
  432. parser_e_illegal_parameter_list=03024_E_Lista parƒmetros ilegal
  433. % You are calling a function with parameters that are of a different type than
  434. % the declared parameters of the function.
  435. parser_e_wrong_parameter_size=03026_E_N£mero incorreto de parƒmetros especificado para chamada de "$1"
  436. % There is an error in the parameter list of the function or procedure --
  437. % the number of parameters is not correct.
  438. parser_e_overloaded_no_procedure=03027_E_Identificador sobrecarregado "$1" nÆo ‚ uma fun‡Æo
  439. % The compiler encountered a symbol with the same name as an overloaded
  440. % function, but it is not a function it can overload.
  441. parser_e_overloaded_have_same_parameters=03028_E_Fun‡äes sobrecarregadas tˆm a mesma lista de parƒmetros
  442. % You're declaring overloaded functions, but with the same parameter list.
  443. % Overloaded function must have at least 1 different parameter in their
  444. % declaration.
  445. parser_e_header_dont_match_forward=03029_E_Cabe‡alho da fun‡Æo nÆo coincide com a declara‡Æo anterior de "$1"
  446. % You declared a function with the same parameters but
  447. % different result type or function modifiers.
  448. parser_e_header_different_var_names=03030_E_Cabe‡alho fun‡Æo "$1" nÆo coincide com posterior : nome var modifica $2 => $3
  449. % You declared the function in the \var{interface} part, or with the
  450. % \var{forward} directive, but defined it with a different parameter list.
  451. parser_n_duplicate_enum=03031_N_Valores tipo enumera‡Æo tˆm que ser ascendentes
  452. % \fpc allows enumeration constructions as in C. Examine the following
  453. % two declarations:
  454. % \begin{verbatim}
  455. % type a = (A_A,A_B,A_E:=6,A_UAS:=200);
  456. % type a = (A_A,A_B,A_E:=6,A_UAS:=4);
  457. % \end{verbatim}
  458. % The second declaration would produce an error. \var{A\_UAS} needs to have a
  459. % value higher than \var{A\_E}, i.e. at least 7.
  460. parser_e_no_with_for_variable_in_other_segments=03033_E_With nÆo pode ser usado para vari veis em segmentos diferentes
  461. % With stores a variable locally on the stack,
  462. % but this is not possible if the variable belongs to another segment.
  463. parser_e_too_much_lexlevel=03034_E_Aninhamento fun‡Æo > 31
  464. % You can nest function definitions only 31 levels deep.
  465. parser_e_range_check_error=03035_E_Erro verifica‡Æo de faixa enquanto avaliando constantes
  466. % The constants are out of their allowed range.
  467. parser_w_range_check_error=03036_W_Erro verifica‡Æo de faixa enquanto avaliando constantes
  468. % The constants are out of their allowed range.
  469. parser_e_double_caselabel=03037_E_R¢tulo duplicado declara‡Æo "case"
  470. % You are specifying the same label 2 times in a \var{case} statement.
  471. parser_e_case_lower_less_than_upper_bound=03038_E_Limite superior da faixa declara‡Æo "case" ‚ menor que o limite inferior
  472. % The upper bound of a \var{case} label is less than the lower bound and this
  473. % is useless.
  474. parser_e_type_const_not_possible=03039_E_Constantes tipadas de classes ou interfaces nÆo sÆo permitidas
  475. % You cannot declare a constant of type class or object.
  476. parser_e_no_overloaded_procvars=03040_E_Vari veis fun‡Æo de fun‡äes sobrecarregadas nÆo sÆo permitidas
  477. % You are trying to assign an overloaded function to a procedural variable.
  478. % This is not allowed.
  479. parser_e_invalid_string_size=03041_E_Comprimento 'String' deve ter valor entre 1 … 255
  480. % The length of a shortstring in Pascal is limited to 255 characters. You are
  481. % trying to declare a string with length less than 1 or greater than 255.
  482. parser_w_use_extended_syntax_for_objects=03042_W_Use sintaxe extendida de NEW e DISPOSE para instanciar objetos
  483. % If you have a pointer \var{a} to an object type, then the statement
  484. % \var{new(a)} will not initialize the object (i.e. the constructor isn't
  485. % called), although space will be allocated. You should issue the
  486. % \var{new(a,init)} statement. This will allocate space, and call the
  487. % constructor of the object.
  488. parser_w_no_new_dispose_on_void_pointers=03043_W_Uso de NEW ou DISPOSE para ponteiros nÆo tipados nÆo tem sentido
  489. parser_e_no_new_dispose_on_void_pointers=03044_E_Uso de NEW ou DISPOSE nÆo ‚ poss¡vel para ponteiros nÆo tipados
  490. % You cannot use \var{new(p)} or \var{dispose(p)} if \var{p} is an untyped pointer
  491. % because no size is associated to an untyped pointer.
  492. % It is accepted for compatibility in \var{TP} and \var{DELPHI} modes, but the
  493. % compiler will still warn you if it finds such a construct.
  494. parser_e_class_id_expected=03045_E_Identificador de classe esperado
  495. % This happens when the compiler scans a procedure declaration that contains
  496. % a dot, i.e., an object or class method, but the type in front of the dot is not
  497. % a known type.
  498. parser_e_no_type_not_allowed_here=03046_E_Identificador tipo nÆo permitido aqui
  499. % You cannot use a type inside an expression.
  500. parser_e_methode_id_expected=03047_E_Identificador de m‚todo esperado
  501. % This identifier is not a method.
  502. % This happens when the compiler scans a procedure declaration that contains
  503. % a dot, i.e., an object or class method, but the procedure name is not a
  504. % procedure of this type.
  505. parser_e_header_dont_match_any_member=03048_E_Cabe‡alho fun‡Æo nÆo coincide com qualquer m‚todo desta classe "$1"
  506. % This identifier is not a method.
  507. % This happens when the compiler scans a procedure declaration that contains
  508. % a dot, i.e., an object or class method, but the procedure name is not a
  509. % procedure of this type.
  510. parser_d_procedure_start=03049_DL_Procedimento/fun‡Æo $1
  511. % When using the \var{-vd} switch, the compiler tells you when it starts
  512. % processing a procedure or function implementation.
  513. parser_e_error_in_real=03050_E_Constante ponto flutuante ilegal
  514. % The compiler expects a floating point expression, and gets something else.
  515. parser_e_fail_only_in_constructor=03051_E_FAIL s¢ pode ser usado em contrutores
  516. % You are using the \var{fail} keyword outside a constructor method.
  517. parser_e_no_paras_for_destructor=03052_E_Destruidores nÆo podem ter parƒmetros
  518. % You are declaring a destructor with a parameter list. Destructor methods
  519. % cannot have parameters.
  520. parser_e_only_class_members_via_class_ref=03053_E_Apenas m‚todos, propriedades e vari veis de classe podem ser referenciadas por referˆncias classe
  521. % This error occurs in a situation like the following:
  522. % \begin{verbatim}
  523. % Type :
  524. % Tclass = Class of Tobject;
  525. %
  526. % Var C : TClass;
  527. %
  528. % begin
  529. % ...
  530. % C.free
  531. % \end{verbatim}
  532. % \var{Free} is not a class method and hence cannot be called with a class
  533. % reference.
  534. parser_e_only_class_members=03054_E_Apenas m‚todos, propriedades e vari veis de classe podem ser acessadas em m‚todos de classe
  535. % This is related to the previous error. You cannot call a method of an object
  536. % from inside a class method. The following code would produce this error:
  537. % \begin{verbatim}
  538. % class procedure tobject.x;
  539. %
  540. % begin
  541. % free
  542. % \end{verbatim}
  543. % Because free is a normal method of a class it cannot be called from a class
  544. % method.
  545. parser_e_case_mismatch=03055_E_Constante e tipo CASE incompat¡veis
  546. % One of the labels is not of the same type as the case variable.
  547. parser_e_illegal_symbol_exported=03056_E_S¡mbolos s¢ podem ser exportados em uma biblioteca
  548. % You can only export procedures and functions when you write a library. You
  549. % cannot export variables or constants.
  550. parser_w_should_use_override=03057_W_Um m‚todo herdado ‚ ocultado por "$1"
  551. % A method that is declared \var{virtual} in a parent class, should be
  552. % overridden in the descendant class with the \var{override} directive. If you
  553. % don't specify the \var{override} directive, you will hide the parent method;
  554. % you will not override it.
  555. parser_e_nothing_to_be_overridden=03058_E_NÆo h  m‚todo na classe ancestral para ser sobreposto: "$1"
  556. % You are trying to \var{override} a virtual method of a parent class that does
  557. % not exist.
  558. parser_e_no_procedure_to_access_property=03059_E_Nenhum membro foi provido para acessar a propriedade
  559. % You specified no \var{read} directive for a property.
  560. parser_w_stored_not_implemented=03060_W_Diretiva propriedade armazenamento ainda nÆo foi implementada
  561. % This message is no longer used, as the \var{stored} directive has been implemented.
  562. parser_e_ill_property_access_sym=03061_E_S¡mbolo ilegal para acesso propriedade
  563. % There is an error in the \var{read} or \var{write} directives for an array
  564. % property. When you declare an array property, you can only access it with
  565. % procedures and functions. The following code would cause such an error.
  566. % \begin{verbatim}
  567. % tmyobject = class
  568. % i : integer;
  569. % property x [i : integer]: integer read I write i;
  570. % \end{verbatim}
  571. %
  572. parser_e_cant_access_protected_member=03062_E_NÆo ‚ poss¡vel acessar um campo protegido de um objeto aqui
  573. % Fields that are declared in a \var{protected} section of an object or class
  574. % declaration cannot be accessed outside the module where the object is
  575. % defined, or outside descendent object methods.
  576. parser_e_cant_access_private_member=03063_E_NÆo ‚ poss¡vel acessar um campo privado de um objeto aqui
  577. % Fields that are declared in a \var{private} section of an object or class
  578. % declaration cannot be accessed outside the module where the class is
  579. % defined.
  580. parser_e_overridden_methods_not_same_ret=03066_E_M‚todos sobrepostos devem ter o mesmo tipo de retorno: "$2" ‚ sobreposto por "$1" que possui outro tipo retorno
  581. % If you declare overridden methods in a class definition, they must
  582. % have the same return type.
  583. parser_e_dont_nest_export=03067_E_Fun‡äes EXPORT declaradas nÆo podem estar aninhadas
  584. % You cannot declare a function or procedure within a function or procedure
  585. % that was declared as an export procedure.
  586. parser_e_methods_dont_be_export=03068_E_M‚todos nÆo podem ser EXPORTados
  587. % You cannot declare a procedure that is a method for an object as
  588. % \var{export}ed.
  589. parser_e_call_by_ref_without_typeconv=03069_E_Chamada por var. para arg. no. $1 tem que coincidir exatamente: Obtido "$2" esperado "$3"
  590. % When calling a function declared with \var{var} parameters, the variables in
  591. % the function call must be of exactly the same type. There is no automatic
  592. % type conversion.
  593. parser_e_no_super_class=03070_E_Classe nÆo ‚ uma classe pai da classe atual
  594. % When calling inherited methods, you are trying to call a method of a non-related
  595. % class. You can only call an inherited method of a parent class.
  596. parser_e_self_not_in_method=03071_E_SELF ‚ permitido apenas em m‚todos
  597. % You are trying to use the \var{self} parameter outside an object's method.
  598. % Only methods get passed the \var{self} parameters.
  599. parser_e_generic_methods_only_in_methods=03072_E_M‚todos s¢ podem estar em outros m‚todos se chamados diretamente com o identificador de tipo da classe
  600. % A construction like \var{sometype.somemethod} is only allowed in a method.
  601. parser_e_illegal_colon_qualifier=03073_E_Uso ilegal de ':'
  602. % You are using the format \var{:} (colon) 2 times on an expression that
  603. % is not a real expression.
  604. parser_e_illegal_set_expr=03074_E_Erro verifica‡Æo de faixa em conjunto construtor ou elemento conjunto duplicado
  605. % The declaration of a set contains an error. Either one of the elements is
  606. % outside the range of the set type, or two of the elements are in fact
  607. % the same.
  608. parser_e_pointer_to_class_expected=03075_E_Ponteiro para objeto esperado
  609. % You specified an illegal type in a \var{new} statement.
  610. % The extended syntax of \var{new} needs an object as a parameter.
  611. parser_e_expr_have_to_be_constructor_call=03076_E_ExpressÆo deve ser chamada ao construtor
  612. % When using the extended syntax of \var{new}, you must specify the constructor
  613. % method of the object you are trying to create. The procedure you specified
  614. % is not a constructor.
  615. parser_e_expr_have_to_be_destructor_call=03077_E_ExpressÆo deve ser chamada ao destruidor
  616. % When using the extended syntax of \var{dispose}, you must specify the
  617. % destructor method of the object you are trying to dispose of.
  618. % The procedure you specified is not a destructor.
  619. parser_e_invalid_record_const=03078_E_Ordem ilegal dos elementos do registro
  620. % When declaring a constant record, you specified the fields in the wrong
  621. % order.
  622. parser_e_false_with_expr=03079_E_Tipo expressÆo deve ser classe ou tipo registro
  623. % A \var{with} statement needs an argument that is of the type \var{record}
  624. % or \var{class}. You are using \var{with} on an expression that is not of
  625. % this type.
  626. parser_e_void_function=03080_E_Procedimentos nÆo podem retornar um valor
  627. % In \fpc, you can specify a return value for a function when using
  628. % the \var{exit} statement. This error occurs when you try to do this with a
  629. % procedure. Procedures cannot return a value.
  630. parser_e_only_methods_allowed=03081_E_Construtores destruidores e class operators devem ser m‚todos
  631. % You're declaring a procedure as destructor, constructor or class operator, when the
  632. % procedure isn't a class method.
  633. parser_e_operator_not_overloaded=03082_E_Operador nÆo ‚ sobrecarregado
  634. % You're trying to use an overloaded operator when it is not overloaded for
  635. % this type.
  636. parser_e_no_such_assignment=03083_E_Imposs¡vel sobrecarregar atribui‡äes para tipos iguais
  637. % You cannot overload assignment for types
  638. % that the compiler considers as equal.
  639. parser_e_overload_impossible=03084_E_Operador sobrecarga imposs¡vel
  640. % The combination of operator, arguments and return type are
  641. % incompatible.
  642. parser_e_no_reraise_possible=03085_E_Re-elevar nÆo ‚ poss¡vel l 
  643. % You are trying to re-raise an exception where it is not allowed. You can only
  644. % re-raise exceptions in an \var{except} block.
  645. parser_e_no_new_or_dispose_for_classes=03086_E_A sintaxe estendida para new ou dispose nÆo ‚ permitida para uma classe
  646. % You cannot generate an instance of a class with the extended syntax of
  647. % \var{new}. The constructor must be used for that. For the same reason, you
  648. % cannot call \var{dispose} to de-allocate an instance of a class, the
  649. % destructor must be used for that.
  650. parser_e_procedure_overloading_is_off=03088_E_Sobrecarga de procimento est  desativada
  651. % When using the \var{-So} switch, procedure overloading is switched off.
  652. % Turbo Pascal does not support function overloading.
  653. parser_e_overload_operator_failed=03089_E_NÆo ‚ poss¡vel sobrecarregar este operador. Operadores relacionados poss¡veis de sobrecarga (se algum) sÆo: $1
  654. % You are trying to overload an operator which cannot be overloaded.
  655. % The following operators can be overloaded :
  656. % \begin{verbatim}
  657. % +, -, *, /, =, >, <, <=, >=, is, as, in, **, :=
  658. % \end{verbatim}
  659. parser_e_comparative_operator_return_boolean=03090_E_Operador de compara‡Æo deve retornar um valor booleano
  660. % When overloading the \var{=} operator, the function must return a boolean
  661. % value.
  662. parser_e_only_virtual_methods_abstract=03091_E_Apenas m‚todos virtuais podem ser abstratos
  663. % You are declaring a method as abstract, when it is not declared to be
  664. % virtual.
  665. parser_f_unsupported_feature=03092_F_Uso de caracter¡stica nÆo suportada!
  666. % You're trying to force the compiler into doing something it cannot do yet.
  667. parser_e_mix_of_classes_and_objects=03093_E_A mistura de diferentes esp‚cies de objetos (class, object, interface, etc) nÆo ‚ permitida
  668. % You cannot derive \var{objects}, \var{classes}, \var{cppclasses} and \var{interfaces} intertwined. E.g.
  669. % a class cannot have an object as parent and vice versa.
  670. parser_w_unknown_proc_directive_ignored=03094_W_Diretiva desconhecida de procedimento teve que ser ignorada: "$1"
  671. % The procedure directive you specified is unknown.
  672. parser_e_absolute_only_one_var=03095_E_Absolute s¢ pode estar associada a uma vari vel
  673. % You cannot specify more than one variable before the \var{absolute} directive.
  674. % Thus, the following construct will provide this error:
  675. % \begin{verbatim}
  676. % Var Z : Longint;
  677. % X,Y : Longint absolute Z;
  678. % \end{verbatim}
  679. parser_e_absolute_only_to_var_or_const=03096_E_Absolute s¢ pode estar associada com uma vari vel ou constante
  680. % The address of an \var{absolute} directive can only point to a variable or
  681. % constant. Therefore, the following code will produce this error:
  682. % \begin{verbatim}
  683. % Procedure X;
  684. %
  685. % var p : longint absolute x;
  686. % \end{verbatim}
  687. parser_e_initialized_only_one_var=03097_E_Apenas uma vari vel pode ser inicializada
  688. % You cannot specify more than one variable with a initial value in Delphi mode.
  689. parser_e_abstract_no_definition=03098_E_M‚todos abstratos nÆo devem ter qualquer defini‡Æo (com corpo fun‡Æo)
  690. % Abstract methods can only be declared, you cannot implement them. They
  691. % should be overridden by a descendant class.
  692. parser_e_overloaded_must_be_all_global=03099_E_Esta fun‡Æo sobrecarregada nÆo pode ser local (deve ser exportada)
  693. % You are defining an overloaded function in the implementation part of a unit,
  694. % but there is no corresponding declaration in the interface part of the unit.
  695. parser_w_virtual_without_constructor=03100_W_M‚todos virtuais sÆo usados sem um construtor em "$1"
  696. % If you declare objects or classes that contain virtual methods, you need
  697. % to have a constructor and destructor to initialize them. The compiler
  698. % encountered an object or class with virtual methods that doesn't have
  699. % a constructor/destructor pair.
  700. parser_c_macro_defined=03101_CL_Macro definida: $1
  701. % When \var{-vc} is used, the compiler tells you when it defines macros.
  702. parser_c_macro_undefined=03102_CL_Macro indefinida: $1
  703. % When \var{-vc} is used, the compiler tells you when it undefines macros.
  704. parser_c_macro_set_to=03103_CL_Macro $1 ajustada para $2
  705. % When \var{-vc} is used, the compiler tells you what values macros get.
  706. parser_i_compiling=03104_I_Compilando $1
  707. % When you turn on information messages (\var{-vi}), the compiler tells you
  708. % what units it is recompiling.
  709. parser_u_parsing_interface=03105_UL_Analisando interface da unidade $1
  710. % This tells you that the reading of the interface
  711. % of the current unit has started
  712. parser_u_parsing_implementation=03106_UL_Analisando implementa‡Æo de $1
  713. % This tells you that the code reading of the implementation
  714. % of the current unit, library or program starts
  715. parser_d_compiling_second_time=03107_DL_Compilando $1 uma segunda vez
  716. % When you request debug messages (\var{-vd}) the compiler tells you what
  717. % units it recompiles for the second time.
  718. parser_e_no_property_found_to_override=03109_E_Nenhuma propriedade encontrada para sobrepor
  719. % You want to override a property of a parent class, when there is, in fact,
  720. % no such property in the parent class.
  721. parser_e_only_one_default_property=03110_E_Apenas uma propriedade padrÆo ‚ permitida
  722. % You specified a property as \var{Default}, but the class already has a
  723. % default property, and a class can have only one default property.
  724. parser_e_property_need_paras=03111_E_A propriedade padrÆo deve ser uma propriedade matriz
  725. % Only array properties of classes can be made \var{default} properties.
  726. parser_e_constructor_cannot_be_not_virtual=03112_E_Construtores virtuais sÆo suportados apenas modelo objeto classe
  727. % You cannot have virtual constructors in objects. You can only have them
  728. % in classes.
  729. parser_e_no_default_property_available=03113_E_Nenhuma propriedade padrÆo dispon¡vel
  730. % You are trying to access a default property of a class, but this class (or one of
  731. % its ancestors) doesn't have a default property.
  732. parser_e_cant_have_published=03114_E_A classe nÆo pode ter uma se‡Æo PUBLISHED, use a chave {$M+}
  733. % If you want a \var{published} section in a class definition, you must
  734. % use the \var{\{\$M+\}} switch, which turns on generation of type
  735. % information.
  736. parser_e_forward_declaration_must_be_resolved=03115_E_Declara‡Æo posterior da classe "$1" deve ser resolvida aqui para usar a classe como ancestral
  737. % To be able to use an object as an ancestor object, it must be defined
  738. % first. This error occurs in the following situation:
  739. % \begin{verbatim}
  740. % Type ParentClas = Class;
  741. % ChildClass = Class(ParentClass)
  742. % ...
  743. % end;
  744. % \end{verbatim}
  745. % where \var{ParentClass} is declared but not defined.
  746. parser_e_no_local_operator=03116_E_Operadores locais nÆo suportados
  747. % You cannot overload locally, i.e. inside procedures or function
  748. % definitions.
  749. parser_e_proc_dir_not_allowed_in_interface=03117_E_Diretiva procedimento "$1" nÆo permitida na se‡Æo interface
  750. % This procedure directive is not allowed in the \var{interface} section of
  751. % a unit. You can only use it in the \var{implementation} section.
  752. parser_e_proc_dir_not_allowed_in_implementation=03118_E_Diretiva procedimento "$1" nÆo permitida na se‡Æo implementa‡Æo
  753. % This procedure directive is not allowed in the \var{implementation} section of
  754. % a unit. You can only use it in the \var{interface} section.
  755. parser_e_proc_dir_not_allowed_in_procvar=03119_E_Diretiva procedimento "$1" nÆo permitida na declara‡Æo procvar
  756. % This procedure directive cannot be part of a procedural or function
  757. % type declaration.
  758. parser_e_function_already_declared_public_forward=03120_E_Fun‡Æo j  declarada como P£blica/Posterior "$1"
  759. % You will get this error if a function is defined as \var{forward} twice.
  760. % Or if it occurs in the \var{interface} section, and again as a \var{forward}
  761. % declaration in the \var{implementation} section.
  762. parser_e_not_external_and_export=03121_E_Imposs¡vel usar ambos EXPORT e EXTERNAL
  763. % These two procedure directives are mutually exclusive.
  764. parser_w_not_supported_for_inline=03123_W_"$1" nÆo suportado ainda dentro procedimento/fun‡Æo em linha
  765. % Inline procedures don't support this declaration.
  766. parser_w_inlining_disabled=03124_W_Procedimentos em linha desabilitados
  767. % Inlining of procedures is disabled.
  768. parser_i_writing_browser_log=03125_I_Gravando hist¢rio Navegador $1
  769. % When information messages are on, the compiler warns you when it
  770. % writes the browser log (generated with the \var{\{\$Y+ \}} switch).
  771. parser_h_maybe_deref_caret_missing=03126_H_Talvez desreferˆncia de ponteiro esteja faltando
  772. % The compiler thinks that a pointer may need a dereference.
  773. parser_f_assembler_reader_not_supported=03127_F_Leitor assembler selecionado nÆo suportado
  774. % The selected assembler reader (with \var{\{\$ASMMODE xxx\}} is not
  775. % supported. The compiler can be compiled with or without support for a
  776. % particular assembler reader.
  777. parser_e_proc_dir_conflict=03128_E_Diretiva procedimento "$1" tem conflitos com outras diretivas
  778. % You specified a procedure directive that conflicts with other directives.
  779. % For instance \var{cdecl} and \var{pascal} are mutually exclusive.
  780. parser_e_call_convention_dont_match_forward=03129_E_Conven‡Æo de chamada nÆo coincide com declara‡Æo posterior
  781. % This error happens when you declare a function or procedure with
  782. % e.g. \var{cdecl;} but omit this directive in the implementation, or vice
  783. % versa. The calling convention is part of the function declaration, and
  784. % must be repeated in the function definition.
  785. parser_e_property_cant_have_a_default_value=03131_E_Propriedade nÆo pode ter um valor padrÆo
  786. % Set properties or indexed properties cannot have a default value.
  787. parser_e_property_default_value_must_const=03132_E_O valor padrÆo de um propriedade deve ser uma constante
  788. % The value of a \var{default} declared property must be known at compile
  789. % time. The value you specified is only known at run time. This happens
  790. % e.g. if you specify a variable name as a default value.
  791. parser_e_cant_publish_that=03133_E_S¡mbolo nÆo pode ser PUBLISHED, pode ser apenas uma classe
  792. % Only class type variables can be in a \var{published} section of a class
  793. % if they are not declared as a property.
  794. parser_e_cant_publish_that_property=03134_E_Este tipo de propriedade nÆo pode ser PUBLISHED
  795. % Properties in a \var{published} section cannot be array properties.
  796. % They must be moved to public sections. Properties in a \var{published}
  797. % section must be an ordinal type, a real type, strings or sets.
  798. parser_e_empty_import_name=03136_E_Um nome importa‡Æo ‚ requerido
  799. % Some targets need a name for the imported procedure or a \var{cdecl} specifier.
  800. parser_e_division_by_zero=03138_E_DivisÆo por zero
  801. % A division by zero was encounted.
  802. parser_e_invalid_float_operation=03139_E_Opera‡Æo ponto flutuante inv lida
  803. % An operation on two real type values produced an overflow or a division
  804. % by zero.
  805. parser_e_array_lower_less_than_upper_bound=03140_E_Limite superior da faixa ‚ menor que o limite inferior
  806. % The upper bound of an array declaration is less than the lower bound and this
  807. % is not possible.
  808. parser_w_string_too_long=03141_W_'String' "$1" ‚ maior que "$2"
  809. % The size of the constant string is larger than the size you specified in
  810. % string type definition.
  811. parser_e_string_larger_array=03142_E_Comprimento 'String' ‚ maior que o comprimento da matriz de caractere
  812. % The size of the constant string is larger than the size you specified in
  813. % the \var{Array[x..y] of char} definition.
  814. parser_e_ill_msg_expr=03143_E_ExpressÆo ilegal ap¢s diretiva mensagem
  815. % \fpc supports only integer or string values as message constants.
  816. parser_e_ill_msg_param=03144_E_Manipuladores mensagens podem ter apenas uma chamada por parƒmetro referˆncia
  817. % A method declared with the \var{message} directive as message handler
  818. % can take only one parameter which must be declared as call by reference.
  819. % Parameters are declared as call by reference using the \var{var}-directive.
  820. parser_e_duplicate_message_label=03145_E_R¢tulo mensagem duplicado: "$1"
  821. % A label for a message is used twice in one object/class.
  822. parser_e_self_in_non_message_handler=03146_E_Self pode ser um parƒmetro expl¡cito apenas em m‚todos que sÆo manipuladores de mensagens
  823. % The \var{Self} parameter can only be passed explicitly to a method which
  824. % is declared as message handler.
  825. parser_e_threadvars_only_sg=03147_E_Threadvars podem ser apenas est ticas ou globais
  826. % Threadvars must be static or global; you can't declare a thread
  827. % local to a procedure. Local variables are always local to a thread,
  828. % because every thread has its own stack and local variables
  829. % are stored on the stack.
  830. parser_f_direct_assembler_not_allowed=03148_F_Assembler direto nÆo suportado para formato de sa¡da bin rio
  831. % You can't use direct assembler when using a binary writer. Choose an
  832. % other output format or use another assembler reader.
  833. parser_w_no_objpas_use_mode=03149_W_NÆo carregue a unidade OBJPAS manualmente, use \{\$mode objfpc\} ou \{\$mode delphi\}
  834. % You are trying to load the \file{ObjPas} unit manually from a \var{uses} clause.
  835. % This is not a good idea. Use the \var{\{\$MODE OBJFPC\}} or
  836. % \var{\{\$mode delphi\}} directives which load the unit automatically.
  837. parser_e_no_object_override=03150_E_OVERRIDE nÆo pode ser usado em objetos
  838. % \var{Override} is not supported for objects, use \var{virtual} instead to override
  839. % a method of a parent object.
  840. parser_e_cant_use_inittable_here=03151_E_Tipos de dados que requerem inicializa‡Æo/finaliza‡Æo nÆo podem ser usados em registros variant
  841. % Some data types (e.g. \var{ansistring}) need initialization/finalization
  842. % code which is implicitly generated by the compiler. Such data types
  843. % can't be used in the variant part of a record.
  844. parser_e_resourcestring_only_sg=03152_E_Recursos 'String' podem ser apenas est ticos ou globais
  845. % Resourcestring cannot be declared local, only global or using the static
  846. % directive.
  847. parser_e_exit_with_argument_not__possible=03153_E_EXIT com argumentos nÆo pode ser usado aqui
  848. % An exit statement with an argument for the return value can't be used here. This
  849. % can happen for example in \var{try..except} or \var{try..finally} blocks.
  850. parser_e_stored_property_must_be_boolean=03154_E_O tipo do s¡mbolo de armazenamento deve ser booleano
  851. % If you specify a storage symbol in a property declaration, it must be a
  852. % boolean type.
  853. parser_e_ill_property_storage_sym=03155_E_Este s¡mbolo nÆo ‚ permitido como s¡mbolo de armazenamento
  854. % You can't use this type of symbol as storage specifier in property
  855. % declaration. You can use only methods with the result type boolean,
  856. % boolean class fields or boolean constants.
  857. parser_e_only_publishable_classes_can_be_published=03156_E_Apenas classes que sÆo compiladas no modo $M+ podem ser PUBLISHED
  858. % A class-typed field in the published section of a class can only be a class which was
  859. % compiled in \var{\{\$M+\}} or which is derived from such a class. Normally
  860. % such a class should be derived from \var{TPersistent}.
  861. parser_e_proc_directive_expected=03157_E_Diretiva procedimento esperada
  862. % This error is triggered when you have a \var{\{\$Calling\}} directive without
  863. % a calling convention specified.
  864. % It also happens when declaring a procedure in a const block and you
  865. % used a ; after a procedure declaration which must be followed by a
  866. % procedure directive.
  867. % Correct declarations are:
  868. % \begin{verbatim}
  869. % const
  870. % p : procedure;stdcall=nil;
  871. % p : procedure stdcall=nil;
  872. % \end{verbatim}
  873. parser_e_invalid_property_index_value=03158_E_O valor de um ¡ndice de propriedade deve ser do tipo ordinal
  874. % The value you use to index a property must be of an ordinal type, for
  875. % example an integer or enumerated type.
  876. parser_e_procname_to_short_for_export=03159_E_Nome procedimento muito curto para ser exportado
  877. % The length of the procedure/function name must be at least 2 characters
  878. % long. This is because of a bug in dlltool which doesn't parse the .def
  879. % file correctly with a name of length 1.
  880. parser_e_dlltool_unit_var_problem=03160_E_Nenhuma entrada DEFFILE pode ser gerada para vars. globais unidade
  881. parser_e_dlltool_unit_var_problem2=03161_E_Compile sem a op‡Æo -WD
  882. % You need to compile this file without the -WD switch on the
  883. % command line.
  884. parser_f_need_objfpc_or_delphi_mode=03162_F_Vocˆ precisa do modo ObjFpc (-S2) ou Delphi (-Sd) para compilar este m¢dulo
  885. % You need to use \var{\{\$MODE OBJFPC\}} or \var{\{\$MODE DELPHI\}} to compile this file.
  886. % Or use the corresponding command line switch, either \var{-Mobjfpc} or \var{-MDelphi.}
  887. parser_e_no_export_with_index_for_target=03163_E_Imposs¡vel exportar com ¡ndice sob $1
  888. % Exporting of functions or procedures with a specified index is not
  889. % supported on this target.
  890. parser_e_no_export_of_variables_for_target=03164_E_Exporta‡Æo de vari veis nÆo ‚ suportada sob $1
  891. % Exporting of variables is not supported on this target.
  892. parser_e_improper_guid_syntax=03165_E_Sintaxe GUID impr¢pria
  893. % The GUID indication does not have the proper syntax. It should be of the form
  894. % \begin{verbatim}
  895. % {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
  896. % \end{verbatim}
  897. % Where each \var{X} represents a hexadecimal digit.
  898. parser_w_interface_mapping_notfound=03168_W_Procedimento chamado "$1" que fosse adequado … implementa‡Æo de $2.$3 nÆo encontrado
  899. % The compiler cannot find a suitable procedure which implements the given method of an interface.
  900. % A procedure with the same name is found, but the arguments do not match.
  901. parser_e_interface_id_expected=03169_E_Identificador interface esperado
  902. % This happens when the compiler scans a \var{class} declaration that contains
  903. % \var{interface} function name mapping code like this:
  904. % \begin{verbatim}
  905. % type
  906. % TMyObject = class(TObject, IDispatch)
  907. % function IUnknown.QueryInterface=MyQueryInterface;
  908. % ....
  909. % \end{verbatim}
  910. % and the \var{interface} before the dot is not listed in the inheritance list.
  911. parser_e_type_cant_be_used_in_array_index=03170_E_Tipo "$1" nÆo pode ser usado como tipo ¡ndice matriz
  912. % Types like \var{qword} or \var{int64} aren't allowed as array index type.
  913. parser_e_no_con_des_in_interfaces=03171_E_Construtor e destruidor nÆo permitidos em interfaces
  914. % Constructor and destructor declarations aren't allowed in interfaces.
  915. % In the most cases method \var{QueryInterface} of \var{IUnknown} can
  916. % be used to create a new interface.
  917. parser_e_no_access_specifier_in_interfaces=03172_E_Especificadores de acesso nÆo podem ser usados em INTERFACEs e OBJCPROTOCOLs
  918. % The access specifiers \var{public}, \var{private}, \var{protected} and
  919. % \var{published} can't be used in interfaces, Objective-C protocols and categories because all methods
  920. % of an interface/protocol/category must be public.
  921. parser_e_no_vars_in_interfaces=03173_E_Uma interface ou protocolo Objective-C ou categoria nÆo pode conter campos
  922. % Declarations of fields are not allowed in interfaces and Objective-C protocols and categories.
  923. % An interface/protocol/category can contain only methods and properties with method read/write specifiers.
  924. parser_e_no_local_proc_external=03174_E_Imposs¡ve declarar procedimento local como EXTERNAL
  925. % Declaring local procedures as external is not possible. Local procedures
  926. % get hidden parameters that will make the chance of errors very high.
  927. parser_w_skipped_fields_before=03175_W_Alguns campos que vˆm antes de "$1" nÆo foram inicializados
  928. % In Delphi mode, not all fields of a typed constant record have to be
  929. % initialized, but the compiler warns you when it detects such situations.
  930. parser_e_skipped_fields_before=03176_E_Alguns campos que vˆm antes de "$1" nÆo foram inicializados
  931. % In all syntax modes but Delphi mode, you can't leave some fields uninitialized
  932. % in the middle of a typed constant record.
  933. parser_w_skipped_fields_after=03177_W_Alguns campos que vˆm depois de "$1" nÆo foram inicializados
  934. % You can leave some fields at the end of a type constant record uninitialized
  935. % (The compiler will initialize them to zero automatically). This may be the cause
  936. % of subtle problems.
  937. parser_e_varargs_need_cdecl_and_external=03178_E_Diretiva VarArgs (ou '...' em MacPas) sem CDecl/CPPDecl/MWPascal e External
  938. % The varargs directive (or the ``...'' varargs parameter in MacPas mode) can only be
  939. % used with procedures or functions that are declared with \var{external} and one of
  940. % \var{cdecl}, \var{cppdecl} and \var{mwpascal}. This functionality
  941. % is only supported to provide a compatible interface to C functions like printf.
  942. parser_e_self_call_by_value=03179_E_Self deve ser um parƒmetro normal (chamada-por-valor)
  943. % You can't declare \var{Self} as a const or var parameter, it must always be
  944. % a call-by-value parameter.
  945. parser_e_interface_has_no_guid=03180_E_Interface "$1" nÆo tem identifica‡Æo de interface
  946. % When you want to assign an interface to a constant, then the interface
  947. % must have a GUID value set.
  948. parser_e_illegal_field_or_method=03181_E_Campo classe ou identificador m‚todo "$1" desconhecido
  949. % Properties must refer to a field or method in the same class.
  950. parser_w_proc_overriding_calling=03182_W_Conven‡Æo chamada sobreposi‡Æo "$1" com "$2"
  951. % There are two directives in the procedure declaration that specify a calling
  952. % convention. Only the last directive will be used.
  953. parser_e_no_procvarobj_const=03183_E_Constantes tipadas do tipo "procedimento de objeto" podem ser apenas inicializadas com NIL
  954. % You can't assign the address of a method to a typed constant which has a
  955. % 'procedure of object' type, because such a constant requires two addresses:
  956. % that of the method (which is known at compile time) and that of the object or
  957. % class instance it operates on (which cannot be known at compile time).
  958. parser_e_default_value_only_one_para=03184_E_Valor padrÆo pode ser atribu¡do apenas … um parƒmetro
  959. % It is not possible to specify a default value for several parameters at once.
  960. % The following is invalid:
  961. % \begin{verbatim}
  962. % Procedure MyProcedure (A,B : Integer = 0);
  963. % \end{verbatim}
  964. % Instead, this should be declared as
  965. % \begin{verbatim}
  966. % Procedure MyProcedure (A : Integer = 0; B : Integer = 0);
  967. % \end{verbatim}
  968. parser_e_default_value_expected_for_para=03185_E_Parƒmetro padrÆo requerido para "$1"
  969. % The specified parameter requires a default value.
  970. parser_w_unsupported_feature=03186_W_Uso de caracter¡stica nÆo suportada!
  971. % You're trying to force the compiler into doing something it cannot do yet.
  972. parser_h_c_arrays_are_references=03187_H_Matrizes C sÆo passadas por referˆncia
  973. % Any array passed to a C function is passed
  974. % by a pointer (i.e. by reference).
  975. parser_e_C_array_of_const_must_be_last=03188_E_Matrizes de constantes C devem ser o £ltimo argumento
  976. % You cannot add any other argument after an \var{array of const} for
  977. % \var{cdecl} functions, as the size pushed on stack for this argument is
  978. % not known.
  979. parser_h_type_redef=03189_H_Redefini‡Æo do tipo "$1"
  980. % This is an indicator that a previously declared type is
  981. % being redefined as something else. This may, or may not
  982. % be, a potential source of errors.
  983. parser_w_cdecl_has_no_high=03190_W_Fun‡äes declaradas com cdecl nÆo tem um parƒmetro impl¡cito extra
  984. % Functions declared with the \var{cdecl} modifier do not pass an extra implicit parameter.
  985. parser_w_cdecl_no_openstring=03191_W_Fun‡äes declaradas com cdecl nÆo suportam 'String' aberta
  986. % Openstring is not supported for functions that have the \var{cdecl} modifier.
  987. parser_e_initialized_not_for_threadvar=03192_E_Imposs¡vel inicializar vari veis declaradas como threadvar
  988. % Variables declared as threadvar cannot be initialized with a default value.
  989. % The variables will always be filled with zero at the start of a new thread.
  990. parser_e_msg_only_for_classes=03193_E_Diretiva mensagem ‚ permitida apenas em Classes
  991. % The message directive is only supported for Class types.
  992. parser_e_procedure_or_function_expected=03194_E_Procedimento ou Fun‡Æo esperados
  993. % A class method can only be specified for procedures and functions.
  994. parser_e_illegal_calling_convention=03195_W_Diretiva conven‡Æo de chamada ignorada: "$1"
  995. % Some calling conventions are supported only by certain CPUs. I.e. most non-i386 ports support
  996. % only the standard ABI calling convention of the CPU.
  997. parser_e_no_object_reintroduce=03196_E_REINTRODUCE nÆo pode ser usado em objetos
  998. % \var{reintroduce} is not supported for objects, Objective-C classes and Objective-C protocols.
  999. parser_e_paraloc_only_one_para=03197_E_Cada argumento deve ter sua pr¢pria localiza‡Æo
  1000. % If locations for arguments are specified explicitly as it is required by
  1001. % some syscall conventions, each argument must have its own location. Things
  1002. % like
  1003. % \begin{verbatim}
  1004. % procedure p(i,j : longint 'r1');
  1005. % \end{verbatim}
  1006. % aren't allowed.
  1007. parser_e_paraloc_all_paras=03198_E_Cada argumento deve ter uma localiza‡Æo expl¡cita
  1008. % If one argument has an explicit argument location, all arguments of a procedure
  1009. % must have one.
  1010. parser_e_illegal_explicit_paraloc=03199_E_Localiza‡Æo argumento desconhecida
  1011. % The location specified for an argument isn't recognized by the compiler.
  1012. parser_e_32bitint_or_pointer_variable_expected=03200_E_Inteiro 32-Bit ou vari vel ponteiro esperados
  1013. % The libbase for MorphOS/AmigaOS can be given only as \var{longint}, \var{dword} or any pointer variable.
  1014. parser_e_goto_outside_proc=03201_E_Declara‡Æo Goto nÆo permitida entre procedimentos diferentes
  1015. % It isn't allowed to use \var{goto} statements referencing labels outside the
  1016. % current procedure. The following example shows the problem:
  1017. % \begin{verbatim}
  1018. % ...
  1019. % procedure p1;
  1020. % label
  1021. % l1;
  1022. %
  1023. % procedure p2;
  1024. % begin
  1025. % goto l1; // This goto ISN'T allowed
  1026. % end;
  1027. %
  1028. % begin
  1029. % p2
  1030. % l1:
  1031. % end;
  1032. % ...
  1033. %
  1034. % \end{verbatim}
  1035. parser_f_too_complex_proc=03202_F_Procedimento muito complexo, ele requer muitos registradores
  1036. % Your procedure body is too long for the compiler. You should split the
  1037. % procedure into multiple smaller procedures.
  1038. parser_e_illegal_expression=03203_E_ExpressÆo ilegal
  1039. % This can occur under many circumstances. Usually when trying to evaluate
  1040. % constant expressions.
  1041. parser_e_invalid_integer=03204_E_ExpressÆo inteira inv lida
  1042. % You made an expression which isn't an integer, and the compiler expects the
  1043. % result to be an integer.
  1044. parser_e_invalid_qualifier=03205_E_Qualifiador ilegal
  1045. % One of the following is happening :
  1046. % \begin{itemize}
  1047. % \item You're trying to access a field of a variable that is not a record.
  1048. % \item You're indexing a variable that is not an array.
  1049. % \item You're dereferencing a variable that is not a pointer.
  1050. % \end{itemize}
  1051. parser_e_upper_lower_than_lower=03206_E_Limite de faixa alta < limite de faixa baixa
  1052. % You are declaring a subrange, and the high limit is less than the low limit of
  1053. % the range.
  1054. parser_e_macpas_exit_wrong_param=03207_E_Parƒmetro de sa¡da deve ser o nome do procedimento em que ele ‚ usado
  1055. % Non local exit is not allowed. This error occurs only in mode MacPas.
  1056. parser_e_illegal_assignment_to_count_var=03208_E_Atribui‡Æo ilegal para a vari vel for-loop "$1"
  1057. % The type of a \var{for} loop variable must be an ordinal type.
  1058. % Loop variables cannot be reals or strings. You also cannot assign values to
  1059. % loop variables inside the loop (Except in Delphi and TP modes). Use a while or
  1060. % repeat loop instead if you need to do something like that, since those
  1061. % constructs were built for that.
  1062. parser_e_no_local_var_external=03209_E_Imposs¡vel declarar vari vel local como EXTERNAL
  1063. % Declaring local variables as external is not allowed. Only global variables can reference
  1064. % external variables.
  1065. parser_e_proc_already_external=03210_E_Procedimento j  foi declarado como EXTERNAL
  1066. % The procedure is already declared with the EXTERNAL directive in an interface or
  1067. % forward declaration.
  1068. parser_w_implicit_uses_of_variants_unit=03211_W_Uso impl¡cito da unidade Variants
  1069. % The Variant type is used in the unit without any used unit using the Variants unit. The
  1070. % compiler has implicitly added the Variants unit to the uses list. To remove this warning
  1071. % the Variants unit needs to be added to the uses statement.
  1072. parser_e_no_static_method_in_interfaces=03212_E_Classe e m‚todos est ticos nÆo podem ser usados em INTERFACES
  1073. % The specifier \var{class} and directive \var{static} can't be used in interfaces
  1074. % because all methods of an interface must be public.
  1075. parser_e_arithmetic_operation_overflow=03213_E_Transbordamento em opera‡Æo aritim‚tica
  1076. % An operation on two integer values produced an overflow.
  1077. parser_e_protected_or_private_expected=03214_E_Protected ou private esperados
  1078. % \var{strict} can be only used together with \var{protected} or \var{private}.
  1079. parser_e_illegal_slice=03215_E_SLICE nÆo pode ser usado fora da lista de parƒmetros
  1080. % \var{slice} can be used only for arguments accepting an open array parameter.
  1081. parser_e_dispinterface_cant_have_parent=03216_E_Uma DISPINTERFACE nÆo pode ter uma classe pai
  1082. % A DISPINTERFACE is a special type of interface which can't have a parent class.
  1083. parser_e_dispinterface_needs_a_guid=03217_E_Uma DISPINTERFACE necessita de um GUID
  1084. % A DISPINTERFACE always needs an interface identification (a GUID).
  1085. parser_w_overridden_methods_not_same_ret=03218_W_M‚todos susbtitu¡dos devem ter um tipo de retorno relacionados. Este c¢digo pode travar, ele depende de uma falha do analizador Delphi ("$2" ‚ sobreposto por "$1" que possue outro tipo de retorno)
  1086. % If you declare overridden methods in a class definition, they must
  1087. % have the same return type. Some versions of Delphi allow you to change the
  1088. % return type of interface methods, and even to change procedures into
  1089. % functions, but the resulting code may crash depending on the types used
  1090. % and the way the methods are called.
  1091. parser_e_dispid_must_be_ord_const=03219_E_IDs despacho devem ser constantes ordinais
  1092. % The \var{dispid} keyword must be followed by an ordinal constant (the dispid index).
  1093. parser_e_array_range_out_of_bounds=03220_E_A faixa da matriz ‚ demasiada grande
  1094. % Regardless of the size taken up by its elements, an array cannot have more
  1095. % than high(ptrint) elements. Additionally, the range type must be a subrange
  1096. % of ptrint.
  1097. parser_e_packed_element_no_var_addr=03221_E_O endere‡o nÆo pode ser obtido de elementos de matriz de bits compactados ou campos de registro
  1098. % If you declare an array or record as \var{packed} in Mac Pascal mode
  1099. % (or as \var{packed} in any mode with \var{\{\$bitpacking on\}}), it will
  1100. % be packed at the bit level. This means it becomes impossible to take addresses
  1101. % of individual array elements or record fields. The only exception to this rule
  1102. % is in the case of packed arrays elements whose packed size is a multple of 8 bits.
  1103. parser_e_packed_dynamic_open_array=03222_E_Matrizes dinƒmicas nÆo podem ser compactadas
  1104. % Only regular (and possibly in the future also open) arrays can be packed.
  1105. parser_e_packed_element_no_loop=03223_E_Elementos de matrizes de bits compactados ou campos de registro nÆo podem ser usadas como vari veis de la‡os
  1106. % If you declare an array or record as \var{packed} in Mac Pascal mode
  1107. % (or as \var{packed} in any mode with \var{\{\$bitpacking on\}}), it will
  1108. % be packed at the bit level. For performance reasons, they cannot be
  1109. % used as loop variables.
  1110. parser_e_type_and_var_only_in_generics=03224_E_VAR, TYPE e CONST sÆo permitidos apenas em gen‚ricos e classes
  1111. % The usage of VAR, TYPE and CONST to declare new types inside an object is allowed only inside
  1112. % generics and classes.
  1113. parser_e_cant_create_generics_of_this_type=03225_E_Este tipo nÆo pode ser um gen‚rico
  1114. % Only Classes, Objects, Interfaces and Records are allowed to be used as generic.
  1115. parser_w_no_lineinfo_use_switch=03226_W_NÆo caregue a unidade LINEINFO manualmente, Em vez disso utilize a chave de compilador -gl
  1116. % Do not use the \file{lineinfo} unit directly, Use the \var{-gl} switch which
  1117. % automatically adds the correct unit for reading the selected type of debugging
  1118. % information. The unit that needs to be used depends on the type of
  1119. % debug information used when compiling the binary.
  1120. parser_e_no_funcret_specified=03227_E_Nenhum tipo de retorno de fun‡Æo especificado para a fun‡Æo "$1"
  1121. % The first time you declare a function you have to declare it completely,
  1122. % including all parameters and the result type.
  1123. parser_e_special_onlygenerics=03228_E_Especializa‡Æo ‚ suportado apenas por tipos gen‚ricos
  1124. % Types which are not generics can't be specialized.
  1125. parser_e_no_generics_as_params=03229_E_Gen‚ricos nÆo podem ser usados como parƒmetros quando especializando gen‚ricos
  1126. % When specializing a generic, only non-generic types can be used as parameters.
  1127. parser_e_type_object_constants=03230_E_Constantes de objetos contendo uma VMT nÆo sÆo permitidas
  1128. % If an object requires a VMT either because it contains a constructor or virtual methods,
  1129. % it's not allowed to create constants of it. In TP and Delphi mode this is allowed
  1130. % for compatibility reasons.
  1131. parser_e_label_outside_proc=03231_E_Obter o endere‡o de r¢tulos definidos fora do escopo atual nÆo ‚ permitido
  1132. % It isn't allowed to take the address of labels outside the
  1133. % current procedure.
  1134. parser_e_initialized_not_for_external=03233_E_Imposs¡vel inicializar vari veis declaradas como externas
  1135. % Variables declared as external cannot be initialized with a default value.
  1136. parser_e_illegal_function_result=03234_E_Tipo de retorno de fun‡Æo ilegal
  1137. % Some types like file types cannot be used as function result.
  1138. parser_e_no_common_type=03235_E_Nenhum tipo comum entre "$1" e "$2"
  1139. % To perform an operation on integers, the compiler converts both operands
  1140. % to their common type, which appears to be an invalid type. To determine the
  1141. % common type of the operands, the compiler takes the minimum of the minimal values
  1142. % of both types, and the maximum of the maximal values of both types. The common
  1143. % type is then minimum..maximum.
  1144. parser_e_no_generics_as_types=03236_E_Gen‚ricos sem especializa‡Æo nÆo podem ser usadas como um tipo para uma vari vel
  1145. % Generics must be always specialized before being used as variable type.
  1146. parser_w_register_list_ignored=03237_W_Lista registros ‚ ignorada para rotinas assembler puras
  1147. % When using pure assembler routines, the list with modified registers is ignored.
  1148. parser_e_implements_must_be_class_or_interface=03238_E_Propriedade 'Implements' deve ter tipo classe ou interface
  1149. % A property which implements an interface must be of type class or interface.
  1150. parser_e_implements_must_have_correct_type=03239_E_Propriedade 'Implements' deve implementar interface de tipo correto, encontrado "$1" esperado "$2"
  1151. % A property which implements an interface actually implements a different interface.
  1152. parser_e_implements_must_read_specifier=03240_E_Propriedade 'Implements' deve ter especificador de leitura
  1153. % A property which implements an interface must have at least a read specifier.
  1154. parser_e_implements_must_not_have_write_specifier=03241_E_Propriedade 'Implements' nÆo deve ter especificador de escrita
  1155. % A property which implements an interface may not have a write specifier.
  1156. parser_e_implements_must_not_have_stored_specifier=03242_E_Propriedade 'Implements' nÆo deve ter especificador de armazenagem
  1157. % A property which implements an interface may not have a stored specifier.
  1158. parser_e_implements_uses_non_implemented_interface=03243_E_Propriedade 'Implements' usada em interface nÆo implementada: "$1"
  1159. % The interface which is implemented by a property is not an interface implemented by the class.
  1160. parser_e_unsupported_real=03244_E_Ponto flutuante nÆo suportado para este alvo
  1161. % The compiler parsed a floating point expression, but it is not supported.
  1162. parser_e_class_doesnt_implement_interface=03245_E_Classe "$1" nÆo implementa interface "$2"
  1163. % The delegated interface is not implemented by the class given in the implements clause.
  1164. parser_e_class_implements_must_be_interface=03246_E_Tipo usado por implementa‡Æo deve ser uma interface
  1165. % The \var{implements} keyword must be followed by an interface type.
  1166. parser_e_cant_export_var_different_name=03247_E_Vari veis nÆo podem ser exportadas com um nome diferente neste alvo, adicione o nome na declara‡Æo usando a diretiva "export" (nome vari vel: $1, nome exporta‡Æo declarado: $2)
  1167. % On most targets it is not possible to change the name under which a variable
  1168. % is exported inside the \var{exports} statement of a library.
  1169. % In that case, you have to specify the export name at the point where the
  1170. % variable is declared, using the \var{export} and \var{alias} directives.
  1171. parser_e_weak_external_not_supported=03248_E_S¡mbolos externos fracos nÆo sÆo suportados para o atual alvo
  1172. % A "weak external" symbol is a symbol which may or may not exist at (either static
  1173. % or dynamic) link time. This concept may not be available (or implemented yet)
  1174. % on the current cpu/OS target.
  1175. parser_e_forward_mismatch=03249_E_Defini‡Æo posterior tipo incompat¡vel
  1176. % Classes and interfaces being defined forward must have the same type
  1177. % when being implemented. A forward interface cannot be changed into a class.
  1178. parser_n_ignore_lower_visibility=03250_N_M‚todo virtual "$1" tem baixa visibilidade ($2) que a classe pai $3 ($4)
  1179. % The virtual method overrides an method that is declared with a higher visibility. This might give
  1180. % unexpected results. In case the new visibility is private than it might be that a call to inherited in a
  1181. % new child class will call the higher visible method in a parent class and ignores the private method.
  1182. parser_e_field_not_allowed_here=03251_E_Campos nÆo podem aparecer depois dem um m‚todo ou defini‡Æo propriedade, inicie uma nova se‡Æo de visibilidade primeiro
  1183. % Once a method or property has been defined in a class or object, you cannot define any fields afterwards
  1184. % without starting a new visibility section (such as \var{public}, \var{private}, etc.). The reason is
  1185. % that otherwise the source code can appear ambiguous to the compiler, since it is possible to use modifiers
  1186. % such as \var{default} and \var{register} also as field names.
  1187. parser_e_no_local_para_def=03252_E_Parƒmetros nÆo podem conter defini‡äes locais de tipo. Use uma defini‡Æo de tipo separada em um bloco de tipos
  1188. % In Pascal, types are not considered to be identical simply because they are semantically equivalent.
  1189. % Two variables or parameters are only considered to be of the same type if they refer to the
  1190. % same type definition.
  1191. % As a result, it is not allowed to define new types inside parameter lists, because then it is impossible to
  1192. % refer to the same type definition in the procedure headers of the interface and implementation of a unit
  1193. % (both procedure headers would define a separate type). Keep in mind that expressions such as
  1194. % ``file of byte'' or ``string[50]'' also define a new type.
  1195. parser_e_abstract_and_sealed_conflict=03253_E_Conflito ABSTRACT e SEALED
  1196. % ABSTRACT and SEALED cannot be used together in one declaration
  1197. parser_e_sealed_descendant=03254_E_Imposs¡vel criar um descendente da classe selada "$1"
  1198. % Sealed means that class cannot be derived by another class.
  1199. parser_e_sealed_class_cannot_have_abstract_methods=03255_E_Classe selada nÆo pode ter um m‚todo abstrato
  1200. % Sealed means that class cannot be derived. Therefore no one class is able to override an abstract method in a sealed class.
  1201. parser_e_only_virtual_methods_final=03256_E_Apenas m‚todos virtuais podem ser finais
  1202. % You are declaring a method as final, when it is not declared to be
  1203. % virtual.
  1204. parser_e_final_can_no_be_overridden=03257_E_M‚todo final nÆo pode ser sobreposto: "$1"
  1205. % You are trying to \var{override} a virtual method of a parent class that does
  1206. % not exist.
  1207. parser_e_multiple_messages=03258_E_Apenas uma mensagem pode ser usada por m‚todo.
  1208. % It is not possible to associate multiple messages with a single method.
  1209. parser_e_invalid_enumerator_identifier=03259_E_Identificador enumerador inv lido: "$1"
  1210. % Only "MoveNext" and "Current" enumerator identifiers are supported.
  1211. parser_e_enumerator_identifier_required=03260_E_Identificador enumerador requerido
  1212. % "MoveNext" or "Current" identifier must follow the \var{enumerator} modifier.
  1213. parser_e_enumerator_movenext_is_not_valid=03261_E_M‚todo enumerador 'MoveNext' padrÆo inv lido. M‚todo deve ser uma fun‡Æo com tipo de retorno booleano e sem argumentos requeridos.
  1214. % "MoveNext" enumerator pattern method must be a function with Boolean return type and no required arguments
  1215. parser_e_enumerator_current_is_not_valid=03262_E_Propriedade enumerador 'Current' padrÆo inv lido. Propriedade deve ter um 'getter'.
  1216. % "Current" enumerator pattern property must have a getter
  1217. parser_e_only_one_enumerator_movenext=03263_E_Apenas um m‚todo enumerador 'MoveNext' ‚ permitido por classe/objeto
  1218. % Class or Object can have only one enumerator MoveNext declaration.
  1219. parser_e_only_one_enumerator_current=03264_E_Apenas uma propriedade enumerador 'Current' ‚ permitida por classe/objeto
  1220. % Class or Object can have only one enumerator Current declaration.
  1221. parser_e_for_in_loop_cannot_be_used_for_the_type=03265_E_La‡o 'for in' nÆo pode ser usado para o tipo "$1"
  1222. % For in loop can be used not for all types. For example it cannot be used for the enumerations with jumps.
  1223. parser_e_objc_requires_msgstr=03266_E_Mensagens Objective-C requerem que seu nome seletor Objective-C seja especificado usando a diretiva "message".
  1224. % Objective-C messages require their Objective-C name (selector name) to be specified using the \var{message `someName:'} procedure directive.
  1225. % While bindings to other languages automatically generate such names based on the identifier you use (by replacing
  1226. % all underscores with colons), this is unsafe since nothing prevents an Objective-C method name to contain actual
  1227. % colons.
  1228. parser_e_objc_no_constructor_destructor=03267_E_Objective-C nÆo tem construtores nem destruidores formais. Use as mensagens 'alloc', 'initXXX' e 'dealloc'.
  1229. % The Objective-C language does not have any constructors or destructors. While there are some messages with a similar
  1230. % purpose (such as \var{init} and \var{dealloc}), these cannot be identified using automatic parsers and do not
  1231. % guarantee anything like Pascal constructors/destructors (e.g., you have to take care of only calling ``designated''
  1232. % inherited ``constructors''). For these reasons, we have opted to follow the standard Objective-C patterns for
  1233. % instance creation/destruction.
  1234. parser_e_message_string_too_long=03268_E_Nome mensagem ‚ muito longo (max. 255 caracteres)
  1235. % Due to compiler implementation reasons, message names are currently limited to 255 characters.
  1236. parser_e_objc_message_name_too_long=03269_E_Nome s¡mbolo mensagem Objective-C para "$1" ‚ muito longo
  1237. % Due to compiler implementation reasons, mangled message names (i.e., the symbol names used in the assembler
  1238. % code) are currently limited to 255 characters.
  1239. parser_h_no_objc_parent=03270_H_Definindo uma nova classe raiz Objective-C. Para derivar de outra classe raiz (ex., NSObject), especifique-a como pai da classe
  1240. % If no parent class is specified for an Object Pascal class, then it automatically derives from TObject.
  1241. % Objective-C classes however do not automatically derive from NSObject, because one can have multiple
  1242. % root classes in Objective-C. For example, in the Cocoa framework both NSObject and NSProxy are root classes.
  1243. % Therefore, you have to explicitly define a parent class (such as NSObject) if you want to derive your
  1244. % Objective-C class from it.
  1245. parser_e_no_objc_published=03271_E_Classes Objective-C nÆo podem ter se‡äes PUBLISHED
  1246. % In Object Pascal, ``published'' determines whether or not RTTI is generated. Since the Objective-C runtime always needs
  1247. % RTTI for everything, this specified does not make sense for Objective-C classes.
  1248. parser_f_need_objc=03272_F_Este m¢dulo requer que seja especificado uma chave de modo Objective-C para ser compilado
  1249. % This error indicates the use of Objective-C language features without an Objective-C mode switch
  1250. % active. Enable one via the -M command line switch, or the {\$modeswitch x} directive.
  1251. parser_e_must_use_override_objc=03273_E_M‚todos herdados podem apenas ser sobrepostos em Objective-C, adicione "OVERRIDE".
  1252. parser_h_should_use_override_objc=03274_H_M‚todos herdados podem apenas ser sobrepostos em Objective-C, adicinone "OVERRIDE".
  1253. % It is not possible to \var{reintroduce} methods in Objective-C like in Object Pascal. Methods with the same
  1254. % name always map to the same virtual method entry. In order to make this clear in the source code,
  1255. % the compiler always requires the \var{override} directive to be specified when implementing overriding
  1256. % Objective-C methods in Pascal. If the implementation is external, this rule is relaxed because Objective-C
  1257. % does not have any \var{override}-style keyword (since it's the default and only behaviour in that language),
  1258. % which makes it hard for automated header conversion tools to include it everywhere.
  1259. parser_e_objc_message_name_changed=03275_E_Nome mensagem "$1" na classe herdada ‚ diferente do nome mensagem "$2" na classe atual.
  1260. % An overriding Objective-C method cannot have a different message name than an inherited method. The reason
  1261. % is that these message names uniquely define the message to the Objective-C runtime, which means that
  1262. % giving them a different message name breaks the ``override'' semantics.
  1263. parser_e_no_objc_unique=03276_E_Ainda nÆo ‚ poss¡vel fazer c¢pias £nicas de tipos Objective-C
  1264. % Duplicating an Objective-C type using \var{type x = type y;} is not yet supported. You may be able to
  1265. % obtain the desired effect using \var{type x = objcclass(y) end;} instead.
  1266. parser_e_no_category_as_types=03277_E_Categorias Objective-C nÆo podem ser usadas como tipos
  1267. % It is not possible to declare a variable as an instance of an Objective-C category. A
  1268. % category adds methods to the scope of an existing class, but does not define a type by itself.
  1269. parser_e_no_category_override=03278_E_Categorias nÆo sobrepäem, mas substituem m‚todos. Use "REINTRODUCE".
  1270. parser_e_must_use_reintroduce_objc=03279_E_M‚todos substitu¡dos podem apenas ser reintroduzidos em Objective-C, adicione "REINTRODUCE".
  1271. parser_h_should_use_reintroduce_objc=03280_H_M‚todos substitu¡dos podem apenas ser reintroduzidos em Objective-C, adicione "REINTRODUCE".
  1272. % A category replaces an existing method in an Objective-C class, rather than that it overrides it.
  1273. % Calling an inherited method from an category method will call that method in
  1274. % the extended class' parent, not in the extended class itself. The
  1275. % replaced method in the original class is basically lost, and can no longer be
  1276. % called or referred to. This behaviour corresponds somewhat more closely to
  1277. % \var{reintroduce} than to \var{override} (although in case of \var{reintroduce}
  1278. % in Object Pascal, hidden methods are still reachable via inherited).
  1279. parser_e_implements_getter_not_default_cc=03281_E_'Getter' para implementa‡Æo interface deve usar a conven‡Æo de chamada padrÆo do alvo.
  1280. % Interface getters are called via a helper in the run time library, and hence
  1281. % have to use the default calling convention for the target (\var{register} on
  1282. % i386 and x86\_64, \var{stdcall} on other architectures).
  1283. parser_e_no_refcounted_typed_file=03282_E_Arquivos tipados nÆo podem conter tipos referˆncia-contados.
  1284. % The data in a typed file cannot be of a reference counted type (such as
  1285. % \var{ansistring} or a record containing a field that is reference counted).
  1286. parser_e_operator_not_overloaded_2=03283_E_Operador nÆo est  sobrecarregado: $2 "$1"
  1287. % You are trying to use an overloaded operator when it is not overloaded for
  1288. % this type.
  1289. parser_e_operator_not_overloaded_3=03284_E_Operador nÆo est  sobrecarregado: "$1" $2 "$3"
  1290. % You are trying to use an overloaded operator when it is not overloaded for
  1291. % this type.
  1292. parser_e_more_array_elements_expected=03285_E_Esperados outros $1 elementos matriz
  1293. % When declaring a typed constant array, you provided to few elements to initialize the array
  1294. parser_e_string_const_too_long=03286_E_Constante 'String' muito longa, enquanto 'ansistrings' estÆo desabilitadas
  1295. % Only when a piece of code is compiled with ansistrings enabled (\var{\{\$H+\}}), string constants
  1296. % longer than 255 characters are allowed.
  1297. parser_e_invalid_univ_para=03287_E_Tipo nÆo pode ser usado como parƒmetro 'univ' porque seu tamanho ‚ desconhecido em tempo compila‡Æo: "$1"
  1298. % \var{univ} parameters are compatible with all values of the same size, but this
  1299. % cannot be checked in case a parameter's size is unknown at compile time.
  1300. parser_e_only_one_class_constructor_allowed=03288_E_Apenas um construtor de classe pode ser definido na classe: "$1"
  1301. % You are trying to declare more than one class constructor but only one class constructor can be declared.
  1302. parser_e_only_one_class_destructor_allowed=03289_E_Apenas um destruidor de classe pode ser definido na classe: "$1"
  1303. % You are trying to declare more than one class destructor but only one class destructor can be declared.
  1304. parser_e_no_paras_for_class_constructor=03290_E_Construtores de classe nÆo podem ter parƒmetros
  1305. % You are declaring a class constructor with a parameter list. Class constructor methods
  1306. % cannot have parameters.
  1307. parser_e_no_paras_for_class_destructor=03291_E_Destruidores de classe nÆo podem ter parƒmetros
  1308. % You are declaring a class destructor with a parameter list. Class destructor methods
  1309. % cannot have parameters.
  1310. % \end{description}
  1311. parser_f_modeswitch_objc_required=03292_F_Esta constru‡Æo requer que chave de modo \{\$modeswitch objectivec1\} esteja ativa
  1312. % Objective-Pascal constructs are not supported when \{\$modeswitch ObjectiveC1\}
  1313. % is not active.
  1314. parser_e_widestring_to_ansi_compile_time=03293_E_Constantes caracteres/unicode nÆo podem ser convertidas em "ansi/shortstring" em tempo de compila‡Æo
  1315. % It is not possible to use unicodechar and unicodestring constants in
  1316. % constant expressions that have to be converted into an ansistring or shortstring
  1317. % at compile time, for example inside typed constants. The reason is that the
  1318. % compiler cannot know what the actual ansi encoding will be at run time.
  1319. parser_e_objc_enumerator_2_0=03294_E_La‡os "For-in Objective-Pascal" requerem que a chave \{\$modeswitch ObjectiveC2\} esteja ativa
  1320. % Objective-C ``fast enumeration'' support was added in Objective-C 2.0, and
  1321. % hence the appropriate modeswitch has to be activated to expose this feature.
  1322. % Note that Objective-C 2.0 programs require Mac OS X 10.5 or later.
  1323. parser_e_objc_missing_enumeration_defs=03295_E_O compilador nÆo encontrou os tipos "NSFastEnumerationProtocol" ou "NSFastEnumerationState" na unidade "CocoaAll"
  1324. % Objective-C for-in loops (fast enumeration) require that the compiler can
  1325. % find a unit called CocoaAll that contains definitions for the
  1326. % NSFastEnumerationProtocol and NSFastEnumerationState types. If you get this
  1327. % error, most likely the compiler is finding and loading an alternate CocoaAll
  1328. % unit.
  1329. #
  1330. # Type Checking
  1331. #
  1332. # 04095 is the last used one
  1333. #
  1334. % \section{Type checking errors}
  1335. % This section lists all errors that can occur when type checking is
  1336. % performed.
  1337. % \begin{description}
  1338. type_e_mismatch=04000_E_Tipo incompat¡vel
  1339. % This can happen in many cases:
  1340. % \begin{itemize}
  1341. % \item The variable you're assigning to is of a different type than the
  1342. % expression in the assignment.
  1343. % \item You are calling a function or procedure with parameters that are
  1344. % incompatible with the parameters in the function or procedure definition.
  1345. % \end{itemize}
  1346. type_e_incompatible_types=04001_E_Tipos incompat¡veis: obtido "$1" esperado "$2"
  1347. % There is no conversion possible between the two types.
  1348. % Another possiblity is that they are declared in different
  1349. % declarations:
  1350. % \begin{verbatim}
  1351. % Var
  1352. % A1 : Array[1..10] Of Integer;
  1353. % A2 : Array[1..10] Of Integer;
  1354. %
  1355. % Begin
  1356. % A1:=A2; { This statement also gives this error. It
  1357. % is due to the strict type checking of Pascal }
  1358. % End.
  1359. % \end{verbatim}
  1360. type_e_not_equal_types=04002_E_Tipos incompat¡veis entre "$1" e "$2"
  1361. % The types are not equal.
  1362. type_e_type_id_expected=04003_E_Identificador de tipo esperado
  1363. % The identifier is not a type, or you forgot to supply a type identifier.
  1364. type_e_variable_id_expected=04004_E_Identificador de vari vel esperado
  1365. % This happens when you pass a constant to a routine (such as \var{Inc} var or \var{Dec})
  1366. % when it expects a variable. You can only pass variables as arguments to these functions.
  1367. type_e_integer_expr_expected=04005_E_ExpressÆo inteira esperada, mas obtido "$1"
  1368. % The compiler expects an expression of type integer, but gets a different
  1369. % type.
  1370. type_e_boolean_expr_expected=04006_E_ExpressÆo booleana esperada, mas obtido "$1"
  1371. % The expression must be a boolean type. It should be return \var{True} or
  1372. % \var{False}.
  1373. type_e_ordinal_expr_expected=04007_E_ExpressÆo ordinal esperada
  1374. % The expression must be of ordinal type, i.e., maximum a \var{Longint}.
  1375. % This happens, for instance, when you specify a second argument
  1376. % to \var{Inc} or \var{Dec} that doesn't evaluate to an ordinal value.
  1377. type_e_pointer_type_expected=04008_E_Tipo ponteiro esperado, mas obtido "$1"
  1378. % The variable or expression isn't of the type \var{pointer}. This
  1379. % happens when you pass a variable that isn't a pointer to \var{New}
  1380. % or \var{Dispose}.
  1381. type_e_class_type_expected=04009_E_Tipo classe esperado, mas obtido "$1"
  1382. % The variable or expression isn't of the type \var{class}. This happens
  1383. % typically when
  1384. % \begin{enumerate}
  1385. % \item The parent class in a class declaration isn't a class.
  1386. % \item An exception handler (\var{On}) contains a type identifier that
  1387. % isn't a class.
  1388. % \end{enumerate}
  1389. type_e_cant_eval_constant_expr=04011_E_Imposs¡vel avaliar expressÆo constante
  1390. % This error can occur when the bounds of an array you declared do
  1391. % not evaluate to ordinal constants.
  1392. type_e_set_element_are_not_comp=04012_E_Elementos conjunto nÆo sÆo compat¡veis
  1393. % You are trying to perform an operation on two sets, when the set element types
  1394. % are not the same. The base type of a set must be the same when taking the
  1395. % union.
  1396. type_e_set_operation_unknown=04013_E_Opera‡Æo nÆo implementada para conjuntos
  1397. % several binary operations are not defined for sets.
  1398. % These include: \var{div}, \var{mod}, \var{**}, \var{>=} and \var{<=}.
  1399. % The last two may be defined for sets in the future.
  1400. type_w_convert_real_2_comp=04014_W_ConversÆo autom tica de tipo de ponto flutuante para COMP que ‚ um inteiro
  1401. % An implicit type conversion from a real type to a \var{comp} is
  1402. % encountered. Since \var{comp} is a 64 bit integer type, this may indicate
  1403. % an error.
  1404. type_h_use_div_for_int=04015_H_Use DIV como alternativa para obter um resultado inteiro
  1405. % When hints are on, then an integer division with the '/' operator will
  1406. % produce this message, because the result will then be of type real.
  1407. type_e_strict_var_string_violation=04016_E_Tipos 'String' devem coincidir exatamente no modo $V+
  1408. % When compiling in \var{\{\$V+\}} mode, the string you pass as a parameter
  1409. % should be of the exact same type as the declared parameter of the procedure.
  1410. type_e_succ_and_pred_enums_with_assign_not_possible=04017_E_'SUCC' ou 'PRED' nÆo ‚ poss¡vel em enumera‡äes com atribui‡äes
  1411. % If you declare an enumeration type which has C-like assignments
  1412. % in it, such as in the following:
  1413. % \begin{verbatim}
  1414. % Tenum = (a,b,e:=5);
  1415. % \end{verbatim}
  1416. % then you cannot use the \var{Succ} or \var{Pred} functions with this enumeration.
  1417. type_e_cant_read_write_type=04018_E_Imposs¡vel ler ou gravar vari veis deste tipo
  1418. % You are trying to \var{read} or \var{write} a variable from or to a
  1419. % file of type text, which doesn't support that variable's type.
  1420. % Only integer types, reals, pchars and strings can be read from or
  1421. % written to a text file. Booleans can only be written to text files.
  1422. type_e_no_readln_writeln_for_typed_file=04019_E_Imposs¡vel usar 'readln' ou 'writeln' em arquivos tipados
  1423. % \var{readln} and \var{writeln} are only allowed for text files.
  1424. type_e_no_read_write_for_untyped_file=04020_E_Impossivel usar 'read' ou 'write' em arquivos nÆo tipados.
  1425. % \var{read} and \var{write} are only allowed for text or typed files.
  1426. type_e_typeconflict_in_set=04021_E_Conflito de tipos entre elementos de conjunto
  1427. % There is at least one set element which is of the wrong type, i.e. not of
  1428. % the set type.
  1429. type_w_maybe_wrong_hi_lo=04022_W_lo/hi(dword/qword) retorna 'upper/lower word/dword'
  1430. % \fpc supports an overloaded version of \var{lo/hi} for \var{longint/dword/int64/qword}
  1431. % which returns the lower/upper word/dword of the argument. \tp always uses
  1432. % a 16 bit \var{lo/hi} which always returns bits 0..7 for \var{lo} and the
  1433. % bits 8..15 for \var{hi}. If you want the \tp behavior you have
  1434. % to type cast the argument to a \var{word} or \var{integer}.
  1435. type_e_integer_or_real_expr_expected=04023_E_ExpressÆo inteira ou real esperada
  1436. % The first argument to \var{str} must be a real or integer type.
  1437. type_e_wrong_type_in_array_constructor=04024_E_Tipo incorreto "$1" no construtor matriz
  1438. % You are trying to use a type in an array constructor which is not
  1439. % allowed.
  1440. type_e_wrong_parameter_type=04025_E_Tipos incompat¡veis para o arg. no. $1: Obtido "$2", esperado "$3"
  1441. % You are trying to pass an invalid type for the specified parameter.
  1442. type_e_no_method_and_procedure_not_compatible=04026_E_M‚todo (vari vel) e Procedimento (vari vel) nÆo sÆo compat¡veis
  1443. % You can't assign a method to a procedure variable or a procedure to a
  1444. % method pointer.
  1445. type_e_wrong_math_argument=04027_E_Constante ilegal passada para fun‡Æo matem tica interna
  1446. % The constant argument passed to a \var{ln} or \var{sqrt} function is out of
  1447. % the definition range of these functions.
  1448. type_e_no_addr_of_constant=04028_E_Imposs¡vel obter o endere‡o de expressäes constantes
  1449. % It is not possible to get the address of a constant expression, because they
  1450. % aren't stored in memory. You can try making it a typed constant. This error
  1451. % can also be displayed if you try to pass a property to a var parameter.
  1452. type_e_argument_cant_be_assigned=04029_E_Argumento nÆo pode ser atribu¡do
  1453. % Only expressions which can be on the left side of an
  1454. % assignment can be passed as call by reference arguments.
  1455. %
  1456. % Remark: Properties can be used on the left side of an assignment,
  1457. % nevertheless they cannot be used as arguments.
  1458. type_e_cannot_local_proc_to_procvar=04030_E_Imposs¡vel atribuir procedimento/fun‡Æo local a vari vel procedimento
  1459. % It's not allowed to assign a local procedure/function to a
  1460. % procedure variable, because the calling convention of a local procedure/function is
  1461. % different. You can only assign local procedure/function to a void pointer.
  1462. type_e_no_assign_to_addr=04031_E_Imposs¡vel atribuir valores a um endere‡o
  1463. % It is not allowed to assign a value to an address of a variable, constant,
  1464. % procedure or function. You can try compiling with -So if the identifier
  1465. % is a procedure variable.
  1466. type_e_no_assign_to_const=04032_E_Imposs¡vel atribuir valors a uma vari vel constante
  1467. % It's not allowed to assign a value to a variable which is declared
  1468. % as a const. This is normally a parameter declared as const. To allow
  1469. % changing the value, pass the parameter by value, or a parameter by reference
  1470. % (using var).
  1471. type_e_array_required=04033_E_Tipo matriz requerido
  1472. % If you are accessing a variable using an index '[<x>]' then
  1473. % the type must be an array. In FPC mode a pointer is also allowed.
  1474. type_e_interface_type_expected=04034_E_Tipo interface esperado, mas obtido "$1"
  1475. % The compiler expected to encounter an interface type name, but got something else.
  1476. % The following code would produce this error:
  1477. % \begin{verbatim}
  1478. % Type
  1479. % TMyStream = Class(TStream,Integer)
  1480. % \end{verbatim}
  1481. type_h_mixed_signed_unsigned=04035_H_Misturando expressäes assinadas e 'longwords' obtem-se um resultado de 64bits
  1482. % If you divide (or calculate the modulus of) a signed expression by a longword (or vice versa),
  1483. % or if you have overflow and/or range checking turned on and use an arithmetic
  1484. % expression (+, -, *, div, mod) in which both signed numbers and longwords appear,
  1485. % then everything has to be evaluated in 64-bit arithmetic which is slower than normal
  1486. % 32-bit arithmetic. You can avoid this by typecasting one operand so it
  1487. % matches the result type of the other one.
  1488. type_w_mixed_signed_unsigned2=04036_W_Misturando expressäes assinadas e cardinais pode causar um erro de verifica‡Æo de faixa
  1489. % If you use a binary operator (and, or, xor) and one of
  1490. % the operands is a longword while the other one is a signed expression, then,
  1491. % if range checking is turned on, you may get a range check error because in
  1492. % such a case both operands are converted to longword before the operation is
  1493. % carried out. You can avoid this by typecasting one operand so it
  1494. % matches the result type of the other one.
  1495. type_e_typecast_wrong_size_for_assignment=04037_E_ConversÆo de tipo tem tamanhos diferentes ($1 -> $2) na atribui‡Æo
  1496. % Type casting to a type with a different size is not allowed when the variable is
  1497. % used in an assignment.
  1498. type_e_array_index_enums_with_assign_not_possible=04038_E_Enumera‡äes com atribui‡äes nÆo podem ser usadas como ¡ndice de matrizes
  1499. % When you declared an enumeration type which has C-like
  1500. % assignments, such as in the following:
  1501. % \begin{verbatim}
  1502. % Tenum = (a,b,e:=5);
  1503. % \end{verbatim}
  1504. % you cannot use it as the index of an array.
  1505. type_e_classes_not_related=04039_E_Tipos Classe ou Objeto "$1" e "$2" nÆo estÆo relacionados
  1506. % There is a typecast from one class or object to another while the class/object
  1507. % are not related. This will probably lead to errors.
  1508. type_w_classes_not_related=04040_W_Tipos Classe "$1" e "$2" nÆo estÆo relacionados
  1509. % There is a typecast from one class to another while the classes
  1510. % are not related. This will probably lead to errors.
  1511. type_e_class_or_interface_type_expected=04041_E_Tipo classe ou interface esperado, mas obtido "$1"
  1512. % The compiler expected a class or interface name, but got another type or identifier.
  1513. type_e_type_is_not_completly_defined=04042_E_Tipo "$1" nÆo est  completamente definido
  1514. % This error occurs when a type is not complete: i.e. a pointer type which points to
  1515. % an undefined type.
  1516. type_w_string_too_long=04043_W_Literal 'String' tem mais caracteres que comprimento 'string' curta
  1517. % The size of the constant string, which is assigned to a shortstring,
  1518. % is longer than the maximum size of the shortstring (255 characters).
  1519. type_w_signed_unsigned_always_false=04044_W_Compara‡Æo ser  sempre falsa devido a faixa de valores
  1520. % There is a comparison between an unsigned value and a signed constant which is
  1521. % less than zero. Because of type promotion, the statement will always evaluate to
  1522. % false. Explicitly typecast the constant to the correct range to avoid this problem.
  1523. type_w_signed_unsigned_always_true=04045_W_Compara‡Æo ser  sempre verdadeira devido a faixa de valores
  1524. % There is a comparison between an unsigned value and a signed constant which is
  1525. % less than zero. Because of type promotion, the statement will always evaluate to
  1526. % true. Explicitly typecast the constant to the correct range to avoid this problem.
  1527. type_w_instance_with_abstract=04046_W_Construindo uma classe "$1" com m‚todo abstrato "$2"
  1528. % An instance of a class is created which contains non-implemented abstract
  1529. % methods. This will probably lead to a runtime error 211 in the code if that
  1530. % routine is ever called. All abstract methods should be overridden.
  1531. type_h_in_range_check=04047_H_O operador esquerdo em um operador 'IN' deve ser tamanho byte
  1532. % The left operand of the \var{in} operator is not an ordinal or enumeration which fits
  1533. % within 8 bits. This may lead to range check errors. The \var{in} operator
  1534. % currently only supports a left operand which fits within a byte. In the case of
  1535. % enumerations, the size of an element of an enumeration can be controlled with
  1536. % the \var{\{\$PACKENUM\}} or \var{\{\$Zn\}} switches.
  1537. type_w_smaller_possible_range_check=04048_W_Tamanho tipo incompat¡vel, poss¡vel perda de dados / erro verifica‡Æo faixa
  1538. % There is an assignment to a smaller type than the source type. This means that
  1539. % this may cause a range-check error, or may lead to possible loss of data.
  1540. type_h_smaller_possible_range_check=04049_H_Tamanho tipo incompat¡vel, poss¡vel perda de dados / erro verifica‡Æo faixa
  1541. % There is an assignment to a smaller type than the source type. This means that
  1542. % this may cause a range-check error, or may lead to possible loss of data.
  1543. type_e_cant_take_address_of_abstract_method=04050_E_O endere‡o de um m‚todo abstrato nÆo pode ser obtido
  1544. % An abstract method has no body, so the address of an abstract method can't be taken.
  1545. type_e_assignment_not_allowed=04051_E_Atribui‡äes … parƒmetros formais e matrizes abertas nÆo sÆo poss¡veis
  1546. % You are trying to assign a value to a formal (untyped var, const or out)
  1547. % parameter, or to an open array.
  1548. type_e_constant_expr_expected=04052_E_ExpressÆo constante esperada
  1549. % The compiler expects an constant expression, but gets a variable expression.
  1550. type_e_operator_not_supported_for_types=04053_E_Opera‡Æo "$1" nÆo ‚ suportada para os tipos "$2" e "$3"
  1551. % The operation is not allowed for the supplied types.
  1552. type_e_illegal_type_conversion=04054_E_ConversÆo de tipo ilegal: "$1" para "$2"
  1553. % When doing a type-cast, you must take care that the sizes of the variable and
  1554. % the destination type are the same.
  1555. type_h_pointer_to_longint_conv_not_portable=04055_H_ConversÆo entre ordinais e ponteiros nÆo ‚ port vel
  1556. % If you typecast a pointer to a longint (or vice-versa), this code will not compile
  1557. % on a machine using 64 bits addressing.
  1558. type_w_pointer_to_longint_conv_not_portable=04056_W_ConversÆo entre ordinais e ponteiros nÆo ‚ port vel
  1559. % If you typecast a pointer to an ordinal type of a different size (or vice-versa), this can
  1560. % cause problems. This is a warning to help in finding the 32-bit specific code where cardinal/longint is used
  1561. % to typecast pointers to ordinals. A solution is to use the ptrint/ptruint types instead.
  1562. type_e_cant_choose_overload_function=04057_E_Imposs¡vel determinar qual fun‡Æo sobrecarregada chamar
  1563. % You're calling overloaded functions with a parameter that doesn't correspond
  1564. % to any of the declared function parameter lists. e.g. when you have declared
  1565. % a function with parameters \var{word} and \var{longint}, and then you call
  1566. % it with a parameter which is of type \var{integer}.
  1567. type_e_illegal_count_var=04058_E_Vari vel contador ilegal
  1568. % The type of a \var{for} loop variable must be an ordinal type.
  1569. % Loop variables cannot be reals or strings.
  1570. type_w_double_c_varargs=04059_W_Convertendo constante valor real para 'double' para vari vel argumento C, adicione conversÆo de tipo expl¡cita para evitar isso.
  1571. % In C, constant real values are double by default. For this reason, if you
  1572. % pass a constant real value to a variable argument part of a C function, FPC
  1573. % by default converts this constant to double as well. If you want to prevent
  1574. % this from happening, add an explicit typecast around the constant.
  1575. type_e_class_or_cominterface_type_expected=04060_E_Tipo Classe ou interface COM esperado, mas obtido "$1"
  1576. % Some operators, such as the AS operator, are only applicable to classes or COM interfaces.
  1577. type_e_no_const_packed_array=04061_E_Matrizes constantes compactadas nÆo sÆo suportadas ainda
  1578. % You cannot declare a (bit)packed array as a typed constant.
  1579. type_e_got_expected_packed_array=04062_E_Tipos incompat¡veis para arg. no. $1: Obtido "$2" esperado "Matriz compactada (Bits)"
  1580. % The compiler expects a (bit)packed array as the specified parameter.
  1581. type_e_got_expected_unpacked_array=04063_E_Tipos incompat¡veis para arg. no. $1: Obtido "$2" esperado "Matriz (nÆo compactada)"
  1582. % The compiler expects a regular (i.e., not packed) array as the specified parameter.
  1583. type_e_no_packed_inittable=04064_E_Elementos de matrizes compactadas nÆo podem ser de um tipo que necessita ser inicializado
  1584. % Support for packed arrays of types that need initialization
  1585. % (such as ansistrings, or records which contain ansistrings) is not yet implemented.
  1586. type_e_no_const_packed_record=04065_E_Registros constantes compactadas e objetos nÆo sÆo suportados ainda
  1587. % You cannot declare a (bit)packed array as a typed constant at this time.
  1588. type_w_untyped_arithmetic_unportable=04066_W_Aritm‚tica "$1" em ponteiros nÆo tipados nÆo ‚ port vel {$T+}, sugere-se conversÆo de tipo
  1589. % Addition/subtraction from an untyped pointer may work differently in \var{\{\$T+\}}.
  1590. % Use a typecast to a typed pointer.
  1591. type_e_cant_take_address_of_local_subroutine=04076_E_Imposs¡vel obter endere‡o de uma subrotina marcada como local
  1592. % The address of a subroutine marked as local can't be taken.
  1593. type_e_cant_export_local=04077_E_Imposs¡vel exportar subrotina marcada como local de uma unidade
  1594. % A subroutine marked as local can't be exported from a unit.
  1595. type_e_not_automatable=04078_E_Tipo nÆo ‚ automatiz vel: "$1"
  1596. % Only byte, integer, longint, smallint, currency, single, double, ansistring,
  1597. % widestring, tdatetime, variant, olevariant, wordbool and all interfaces are automatable.
  1598. type_h_convert_add_operands_to_prevent_overflow=04079_H_Convertendo os operandos para "$1" antes de realizar a soma pode prevenir erros de transbordamento.
  1599. % Adding two types can cause overflow errors. Since you are converting the result to a larger type, you
  1600. % could prevent such errors by converting the operands to this type before doing the addition.
  1601. type_h_convert_sub_operands_to_prevent_overflow=04080_H_Convertendo os operandos para "$1" antes de realizar a subtra‡Æo pode prevenir erros de transbordamento.
  1602. % Subtracting two types can cause overflow errors. Since you are converting the result to a larger type, you
  1603. % could prevent such errors by converting the operands to this type before doing the subtraction.
  1604. type_h_convert_mul_operands_to_prevent_overflow=04081_H_Convertendo os operados para "$1" antes de realizar a multiplica‡Æo pode prevenir erros de transbordamento.
  1605. % Multiplying two types can cause overflow errors. Since you are converting the result to a larger type, you
  1606. % could prevent such errors by converting the operands to this type before doing the multiplication.
  1607. type_w_pointer_to_signed=04082_W_Convertendo ponteiros para inteiros assinados pode resultar em compara‡äes de resultados incorretas e erros de faixa. Ao inv‚s disso, use tipos nÆo assinados.
  1608. % The virtual address space on 32-bit machines runs from \$00000000 to \$ffffffff.
  1609. % Many operating systems allow you to allocate memory above \$80000000.
  1610. % For example both \windows and \linux allow pointers in the range \$0000000 to \$bfffffff.
  1611. % If you convert pointers to signed types, this can cause overflow and range check errors,
  1612. % but also \$80000000 < \$7fffffff. This can cause random errors in code like "if p>q".
  1613. type_interface_has_no_guid=04083_E_Tipo interface $1 nÆo tem um GUID v lido
  1614. % When applying the as-operator to an interface or class, the desired interface (i.e. the right operand of the
  1615. % as-operator) must have a valid GUID.
  1616. type_e_invalid_objc_selector_name=04084_E_Nome seletor inv lido "$1"
  1617. % An Objective-C selector cannot be empty, must be a valid identifier or a single colon,
  1618. % and if it contains at least one colon it must also end in one.
  1619. type_e_expected_objc_method_but_got=04085_E_M‚todo Objective-C esperado, mas obtido $1
  1620. % A selector can only be created for Objective-C methods, not for any other kind
  1621. % of procedure/function/method.
  1622. type_e_expected_objc_method=04086_E_M‚todo Objective-C ou nome m‚todo constante esperados
  1623. % A selector can only be created for Objective-C methods, either by specifying
  1624. % the name using a string constant, or by using an Objective-C method identifier
  1625. % that is visible in the current scope.
  1626. type_e_no_type_info=04087_E_Nenhuma informa‡Æo de tipo dispon¡vel para este tipo
  1627. % Type information is not generated for some types, such as enumerations with gaps
  1628. % in their value range (this includes enumerations whose lower bound is different
  1629. % from zero).
  1630. type_e_ordinal_or_string_expr_expected=04088_E_Ordinal ou expressÆo 'string' esperados
  1631. % The expression must be an ordinal or string type.
  1632. type_e_string_expr_expected=04089_E_ExpressÆo 'string' esperada
  1633. % The expression must be a string type.
  1634. type_w_zero_to_nil=04090_W_Convertendo 0 para NIL
  1635. % Use NIL rather than 0 when initialising a pointer.
  1636. type_e_protocol_type_expected=04091_E_Tipo protocolo Objective-C esperado, mas obtido "$1"
  1637. % The compiler expected a protocol type name, but found something else.
  1638. type_e_objc_type_unsupported=04092_E_O tipo "$1" nÆo ‚ suportado para intera‡Æo com c¢digo Objective-C de tempo execu‡Æo.
  1639. % Objective-C makes extensive use of run time type information (RTTI). This format
  1640. % is defined by the maintainers of the run time and can therefore not be adapted
  1641. % to all possible Object Pascal types. In particular, types that depend on
  1642. % reference counting by the compiler (such as ansistrings and certain kinds of
  1643. % interfaces) cannot be used as fields of Objective-C classes, cannot be
  1644. % directly passed to Objective-C methods, and cannot be encoded using \var{objc\_encode}.
  1645. type_e_class_or_objcclass_type_expected=04093_E_Tipo classe ou 'objcclass' esperados, mas obtido "$1"
  1646. % It is only possible to create class reference types of \var{class} and \var{objcclass}
  1647. type_e_objcclass_type_expected=04094_E_Tipo 'Objcclass' esperado
  1648. % The compiler expected an \var{objcclass} type
  1649. type_w_procvar_univ_conflicting_para=04095_W_Tipo parƒmetro 'univ' for‡ado em vari vel procedimental pode causar travamento ou corrup‡Æo de mem¢ria: $1 para $2
  1650. % \var{univ} parameters are implicitly compatible with all types of the same size,
  1651. % also in procedural variable definitions. That means that the following code is
  1652. % legal, because \var{single} and \var{longint} have the same size:
  1653. % \begin{verbatim}
  1654. % {$mode macpas}
  1655. % Type
  1656. % TIntProc = procedure (l: univ longint);
  1657. %
  1658. % procedure test(s: single);
  1659. % begin
  1660. % writeln(s);
  1661. % end;
  1662. %
  1663. % var
  1664. % p: TIntProc;
  1665. % begin
  1666. % p:=test;
  1667. % p(4);
  1668. % end.
  1669. % \end{verbatim}
  1670. % This code may however crash on platforms that pass integers in registers and
  1671. % floating point values on the stack, because then the stack will be unbalanced.
  1672. % Note that this warning will not flagg all potentially dangerous situations.
  1673. % when \var{test} returns.
  1674. %
  1675. % \end{description}
  1676. #
  1677. # Symtable
  1678. #
  1679. # 05080 is the last used one
  1680. #
  1681. % \section{Symbol handling}
  1682. % This section lists all the messages that concern the handling of symbols.
  1683. % This means all things that have to do with procedure and variable names.
  1684. % \begin{description}
  1685. sym_e_id_not_found=05000_E_Identificador nÆo encontrado "$1"
  1686. % The compiler doesn't know this symbol. Usually happens when you misspell
  1687. % the name of a variable or procedure, or when you forget to declare a
  1688. % variable.
  1689. sym_f_internal_error_in_symtablestack=05001_F_Erro interno em SymTableStack()
  1690. % An internal error occurred in the compiler; If you encounter such an error,
  1691. % please contact the developers and try to provide an exact description of
  1692. % the circumstances in which the error occurs.
  1693. sym_e_duplicate_id=05002_E_Identificador duplicado "$1"
  1694. % The identifier was already declared in the current scope.
  1695. sym_h_duplicate_id_where=05003_H_Identificador j  definido em $1 na linha $2
  1696. % The identifier was already declared in a previous scope.
  1697. sym_e_unknown_id=05004_E_Identificador desconhecido "$1"
  1698. % The identifier encountered has not been declared, or is used outside the
  1699. % scope where it is defined.
  1700. sym_e_forward_not_resolved=05005_E_Declara‡Æo posterior nÆo resolvida "$1"
  1701. % This can happen in two cases:
  1702. % \begin{itemize}
  1703. % \item You declare a function in the \var{interface} part, or
  1704. % with a \var{forward} directive, but do not implement it.
  1705. % \item You reference a type which isn't declared in the current \var{type}
  1706. % block.
  1707. % \end{itemize}
  1708. sym_e_error_in_type_def=05007_E_Erro na defini‡Æo de tipo
  1709. % There is an error in your definition of a new array type.
  1710. % One of the range delimiters in an array declaration is erroneous.
  1711. % For example, \var{Array [1..1.25]} will trigger this error.
  1712. sym_e_forward_type_not_resolved=05009_E_Tipo posterior nÆo resolvido "$1"
  1713. % A symbol was forward defined, but no declaration was encountered.
  1714. sym_e_only_static_in_static=05010_E_Apenas vari veis est ticas podem ser usadas em m‚todos est ticos ou m‚todos externos
  1715. % A static method of an object can only access static variables.
  1716. sym_f_type_must_be_rec_or_class=05012_F_Tipo registro ou classe esperados
  1717. % The variable or expression isn't of the type \var{record} or \var{class}.
  1718. sym_e_no_instance_of_abstract_object=05013_E_Instƒncias de classes ou objetos com m‚todos abstratos nÆo sÆo permitidas
  1719. % You are trying to generate an instance of a class which has an abstract
  1720. % method that wasn't overridden.
  1721. sym_w_label_not_defined=05014_W_R¢tulo nÆo definido "$1"
  1722. % A label was declared, but not defined.
  1723. sym_e_label_used_and_not_defined=05015_E_R¢tulo usado mas nÆo definido "$1"
  1724. % A label was declared and used, but not defined.
  1725. sym_e_ill_label_decl=05016_E_Declara‡Æo r¢tulo ilegal
  1726. % This error should never happen; it occurs if a label is defined outside a
  1727. % procedure or function.
  1728. sym_e_goto_and_label_not_supported=05017_E_GOTO e LABEL nÆo sÆo suportados (use a chave -Sg)
  1729. % You must use the -Sg switch to compile a program which has \var{label}s
  1730. % and \var{goto} statements. By default, \var{label} and \var{goto} aren't
  1731. % supported.
  1732. sym_e_label_not_found=05018_E_R¢tulo nÆo encontrado
  1733. % A \var{goto label} was encountered, but the label wasn't declared.
  1734. sym_e_id_is_no_label_id=05019_E_Identificador nÆo ‚ um r¢tulo
  1735. % The identifier specified after the \var{goto} isn't of type label.
  1736. sym_e_label_already_defined=05020_E_R¢tulo j  definido
  1737. % You are defining a label twice. You can define a label only once.
  1738. sym_e_ill_type_decl_set=05021_E_Declara‡Æo de tipo de conjunto de elementos ilegal
  1739. % The declaration of a set contains an invalid type definition.
  1740. sym_e_class_forward_not_resolved=05022_E_Declara‡Æo posterior de classe nÆo resolvida "$1"
  1741. % You declared a class, but you did not implement it.
  1742. sym_n_unit_not_used=05023_H_Unidade "$1" nÆo usada em $2
  1743. % The unit referenced in the \var{uses} clause is not used.
  1744. sym_h_para_identifier_not_used=05024_H_Parƒmetro "$1" nÆo usado
  1745. % The identifier was declared (locally or globally) but
  1746. % was not used (locally or globally).
  1747. sym_n_local_identifier_not_used=05025_N_Vari vel local "$1" nÆo usada
  1748. % You have declared, but not used, a variable in a procedure or function
  1749. % implementation.
  1750. sym_h_para_identifier_only_set=05026_H_Valor parƒmetro "$1" ‚ atribu¡do mas nunca usado
  1751. % The identifier was declared (locally or globally) and
  1752. % assigned to, but is not used (locally or globally) after the assignment.
  1753. sym_n_local_identifier_only_set=05027_N_Vari vel local "$1" ‚ atribu¡da mas nunca usada
  1754. % The variable in a procedure or function implementation is declared and
  1755. % assigned to, but is not used after the assignment.
  1756. sym_h_local_symbol_not_used=05028_H_Local $1 "$2" nÆo ‚ usado
  1757. % A local symbol is never used.
  1758. sym_n_private_identifier_not_used=05029_N_Campo privado "$1.$2" nunca usado
  1759. % The indicated private field is defined, but is never used in the code.
  1760. sym_n_private_identifier_only_set=05030_N_Campo privado "$1.$2" ‚ atribu¡do mas nunca usado
  1761. % The indicated private field is declared and assigned to, but never read.
  1762. sym_n_private_method_not_used=05031_N_M‚todo privado "$1.$2" nunca usado
  1763. % The indicated private method is declared but is never used in the code.
  1764. sym_e_set_expected=05032_E_Tipo conjunto esperado
  1765. % The variable or expression is not of type \var{set}. This happens in an
  1766. % \var{in} statement.
  1767. sym_w_function_result_not_set=05033_W_Retorno da fun‡Æo parece nÆo ter sido ajustado
  1768. % You can get this warning if the compiler thinks that a function return
  1769. % value is not set. This will not be displayed for assembler procedures,
  1770. % or procedures that contain assembler blocks.
  1771. sym_w_wrong_C_pack=05034_W_Tipo "$1" nÆo est  alinhado corretamente no atual registro para C
  1772. % Arrays with sizes not multiples of 4 will be wrongly aligned
  1773. % for C structures.
  1774. sym_e_illegal_field=05035_E_Identificador de campo de registro desconhecido "$1"
  1775. % The field doesn't exist in the record/object definition.
  1776. sym_w_uninitialized_local_variable=05036_W_Vari vel local "$1" nÆo parece ter sido inicializada
  1777. % This message is displayed if the compiler thinks that a variable will
  1778. % be used (i.e. it appears in the right-hand side of an expression) when it
  1779. % was not initialized first (i.e. appeared in the left-hand side of an
  1780. % assignment).
  1781. sym_w_uninitialized_variable=05037_W_Vari vel "$1" parece nÆo ter sido inicializada
  1782. % This message is displayed if the compiler thinks that a variable will
  1783. % be used (i.e. it appears in the right-hand side of an expression) when it
  1784. % was not initialized first (i.e. appeared in the left-hand side of an
  1785. % assignment).
  1786. sym_e_id_no_member=05038_E_Identificador nÆo identifica nenhum membro "$1"
  1787. % This error is generated when an identifier of a record,
  1788. % field or method is accessed while it is not defined.
  1789. sym_h_param_list=05039_H_Declara‡Æo encontrada: $1
  1790. % You get this when you use the \var{-vh} switch.In the case of an overloaded procedure
  1791. % not being found. Then all candidate overloaded procedures are
  1792. % listed, with their parameter lists.
  1793. sym_e_segment_too_large=05040_E_Elemento de dados muito grande
  1794. % You get this when you declare a data element whose size exceeds the
  1795. % prescribed limit (2 Gb on 80386+/68020+ processors).
  1796. sym_e_no_matching_implementation_found=05042_E_Nenhuma implementa‡Æo coincidente para m‚todo interface "$1" encontrada
  1797. % There was no matching method found which could implement the interface
  1798. % method. Check argument types and result type of the methods.
  1799. sym_w_deprecated_symbol=05043_W_S¡mbolo "$1" est  depreciado
  1800. % This means that a symbol (a variable, routine, etc...) which is
  1801. % declared as \var{deprecated} is used. Deprecated symbols may no longer
  1802. % be available in newer versions of the unit / library. Use of this symbol
  1803. % should be avoided as much as possible.
  1804. sym_w_non_portable_symbol=05044_W_S¡mbolo "$1" nÆo ‚ port vel
  1805. % This means that a symbol (a variable, routine, etc...) which is
  1806. % declared as \var{platform} is used. This symbol's value, use
  1807. % and availability is platform specific and should not be used
  1808. % if the source code must be portable.
  1809. sym_w_non_implemented_symbol=05055_W_S¡mbolo "$1" nÆo est  implementado
  1810. % This means that a symbol (a variable, routine, etc...) which is
  1811. % declared as \var{unimplemented} is used. This symbol is defined,
  1812. % but is not yet implemented on this specific platform.
  1813. sym_e_cant_create_unique_type=05056_E_Imposs¡vel criar tipo £nico para este tipo
  1814. % Only simple types like ordinal, float and string types are supported when
  1815. % redefining a type with \var{type newtype = type oldtype;}.
  1816. sym_h_uninitialized_local_variable=05057_H_Vari vel local "$1" parece nÆo ter sido inicializada
  1817. % This message is displayed if the compiler thinks that a variable will
  1818. % be used (i.e. it appears in the right-hand side of an expression) when it
  1819. % was not initialized first (i.e. it did not appear in the left-hand side of an
  1820. % assignment).
  1821. sym_h_uninitialized_variable=05058_H_Vari vel "$1" parece nÆo ter sido inicializada
  1822. % This message is displayed if the compiler thinks that a variable will
  1823. % be used (i.e. it appears in the right-hand side of an expression) when it
  1824. % was not initialized first (i.e. t did not appear in the left-hand side of an
  1825. % assignment).
  1826. sym_w_function_result_uninitialized=05059_W_Vari vel de retorno da fun‡Æo parece nÆo ter sido inicializada
  1827. % This message is displayed if the compiler thinks that the function result
  1828. % variable will be used (i.e. it appears in the right-hand side of an expression)
  1829. % before it is initialized (i.e. before it appeared in the left-hand side of an
  1830. % assignment).
  1831. sym_h_function_result_uninitialized=05060_H_Vari vel de retorno da fun‡Æo parece nÆo ter sido inicializada
  1832. % This message is displayed if the compiler thinks that the function result
  1833. % variable will be used (i.e. it appears in the right-hand side of an expression)
  1834. % before it is initialized (i.e. it appears in the left-hand side of an
  1835. % assignment)
  1836. sym_w_identifier_only_read=05061_W_Vari vel "$1" lida mas nÆo atribu¡da em lugar algum
  1837. % You have read the value of a variable, but nowhere assigned a value to
  1838. % it.
  1839. sym_h_abstract_method_list=05062_H_M‚todo abstrato encontrado: $1
  1840. % When getting a warning about constructing a class/object with abstract methods
  1841. % you get this hint to assist you in finding the affected method.
  1842. sym_w_experimental_symbol=05063_W_S¡mbolo "$1" ‚ experimental
  1843. % This means that a symbol (a variable, routine, etc...) which is
  1844. % declared as \var{experimental} is used. Experimental symbols
  1845. % might disappear or change semantics in future versions. Usage of this symbol
  1846. % should be avoided as much as possible.
  1847. sym_w_forward_not_resolved=05064_W_Declara‡Æo posterior "$1" nÆo resolvida, assumida como externa
  1848. % This happens if you declare a function in the \var{interface} of a unit in macpas mode,
  1849. % but do not implement it.
  1850. sym_w_library_symbol=05065_W_S¡mbolo "$1" pertence a uma biblioteca
  1851. % This means that a symbol (a variable, routine, etc...) which is
  1852. % declared as \var{library} is used. Library symbols may not be
  1853. % available in other libraries.
  1854. sym_w_deprecated_symbol_with_msg=05066_W_S¡mbolo "$1" est  depreciado: "$2"
  1855. % This means that a symbol (a variable, routine, etc...) which is
  1856. % declared as \var{deprecated} is used. Deprecated symbols may no longer
  1857. % be available in newer versions of the unit / library. Use of this symbol
  1858. % should be avoided as much as possible.
  1859. sym_e_no_enumerator=05067_E_Imposs¡vel encontrar um enumerador para o tipo "$1"
  1860. % This means that compiler cannot find an apropriate enumerator to use in the for-in loop.
  1861. % To create an enumerator you need to defind an operator enumerator or add a public or published
  1862. % GetEnumerator method to the class or object definition.
  1863. sym_e_no_enumerator_move=05068_E_Imposs¡vel encontrar um m‚todo "MoveNext" no enumerador "$1"
  1864. % This means that compiler cannot find a public MoveNext method with the Boolean return type in
  1865. % the enumerator class or object definition.
  1866. sym_e_no_enumerator_current=05069_E_Imposs¡vel encontrar uma propriedade "Current" no enumerador "$1"
  1867. % This means that compiler cannot find a public Current property in the enumerator class or object
  1868. % definition.
  1869. sym_e_objc_para_mismatch=05070_E_Incompatibilidade entre n£mero de parƒmetros declarados e n£mero de dois pontos (:) na 'string' mensagem.
  1870. % In Objective-C, a message name automatically contains as many colons as parameters.
  1871. % In order to prevent mistakes when specifying the message name in FPC, the compiler
  1872. % checks whether this is also the case here. Note that in case of messages taking a
  1873. % variable number of arguments translated to FPC via an \var{array of const} parameter,
  1874. % this final \var{array of const} parameter is not counted. Neither are the hidden
  1875. % \var{self} and \var{\_cmd} parameters.
  1876. sym_n_private_type_not_used=05071_N_Tipo privado "$1.$2" nunca usado
  1877. % The indicated private type is declared but is never used in the code.
  1878. sym_n_private_const_not_used=05072_N_Constante privada "$1.$2" nunca usada
  1879. % The indicated private const is declared but is never used in the code.
  1880. sym_n_private_property_not_used=05073_N_Propriedade privada "$1.$2" nunca usada
  1881. % The indicated private property is declared but is never used in the code.
  1882. sym_w_deprecated_unit=05074_W_Unidade "$1" est  depreciada
  1883. % This means that a unit which is
  1884. % declared as \var{deprecated} is used. Deprecated units may no longer
  1885. % be available in newer versions of the library. Use of this unit
  1886. % should be avoided as much as possible.
  1887. sym_w_deprecated_unit_with_msg=05075_W_Unidade "$1" est  depreciada: "$2"
  1888. % This means that a unit which is
  1889. % declared as \var{deprecated} is used. Deprecated units may no longer
  1890. % be available in newer versions of the library. Use of this unit
  1891. % should be avoided as much as possible.
  1892. sym_w_non_portable_unit=05076_W_Unidade "$1" nÆo ‚ port vel
  1893. % This means that a unit which is
  1894. % declared as \var{platform} is used. This unit use
  1895. % and availability is platform specific and should not be used
  1896. % if the source code must be portable.
  1897. sym_w_library_unit=05077_W_Unidade "$1" pertence a uma biblioteca
  1898. % This means that a unit which is
  1899. % declared as \var{library} is used. Library units may not be
  1900. % available in other libraries.
  1901. sym_w_non_implemented_unit=05078_W_Unidade "$1" nÆo est  implementada
  1902. % This means that a unit which is
  1903. % declared as \var{unimplemented} is used. This unit is defined,
  1904. % but is not yet implemented on this specific platform.
  1905. sym_w_experimental_unit=05079_W_Unidade "$1" ‚ experimental
  1906. % This means that a unit which is
  1907. % declared as \var{experimental} is used. Experimental units
  1908. % might disappear or change semantics in future versions. Usage of this unit
  1909. % should be avoided as much as possible.
  1910. sym_e_objc_formal_class_not_resolved=05080_E_Nenhuma defini‡Æo completa da classe objeto formalmente declarada "$1" est  no escopo
  1911. % Objecive-C classes can be imported formally, without using the the unit in which it is fully declared.
  1912. % This enables making forward references to such classes and breaking circular dependencies amongst units.
  1913. % However, as soon as you wish to actually do something with an entity of this class type (such as
  1914. % access one of its fields, send a message to it, or use it to inherit from), the compiler requires the full definition
  1915. % of the class to be in scope.
  1916. %
  1917. % \end{description}
  1918. #
  1919. # Codegenerator
  1920. #
  1921. # 06049 is the last used one
  1922. #
  1923. % \section{Code generator messages}
  1924. % This section lists all messages that can be displayed if the code
  1925. % generator encounters an error condition.
  1926. % \begin{description}
  1927. cg_e_parasize_too_big=06009_E_Tamanho da lista de parƒmetros excede 65535 bytes
  1928. % The I386 processor limits the parameter list to 65535 bytes. (The \var{RET}
  1929. % instruction causes this.)
  1930. cg_e_file_must_call_by_reference=06012_E_Tipos Arquivos devem ser parƒmetros var.
  1931. % You cannot specify files as value parameters, i.e., they must always be
  1932. % declared \var{var} parameters.
  1933. cg_e_cant_use_far_pointer_there=06013_E_O uso de ponteiro distante nÆo ‚ permitido l 
  1934. % Free Pascal doesn't support far pointers, so you cannot take the address of
  1935. % an expression which has a far reference as a result. The \var{mem} construct
  1936. % has a far reference as a result, so the following code will produce this
  1937. % error:
  1938. % \begin{verbatim}
  1939. % var p : pointer;
  1940. % ...
  1941. % p:=@mem[a000:000];
  1942. % \end{verbatim}
  1943. cg_e_dont_call_exported_direct=06015_E_Fun‡äes 'EXPORT' declaradas nÆo podem ser chamadas
  1944. % No longer in use.
  1945. cg_w_member_cd_call_from_method=06016_W_Poss¡vel chamada ilegal de construtor ou destruidor
  1946. % The compiler detected that a constructor or destructor is called within a
  1947. % a method. This will probably lead to problems, since constructors / destructors
  1948. % require parameters on entry.
  1949. cg_n_inefficient_code=06017_N_C¢dio ineficiente
  1950. % Your statement seems dubious to the compiler.
  1951. cg_w_unreachable_code=06018_W_C¢digo inacess¡vel
  1952. % You specified a construct which will never be executed. Example:
  1953. % \begin{verbatim}
  1954. % while false do
  1955. % begin
  1956. % {.. code ...}
  1957. % end;
  1958. % \end{verbatim}
  1959. cg_e_cant_call_abstract_method=06020_E_M‚todos abstratos nÆo podem ser chamados diretamente
  1960. % You cannot call an abstract method directly. Instead, you must call an
  1961. % overriding child method, because an abstract method isn't implemented.
  1962. cg_d_register_weight=06027_DL_Registro $1 peso $2 $3
  1963. % Debugging message. Shown when the compiler considers a variable for
  1964. % keeping in the registers.
  1965. cg_d_stackframe_omited=06029_DL_Quadro da pilha ‚ omitido
  1966. % Some procedure/functions do not need a complete stack-frame, so it is omitted.
  1967. % This message will be displayed when the {-vd} switch is used.
  1968. cg_e_unable_inline_object_methods=06031_E_Objeto ou m‚todos classe nÆo podem ser 'em linha'.
  1969. % You cannot have inlined object methods.
  1970. cg_e_unable_inline_procvar=06032_E_Chamadas 'Procvar' nÆo podem ser 'em linha'.
  1971. % A procedure with a procedural variable call cannot be inlined.
  1972. cg_e_no_code_for_inline_stored=06033_E_Nenhum c¢digo para procedimento 'em linha' armazenado
  1973. % The compiler couldn't store code for the inline procedure.
  1974. cg_e_can_access_element_zero=06035_E_Elemento zero de uma 'ansi/wide-' ou stringlonga pode ser acessado, usar '(set)length'
  1975. % You should use \var{setlength} to set the length of an ansi/wide/longstring
  1976. % and \var{length} to get the length of such string type.
  1977. cg_e_cannot_call_cons_dest_inside_with=06037_E_Construtores ou destruidores nÆo podem ser chamados de dentro de uma cl usula 'with'
  1978. % Inside a \var{with} clause you cannot call a constructor or destructor for the
  1979. % object you have in the \var{with} clause.
  1980. cg_e_cannot_call_message_direct=06038_E_Imposs¡vel chamar m‚todos manipuladores de mensagem diretamente
  1981. % A message method handler method cannot be called directly if it contains an
  1982. % explicit \var{Self} argument.
  1983. cg_e_goto_inout_of_exception_block=06039_E_Salto interno ou externo a um bloco de exce‡Æo
  1984. % It is not allowed to jump in or outside of an exception block like \var{try..finally..end;}.
  1985. % For example, the following code will produce this error:
  1986. % \begin{verbatim}
  1987. % label 1;
  1988. %
  1989. % ...
  1990. %
  1991. % try
  1992. % if not(final) then
  1993. % goto 1; // this line will cause an error
  1994. % finally
  1995. % ...
  1996. % end;
  1997. % 1:
  1998. % ...
  1999. % \end{verbatim}
  2000. cg_e_control_flow_outside_finally=06040_E_Instru‡äes de controle de fluxo nÆo sÆo permitidos em um bloco 'finally'
  2001. % It isn't allowed to use the control flow statements \var{break},
  2002. % \var{continue} and \var{exit}
  2003. % inside a finally statement. The following example shows the problem:
  2004. % \begin{verbatim}
  2005. % ...
  2006. % try
  2007. % p;
  2008. % finally
  2009. % ...
  2010. % exit; // This exit ISN'T allowed
  2011. % end;
  2012. % ...
  2013. %
  2014. % \end{verbatim}
  2015. % If the procedure \var{p} raises an exception the finally block is
  2016. % executed. If the execution reaches the exit, it's unclear what to do:
  2017. % exit the procedure or search for another exception handler.
  2018. cg_w_parasize_too_big=06041_W_Tamanho parƒmetros excede limite para certas CPU's
  2019. % This indicates that you are declaring more than 64K of parameters, which
  2020. % might not be supported on other processor targets.
  2021. cg_w_localsize_too_big=06042_W_Tamanho vari vel local excede limite para certas CPU's
  2022. % This indicates that you are declaring more than 32K of local variables, which
  2023. % might not be supported on other processor targets.
  2024. cg_e_localsize_too_big=06043_E_Tamanho vari veis locais excedem limites suportados
  2025. % This indicates that you are declaring more than 32K of local variables, which
  2026. % is not supported by this processor.
  2027. cg_e_break_not_allowed=06044_E_BREAK nÆo permitido
  2028. % You're trying to use \var{break} outside a loop construction.
  2029. cg_e_continue_not_allowed=06045_E_CONTINUE nÆo permitido
  2030. % You're trying to use \var{continue} outside a loop construction.
  2031. cg_f_unknown_compilerproc=06046_F_'Compilerproc' desconhecido "$1". Verifique se vocˆ usa a biblioteca de tempo de execu‡Æo correta
  2032. % The compiler expects that the runtime library contains certain subroutines. If you see this error
  2033. % and you didn't change the runtime library code, it's very likely that the runtime library
  2034. % you're using doesn't match the compiler in use. If you changed the runtime library this error means
  2035. % that you removed a subroutine which the compiler needs for internal use.
  2036. cg_f_unknown_system_type=06047_F_Imposs¡vel encontrar tipo sistema "$1". Verifique se vocˆ usa a biblioteca de tempo de execu‡Æo correta
  2037. % The compiler expects that the runtime library contains certain type definitions. If you see this error
  2038. % and you didn't change the runtime library code, it's very likely that the runtime library
  2039. % you're using doesn't match the compiler in use. If you changed the runtime library this error means
  2040. % that you removed a type which the compiler needs for internal use.
  2041. cg_h_inherited_ignored=06048_H_Chamada herdada para m‚todo abstrato ignorada
  2042. % This message appears only in Delphi mode when you call an abstract method
  2043. % of a parent class via \var{inherited;}. The call is then ignored.
  2044. cg_e_goto_label_not_found=06049_E_R¢tulo 'Goto' "$1" nÆo definido ou eliminado pela otimiza‡Æo
  2045. % The label used in the goto definition is not defined or optimized away by the
  2046. % unreachable code elemination.
  2047. cg_f_unknown_type_in_unit=06050_F_Imposs¡vel encontrar o tipo "$1" na unidade "$2". Verifique se vocˆ usa a biblioteca de tempo de execu‡Æo correta.
  2048. % The compiler expects that the runtime library contains certain type definitions. If you see this error
  2049. % and you didn't change the runtime library code, it's very likely that the runtime library
  2050. % you're using doesn't match the compiler in use. If you changed the runtime library this error means
  2051. % that you removed a type which the compiler needs for internal use.
  2052. % \end{description}
  2053. # EndOfTeX
  2054. #
  2055. # Assembler reader
  2056. #
  2057. # 07109 is the last used one
  2058. #
  2059. asmr_d_start_reading=07000_DL_Iniciando $1 an lise estilo assembler
  2060. % This informs you that an assembler block is being parsed
  2061. asmr_d_finish_reading=07001_DL_Finalizada $1 an lise estilo assembler
  2062. % This informs you that an assembler block has finished.
  2063. asmr_e_none_label_contain_at=07002_E_PadrÆo nÆo-r¢tulo contˆm @
  2064. % A identifier which isn't a label can't contain a @.
  2065. asmr_e_building_record_offset=07004_E_Erro construindo deslocamento registro
  2066. % There has an error occured while building the offset of a record/object
  2067. % structure, this can happend when there is no field specified at all or
  2068. % an unknown field identifier is used.
  2069. asmr_e_offset_without_identifier=07005_E_'OFFSET' usado sem identificador
  2070. % You can only use OFFSET with an identifier. Other syntaxes aren't
  2071. % supported
  2072. asmr_e_type_without_identifier=07006_E_'TYPE' usado sem identificador
  2073. % You can only use TYPE with an identifier. Other syntaxes aren't
  2074. % supported
  2075. asmr_e_no_local_or_para_allowed=07007_E_Imposs¡vel usar vari vel local ou parƒmetro aqui
  2076. % You can't use a local variable or parameter here, mostly because the
  2077. % addressing of locals and parameters is done using the frame pointer register so the
  2078. % address can't be obtained directly.
  2079. asmr_e_need_offset=07008_E_Necess rio usar 'OFFSET' aqui
  2080. % You need to use OFFSET <id> here to get the address of the identifier.
  2081. asmr_e_need_dollar=07009_E_Necess rio usar $ aqui
  2082. % You need to use $<id> here to get the address of the identifier.
  2083. asmr_e_cant_have_multiple_relocatable_symbols=07010_E_Imposs¡vel usar m£ltiplos s¡mbolos reloc veis
  2084. % You can't have more than one relocatable symbol (variable/typed constant)
  2085. % in one argument.
  2086. asmr_e_only_add_relocatable_symbol=07011_E_S¡mbolo reloc vel pode apenas ser adicionado
  2087. % Relocatable symbols (variable/typed constant) can't be used with other
  2088. % operators. Only addition is allowed.
  2089. asmr_e_invalid_constant_expression=07012_E_ExpressÆo constante inv lida
  2090. % There is an error in the constant expression.
  2091. asmr_e_relocatable_symbol_not_allowed=07013_E_S¡mbolo reloc vel nÆo ‚ permitido
  2092. % You can't use a relocatable symbol (variable/typed constant) here.
  2093. asmr_e_invalid_reference_syntax=07014_E_Sintaxe referˆncia inv lida
  2094. % There is an error in the reference.
  2095. asmr_e_local_para_unreachable=07015_E_Vocˆ nÆo pode atingir $1 a partir desse c¢digo
  2096. % You cannot read directly the value of a local variable or parameter
  2097. % of a higher level procedure in assembler code (except for
  2098. % local assembler code without parameter nor locals).
  2099. asmr_e_local_label_not_allowed_as_ref=07016_E_S¡mbolos locais/r¢tulos nÆo sÆo permitidos como referˆncias
  2100. % You can't use local symbols/labels as references
  2101. asmr_e_wrong_base_index=07017_E_Uso registro base e ¡ndice inv lido
  2102. % There is an error with the base and index register, they are
  2103. % probably incorrect
  2104. asmr_w_possible_object_field_bug=07018_W_Poss¡vel erro na manipula‡Æo de campo de objeto
  2105. % Fields of objects or classes can be reached directly in normal or objfpc
  2106. % modes but TP and Delphi modes treat the field name as a simple offset.
  2107. asmr_e_wrong_scale_factor=07019_E_Fator incorreto de escala especificado
  2108. % The scale factor given is wrong, only 1,2,4 and 8 are allowed
  2109. asmr_e_multiple_index=07020_E_Uso m£ltiplo registro ¡ndice
  2110. % You are trying to use more than one index register
  2111. asmr_e_invalid_operand_type=07021_E_Tipo operando inv lido
  2112. % The operand type doesn't match with the opcode used
  2113. asmr_e_invalid_string_as_opcode_operand=07022_E_'String' inv lido como operando 'opcode': $1
  2114. % The string specified as operand is not correct with this opcode
  2115. asmr_w_CODE_and_DATA_not_supported=07023_W_@CODE e @DATA nÆo suportados
  2116. % @CODE and @DATA are unsupported and are ignored.
  2117. asmr_e_null_label_ref_not_allowed=07024_E_Referˆncias nulas de r¢tulos nÆo sÆo permitidas
  2118. asmr_e_expr_zero_divide=07025_E_DivisÆo por zero em avaliador asm
  2119. % There is a division by zero in a constant expression
  2120. asmr_e_expr_illegal=07026_E_Expressao ilegal
  2121. % There is an illegal expression in a constant expression
  2122. asmr_e_escape_seq_ignored=07027_E_Sequˆncia de escape ignorada: $1
  2123. % There is a C-styled string, but the escape sequence in the string
  2124. % is unknown, and is therefore ignored
  2125. asmr_e_invalid_symbol_ref=07028_E_Referˆncia s¡mbolo inv lida
  2126. asmr_w_fwait_emu_prob=07029_W_Fwait pode causar problemas de emula‡Æo com emu387
  2127. asmr_w_fadd_to_faddp=07030_W_$1 sem operando traduzido em $1P
  2128. asmr_w_enter_not_supported_by_linux=07031_W_Instru‡Æo 'ENTER' nÆo suportada pelo kernel Linux
  2129. % ENTER instruction can generate a stack page fault that is not
  2130. % caught correctly by the i386 Linux page handler.
  2131. asmr_w_calling_overload_func=07032_W_Chamando uma fun‡Æo sobrecarregada em assembler
  2132. % There is a call to an overloaded method in the assembler block,
  2133. % this might be the sign there is a problem
  2134. asmr_e_unsupported_symbol_type=07033_E_Tipo s¡mbolo nÆo suportado para operando
  2135. asmr_e_constant_out_of_bounds=07034_E_Valor constante fora de faixa
  2136. asmr_e_error_converting_decimal=07035_E_Erro convertendo decimal $1
  2137. % A constant decimal value does not have the correct syntax
  2138. asmr_e_error_converting_octal=07036_E_Erro convertendo octal $1
  2139. % A constant octal value does not have the correct syntax
  2140. asmr_e_error_converting_binary=07037_E_Erro convertendo bin rio $1
  2141. % A constant binary value does not have the correct syntax
  2142. asmr_e_error_converting_hexadecimal=07038_E_Erro convertendo hexadecimal $1
  2143. % A constant hexadecimal value does not have the correct syntax
  2144. asmr_h_direct_global_to_mangled=07039_H_$1 traduzido para $2
  2145. asmr_w_direct_global_is_overloaded_func=07040_W_$1 est  associado a uma fun‡Æo sobrecarregada
  2146. asmr_e_cannot_use_SELF_outside_a_method=07041_E_Imposs¡vel usar 'SELF' fora de um m‚todo
  2147. % There is a reference to the \var{self} symbol while it is not
  2148. % allowed. \var{self} can only be referenced inside methods
  2149. asmr_e_cannot_use_OLDEBP_outside_nested_procedure=07042_E_Imposs¡vel usar 'OLDEBP' fora de um procedimento aninhado
  2150. % There is a reference to the \var{oldebp} symbol while it is not
  2151. % allowed. \var{oldebp} can only be referenced inside nested routines
  2152. asmr_e_void_function=07043_W_Procedimentos nÆo podem retornar qualquer valor em c¢digo asm
  2153. % Trying to return a value while in a procedure. A procedure
  2154. % does not have any return value
  2155. asmr_e_SEG_not_supported=07044_E_SEG nÆo suportado
  2156. asmr_e_size_suffix_and_dest_dont_match=07045_E_Tamanho sufixo e tamanho destino ou fonte nÆo coincidem
  2157. % The register size and the opcode size suffix don't match. This is
  2158. % probably an error in the assembler statement
  2159. asmr_w_size_suffix_and_dest_dont_match=07046_W_Tamanho sufixo e tamanho destino ou fonte nÆo coincidem
  2160. % The register size and the opcode size suffix don't match. This is
  2161. % probably an error in the assembler statement
  2162. asmr_e_syntax_error=07047_E_Erro de sintaxe assembler
  2163. % There is an assembler syntax error
  2164. asmr_e_invalid_opcode_and_operand=07048_E_Combina‡Æo inv lida de 'opcode' e operandos
  2165. % The opcode cannot be used with this type of operand
  2166. asmr_e_syn_operand=07049_E_Erro de sintaxe assembler em operando
  2167. asmr_e_syn_constant=07050_E_Erro de sintaxe assembler em constante
  2168. asmr_e_invalid_string_expression=07051_E_ExpressÆo 'String' inv lida
  2169. asmr_w_const32bit_for_address=07052_W_Constante com s¡mbolo $1 para endere‡o que nÆo est  em um ponteiro
  2170. % A constant expression represents an address which does not fit
  2171. % into a pointer. The address is probably incorrect
  2172. asmr_e_unknown_opcode=07053_E_'Opcode' desconhecido $1
  2173. % This opcode is not known
  2174. asmr_e_invalid_or_missing_opcode=07054_E_'Opcode' inv lido ou faltando
  2175. asmr_e_invalid_prefix_and_opcode=07055_E_Combina‡Æo inv lida de prefixo e 'opcode': $1
  2176. asmr_e_invalid_override_and_opcode=07056_E_Combina‡Æo inv lida de 'override' e 'opcode': $1
  2177. asmr_e_too_many_operands=07057_E_Muitos operandos na linha
  2178. % There are too many operands for this opcode. Check your
  2179. % assembler syntax
  2180. asmr_w_near_ignored=07058_W_NEAR ignorado
  2181. asmr_w_far_ignored=07059_W_FAR ignorado
  2182. asmr_e_dup_local_sym=07060_E_S¡mbolo local duplicado $1
  2183. asmr_e_unknown_local_sym=07061_E_S¡mbolo local indefinido $1
  2184. asmr_e_unknown_label_identifier=07062_E_Identificador r¢tulo desconhecido $1
  2185. asmr_e_invalid_register=07063_E_Nome registro inv lido
  2186. % There is an unknown register name used as operand.
  2187. asmr_e_invalid_fpu_register=07064_E_Nome registro ponto flutuante inv lido
  2188. % There is an unknown register name used as operand.
  2189. asmr_w_modulo_not_supported=07066_W_M¢dulo nÆo suportado
  2190. asmr_e_invalid_float_const=07067_E_Constante ponto flutuante inv lida $1
  2191. % The floating point constant declared in an assembler block is
  2192. % invalid.
  2193. asmr_e_invalid_float_expr=07068_E_ExpressÆo ponto flutuante inv lida
  2194. % The floating point expression declared in an assembler block is
  2195. % invalid.
  2196. asmr_e_wrong_sym_type=07069_E_Tipo s¡mbolo incorreto
  2197. asmr_e_cannot_index_relative_var=07070_E_Imposs¡vel indexar uma var. local ou parƒmetro com um registro
  2198. % Trying to index using a base register a symbol which is already relative
  2199. % to a register. This is not possible, and will probably lead to crashes.
  2200. asmr_e_invalid_seg_override=07071_E_ExpressÆo sobreposi‡Æo segmento inv lida
  2201. asmr_w_id_supposed_external=07072_W_Identificador $1 supostamente externo
  2202. % There is a reference to an undefined symbol. This will not result
  2203. % in an error, since the symbol might be external, but may cause
  2204. % problems at link time if the symbol is not defined anywhere.
  2205. asmr_e_string_not_allowed_as_const=07073_E_'Strings' nÆo permitidas como constantes
  2206. % Character strings are not allowed as constants.
  2207. asmr_e_no_var_type_specified=07074_Nenhum tipo de vari vel especificado
  2208. % The syntax expects a type idenfitifer after the dot, but
  2209. % none was found.
  2210. asmr_w_assembler_code_not_returned_to_text=07075_E_C¢digo assembler nÆo retornou a se‡Æo texto
  2211. % There was a directive in the assembler block to change sections,
  2212. % but there is a missing return to the text section at the end
  2213. % of the assembler block. This might cause errors during link time.
  2214. asmr_e_not_directive_or_local_symbol=07076_E_NÆo ‚ uma diretiva ou s¡mbolo local $1
  2215. % This symbol is unknown.
  2216. asmr_w_using_defined_as_local=07077_E_Usando um nome definido como um r¢tulo local
  2217. asmr_e_dollar_without_identifier=07078_E_Caracter D¢lar ‚ usado sem um identificador
  2218. % A constant expression has an identifier which does not start with
  2219. % the $ symbol.
  2220. asmr_w_32bit_const_for_address=07079_W_Constante 32bit criada para endere‡o
  2221. % A constant was used as an address. This is probably an error,
  2222. % since using absolute addresses will probably not work.
  2223. asmr_n_align_is_target_specific=07080_N_'.align' ‚ espec¡fico de alvo, use '.balign' ou '.p2align'
  2224. % Using the .align directive is platform specific, and its meaning will vary
  2225. % from one platform to another.
  2226. asmr_e_cannot_access_field_directly_for_parameters=07081_E_Imposs¡vel acessar campos diretamente para parƒmetros
  2227. % You should load the parameter first into a register and then access the
  2228. % fields using that register.
  2229. asmr_e_cannot_access_object_field_directly=07082_E_Imposs¡vel acessar campos de objetos/classes diretamente
  2230. % You should load the self pointer first into a register and then access the
  2231. % fields using the register as base. By default the self pointer is available
  2232. % in the esi register on i386.
  2233. asmr_e_unable_to_determine_reference_size=07083_E_Tamanho nÆo especificado e incapaz de determinar o tamanho dos operandos
  2234. % You should specify explicitly a size for the reference, because
  2235. % the compiler is unable to determine what size (byte,word,dword,etc.) it
  2236. % should use for the reference.
  2237. asmr_e_cannot_use_RESULT_here=07084_E_Imposs¡vel usar 'RESULT' nesta fun‡Æo
  2238. % Some functions which return complex types cannot use the \var{result}
  2239. % keyword.
  2240. asmr_w_adding_explicit_args_fXX=07086_W_"$1" sem operando traduzido em "$1 %st,%st(1)"
  2241. asmr_w_adding_explicit_first_arg_fXX=07087_W_"$1 %st(n)" traduzido em "$1 %st,%st(n)"
  2242. asmr_w_adding_explicit_second_arg_fXX=07088_W_"$1 %st(n)" translated em "$1 %st(n),%st"
  2243. asmr_e_invalid_char_smaller=07089_E_Caracter < nÆo permitido aqui
  2244. % The shift operator requires the << characters. Only one
  2245. % of those characters was found.
  2246. asmr_e_invalid_char_greater=07090_E_Caracter > nÆo permitido aqui
  2247. % The shift operator requires the >> characters. Only one
  2248. % of those characters was found.
  2249. asmr_w_align_not_supported=07093_W_ALIGN nÆo suportado
  2250. asmr_e_no_inc_and_dec_together=07094_E_'Inc' e 'Dec' nÆo podem estar juntos
  2251. % Trying to use an increment and a decrement within the same
  2252. % opcode on the 680x0. This is impossible.
  2253. asmr_e_invalid_reg_list_in_movem=07095_E_'Reglist' para 'movem' inv lido
  2254. % Trying to use the \var{movem} opcode with invalid registers
  2255. % to save or restore.
  2256. asmr_e_invalid_reg_list_for_opcode=07096_E_'Reglist' inv lido para 'opcode'
  2257. asmr_e_higher_cpu_mode_required=07097_E_Modo CPU maior requerido ($1)
  2258. % Trying to use an instruction which is not supported in the current
  2259. % cpu mode. Use a higher cpu generation to be able to use this
  2260. % opcode in your assembler block
  2261. asmr_w_unable_to_determine_reference_size_using_dword=07098_W_Nenhum tamanho especificado e incapaz de determinar o tamanho dos operandos, usando DWORD como padrÆo
  2262. % You should specify explicitly a size for the reference, because
  2263. % the compiler is unable to determine what size (byte,word,dword,etc.) it
  2264. % should use for the reference. This warning is only used in Delphi mode where
  2265. % it falls back to use DWORD as default.
  2266. asmr_e_illegal_shifterop_syntax=07099_E_Erro de sintaxe tentando analisar um operando deslocamento
  2267. % ARM only; ARM assembler supports a so called shifter operand. The used syntax isn't
  2268. % a valid shifter operand. Example for an operation with shifter operand:
  2269. % \begin{verbatim}
  2270. % asm
  2271. % orr r2,r2,r2,lsl #8
  2272. % end;
  2273. % \end{verbatim}
  2274. asmr_e_packed_element=07100_E_Endere‡o de componente compactado nÆo est  no limite byte
  2275. % Packed components (record fields and array elements) may start at an arbitrary
  2276. % bit inside a byte. On CPU which do not support bit-addressable memory (which
  2277. % includes all currently supported CPUs by FPC) you will therefore get an error
  2278. % message when trying to index arrays with elements whose size is not a multiple
  2279. % of 8 bits. The same goes for accessing record fields with such an address.
  2280. % multiple of 8 bits.
  2281. asmr_w_unable_to_determine_reference_size_using_byte=07101_W_Nenhum tamanho especificado e incapaz de determinar o tamanho dos operandos, usando BYTE como padrÆo
  2282. % You should specify explicitly a size for the reference, because
  2283. % the compiler is unable to determine what size (byte,word,dword,etc.) it
  2284. % should use for the reference. This warning is only used in Delphi mode where
  2285. % it falls back to use BYTE as default.
  2286. asmr_w_no_direct_ebp_for_parameter=07102_W_Uso de '+offset(%ebp)' para parƒmetros inv lido aqui
  2287. % Using direct 8(%ebp) reference for function/procedure parameters is invalid
  2288. % if parameters are in registers.
  2289. asmr_w_direct_ebp_for_parameter_regcall=07103_W_Uso de '+offset(%ebp)' nÆo ‚ compat¡vel com a conven‡Æo 'regcall'
  2290. % Using direct 8(%ebp) reference for function/procedure parameters is invalid
  2291. % if parameters are in registers.
  2292. asmr_w_direct_ebp_neg_offset=07104_W_Uso de '-offset(%ebp)' nÆo ‚ recomendada para acesso a vari vel local
  2293. % Using -8(%ebp) to access a local variable is not recommended
  2294. asmr_w_direct_esp_neg_offset=07105_W_Uso de '-offset(%esp)', acesso pode causar travamento ou valor pode ser perdido
  2295. % Using -8(%esp) to access a local stack is not recommended, as
  2296. % this stack portion can be overwritten by any function calls or interrupts.
  2297. asmr_e_no_vmtoffset_possible=07106_E_'VMTOffset' deve ser usado em combina‡Æo com um m‚todo virtual, e "$1" nÆo ‚ virtual
  2298. % Only virtual methods have VMT offsets
  2299. asmr_e_need_pic_ref=07107_E_Gerando PIC, mas referˆncia nÆo ‚ segura (PIC-safe)
  2300. % The compiler has been configured to generate position-independent code
  2301. % (PIC), but there are position-dependent references in the current
  2302. % handwritten assembler instruction.
  2303. asmr_e_mixing_regtypes=07108_E_Todos os registros em um conjunto de registros devem ser do mesmo tipo e largura
  2304. % Instructions on the ARM architecture that take a register set as argument require that all registers
  2305. % in this set are of the same kind (e.g., integer, vfp) and width (e.g., single precision, double precision).
  2306. asmr_e_empty_regset=07109_E_Um conjunto de registros nÆo pode estar vazio
  2307. % Instructions on the ARM architecture that take a register set as argument require that such a set
  2308. % contains at least one register.
  2309. #
  2310. # Assembler/binary writers
  2311. #
  2312. # 08020 is the last used one
  2313. #
  2314. asmw_f_too_many_asm_files=08000_F_Muitos arquivos assembler
  2315. % With smartlinking enabled, there are too many assembler
  2316. % files generated. Disable smartlinking.
  2317. asmw_f_assembler_output_not_supported=08001_F_Sa¡da assembler selecionada nÆo suportada
  2318. asmw_f_comp_not_supported=08002_F_'Comp' nÆo suportado
  2319. asmw_f_direct_not_supported=08003_F_Modo direto nÆo suportado por gravadores bin rios
  2320. % Direct assembler mode is not supported for binary writers.
  2321. asmw_e_alloc_data_only_in_bss=08004_E_Alocamento de dados somente permitida na se‡Æo 'bss'
  2322. asmw_f_no_binary_writer_selected=08005_F_Nenhum gravador bin rio selecionado
  2323. asmw_e_opcode_not_in_table=08006_E_Asm: Opcode $1 nÆo est  na tabela
  2324. asmw_e_invalid_opcode_and_operands=08007_E_Asm: $1 combina‡Æo inv lida de 'opcode' e operandos
  2325. asmw_e_16bit_not_supported=08008_E_Asm: referˆncias 16 Bits nÆo suportadas
  2326. asmw_e_invalid_effective_address=08009_E_Asm: Endere‡o efetivo inv lido
  2327. asmw_e_immediate_or_reference_expected=08010_E_Asm: Esperados 'Immediate' ou referˆncia
  2328. asmw_e_value_exceeds_bounds=08011_E_Asm: $1 valor excede limites $2
  2329. asmw_e_short_jmp_out_of_range=08012_E_Asm: Salto curto fora de faixa $1
  2330. asmw_e_undefined_label=08013_E_Asm: R¢tulo indefinido $1
  2331. asmw_e_comp_not_supported=08014_E_Asm: Tipo 'Comp' nÆo suportado por este alvo
  2332. asmw_e_extended_not_supported=08015_E_Asm: Tipo extendido nÆo suportado por este alvo
  2333. asmw_e_duplicate_label=08016_E_Asm: R¢tulo duplicado $1
  2334. asmw_e_redefined_label=08017_E_Asm: R¢tulo redefinido $1
  2335. asmw_e_first_defined_label=08018_E_Asm: Primeiramente definido aqui
  2336. asmw_e_invalid_register=08019_E_Asm: Registro inv lido $1
  2337. asmw_e_16bit_32bit_not_supported=08020_E_Asm: Referˆncias 16 ou 32 Bits nÆo suportadas
  2338. asmw_e_64bit_not_supported=08021_E_Asm: Operandos 64 Bits nÆo suportados
  2339. #
  2340. # Executing linker/assembler
  2341. #
  2342. # 09032 is the last used one
  2343. #
  2344. # BeginOfTeX
  2345. %
  2346. % \section{Errors of assembling/linking stage}
  2347. % This section lists errors that occur when the compiler is processing the
  2348. % command line or handling the configuration files.
  2349. % \begin{description}
  2350. exec_w_source_os_redefined=09000_W_Sistema operacional fonte redefinido
  2351. % The source operating system is redefined.
  2352. exec_i_assembling_pipe=09001_I_Montando (pipe) $1
  2353. % Assembling using a pipe to an external assembler.
  2354. exec_d_cant_create_asmfile=09002_E_Imposs¡vel criar arquivo assembler: $1
  2355. % The mentioned file can't be created. Check if you have
  2356. % access permissions to create this file.
  2357. exec_e_cant_create_objectfile=09003_E_Imposs¡vel criar arquivo objeto: $1
  2358. % The mentioned file can't be created. Check if you have
  2359. % got access permissions to create this file.
  2360. exec_e_cant_create_archivefile=09004_E_Imposs¡vel criar arquivo: $1
  2361. % The mentioned file can't be created. Check if you have
  2362. % access permissions to create this file.
  2363. exec_e_assembler_not_found=09005_E_Montador $1 nÆo encontrado, mudando para montador externo
  2364. % The assembler program was not found. The compiler will produce a script that
  2365. % can be used to assemble and link the program.
  2366. exec_t_using_assembler=09006_T_Usando montador: $1
  2367. % An informational message saying which assembler is being used.
  2368. exec_e_error_while_assembling=09007_E_Erro ao montar c¢digo sa¡da $1
  2369. % There was an error while assembling the file using an external assembler.
  2370. % Consult the documentation of the assembler tool to find out more information
  2371. % on this error.
  2372. exec_e_cant_call_assembler=09008_E_Imposs¡vel chamar montador, erro $1 mudando para montador externo
  2373. % An error occurred when calling an external assembler. The compiler will produce a script that
  2374. % can be used to assemble and link the program.
  2375. exec_i_assembling=09009_I_Montando $1
  2376. % An informational message stating which file is being assembled.
  2377. exec_i_assembling_smart=09010_I_Montando com vincula‡Æo inteligente $1
  2378. % An informational message stating which file is being assembled using smartlinking.
  2379. exec_w_objfile_not_found=09011_W_Objeto $1 nÆo encontrado, Vincula‡Æo pode falhar !
  2380. % One of the object files is missing, and linking will probably fail.
  2381. % Check your paths.
  2382. exec_w_libfile_not_found=09012_W_Biblioteca $1 nÆo encontrada, Vincula‡Æo pode falhar !
  2383. % One of the library files is missing, and linking will probably fail.
  2384. % Check your paths.
  2385. exec_e_error_while_linking=09013_E_Erro durante vincula‡Æo
  2386. % Generic error while linking.
  2387. exec_e_cant_call_linker=09014_E_Imposs¡vel chamar vinculador, mudando para vincula‡Æo externa
  2388. % An error occurred when calling an external linker. The compiler will produce a script that
  2389. % can be used to assemble and link the program.
  2390. exec_i_linking=09015_I_Vinculando $1
  2391. % An informational message, showing which program or library is being linked.
  2392. exec_e_util_not_found=09016_E_Utilit rio $1 nÆo encontrado, mudando para vincula‡Æo externa
  2393. % An external tool was not found. The compiler will produce a script that
  2394. % can be used to assemble and link or postprocess the program.
  2395. exec_t_using_util=09017_T_Usando utilit rio $1
  2396. % An informational message, showing which external program (usually a postprocessor) is being used.
  2397. exec_e_exe_not_supported=09018_E_Cria‡Æo de Execut veis nÆo suportada
  2398. % Creating executable programs is not supported for this platform, because it was
  2399. % not yet implemented in the compiler.
  2400. exec_e_dll_not_supported=09019_E_Cria‡Æo de bibliotecas Dinƒmicas/Compartilhadas nÆo suportada
  2401. % Creating dynamically loadable libraries is not supported for this platform, because it was
  2402. % not yet implemented in the compiler.
  2403. exec_i_closing_script=09020_I_Fechando roteiro $1
  2404. % Informational message showing when writing of the external assembling and linking script is finished.
  2405. exec_e_res_not_found=09021_E_Compilador recursos "$1" nÆo encontrado, mudando para modo externo
  2406. % An external resource compiler was not found. The compiler will produce a script that
  2407. % can be used to assemble, compile resources and link or postprocess the program.
  2408. exec_i_compilingresource=09022_I_Compilando recursos $1
  2409. % An informational message, showing which resource is being compiled.
  2410. exec_t_unit_not_static_linkable_switch_to_smart=09023_T_Unidade $1 nÆo pode ser vinculada estaticamente, mudando para vincula‡Æo inteligente
  2411. % Static linking was requested, but a unit which is not statically linkable was used.
  2412. exec_t_unit_not_smart_linkable_switch_to_static=09024_T_Unidade $1 nÆo pode ser vinculada inteligentemente, mudando para vincula‡Æo est tica
  2413. % Smart linking was requested, but a unit which is not smart-linkable was used.
  2414. exec_t_unit_not_shared_linkable_switch_to_static=09025_T_Unidade $1 nÆo pode ser vinculada compartilhadamente, mudando para vincula‡Æo est tica
  2415. % Shared linking was requested, but a unit which is not shared-linkable was used.
  2416. exec_e_unit_not_smart_or_static_linkable=09026_E_Unidade $1 nÆo pode ser vinculada inteligentemente ou estaticamente
  2417. % Smart or static linking was requested, but a unit which cannot be used for either was used.
  2418. exec_e_unit_not_shared_or_static_linkable=09027_E_Unidade $1 nÆo pode ser vinculada compartilhadamente ou estaticamente
  2419. % Shared or static linking was requested, but a unit which cannot be used for either was used.
  2420. exec_d_resbin_params=09028_D_Chamando compilador recursos "$1" com "$2" como linha comando
  2421. % An informational message showing which command line is used for the resource compiler.
  2422. exec_e_error_while_compiling_resources=09029_E_Erro ao compilar recursos
  2423. % The resource compiler or converter returned an error.
  2424. exec_e_cant_call_resource_compiler=09030_E_Imposs¡vel chamar o compilador recursos "$1", mudando para modo externo
  2425. % An error occurred when calling a resource compiler. The compiler will produce
  2426. % a script that can be used to assemble, compile resources and link or
  2427. % postprocess the program.
  2428. exec_e_cant_open_resource_file=09031_E_Imposs¡vel abrir arquivo recursos "$1"
  2429. % An error occurred resource file cannot be opened.
  2430. exec_e_cant_write_resource_file=09032_E_Imposs¡vel gravar arquivo recursos "$1"
  2431. % An error occurred resource file cannot be written.
  2432. %\end{description}
  2433. # EndOfTeX
  2434. #
  2435. # Executable information
  2436. #
  2437. # 09134 is the last used one
  2438. #
  2439. # BeginOfTeX
  2440. % \section{Executable information messages.}
  2441. % This section lists all messages that the compiler emits when an executable program is produced,
  2442. % and only when the internal linker is used.
  2443. % \begin{description}
  2444. execinfo_f_cant_process_executable=09128_F_Imposs¡vel p¢s-processar execut vel $1
  2445. % Fatal error when the compiler is unable to post-process an executable.
  2446. execinfo_f_cant_open_executable=09129_F_Imposs¡vel abrir execut vel $1
  2447. % Fatal error when the compiler cannot open the file for the executable.
  2448. execinfo_x_codesize=09130_X_Tamanho do C¢digo: $1 bytes
  2449. % Informational message showing the size of the produced code section.
  2450. execinfo_x_initdatasize=09131_X_Tamanho dos dados inicializados: $1 bytes
  2451. % Informational message showing the size of the initialized data section.
  2452. execinfo_x_uninitdatasize=09132_X_Tamanho dos dados nÆo inicializados: $1 bytes
  2453. % Informational message showing the size of the uninitialized data section.
  2454. execinfo_x_stackreserve=09133_X_Espa‡o da Pilha reservado: $1 bytes
  2455. % Informational message showing the stack size that the compiler reserved for the executable.
  2456. execinfo_x_stackcommit=09134_X_Espa‡o da Pilha comprometido: $1 bytes
  2457. % Informational message showing the stack size that the compiler committed for the executable.
  2458. %\end{description}
  2459. # EndOfTeX
  2460. #
  2461. # Internal linker messages
  2462. #
  2463. # 09201 is the last used one
  2464. #
  2465. # BeginOfTeX
  2466. % \section{Linker messages}
  2467. % This section lists messages produced by internal linker.
  2468. % \begin{description}
  2469. link_f_executable_too_big=09200_F_Tamanho imagem execut vel ‚ muito grande para alvo $1.
  2470. % Fatal error when resulting executable is too big.
  2471. link_w_32bit_absolute_reloc=09201_W_Arquivo objeto "$1" contˆm reloca‡Æo absoluta de 32-bits para s¡mbolo "$2".
  2472. % Warning when 64-bit object file contains 32-bit absolute relocations.
  2473. % In such case an executable image can be loaded into lower 4Gb of
  2474. % address space only.
  2475. %\end{description}
  2476. # EndOfTeX
  2477. #
  2478. # Unit loading
  2479. #
  2480. # 10062 is the last used one
  2481. #
  2482. # BeginOfTeX
  2483. % \section{Unit loading messages.}
  2484. % This section lists all messages that can occur when the compiler is
  2485. % loading a unit from disk into memory. Many of these messages are
  2486. % informational messages.
  2487. % \begin{description}
  2488. unit_t_unitsearch=10000_T_Busca Unidade: $1
  2489. % When you use the \var{-vt} option, the compiler tells you where it tries to find
  2490. % unit files.
  2491. unit_t_ppu_loading=10001_T_Carregando PPU $1
  2492. % When the \var{-vt} switch is used, the compiler tells you
  2493. % what units it loads.
  2494. unit_u_ppu_name=10002_U_Nome PPU: $1
  2495. % When you use the \var{-vu} flag, the unit name is shown.
  2496. unit_u_ppu_flags=10003_U_PPU 'Flags': $1
  2497. % When you use the \var{-vu} flag, the unit flags are shown.
  2498. unit_u_ppu_crc=10004_U_PPU 'Crc': $1
  2499. % When you use the \var{-vu} flag, the unit CRC check is shown.
  2500. unit_u_ppu_time=10005_U_Hora PPU: $1
  2501. % When you use the \var{-vu} flag, the time the unit was compiled is shown.
  2502. unit_u_ppu_file_too_short=10006_U_Arquivo PPU muito pequeno
  2503. % The ppufile is too short, not all declarations are present.
  2504. unit_u_ppu_invalid_header=10007_U_Cabe‡alho PPU inv lido (sem PPU no come‡o)
  2505. % A unit file contains as the first three bytes the ASCII codes of the characters \var{PPU}.
  2506. unit_u_ppu_invalid_version=10008_U_VersÆo PPU inv lida $1
  2507. % This unit file was compiled with a different version of the compiler, and
  2508. % cannot be read.
  2509. unit_u_ppu_invalid_processor=10009_U_PPU foi compilado para outro processador
  2510. % This unit file was compiled for a different processor type, and
  2511. % cannot be read.
  2512. unit_u_ppu_invalid_target=10010_U_PPU foi compilado para outro alvo
  2513. % This unit file was compiled for a different target, and
  2514. % cannot be read.
  2515. unit_u_ppu_source=10011_U_Fonte PPU: $1
  2516. % When you use the \var{-vu} flag, the unit source file name is shown.
  2517. unit_u_ppu_write=10012_U_Gravando $1
  2518. % When you specify the \var{-vu} switch, the compiler will tell you where it
  2519. % writes the unit file.
  2520. unit_f_ppu_cannot_write=10013_F_Imposs¡vel gravar arquivo PPU
  2521. % An error occurred when writing the unit file.
  2522. unit_f_ppu_read_error=10014_F_Erro ao ler arquivo PPU
  2523. % This means that the unit file was corrupted, and contains invalid
  2524. % information. Recompilation will be necessary.
  2525. unit_f_ppu_read_unexpected_end=10015_F_Fim de arquivo PPU inesperado
  2526. % Unexpected end of file. This may mean that the PPU file is
  2527. % corrupted.
  2528. unit_f_ppu_invalid_entry=10016_F_Entrada inv lida arquivo PPU: $1
  2529. % The unit the compiler is trying to read is corrupted, or generated with a
  2530. % newer version of the compiler.
  2531. unit_f_ppu_dbx_count_problem=10017_F_Problema contagem Dbx PPU
  2532. % There is an inconsistency in the debugging information of the unit.
  2533. unit_e_illegal_unit_name=10018_E_Nome unidade ilegal: $1
  2534. % The name of the unit does not match the file name.
  2535. unit_f_too_much_units=10019_F_Muitas unidades
  2536. % \fpc has a limit of 1024 units in a program. You can change this behavior
  2537. % by changing the \var{maxunits} constant in the \file{fmodule.pas} file of the
  2538. % compiler, and recompiling the compiler.
  2539. unit_f_circular_unit_reference=10020_F_Referˆncia circular em unidade entre $1 e $2
  2540. % Two units are using each other in the interface part. This is only allowed
  2541. % in the \var{implementation} part. At least one unit must contain the other one
  2542. % in the \var{implementation} section.
  2543. unit_f_cant_compile_unit=10021_F_Imposs¡vel compilar unidade $1, nenhum fonte dispon¡vel
  2544. % A unit was found that needs to be recompiled, but no sources are
  2545. % available.
  2546. unit_f_cant_find_ppu=10022_F_Imposs¡vel localizar unidade $1 usada por $2
  2547. % You tried to use a unit of which the PPU file isn't found by the
  2548. % compiler. Check your configuration file for the unit paths.
  2549. unit_w_unit_name_error=10023_W_Unidade $1 nÆo foi encontrada mas $2 existe
  2550. % This error message is no longer used.
  2551. unit_f_unit_name_error=10024_F_Unidade $1 foi procurada mas $2 encontrada
  2552. % \dos truncation of 8 letters for unit PPU files
  2553. % may lead to problems when unit name is longer than 8 letters.
  2554. unit_w_switch_us_missed=10025_W_Compilar a unidade 'system' requer a chave -Us
  2555. % When recompiling the system unit (it needs special treatment), the
  2556. % \var{-Us} switch must be specified.
  2557. unit_f_errors_in_unit=10026_F_Houveram $1 erros ao compilar m¢dulo, parando
  2558. % When the compiler encounters a fatal error or too many errors in a module
  2559. % then it stops with this message.
  2560. unit_u_load_unit=10027_U_Carregar de $1 ($2) unidade $3
  2561. % When you use the \var{-vu} flag, which unit is loaded from which unit is
  2562. % shown.
  2563. unit_u_recompile_crc_change=10028_U_Recompilando $1, 'checksum' alterado para $2
  2564. % The unit is recompiled because the checksum of a unit it depends on has
  2565. % changed.
  2566. unit_u_recompile_source_found_alone=10029_U_Recompilando $1, apenas fonte encontrado
  2567. % When you use the \var{-vu} flag, these messages tell you why the current
  2568. % unit is recompiled.
  2569. unit_u_recompile_staticlib_is_older=10030_U_Recompilando unidade, bib est tica ‚ mais antiga que o arquivo ppu
  2570. % When you use the \var{-vu} flag, the compiler warns if the static library
  2571. % of the unit is older than the unit file itself.
  2572. unit_u_recompile_sharedlib_is_older=10031_U_Recompilando unidade, bib compartilhada ‚ mais antiga que o arquivo ppu
  2573. % When you use the \var{-vu} flag, the compiler warns if the shared library
  2574. % of the unit is older than the unit file itself.
  2575. unit_u_recompile_obj_and_asm_older=10032_U_Recompilando unidade, 'obj' e 'asm' sÆo mais antigos que o arquivo ppu
  2576. % When you use the \var{-vu} flag, the compiler warns if the assembler or
  2577. % object file of the unit is older than the unit file itself.
  2578. unit_u_recompile_obj_older_than_asm=10033_U_Recompilando unidade, 'obj' ‚ mais antigo que 'asm'
  2579. % When you use the \var{-vu} flag, the compiler warns if the assembler
  2580. % file of the unit is older than the object file of the unit.
  2581. unit_u_parsing_interface=10034_U_Analisando 'interface' de $1
  2582. % When you use the \var{-vu} flag, the compiler warns that it starts
  2583. % parsing the interface part of the unit.
  2584. unit_u_parsing_implementation=10035_U_Analisando 'implementation' de $1
  2585. % When you use the \var{-vu} flag, the compiler warns that it starts
  2586. % parsing the implementation part of the unit.
  2587. unit_u_second_load_unit=10036_U_Segundo carregamento para a unidade $1
  2588. % When you use the \var{-vu} flag, the compiler warns that it starts
  2589. % recompiling a unit for the second time. This can happen with
  2590. % interdependent units.
  2591. unit_u_check_time=10037_U_PPU Verifique arquivo $1 hora $2
  2592. % When you use the \var{-vu} flag, the compiler shows the filename and
  2593. % date and time of the file on which a recompile depends.
  2594. ### The following two error msgs is currently disabled.
  2595. #unit_h_cond_not_set_in_last_compile=10038_H_Conditional $1 was not set at startup in last compilation of $2
  2596. #% when recompilation of an unit is required the compiler will check that
  2597. #% the same conditionals are set for the recompiliation. The compiler has
  2598. #% found a conditional that currently is defined, but was not used the last
  2599. #% time the unit was compiled.
  2600. #unit_h_cond_set_in_last_compile=10039_H_Conditional $1 was set at startup in last compilation of $2
  2601. #% when recompilation of an unit is required the compiler will check that
  2602. #% the same conditionals are set for the recompiliation. The compiler has
  2603. #% found a conditional that was used the last time the unit was compiled, but
  2604. #% the conditional is currently not defined.
  2605. unit_w_cant_compile_unit_with_changed_incfile=10040_W_Imposs¡vel recompilar unidade $1, mas encontrados arquivos de inclusÆo modificados
  2606. % A unit was found to have modified include files, but
  2607. % some source files were not found, so recompilation is impossible.
  2608. unit_u_source_modified=10041_U_Arquivo $1 ‚ mais novo que o arquivo PPU $2
  2609. % A modified source file for a compiler unit was found.
  2610. unit_u_ppu_invalid_fpumode=10042_U_Tentando usar uma unidade que foi compilada com um modo diferente de FPU
  2611. % Trying to compile code while using units which were not compiled with
  2612. % the same floating point format mode. Either all code should be compiled
  2613. % with FPU emulation on, or with FPU emulation off.
  2614. unit_u_loading_interface_units=10043_U_Carregando unidades 'interface' de $1
  2615. % When you use the \var{-vu} flag, the compiler warns that it is starting
  2616. % to load the units defined in the interface part of the unit.
  2617. unit_u_loading_implementation_units=10044_U_Carregando unidades 'implementation' de $1
  2618. % When you use the \var{-vu} flag, the compiler warns that it is starting
  2619. % to load the units defined in the implementation part of the unit.
  2620. unit_u_interface_crc_changed=10045_U_Interface CRC alterado para a unidade $1
  2621. % When you use the \var{-vu} flag, the compiler warns that the
  2622. % CRC calculated for the interface has been changed after the implementation
  2623. % has been parsed.
  2624. unit_u_implementation_crc_changed=10046_U_Implementation CRC alterado para a unidade $1
  2625. % When you use the \var{-vu} flag, the compiler warns that the
  2626. % CRC calculated has been changed after the implementation
  2627. % has been parsed.
  2628. unit_u_finished_compiling=10047_U_Terminada a compila‡Æo da unidade $1
  2629. % When you use the \var{-vu} flag, the compiler warns that it
  2630. % has finished compiling the unit.
  2631. unit_u_add_depend_to=10048_U_Adi‡Æo dependˆncia: $1 depende de $2
  2632. % When you use the \var{-vu} flag, the compiler warns that it
  2633. % has added a dependency between the two units.
  2634. unit_u_no_reload_is_caller=10049_U_Nenhum recarregamento, ‚ o chamador: $1
  2635. % When you use the \var{-vu} flag, the compiler warns that it
  2636. % will not reload the unit because it is the unit that wants
  2637. % to load this unit.
  2638. unit_u_no_reload_in_second_compile=10050_U_Nenhum recarregamento, j  em segunda compila‡Æo: $1
  2639. % When you use the \var{-vu} flag, the compiler warns that it
  2640. % will not reload the unit because it is already in a second recompile.
  2641. unit_u_flag_for_reload=10051_U_'Flag' para recarregamento: $1
  2642. % When you use the \var{-vu} flag, the compiler warns that it
  2643. % has to reload the unit.
  2644. unit_u_forced_reload=10052_U_Recarregamento for‡ado
  2645. % When you use the \var{-vu} flag, the compiler warns that it
  2646. % is reloading the unit because it was required.
  2647. unit_u_previous_state=10053_U_Estado anterior de $1: $2
  2648. % When you use the \var{-vu} flag, the compiler shows the
  2649. % previous state of the unit.
  2650. unit_u_second_compile_unit=10054_U_J  compilando $1, ajustando segunda compila‡Æo
  2651. % When you use the \var{-vu} flag, the compiler warns that it is starting
  2652. % to recompile a unit for the second time. This can happen with interdependent
  2653. % units.
  2654. unit_u_loading_unit=10055_U_Carregando unidade $1
  2655. % When you use the \var{-vu} flag, the compiler warns that it starts
  2656. % loading the unit.
  2657. unit_u_finished_loading_unit=10056_U_Terminado carregamento unidade $1
  2658. % When you use the \var{-vu} flag, the compiler warns that it finished
  2659. % loading the unit.
  2660. unit_u_registering_new_unit=10057_U_Registrando nova unidade $1
  2661. % When you use the \var{-vu} flag, the compiler warns that it has
  2662. % found a new unit and is registering it in the internal lists.
  2663. unit_u_reresolving_unit=10058_U_Re-solucionando unidade $1
  2664. % When you use the \var{-vu} flag, the compiler warns that it
  2665. % has to recalculate the internal data of the unit.
  2666. unit_u_skipping_reresolving_unit=10059_U_Pulando re-solu‡Æo unidade $1, ainda carregando unidades usadas
  2667. % When you use the \var{-vu} flag, the compiler warns that it is
  2668. % skipping the recalculation of the internal data of the unit
  2669. % because there is no data to recalculate.
  2670. unit_u_unload_resunit=10060_U_Descarregando unidade recursos $1 (nÆo necess ria)
  2671. % When you use the \var{-vu} flag, the compiler warns that it is unloading the
  2672. % resource handling unit, since no resources are used.
  2673. unit_e_different_wpo_file=10061_E_Unidade $1 foi compilada usando uma entrada de retorno inteiramente diferente de otimiza‡Æo de programa ($2, $3); recompile-a sem 'wpo' ou use o mesmo arquivo de retorno de entrada 'wpo' para esta compila‡Æo
  2674. % When a unit has been compiled using a particular whole program optimization (wpo) feedback file (\var{-FW<x>} \var{-OW<x>}),
  2675. % this compiled version of the unit is specialised for that particular compilation scenario and cannot be used in
  2676. % any other context. It has to be recompiled before you can use it in another program or with another wpo feedback input file.
  2677. % \end{description}
  2678. unit_u_indirect_crc_changed=10062_U_CRC interface indireta (objetos/classes) alterado para a unidade $1
  2679. % When you use the \var{-vu} flag, the compiler warns that the
  2680. % indirect CRC calculated for the unit (this is the CRC of all classes/objects/interfaces/$\ldots$
  2681. % in the interfaces of units directly or indirectly used by this unit in the interface) has been changed after the
  2682. % implementation has been parsed.
  2683. % \end{description}
  2684. # EndOfTeX
  2685. #
  2686. # Options
  2687. #
  2688. # 11048 is the last used one
  2689. #
  2690. option_usage=11000_O_$1 [options] <inputfile> [options]
  2691. # BeginOfTeX
  2692. %
  2693. % \section{Command line handling errors}
  2694. % This section lists errors that occur when the compiler is processing the
  2695. % command line or handling the configuration files.
  2696. % \begin{description}
  2697. option_only_one_source_support=11001_W_Apenas uma arquivo fonte suportado, alterando arquivo fonte … compilar de "$1" para "$2"
  2698. % You can specify only one source file on the command line. The last
  2699. % one will be compiled, others will be ignored. This may indicate that
  2700. % you forgot a \var{'-'} sign.
  2701. option_def_only_for_os2=11002_W_Arquivo DEF pode ser criado apenas para OS/2
  2702. % This option can only be specified when you're compiling for OS/2.
  2703. option_no_nested_response_file=11003_E_Arquivos respostas aninhados nÆo sÆo suportados
  2704. % You cannot nest response files with the \var{@file} command line option.
  2705. option_no_source_found=11004_F_Nenhm nome arquivo fonte na linha de comando
  2706. % The compiler expects a source file name on the command line.
  2707. option_no_option_found=11005_N_Nenhuma op‡Æo dentro do arquivo de configura‡äes $1
  2708. % The compiler didn't find any option in that config file.
  2709. option_illegal_para=11006_E_Parƒmetro ilegal: $1
  2710. % You specified an unknown option.
  2711. option_help_pages_para=11007_H_-? lista p ginas ajuda
  2712. % When an unknown option is given, this message is diplayed.
  2713. option_too_many_cfg_files=11008_F_Muitos arquivos de configura‡äes aninhados
  2714. % You can only nest up to 16 config files.
  2715. option_unable_open_file=11009_F_Incapaz de abrir arquivo $1
  2716. % The option file cannot be found.
  2717. option_reading_further_from=11010_D_Lendo demais op‡äes de $1
  2718. % Displayed when you have notes turned on, and the compiler switches
  2719. % to another options file.
  2720. option_target_is_already_set=11011_W_Alvo j  est  ajustado para: $1
  2721. % Displayed if more than one \var{-T} option is specified.
  2722. option_no_shared_lib_under_dos=11012_W_Bibs compartilhadas nÆo sÆo suportadas pela plataforma DOS, revertendo para est tica
  2723. % If you specify \var{-CD} for the \dos platform, this message is displayed.
  2724. % The compiler supports only static libraries under \dos.
  2725. option_too_many_ifdef=11013_F_No arquivo op‡äes $1 na linha $2 muitos \var{\#IF(N)DEFs} encontrados
  2726. % The \var{\#IF(N)DEF} statements in the options file are not balanced with
  2727. % the \var{\#ENDIF} statements.
  2728. option_too_many_endif=11014_F_No arquivo op‡äes $1 na linha $2 encontrados \var{\#ENDIFs} inesperados
  2729. % The \var{\#IF(N)DEF} statements in the options file are not balanced with
  2730. % the \var{\#ENDIF} statements.
  2731. option_too_less_endif=11015_F_Condicional aberta no final do arquivo de op‡äes
  2732. % The \var{\#IF(N)DEF} statements in the options file are not balanced with
  2733. % the \var{\#ENDIF} statements.
  2734. option_no_debug_support=11016_W_Gera‡Æo de informa‡äes depura‡Æo nÆo ‚ suportada por este execut vel
  2735. % It is possible to have a compiler executable that doesn't support
  2736. % the generation of debugging info. If you use such an executable with the
  2737. % \var{-g} switch, this warning will be displayed.
  2738. option_no_debug_support_recompile_fpc=11017_H_Tente recompilar com -dGDB
  2739. % It is possible to have a compiler executable that doesn't support
  2740. % the generation of debugging info. If you use such an executable with the
  2741. % \var{-g} switch, this warning will be displayed.
  2742. option_obsolete_switch=11018_W_Vocˆ esta usando uma chave obsoleta $1
  2743. % This warns you when you use a switch that is not needed/supported anymore.
  2744. % It is recommended that you remove the switch to overcome problems in the
  2745. % future, when the meaning of the switch may change.
  2746. option_obsolete_switch_use_new=11019_W_Vocˆ esta usando uma chave obsoleta $1, favor usar $2
  2747. % This warns you when you use a switch that is not supported anymore. You
  2748. % must now use the second switch instead.
  2749. % It is recommended that you change the switch to overcome problems in the
  2750. % future, when the meaning of the switch may change.
  2751. option_switch_bin_to_src_assembler=11020_N_Mudando montador assembler para o padrÆo escrita de fontes
  2752. % This notifies you that the assembler has been changed because you used the
  2753. % -a switch, which can't be used with a binary assembler writer.
  2754. option_incompatible_asm=11021_W_Sa¡da Assembler selecionado "$1" incompat¡vel com "$2"
  2755. option_asm_forced=11022_W_"$1" uso for‡ado montador assembler
  2756. % The assembler output selected cannot generate
  2757. % object files with the correct format. Therefore, the
  2758. % default assembler for this target is used instead.
  2759. option_using_file=11026_T_Lendo op‡äes do arquivo $1
  2760. % Options are also read from this file.
  2761. option_using_env=11027_T_Lendo op‡äes do ambiente $1
  2762. % Options are also read from this environment string.
  2763. option_handling_option=11028_D_Manipulando op‡Æo "$1"
  2764. % Debug info that an option is found and will be handled.
  2765. option_help_press_enter=11029_O_*** pressione <enter> ***
  2766. % Message shown when help is shown page per page. When pressing the ENTER
  2767. % Key, the next page of help is shown. If you press q and then ENTER, the
  2768. % compiler exits.
  2769. option_start_reading_configfile=11030_H_In¡cio leitura do arquivo configura‡Æo $1
  2770. % Start of configuration file parsing.
  2771. option_end_reading_configfile=11031_H_Final leitura do arquivo configura‡Æo $1
  2772. % End of configuration file parsing.
  2773. option_interpreting_option=11032_D_Interpretando op‡Æo "$1"
  2774. % The compiler is interpreting an option
  2775. option_interpreting_firstpass_option=11036_D_Interpretando primeiro passo op‡Æo "$1"
  2776. % The compiler is interpreting an option for the first time.
  2777. option_interpreting_file_option=11033_D_Interpretando op‡Æo arquivo "$1"
  2778. % The compiler is interpreting an option which it read from the configuration file.
  2779. option_read_config_file=11034_D_Lendo arquivo configura‡Æo "$1"
  2780. % The compiler is starting to read the configuration file.
  2781. option_found_file=11035_D_Nome arquivo fonte encontrado "$1"
  2782. % Additional information about options.
  2783. % Displayed when you have the debug option turned on.
  2784. option_code_page_not_available=11039_E_P gina de c¢digo desconhecida
  2785. % An unknown code page for the source files was requested.
  2786. % The compiler is compiled with support for several code pages built-in.
  2787. % The requested code page is not in that list. You will need to recompile
  2788. % the compiler with support for the codepage you need.
  2789. option_config_is_dir=11040_F_Arquivo configura‡Æo $1 ‚ um diret¢rio
  2790. % Directories cannot be used as configuration files.
  2791. option_confict_asm_debug=11041_W_Sa¡da montador Assembler selecionado "$1" nÆo pode gerar informa‡äes depura‡Æo, depura‡Æo desabilitada
  2792. % The selected assembler output cannot generate
  2793. % debugging information, debugging option is therefore disabled.
  2794. option_ppc386_deprecated=11042_W_Uso de 'ppc386.cfg' est  depreciado, favor usar 'fpc.cfg'
  2795. % Using ppc386.cfg is still supported for historical reasons, however, for a multiplatform
  2796. % system the naming makes no sense anymore. Please continue to use fpc.cfg instead.
  2797. option_else_without_if=11043_F_No arquivo op‡äes $1 na linha $2 diretiva \var{\#ELSE} sem \var{\#IF(N)DEF} encontrada
  2798. % An \var{\#ELSE} statement was found in the options file without a matching \var{\#IF(N)DEF} statement.
  2799. option_unsupported_target=11044_F_Op‡Æo "$1" nÆo ‚, ou ainda nÆo ‚, suportada pela plataforma alvo atual
  2800. % Not all options are supported or implemented for all target platforms. This message informs you that a chosen
  2801. % option is incompatible with the currently selected target platform.
  2802. option_unsupported_target_for_feature=11045_F_A caracter¡stica "$1" nÆo ‚, ou ainda nÆo ‚, suportada pela plataforma alvo selecionada
  2803. % Not all features are supported or implemented for all target platforms. This message informs you that a chosen
  2804. % feature is incompatible with the currently selected target platform.
  2805. option_dwarf_smart_linking=11046_N_Informa‡Æo de depura‡Æo DWARF nÆo pode ser usada com vincula‡Æo inteligente neste alvo, mudando para vincula‡Æo est tica
  2806. % Smart linking is currently incompatble with DWARF debug information on most
  2807. % platforms, so smart linking is disabled in such cases.
  2808. option_ignored_target=11047_W_Op‡Æo "$1" ignorada pela plataforma alvo atual
  2809. % Not all options are supported or implemented for all target platforms. This message informs you that a chosen
  2810. % option is ignored for the currently selected target platform.
  2811. %\end{description}
  2812. option_debug_external_unsupported=11048_W_Desabilitando informa‡Æo externa depura‡Æo porque nÆo ‚ suportada pela combina‡Æo formato alvo/depura‡Æo selecionado.
  2813. % Not all debug formats can be stored in an external file on all platforms. In particular, on
  2814. % Mac OS X only DWARF debug information can be stored externally.
  2815. %\end{description}
  2816. # EndOfTeX
  2817. #
  2818. # Whole program optimization
  2819. #
  2820. # 12019 is the last used one
  2821. #
  2822. # BeginOfTeX
  2823. %
  2824. % \section{Whole program optimization messages}
  2825. % This section lists errors that occur when the compiler is performing
  2826. % whole program optimization.
  2827. % \begin{description}
  2828. wpo_cant_find_file=12000_F_Imposs¡vel abrir arquivo de retorno de otimiza‡Æo completa de programa "$1"
  2829. % The compiler cannot open the specified feedback file with whole program optimization information.
  2830. wpo_begin_processing=12001_D_Processando informa‡äes de otimiza‡Æo completa de programa no arquivo retorno 'wpo' "$1"
  2831. % The compiler starts processing whole program optimization information found in the named file.
  2832. wpo_end_processing=12002_D_Terminado processamento de otimiza‡Æo completea de programa no arquivo retorno 'wpo' "$1"
  2833. % The compiler has finished processing the whole program optimization information found in the named file.
  2834. wpo_expected_section=12003_E_Se‡Æo cabe‡alho esperada, mas obtido "$2" na linhae $1 do arquivo retorno 'wpo'
  2835. % The compiler expected a section header in the whole program optimization file (starting with \%),
  2836. % but did not find it.
  2837. wpo_no_section_handler=12004_W_Nenhum manipulador registrado para se‡Æo otimiza‡Æo completa de programa "$2" na linha $1 do arquivo de retorno 'wpo', ignorando
  2838. % The compiler has no handler to deal with the mentioned whole program optimization information
  2839. % section, and will therefore ignore it and skip to the next section.
  2840. wpo_found_section=12005_D_Encontrada se‡Æo otimiza‡Æo completa de programa "$1" com informa‡äes sobre "$2"
  2841. % The compiler encountered a section with whole program optimization information, and according
  2842. % to its handler this section contains information usable for the mentioned purpose.
  2843. wpo_no_input_specified=12006_F_As otimiza‡äes completas de programa selecionadas requerem um arquivo de retorno previamente gerado (use -Fw para especificar)
  2844. % The compiler needs information gathered during a previous compilation run to perform the selected
  2845. % whole program optimizations. You can specify the location of the feedback file containing this
  2846. % information using the -Fw switch.
  2847. wpo_not_enough_info=12007_E_Nenhuma informa‡Æo coletada necess ria para realizar "$1" otimiza‡Æo completa programa foi encontrada
  2848. % While you pointed the compiler to a file containing whole program optimization feedback, it
  2849. % did not contain the information necessary to perform the selected optimizations. You most likely
  2850. % have to recompile the program using the appropate -OWxxx switch.
  2851. wpo_no_output_specified=12008_F_Especifique um arquivo de retorno de otimiza‡Æo completa programa para armazenar as informa‡äes geradas (usando -FW)
  2852. % You have to specify the feedback file in which the compiler has to store the whole program optimization
  2853. % feedback that is generated during the compilation run. This can be done using the -FW switch.
  2854. wpo_output_without_info_gen=12009_E_NÆo gerando qualquer informa‡Æo otimiza‡Æo completa programa, assim mesmo um arquivo de retorno foi especificado (usando -FW)
  2855. % The compiler was instructed to store whole program optimization feedback into a file specified using -FW,
  2856. % but not to actually generated any whole program optimization feedback. The classes of to be
  2857. % generated information can be speciied using -OWxxx.
  2858. wpo_input_without_info_use=12010_E_NÆo realizando qualquer otimiza‡Æo completa programa, assim mesmo um arquivo de retorno foi especificado (usando -Fw)
  2859. % The compiler was not instructed to perform any whole program optimizations (no -Owxxx parameters),
  2860. % but nevertheless an input file with such feedback was specified (using -Fwyyy). Since this can
  2861. % indicate that you forgot to specify an -Owxxx parameter, the compiler generates an error in this case.
  2862. wpo_skipping_unnecessary_section=12011_D_Pulando se‡Æo otimiza‡Æo completa programa "$1", porque nÆo ‚ necess ria pelas otimiza‡äes solicitadas
  2863. % The whole program optimization feedback file contains a section with information that is not
  2864. % required by the selected whole program optimizations.
  2865. wpo_duplicate_wpotype=12012_W_Sobrepondo informa‡äes previamente lidas para "$1" do arquivo entrada retorno usando informa‡äes na se‡Æo "$2"
  2866. % The feedback file contains multiple sections that provide the same class of information (e.g.,
  2867. % information about which virtual methods can be devirtualized). In this case, the information in last encountered
  2868. % section is used. Turn on debugging output (-vd) to see which class of information is provided by each section.
  2869. wpo_cannot_extract_live_symbol_info_strip=12013_E_Imposs¡vel extrair informa‡äes de vida de s¡mbolos do programa durante elimina‡Æo s¡mbolos, use -Xs-
  2870. % Certain symbol liveness collectors extract the symbol information from the linked program. If the symbol information
  2871. % is stripped (option -Xs), this is not possible.
  2872. wpo_cannot_extract_live_symbol_info_no_link=12014_E_Imposs¡vel extrair informa‡äes de vida de s¡mbolos do programa quando nÆo vinculando
  2873. % Certain symbol liveness collectors extract the symbol information from the linked program. If the program is not
  2874. % linked by the compiler, this is not possible.
  2875. wpo_cannot_find_symbol_progs=12015_F_Imposs¡vel encontrar "$1" ou "$2" para extrair informa‡äes de vida de s¡mbolos do programa vinculado
  2876. % Certain symbol liveness collectors need a helper program to extract the symbol information from the linked program.
  2877. % This helper program is normally 'nm', which is part of the GNU binutils.
  2878. wpo_error_reading_symbol_file=12016_E_Erro durante leitura das informa‡äes de v¡da de s¡mbolos produzidas por "$1"
  2879. % An error occurred during the reading of the symbol liveness file that was generated using the 'nm' or 'objdump' program. The reason
  2880. % can be that it was shorter than expected, or that its format was not understood.
  2881. wpo_error_executing_symbol_prog=12017_F_Erro executando "$1" (c¢digo sa¡da: $2) para extrair informa‡äes de s¡mbolos do programa vinculado
  2882. % Certain symbol liveness collectors need a helper program to extract the symbol information from the linked program.
  2883. % The helper program produced the reported error code when it was run on the linked program.
  2884. wpo_symbol_live_info_needs_smart_linking=12018_E_Cole‡Æo de informa‡äes de vida de s¡mbolos pode ajudar apenas quando usando vincula‡Æo inteligente, use -CX -XX
  2885. % Whether or not a symbol is live is determined by looking whether it exists in the final linked program.
  2886. % Without smart linking/dead code stripping, all symbols are always included, regardless of whether they are
  2887. % actually used or not. So in that case all symbols will be seen as live, which makes this optimization ineffective.
  2888. wpo_cant_create_feedback_file=12019_E_Imposs¡vel criar arquivo retorno otimiza‡äes completas de programa especificado "$1"
  2889. % The compiler is unable to create the file specified using the -FW parameter to store the whole program optimisation information.
  2890. %\end{description}
  2891. # EndOfTeX
  2892. #
  2893. # Logo (option -l)
  2894. #
  2895. option_logo=11023_[
  2896. Compilador Free Pascal versÆo $FPCFULLVERSION [$FPCDATE] para $FPCCPU
  2897. Copyright (c) 1993-2011 by Florian Klaempfl
  2898. ]
  2899. #
  2900. # Info (option -i)
  2901. #
  2902. option_info=11024_[
  2903. Compilador Free Pascal versÆo $FPCVERSION
  2904. Data Compilador : $FPCDATE
  2905. CPU Alvo Copilador : $FPCCPU
  2906. Alvos suportados:
  2907. $OSTARGETS
  2908. Conjunto de instru‡äes CPU suportados:
  2909. $INSTRUCTIONSETS
  2910. Conjunto de instru‡äes FPU suportados:
  2911. $FPUINSTRUCTIONSETS
  2912. Alvos ABI suportados:
  2913. $ABITARGETS
  2914. Otimiza‡äes suportadas:
  2915. $OPTIMIZATIONS
  2916. Otimiza‡äs Completas Programa suportadas:
  2917. Todas
  2918. $WPOPTIMIZATIONS
  2919. Tipos Microcontroladores suportados:
  2920. $CONTROLLERTYPES
  2921. Este programa ‚ oferecido sob a Licen‡a Geral P£blica GNU
  2922. Para maiores informa‡äes leia COPYING.FPC
  2923. Reportar falhas, sugestäes, etc. para:
  2924. http://bugs.freepascal.org
  2925. ou
  2926. [email protected]
  2927. ]
  2928. #
  2929. # Help pages (option -? and -h)
  2930. #
  2931. # The first character on the line indicates who will display this
  2932. # line, the current possibilities are :
  2933. # * = every target
  2934. # 3 = 80x86 targets
  2935. # 4 = x86_64
  2936. # 6 = 680x0 targets
  2937. # A = ARM
  2938. # e = in extended debug mode only
  2939. # P = PowerPC targets
  2940. # S = Sparc targets
  2941. # V = Virtual machine targets
  2942. # The second character also indicates who will display this line,
  2943. # (if the above character was TRUE) the current possibilities are :
  2944. # * = everyone
  2945. # g = with GDB info supported by the compiler
  2946. # O = OS/2
  2947. # L = UNIX systems
  2948. # The third character represents the indentation level.
  2949. #
  2950. option_help_pages=11025_[
  2951. **0*_Ponha + ap¢s uma chave de op‡Æo booleana para habilit -la, - para desabilit -la
  2952. **1a_O compilador nÆo elimina o arquivo gerado do montador assembler
  2953. **2al_Lista linhas do c¢digo fonte no arquivo assembler
  2954. **2an_Lista informa‡äes n¢ no arquivo assembler
  2955. *L2ap_Usa encadeadores (pipes) em vez de criar arquivos tempor rios assembler
  2956. **2ar_Lista informa‡äes aloca‡Æo/libera‡Æo registros no arquivo assembler
  2957. **2at_Lista informa‡äes tempor rias aloca‡Æo/libera‡Æo no arquivo assembler
  2958. **1A<x>_Formato sa¡da:
  2959. **2Adefault_Usa montador assembler padrÆo
  2960. 3*2Aas_Monta usando o GNU AS
  2961. 3*2Amacho_Mach-O (Darwin, Intel 32 bit) usando gravador interno
  2962. 3*2Anasmcoff_Arquivo COFF (Go32v2) usando Nasm
  2963. 3*2Anasmelf_Arquivo ELF32 (Linux) usando Nasm
  2964. 3*2Anasmwin32_Arquivo objeto Win32 usando Nasm
  2965. 3*2Anasmwdosx_Arquivo objeto Win32/WDOSX usando Nasm
  2966. 3*2Awasm_Arquivo Obj usando Wasm (Watcom)
  2967. 3*2Anasmobj_Arquivo Obj usando Nasm
  2968. 3*2Amasm_Arquivo Obj usando Masm (Microsoft)
  2969. 3*2Atasm_Arquivo Obj usando Tasm (Borland)
  2970. 3*2Aelf_ELF (Linux) usando gravador interno
  2971. 3*2Acoff_COFF (Go32v2) usando gravador interno
  2972. 3*2Apecoff_PE-COFF (Win32) usando gravador interno
  2973. 4*2Aas_Monta usando o GNU AS
  2974. 6*2Aas_Arquivo Unix .o usando o GNU AS
  2975. 6*2Agas_Montador assembler GNU Motorola
  2976. 6*2Amit_Sintaxe MIT (antigo GAS)
  2977. 6*2Amot_Montador assembler Motorola padrÆo
  2978. A*2Aas_Monta usando o GNU AS
  2979. P*2Aas_Monta usando o GNU AS
  2980. S*2Aas_Monta usando o GNU AS
  2981. **1b_Gera informa‡äes navegador
  2982. **2bl_Gera informa‡äes s¡mbolos locais
  2983. **1B_Constr¢i todos os m¢dulos
  2984. **1C<x>_Op‡äes gera‡Æo de c¢digo:
  2985. **2Ca<x>_Seleciona ABI, veja fpc -i para poss¡veis valores
  2986. **2Cb_Gera c¢digo 'big-endian'
  2987. **2Cc<x>_Ajusta conven‡Æo de chamada para <x>
  2988. **2CD_Cria tamb‚m biblioteca dinƒmica (nÆo suportado)
  2989. **2Ce_Compila‡Æo com opcodes de ponto flutuante emulados
  2990. **2Cf<x>_Seleciona conjunto de instru‡äes fpu a usar, veja fpc -i para poss¡veis valores
  2991. **2CF<x>_PrecisÆo m¡nima constante ponto flutuante (padrÆo, 32, 64)
  2992. **2Cg_Gera c¢digo PIC
  2993. **2Ch<n>_<n> bytes heap (entre 1023 e 67107840)
  2994. **2Ci_Verifica‡Æo E/S
  2995. **2Cn_Omite est gio vincula‡Æo
  2996. **2Co_Verifica transbordamento de opera‡äes inteiras
  2997. **2CO_Verifica poss¡vel transbordamento de opera‡äes inteiras
  2998. **2Cp<x>_Seleciona conjunto de instru‡äes, veja fpc -i para poss¡ves valores
  2999. **2CP<x>=<y>_ Ajustes compacta‡Æo
  3000. **3CPPACKSET=<y>_ <y> conjunto aloca‡Æo: 0, 1 ou DEFAULT ou NORMAL, 2, 4 e 8
  3001. **2Cr_Verifica‡Æo de faixa
  3002. **2CR_Verifica validade de chamada de m‚todo de objeto
  3003. **2Cs<n>_Ajusta verifica‡Æo tamanho da Pilha para <n>
  3004. **2Ct_Verifica‡Æo Pilha (apenas para testes, veja manual)
  3005. **2CX_Cria tamb‚m biblioteca inteligentemente vinculada
  3006. **1d<x>_Define o s¡mbolo <x>
  3007. **1D_Gera um arquivo DEF
  3008. **2Dd<x>_Ajusta descri‡Æo para <x>
  3009. **2Dv<x>_Ajusta versÆo DLL para <x>
  3010. *O2Dw_Aplica‡Æo PM
  3011. **1e<x>_Ajusta caminho para execut vel
  3012. **1E_Mesmo que -Cn
  3013. **1fPIC_Mesmo que -Cg
  3014. **1F<x>_Ajusta nomes de arquivo e caminhos:
  3015. **2Fa<x>[,y]_(para um programa) carregar unidades <x> e [y] antes de analisar cl usula 'uses'
  3016. **2Fc<x>_Ajusta entrada p gina de c¢digo para <x>
  3017. **2FC<x>_Ajusta nome do compilador RC bin rio para <x>
  3018. **2Fd_Disabilita o cache de diret¢rios interno do compilador
  3019. **2FD<x>_Ajusta o diret¢rio onde procurar por utilit rios para o compilador
  3020. **2Fe<x>_Redireciona sa¡da erros para <x>
  3021. **2Ff<x>_Adiciona <x> ao caminho framework (apenas Darwin)
  3022. **2FE<x>_Ajusta caminho sa¡da exe/unidade para <x>
  3023. **2Fi<x>_Adiciona <x> ao caminho inclusäes
  3024. **2Fl<x>_Adiciona <x> ao caminho bibliotecas
  3025. **2FL<x>_Use <x> como vinculador dinƒmico
  3026. **2Fm<x>_Carrega tabela conversÆo unicode de <x>.txt no dir. do compilador
  3027. **2Fo<x>_Adiciona <x> ao caminho objetos
  3028. **2Fr<x>_Carrega o arquivo mensagens erro <x>
  3029. **2FR<x>_Ajusta vinculador recursos (.res) para <x>
  3030. **2Fu<x>_Adiciona <x> ao caminho unidades
  3031. **2FU<x>_Ajusta caminho sa¡da unidade para <x>, sobrepäe -FE
  3032. **2FW<x>_Armazena retorno otimiza‡Æo completa programa gerada em <x>
  3033. **2Fw<x>_Carrega retorno otimiza‡Æo completa programa previamente armazenada de <x>
  3034. *g1g_Gerar informa‡äes depura‡Æo (formato padrÆo para o alvo)
  3035. *g2gc_Gerar verifica‡äes para ponteiros
  3036. *g2gh_Usa unidade heaptrace (para depura‡Æo vazamentos/corrup‡Æo mem¢ria)
  3037. *g2gl_Usa unidade informa‡äes linha (mostra mais info. com backtraces)
  3038. *g2go<x>_Ajusta op‡äes informa‡äes depura‡Æo
  3039. *g3godwarfsets_ Habilita 'conjunto' info. depura‡Æo DWARF (falhas gdb < 6.5)
  3040. *g3gostabsabsincludes_ Armazena caminhos absolutos/completos arquivos inclusäes em 'Stabs'
  3041. *g3godwarfmethodclassprefix_ Prefixa nomes m‚todos com nome classe em DWARF
  3042. *g2gp_Preserva caixa nomes s¡mbolos em 'stabs'
  3043. *g2gs_Gera informa‡äes depura‡Æo 'Stabs'
  3044. *g2gt_Inutiliza vari veis locais (para detetar utiliza‡Æo de nÆo-inicilizadas)
  3045. *g2gv_Gera programas rastre veis com 'Valgrind'
  3046. *g2gw_Gera informa‡äes depura‡Æo DWARFv2 (mesmo que -gw2)
  3047. *g2gw2_Gera informa‡äes depura‡Æo DWARFv2
  3048. *g2gw3_Gera informa‡äes depura‡Æo DWARFv3
  3049. **1i_Informa‡äes
  3050. **2iD_Retorna data compilador
  3051. **2iV_Retorna versÆo compilador curta
  3052. **2iW_Retorna versÆo compilador completa
  3053. **2iSO_Retorna SO compilador
  3054. **2iSP_Retorna processador servidor compilador
  3055. **2iTO_Retorna SO alvo
  3056. **2iTP_Retorna processador alvo
  3057. **1I<x>_Adiciona <x> ao caminho inclusäes
  3058. **1k<x>_Passa <x> ao vinculador
  3059. **1l_Grava logo
  3060. **1M<x>_Ajusta modo linguagem para <x>
  3061. **2Mfpc_Dialeto Free Pascal (padrÆo)
  3062. **2Mobjfpc_Modo FPC com suporte ao Object Pascal
  3063. **2Mdelphi_Modo compatibilidade Delphi 7
  3064. **2Mtp_Modo compatibilidade TP/BP 7.0
  3065. **2Mmacpas_Modo compatibilidade dialetos Macintosh Pascal
  3066. **1n_NÆo ler os arquivos de configura‡äes padrÆo
  3067. **1N<x>_Otimiza‡äes n¢s  rvore
  3068. **2Nu_Desdobra la‡os
  3069. **1o<x>_Altera o nome do execut vel produzido para <x>
  3070. **1O<x>_Otimiza‡äes:
  3071. **2O-_Disabilita otimiza‡äes
  3072. **2O1_N¡vel 1 otimiza‡äes (r pida e amig vel depurador)
  3073. **2O2_N¡vel 2 otimiza‡äes (-O1 + otimiza‡äes r pidas)
  3074. **2O3_N¡vel 3 otimiza‡äes (-O2 + otimiza‡äes lentas)
  3075. **2Oa<x>=<y>_Ajusta alinhamento
  3076. **2Oo[NO]<x>_Habilita ou desabilita otimiza‡äes, veja fpc -i para poss¡veis valores
  3077. **2Op<x>_Ajusta cpu alvo para otimiza‡äes, veja fpc -i para poss¡veis valores
  3078. **2OW<x>_Gera retorno otimiza‡Æo completa programa para otimiza‡äes <x>, veja fpc -i para poss¡veis valores
  3079. **2Ow<x>_Realiza otimiza‡Æo completa programa <x>, veja fpc -i para poss¡veis valores
  3080. **2Os_Otimiza tamanho ao inv‚s de velocidade
  3081. **1pg_Gera perfil c¢digo para 'gprof' (define FPC_PROFILE)
  3082. **1R<x>_Estilo leitura Assembler:
  3083. **2Rdefault_Use assembler padrÆo para alvo
  3084. 3*2Ratt_Leia assembler estilo AT&T
  3085. 3*2Rintel_Leia assembler estilo Intel
  3086. 6*2RMOT_Leia assembler estilo motorola
  3087. **1S<x>_Op‡äes sintaxe:
  3088. **2S2_Mesmo que -Mobjfpc
  3089. **2Sc_Suporte operadores similares C (*=,+=,/= and -=)
  3090. **2Sa_Liga asser‡äes
  3091. **2Sd_Mesmo que -Mdelphi
  3092. **2Se<x>_Op‡äes erros. <x> ‚ uma combina‡Æo do seguinte:
  3093. **3*_<n> : Compilador para depois de <n> erros (padrÆo ‚ 1)
  3094. **3*_w : Compilador tamb‚m para ap¢s avisos
  3095. **3*_n : Compilador tamb‚m para ap¢s notas
  3096. **3*_h : Compilador tamb‚m para ap¢s dicas
  3097. **2Sg_Habilita LABEL e GOTO (padrÆo em -Mtp e -Mdelphi)
  3098. **2Sh_Use 'ansistrings' por padrÆo ao inv‚s de 'shortstrings'
  3099. **2Si_Liga 'inlining' de procedimentos/fun‡äes declaradas como "em-linha" (inline)
  3100. **2Sk_Carrega unidade 'fpcylix'
  3101. **2SI<x>_Ajusta estilo interface para <x>
  3102. **3SIcom_COM interface compat¡vel (padrÆo)
  3103. **3SIcorba_CORBA interface compat¡vel
  3104. **2Sm_Suporta macros semelhantes C (global)
  3105. **2So_Mesmo que -Mtp
  3106. **2Ss_Nome construtor deve ser 'init' (destruidor deve ser 'done')
  3107. **2Sx_Habilita palavras-chave exce‡äes (padrÆo nos modos Delphi/ObjFPC)
  3108. **1s_NÆo chama o montador assembler e o vinculador
  3109. **2sh_Gera roteiro para vincular no servidor
  3110. **2st_Gera roteiro para vincular no alvo
  3111. **2sr_Pula fase aloca‡Æo registro (use com -alr)
  3112. **1T<x>_Sistema operacional alvo:
  3113. 3*2Temx_OS/2 via EMX (incluidos extensor EMX/RSX)
  3114. 3*2Tfreebsd_FreeBSD
  3115. 3*2Tgo32v2_VersÆo 2 do extensor DOS DJ Delorie
  3116. 3*2Tlinux_Linux
  3117. 3*2Tnetbsd_NetBSD
  3118. 3*2Tnetware_M¢dulo Novell Netware (clib)
  3119. 3*2Tnetwlibc_M¢dulo Novell Netware (libc)
  3120. 3*2Topenbsd_OpenBSD
  3121. 3*2Tos2_OS/2 / eComStation
  3122. 3*2Tsunos_SunOS/Solaris
  3123. 3*2Tsymbian_Symbian OS
  3124. 3*2Twatcom_Extensor DOS compat¡vel Watcom
  3125. 3*2Twdosx_Extensor DOS WDOSX
  3126. 3*2Twin32_Windows 32 Bit
  3127. 3*2Twince_Windows CE
  3128. 4*2Tlinux_Linux
  3129. 6*2Tamiga_Commodore Amiga
  3130. 6*2Tatari_Atari ST/STe/TT
  3131. 6*2Tlinux_Linux/m68k
  3132. 6*2Tmacos_Macintosh m68k (nÆo suportado)
  3133. 6*2Tpalmos_PalmOS
  3134. A*2Tlinux_Linux
  3135. A*2Twince_Windows CE
  3136. P*2Tamiga_AmigaOS no PowerPC
  3137. P*2Tdarwin_Darwin e Mac OS X no PowerPC
  3138. P*2Tlinux_Linux no PowerPC
  3139. P*2Tmacos_Mac OS (cl ssico) no PowerPC
  3140. P*2Tmorphos_MorphOS
  3141. S*2Tlinux_Linux
  3142. **1u<x>_Indefine o s¡mbolo <x>
  3143. **1U_Op‡äes unidades:
  3144. **2Un_NÆo verifica onde o nome unidade coincide com o nome arquivo
  3145. **2Ur_Gera arquivos lan‡amento unidades (nunca automaticamente recompilado)
  3146. **2Us_Compilar uma unidade sistema
  3147. **1v<x>_Ser detalhado. <x> ‚ uma combina‡Æo das seguintes letras:
  3148. **2*_e : Mostra erros (padrÆo) 0 : Nada mostra (exceto erros)
  3149. **2*_w : Mostra avisos u : Mostra info. unidade
  3150. **2*_n : Mostra notas t : Mostra arquivos tentados/usados
  3151. **2*_h : Mostra dicas c : Mostra condicionais
  3152. **2*_i : Mostra info. geral d : Mostra info. depura‡Æo
  3153. **2*_l : Mostra n£meros linhas r : Modo compatibilidade Rhide/GCC
  3154. **2*_s : Mostra Data/Hora q : Mostra n£meros mensagens
  3155. **2*_a : Mostra tudo x : Info. execut vel (apenas Win32)
  3156. **2*_b : Grava mensagens nome arqs. p : Grava tree.log com  rvore an lise
  3157. **2*_ com caminho completo v : Grava fpcdebug.txt com muitas
  3158. **2*_ informa‡äes de depura‡Æo
  3159. **2*_m<x>,<y> : NÆo mostra mensagens numeradas <x> e <y>
  3160. 3*1W<x>_Op‡äes espec¡ficas alvo (alvos)
  3161. A*1W<x>_Op‡äes espec¡ficas alvo (alvos)
  3162. P*1W<x>_Op‡äes espec¡ficas alvo (alvos)
  3163. p*1W<x>_Op‡äes espec¡ficas alvo (alvos)
  3164. 3*2Wb_Cria um encarte ao inv‚s de uma biblioteca (Darwin)
  3165. P*2Wb_Cria um encarte ao inv‚s de uma biblioteca (Darwin)
  3166. p*2Wb_Cria um encarte ao inv‚s de uma biblioteca (Darwin)
  3167. 3*2WB_Cria uma imagem reloc vel (Windows)
  3168. A*2WB_Cria uma imagem reloc vel (Windows, Symbian)
  3169. 3*2WC_Especifica tipo aplica‡Æo console (EMX, OS/2, Windows)
  3170. A*2WC_Especifica tipo aplica‡Æo console (Windows)
  3171. P*2WC_Especifica tipo aplica‡Æo console (Classic Mac OS)
  3172. 3*2WD_Usa DEFFILE para exportar fun‡äes de DLL ou EXE (Windows)
  3173. A*2WD_Usa DEFFILE para exportar fun‡äes de DLL ou EXE (Windows)
  3174. 3*2We_Usa recursos externos (Darwin)
  3175. 4*2We_Usa recursos externos (Darwin)
  3176. A*2We_Usa recursos externos (Darwin)
  3177. P*2We_Usa recursos externos (Darwin)
  3178. p*2We_Usa recursos externos (Darwin)
  3179. 3*2WF_Especifica tipo aplica‡Æo tela-cheia (EMX, OS/2)
  3180. 3*2WG_Especifica tipo aplica‡Æo gr fica (EMX, OS/2, Windows)
  3181. A*2WG_Especifica tipo aplica‡Æo gr fica (Windows)
  3182. P*2WG_Especifica tipo aplica‡Æo gr fica (Mac OS Cl ssico)
  3183. 3*2Wi_Usa recursos internos (Darwin)
  3184. P*2Wi_Usa recursos internos (Darwin)
  3185. p*2Wi_Usa recursos internos (Darwin)
  3186. 3*2WN_NÆo gera c¢digo reloca‡Æo, necess rio para depura‡Æo (Windows)
  3187. A*2WN_NÆo gera c¢digo reloca‡Æo, necess rio para depura‡Æo (Windows)
  3188. 3*2WR_Gera c¢digo reloca‡Æo (Windows)
  3189. A*2WR_Gera c¢digo reloca‡Æo (Windows)
  3190. P*2WT_Especifica tipo aplica‡Æo ferramenta MPW (Mac OS Cl ssico)
  3191. 3*2WX_Habilita pilha execut vel (Linux)
  3192. A*2WX_Habilita pilha execut vel (Linux)
  3193. p*2WX_Habilita pilha execut vel (Linux)
  3194. P*2WX_Habilita pilha execut vel (Linux)
  3195. **1X_Op‡äes execut vel:
  3196. **2Xc_Passa '--shared/-dynamic' para o vinculador (BeOS, Darwin, FreeBSD, Linux)
  3197. **2Xd_NÆo usa caminho busca biblioteca padrÆo (necess rio para compila‡Æo 'cross')
  3198. **2Xe_Use vinculador externo
  3199. **2Xg_Cria info.depura‡Æo em um arquivo separado e adiciona uma se‡Æo 'debuglink' no execut vel
  3200. **2XD_Tenta vincular unidades dinƒmicamente (define FPC_LINK_DYNAMIC)
  3201. **2Xi_Use vinculador interno
  3202. **2Xm_Gera mapa vincula‡Æo
  3203. **2XM<x>_Ajusta o nome da rotina 'principal' programa (padrÆo ‚ 'main')
  3204. **2XP<x>_Prefixa os nomes dos utilit rios bin rios (binutils) com o prfixo <x>
  3205. **2Xr<x>_Ajusta o caminho-rlink do vinculador para <x> (necess rio para compila‡Æo 'cross', veja o manual do 'ld' para mais informa‡äes) (BeOS, Linux)
  3206. **2XR<x>_Prefixa <x> para todos caminhos busca vinculador (BeOS, Darwin, FreeBSD, Linux, Mac OS, Solaris)
  3207. **2Xs_Elimina todos os s¡mbolos do execut vel
  3208. **2XS_Tenta vincular unidades estaticamente (padrÆo, define FPC_LINK_STATIC)
  3209. **2Xt_Vincula com bibliotecas est ticas (-static ‚ passado ao vinculador)
  3210. **2XX_Tenta vincula‡Æo inteligente unidades (define FPC_LINK_SMART)
  3211. **1*_
  3212. **1?_Mostra esta ajuda
  3213. **1h_Mostra esta ajuda sem pausa
  3214. ]
  3215. #
  3216. # The End...