errorr.msg 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. #
  2. # $Id: errorr.msg 1.02.2 2000/10/15 22:06:54 Michail A.Baikov
  3. # �â®â ä ©« - ç áâì ¯à®£à ¬¬­®£® ¯à®¤ãªâ  Free Pascal Compiler
  4. # Copyright (c) 1998-2000 by Free Pascal Development Team
  5. #
  6. # �yá᪨© ä ©« (cp866) ï§ëª  ¤«ï Free Pascal Compiler
  7. #
  8. # ‘¬. ä ©« COPYING.FPC, ¢ª«î祭­ë© ¢ íây ¯®áâ ¢ªy,
  9. # ¯® ¢á¥¬ ¢®¯à®á ¬ ®â­®á¨â¥«ì­®  ¢â®à᪮£® ¯à ¢ .
  10. #
  11. # �â  ¯à®£à ¬¬  à á¯à®áâp ­ï¥âáï á ­ ¤¥¦¤®©, çâ® ®­  ¡ã¤¥â ª®¬y-­¨¡ã¤ì
  12. # ¯®«¥§­ , ­® �…‡ ‚‘ŸŠŽ‰ ƒ€�€�’ˆˆ! Œë ­¥ £ à ­â¨à㥬, çâ® ¯à®£à ¬¬  ¤ ¦¥
  13. # ᮮ⢥âáâ¢ã¥â ᢮¥© 楫¨!
  14. #
  15. #
  16. # Š®­áâ ­âë - ®¡®§­ ç¥­¨ï, ¯¨èãâáï ¢ á«¥¤yî饬 ¢¨¤¥:
  17. # <part>_<type>_<txtidentifier>
  18. #
  19. # <part> íâ® à §¤¥« á®®¡é¥­¨© ã ª®¬¯¨«ïâ®à , ¨á¯®«ì§y¥¬®£® ¤¥¡ £¥à ¬¨,
  20. # ¤«ï ¨¤¥­â¨ä¨ª æ¨¨ ⨯  ®è¨¡ª¨:
  21. # asmr_ ᨭ⠪á¨ç¥áª¨©  ­ «¨§  áᥬ¡«¥à  (ᨭ⠪á¨ç¥áª¨©  ­ «¨§ ª®¬ ­¤)
  22. # asmw_ ᨭ⠪á¨ç¥áª¨©  ­ «¨§  áᥬ¡«¥à  (ç⥭¨¥ ¨ § ¯¨áì)
  23. # unit_ ®¡à ¡®âª  ¬®¤ã«ï
  24. # scan_ ᪠­¥à
  25. # parser_ ᨭ⠪á¨ç¥áª¨©  ­ «¨§ â®à
  26. # type_ ª®­â஫ì ᮮ⢥âá⢨ï ⨯®¢
  27. # general_ ®¡é ï ¨­ä®à¬ æ¨ï
  28. # exec_ ¢ë§®¢ë  áᥬ¡«¥à , ª®¬¯®­®¢é¨ª , । ªâ®à 
  29. #
  30. # <type> ⨯ á®®¡é¥­¨ï, íâ® ¤®«¦­® ¡ëâì ¨á¯®«ì§®¢ ­® ¤«ï
  31. # f_ ä â «ì­ ï ®è¨¡ª 
  32. # e_ ®è¨¡ª 
  33. # w_ ¯à¥¤ã¯à¥¦¤¥­¨¥
  34. # n_ ¯à¨¬¥ç ­¨¥
  35. # h_ ¯®¤áª §ª 
  36. # i_ ¨­ä®à¬ æ¨ï
  37. # l_ ­®¬¥p áâp®ª¨
  38. # u_ ¨á¯®«ì§ã¥¬ë©
  39. # t_ ®¯p®¡ë¢ ­¨¥
  40. # m_ ¬ ªà®ª®¬ ­¤ 
  41. # p_ ¯à®æ¥¤ãà 
  42. # c_ ãá«®¢­®¥ ¢ëà ¦¥­¨¥
  43. # d_ á®®¡é¥­¨¥ ¤«ï ®â« ¤ª¨
  44. # b_ ®â®¡à ¦ ¥â "overload" ¯à®æ¥¤ãàë (¯¥p¥£py¦¥­­ë¥ ¯p®æ¥¤ypë)
  45. # x_ ¨­ä®à¬ æ¨ï ¤«ï ¨á¯®«­¥­¨ï
  46. #
  47. #
  48. # ޡ饥
  49. #
  50. # BeginOfTeX
  51. % \section{ޡ鍥 á®®¡é¥­¨ï ª®¬¯¨«ïâ®à }
  52. % �â®â à §¤¥« ¤ ¥â á®®¡é¥­¨ï ª®¬¯¨«ïâ®à , ª®â®àë¥ ­¥ ä â «ì­ë, ­® ª®â®àë¥
  53. % ®â®¡à ¦ îâ ¯®«¥§­ãî ¨­ä®à¬ æ¨î. —¨á«® â ª¨å á®®¡é¥­¨© ¬®¦¥â ¡ëâì
  54. % ã¯à ¢«ï¥¬ë¬ á à §«¨ç­ë¬¨ ­ áâp®©ª ¬¨ yp®¢­ï \var{-v} «®£¨«¨p®¢ ­¨ï.
  55. % \begin {®¯¨á ­¨¥}
  56. general_t_compilername=01000_T_Š®¬¯¨«ïâ®p: $1
  57. % Š®£¤  \var{-vt} ª«îç ¨á¯®«ì§ã¥âáï, íâ  áâப , á®®¡é ¥â ¢ ¬, ª ª®©
  58. % ª®¬¯¨«ïâ®à ¨á¯®«ì§ã¥âáï.
  59. general_d_sourceos=01001_D_Š®¬¯¨«¨àã¥âáï ­  OS: $1
  60. % Š®£¤  \var{-vd} ª«îç ¨á¯®«ì§ã¥âáï, íâ  áâப , á®®¡é ¥â ¢ ¬, ¢ ª ª®©
  61. % ®¯¥à æ¨®­­®© á¨á⥬¥, á®§¤ ¥âáï ä ©«.
  62. general_i_targetos=01002_I_‘®§¤ ¥âáï ¤«ï OS: $1
  63. % Š®£¤  \var{-vd} ª«îç ¨á¯®«ì§ã¥âáï, íâ  áâப , á®®¡é ¥â ¢ ¬, ¤«ï ª ª®©
  64. % ®¯¥à æ¨®­­®© á¨á⥬ë á®§¤ ¥âáï ä ©«
  65. general_t_exepath=01003_T_ˆá¯®«ì§y¥¬ ¯yâì ¤«ï ¡¨­ p­ëå ä ©«®¢: $1
  66. % Š®£¤  \var{-vt} ª«îç ¨á¯®«ì§ã¥âáï, íâ  áâப , á®®¡é ¥â ¢ ¬,
  67. % £¤¥ ª®¬¯¨«ïâ®à  ¨é¥â ¡¨­ p­ë¥ ä ©«ë.
  68. general_t_unitpath=01004_T_ˆá¯®«ì§y¥¬ ¯ãâì ¤® ¬®¤ã«¥©: $1
  69. % Š®£¤  \var{-vt} ª«îç ¨á¯®«ì§ã¥âáï, íâ  áâப , á®®¡é ¥â ¢ ¬,
  70. % £¤¥ ª®¬¯¨«ïâ®à ¨é¥â ª®¬¯¨«¨àã¥¬ë¥ ¬®¤ã«¨. ‚ë ¬®¦¥â¥ ãáâ ­ ¢«¨¢ âì íâ®â ¯ãâì
  71. % ç¥p¥§ \var{-Fu} ¨«¨ \var{-Up} ®¯æ¨¨.
  72. general_t_includepath=01005_T_ˆá¯®«ì§y¥¬ ¯yâì ¤«ï ¢ª«îç ¥¬ëå ä ©«®¢: $1
  73. % Š®£¤  \var{-vt} ª«îç ¨á¯®«ì§ã¥âáï, íâ  áâப , á®®¡é ¥â ¢ ¬, £¤¥
  74. % ª®¬¯¨«ïâ®à ¨é¥â ä ©«ë ¤«ï ¢ª«î祭¨ï (ä ©«ë, ¨á¯®«ì§ã¥¬ë¥ ¢ \var{\{\$I xxx\}}
  75. % ¢ëp ¦¥­¨ïå). ‚ë ¬®¦¥â¥ ãáâ ­ ¢«¨¢ âì íâ®â ¯ãâì ç¥p¥§ \var{-I} ®¯æ¨î.
  76. general_t_librarypath=01006_T_ˆá¯®«ì§y¥¬ ¯yâì ¤® ¡¨¡«¨®â¥ª: $1
  77. % Š®£¤  \var{-vt} ª«îç ¨á¯®«ì§ã¥âáï, íâ  áâப , á®®¡é ¥â ¢ ¬, £¤¥
  78. % ª®¬¯¨«ïâ®à ¨é¥â ¡¨¡«¨®â¥ª¨. ‚ë ¬®¦¥â¥ ãáâ ­ ¢«¨¢ âì íâ®â ¯ãâì ç¥p¥§
  79. % \var{-Fl} ®¯æ¨î.
  80. general_t_objectpath=01007_T_ˆá¯®«ì§y¥¬ ¯yâì ¤® ®¡ê¥ªâ­ëå ä ©«®¢: $1
  81. % Š®£¤  \var{-vt} ª«îç ¨á¯®«ì§ã¥âáï, íâ  áâப , á®®¡é ¥â ¢ ¬, £¤¥
  82. % ª®¬¯¨«ïâ®à ¨é¥â ®¡ê¥ªâ­ë¥ ä ©«ë, ‚ë á¢ï§ë¢ ¥â¥ ¢ (ä ©«ë,
  83. % ¨á¯®«ì§ãîâáï ¢ \var{\{\$L xxx \}} ¢ëp ¦¥­¨ïå).
  84. % ‚ë ¬®¦¥â¥ ãáâ ­ ¢«¨¢ âì íâ®â ¯ãâì ç¥p¥§ \var{-Fo} ®¯æ¨î.
  85. general_i_abslines_compiled=01008_I_$1 «¨­¨© ᪮¬¯¨«¨p®¢ ­­®, $2 ᥪ.
  86. % Š®£¤  \var{-vi} ª«îç ¨á¯®«ì§ã¥âáï, ª®¬¯¨«ïâ®à, á®®¡é ¥â ç¨á«®
  87. % ᪮¬¯¨«¨p®¢ ­­ëå áâப, ¨ ¢à¥¬¥­¨, ª®â®à®¥ ¯®âp¥¡®¢ «®áì ¤«ï í⮣®.
  88. % (ॠ«ì­®¥ ¢à¥¬ï, ­¥ ¯à®£à ¬¬¨py¥¬®¥ ¢à¥¬ï).
  89. general_f_no_memory_left=01009_F_H¥â ᢮¡®¤­®© ¯ ¬ïâ¨
  90. % Š®¬¯¨«ïâ®à ­¥ ¨¬¥¥â ¤®áâ â®ç­® ¯ ¬ïâ¨, çâ®¡ë ª®¬¯¨«¨à®¢ âì ¢ è㠯ணࠬ¬ã.
  91. % ˆ¬¥¥âáï ­¥áª®«ìª® p¥ª®¬¥­¤ æ¨© ¤«ï p¥è¥­¨ï í⮣® ¢®¯p®á :
  92. % \begin{itemsize}
  93. % \item …᫨ ¢ë ¨á¯®«ì§ã¥â¥ ä®à¬¨àãîéãîáï ®¯æ¨î ª®¬¯¨«ïâ®à , ¯à®¡ã©â¥
  94. % ª®¬¯¨«¨à®¢ âì à §«¨ç­ë¥ ¬®¤ã«¨ ¢àãç­ãî.
  95. % \item …᫨ ¢ë ª®¬¯¨«¨àã¥â¥, ®£à®¬­yî ¯à®£à ¬¬y, à §¡¨¢ ©â¥ ¥¥ ­  ¬®¤ã«¨, ¨
  96. % ª®¬¯¨«¨àã©â¥ ¨å ®â¤¥«ì­®.
  97. % \item …᫨ ¯à¥¤ë¤ã騥 ¤¢  ¯y­ªâ  ­¥ à ¡®â îâ, ¯¥à¥â࠭᫨ày©â¥ ª®¬¯¨«ïâ®à
  98. % á ¡®«ì訬 p §¬¥p®¬ ªyç¨ (¢ë ¬®¦¥â¥ ¨á¯®«ì§®¢ âì \var{-Ch} ®¯æ¨î ¤«ï í⮣®, \seeo{Ch})
  99. % \end {itemsize}
  100. % \end {®¯¨á ­¨¥}
  101. general_i_writingresourcefile=01010_I_‡ ¯¨á뢠¥¬ ä ©«-â ¡«¨æy áâp®ª®¢ëå p¥áypᮢ: $1
  102. % This message is shown when the compiler writes the Resource String Table
  103. % file containing all the resource strings for a program.
  104. general_e_errorwritingresourcefile=01011_E_Žè¨¡ª  ¯p¨ § ¯¨á¨ ä ©« -â ¡«¨æë áâp®ª®¢ëå p¥áypᮢ: $1
  105. % This message is shown when the compiler encountered an error when writing
  106. % the Resource String Table file
  107. general_i_fatal=01012_I_Fatal:
  108. % Prefix for Fatal Errors
  109. general_i_error=01013_I_Error:
  110. % Prefix for Errors
  111. general_i_warning=01014_I_Warning:
  112. % Prefix for Warnings
  113. general_i_note=01015_I_Note:
  114. % Prefix for Notes
  115. general_i_hint=01016_I_Hint:
  116. % Prefix for Hints
  117. % \end{description}
  118. #
  119. # ‘ª ­¥à
  120. #
  121. % \section {‘®®¡é¥­¨ï ᪠­¥à .}
  122. % �â®â à §¤¥« ¯¥à¥ç¨á«ï¥â á®®¡é¥­¨ï, ª®â®pë¥ ¢ë¤ ¥â ᪠­¥à. ‘ª ­¥à ¡¥à¥â § ¡®âã
  123. % ® «¥ªá¨ç¥áª®© áâàãªâãॠ䠩«  Free Pascal, â® ¥áâì ®­ ¯p®¡y¥â ­ å®¤¨âì
  124. % § à¥§¥à¢¨à®¢ ­­ë¥ á«®¢ , áâப¨, ¨ â.¤. Ž­ â ª¦¥ § ¡®â¨âáï ® ¤¨à¥ªâ¨¢ å ¨
  125. % ãá«®¢­ëå ¢ëà ¦¥­¨ïå ¢«¨ïî騥 ­  ®¡p ¡®âªy ¯p®£p ¬¬ë ª®¬¯¨«ïâ®p®¬.
  126. % \begin {®¯¨á ­¨¥}
  127. scan_f_end_of_file=02000_F_H¥®¦¨¤ ­­ë© ª®­¥æ ä ©« 
  128. % �â® ®¡ëç­® á«ãç ¥âáï ¢ á«¥¤ãîé¨å á«ãç ïå:
  129. % \begin{itemsize}
  130. % \item ˆá室­ë© ä ©« § ª ­ç¨¢ ¥âáï ¤® ¯®á«¥¤­¥£® \var{end} ¢ëp ¦¥­¨ï.
  131. % �â® á«ãç ¥âáï ®¡ëç­®, ª®£¤  \var{begin} ¨ \var{end} ¢ëp ¦¥­¨ï ­¥
  132. % á¡ « ­á¨à®¢ ­­ë© (­¥ ®¤¨­ ª®¢®¥ ª®«¨ç¥á⢮);
  133. % \item ‚ª«îç ¥¬ë© ä ©« § ª ­ç¨¢ ¥âáï ¢ á¥à¥¤¨­¥ ¢ëp ¦¥­¨ï.
  134. % \item Š®¬¬¥­â à¨© ­¥ ¡ë« § ªàëâ (䨣yp­®© ᪮¡ª®© ¨«¨ ¥é¥ ª ª)
  135. % \end{itemsize}
  136. scan_f_string_exceeds_line=02001_F_H¥¢®§¬®¦­® ­ ©â¨ ª®­¥æ áâp®ª¨
  137. % ‚ë, ¢®§¬®¦­®, § ¡ë«¨ ¢ª«îç¨âì § ªàë⨥ ' áâp®ª¨, â ª çâ® áâp®ª  § ­¨¬ ¥â
  138. % ­¥áª®«ìª® «¨­¨© ª®¤  (áâp®ª).
  139. scan_f_illegal_char=02002_F_‡ ¯p¥é¥­­ë© ᨬ¢®«
  140. % ‘ª ­¥p á⮫ª­y«áï á § ¯à¥é¥­­ë¬ ᨬ¢®«®¬ ¢® ¢å®¤­®¬ ä ©«¥.
  141. scan_f_syn_expected=02003_F_Ž¡­ py¦¥­  ᨭ⠪á¨ç¥áª ï ®è¨¡ª : $1
  142. % �⮠㪠§ë¢ ¥â, çâ® ª®¬¯¨«ïâ®à ®¦¨¤ « ¤py£yî «¥ªá¥¬ã (¨«¨ ¬ àª¥à) 祬
  143. % â®â, ª®â®àë© ¢ë ­ ¯¥ç â «¨. �â® ¬®¦¥â ¯à®¨á室¨âì ¯®ç⨠¢áî¤ã, £¤¥
  144. % ‚ë ¯¨è¨â¥ ­¥ ¯® § ª®­ ¬ ï§ëª  � áª «ì.
  145. scan_t_start_include_file=02004_T_H ç¨­ î ç⥭¨¥ ¢ª«îç ¥¬®£® ä ©«  $1
  146. % Š®£¤  ‚ë ®¡¥á¯¥ç¨¢ ¥â¥ \var{-vt} ª«îç, ª®¬¯¨«ïâ®à, á®®¡é ¥â ‚ ¬
  147. % ª®£¤  ®­ ­ ç¨­ ¥â ç¨â âì ¢ª«îç ¥¬ë© ä ©«.
  148. scan_w_comment_level=02005_W_H ©¤¥­ $1 yp®¢¥­ì ª®¬¬¥­â p¨ï
  149. % Š®£¤  \var{-vw} ª«îç ¨á¯®«ì§ã¥âáï, â® ª®¬¯¨«ïâ®à ¯à¥¤ã¯à¥¦¤ ¥â ‚ á,
  150. % ¥á«¨ ®­ ­ å®¤¨â ¢«®¦¥­­ë¥ ª®¬¬¥­â à¨¨. ‚«®¦¥­­ë¥ ª®¬¬¥­â à¨¨ ­¥ ¯®§¢®«ïîâáï ¢
  151. % Turbo Pascal ¨ íâ® ¬®¦¥â ¡ëâì ¨áâ®ç­¨ª®¬ ®è¨¡®ª.
  152. scan_n_far_directive_ignored=02006_N_$F ¤¨à¥ªâ¨¢  (FAR) ¨£­®à¨àã¥âáï
  153. % \var{FAR} ¤¨à¥ªâ¨¢  íâ® 16-à §à來 ï ª®­áâàãªæ¨ï, ª®â®à ï ï¥âáï
  154. % ¯®¤¤¥p¦¨¢ ¥¬®©, ­® ¨£­®à¨à㥬 ï ª®¬¯¨«ïâ®à®¬, â ª ª ª ®­ ¯à®¨§¢®¤¨â
  155. % 32 à §à來ëå ª®¤.
  156. scan_n_stack_check_global_under_linux=02007_N_Linux ¯p®¢¥pï¥â á⥪  ¢â®¬ â¨ç¥áª¨
  157. % �஢¥àª  á⥪  á \var{-Cs} ª«îç ¨£­®à¨àã¥âáï ¯®¤ \linux, â ª ª ª
  158. % \linux ¤¥« ¥â íâ® §  ‚ á. Žâ®¡p ¦ ¥âáï ⮫쪮, ª®£¤  \var{-vn} ¨á¯®«ì§ã¥âáï.
  159. scan_n_ignored_switch=02008_N_ˆ£­®p¨py¥¬ë© ª®¬¯¨«ïâ®à®¬ ª«îç $1
  160. % ‘ ¢ª«î祭­ë¬ \var{-vn}, ª®¬¯¨«ïâ®à ¯à¥¤ã¯à¥¦¤ ¥â, ¥á«¨ ®­ ¨£­®à¨àã¥â ª«îç
  161. scan_w_illegal_switch=02009_W_H¥¨§¢¥áâ­ë© ª«îç ª®¬¯¨«ïâ®p  $1
  162. % ‚ë ¢ª«î稫¨ ª«îç ª®¬¯¨«ïâ®à  (â® ¥áâì \var{\{\$... \}}) ª®â®àë©
  163. % ª®¬¯¨«ïâ®à ­¥ §­ ¥â.
  164. scan_w_switch_is_global=02010_W_�â®â ª«îç ª®¬¯¨«ïâ®à  ¨¬¥¥â £«®¡ «ì­ë© áâ âyá
  165. % Š®£¤  \var{-vw} ¨á¯®«ì§ã¥âáï, ª®¬¯¨«ïâ®à ¯à¥¤ã¯à¥¦¤ ¥â, ¥á«¨ ª«îç £«®¡ «¥­.
  166. scan_e_illegal_char_const=02011_E_H¥¨§¢¥áâ­ë© ᨬ¢®« ¢ ª®­áâ ­â¥
  167. % �â® á«ãç ¥âáï, ª®£¤  ‚ë ®¯à¥¤¥«ï¥â¥ ᨬ¢®« á ª®¤®¬ ASCII, ¯®áª®«ìªã ¢
  168. % \var{\#96}, ­® ­®¬¥à ï¥âáï ¨«¨ § ¯à¥é¥­­ë¬, ¨«¨ ¢­¥ ¤¨ ¯ §®­ .
  169. % „¨ ¯ §®­ - 1-255.
  170. scan_f_cannot_open_input=02012_F_H¥ ¬®£y ®âªpëâì ä ©« $1
  171. % \fpc ­¥ ¬®¦¥â ­ ©â¨ ¯à®£à ¬¬ã ¨«¨ ¨á室­ë© ä ©« ¬®¤ã«ï, ª®â®àë© ‚ë
  172. % ®¯à¥¤¥«¨«¨ ¢ ª®¬ ­¤­®© áâப¥.
  173. scan_f_cannot_open_includefile=02013_F_H¥ ¬®£y ®âªpëâì ¢ª«îç ¥¬ë© ä ©« $1
  174. % \fpc ­¥ ¬®¦¥â ­ ©â¨ ¨á室­ë© ä ©«, ª®â®pë© ¢ë ®¯à¥¤¥«¨«¨ ¢ \var{\{\$include \}}
  175. % ¢ëp ¦¥­¨¨.
  176. scan_e_too_much_endifs=02014_E_‘«¨èª®¬ ¬­®£® $ENDIF ¨«¨ $ELSE ¤¨p¥ªâ¨¢
  177. % ‚ è \var{\{\$IFDEF.. \}} ¨ {\{\$ENDIF} \}} ¢ëp ¦¥­¨ï ­¥ ¨¬¥îâ ®¤¨­ ª®¢®¥ ª®«-¢®.
  178. scan_w_only_pack_records=02015_W_Record ¯®«ï ¬®£yâ ¢ëà ¢­¨¢ âìáï ⮫쪮 ª 1,2,4 ¨«¨ 16 ¡ ©â ¬
  179. % ‚ë ®¯à¥¤¥«ï¥â¥ \var{\{\$PACKRECORDS n\} } á § ¯à¥é¥­­ë¬ §­ ç¥­¨¥¬ ¤«ï
  180. % \var{n}. ’®«ìª® 1,2,4 ¨«¨ 16 ¤®¯ãá⨬® ¢ í⮬ á«ãç ¥.
  181. scan_w_only_pack_enum=02016_W_�¥p¥ç¨á«¥­¨ï ¬®£yâ ¡ëâì á®åà ­¥­ë ⮫쪮 ¢ 1,2 ¨«¨ 4 ¡ ©â å
  182. % ‚ë ®¯à¥¤¥«ï¥â¥ \var{\{\$PACKENUM n \}} á § ¯à¥é¥­­ë¬ §­ ç¥­¨¥¬ ¤«ï
  183. % \var {n}. ’®«ìª® 1,2 ¨«¨ 4 ¤®¯ãá⨬® ¢ í⮬ á«ãç ¥.
  184. scan_e_endif_expected=02017_E_$1 ®¦¨¤ ¥âáï ¤«ï $2 ®¯à¥¤¥«¥­¨ï ¢ áâப¥ $3
  185. % ‚ è¨ ãá«®¢­ë¥ ã⢥ত¥­¨ï âà ­á«ï樨 ­¥á¡ « ­á¨à®¢ ­­ë.
  186. scan_e_preproc_syntax_error=02018_E_‘¨­â ªá¨ç¥áª ï ®è¨¡ª  ¯à¨  ­ «¨§¥ ¢ëà ¦¥­¨ï ¤«ï ª®¬¯¨«ïâ®p 
  187. % ‚ ãá«®¢­®¬ ¢ëà ¦¥­¨¨ ¨¬¥¥âáï ®è¨¡ª  ¯®á«¥ \var{\{\$if \}} ¤¨à¥ªâ¨¢ë ª®¬¯¨«ïâ®à .
  188. scan_e_error_in_preproc_expr=02019_E_Žè¨¡ª  ¢ p áç¥â¥ ¢ëà ¦¥­¨ï ¯p¥¯p®æ¥áá®p  ¤«ï ª®¬¯¨«¨à®¢ ­¨ï
  189. % ‚ ãá«®¢­®¬ ¢ëà ¦¥­¨¨ ¨¬¥¥âáï ®è¨¡ª  ¯®á«¥ \var{\{\$if \}} ¤¨à¥ªâ¨¢ë ª®¬¯¨«ïâ®à .
  190. scan_w_macro_cut_after_255_chars=02020_W_„«ï p áç¥â  ¢ëp ¦¥­¨ï, ¤«¨­  ¬ ªp®á  ᮪p é¥­  ¤® 255 ᨬ¢®«®¢
  191. % ‚ëà ¦¥­¨ï ᮤ¥à¦ é¨¥ ¬ ªà®ª®¬ ­¤ë ­¥ ¬®¦¥â ¡ëâì ¡®«ìè¥ ç¥¬ 255 ᨬ¢®«®¢.
  192. % �⮠ï¥âáï ç áâìî ¡¥§®¯ á­®á⨠¢ ª®¬¯¨«ïâ®à¥, íâ® ¯à¥¤®â¢à é ¥â ¡ãä¥à­ë¥
  193. % ¯¥à¥¯®«­¥­¨¥. �â® ¯®ª §ë¢ ¥âáï ª ª ¯à¥¤ã¯à¥¦¤¥­¨¥, â® ¥áâì
  194. % ª®£¤  ª«îç \var{-vw} ¨á¯®«ì§y¥âáï.
  195. scan_e_endif_without_if=02021_E_ENDIF ¡¥§ IF{N}DEF
  196. % ‚ è \var{\{\$IFDEF.. \}} ¨ {\ {\$ENDIF \}} ã⢥ত¥­¨ï ­¥ á¡ « ­á¨à®¢ ­ë.
  197. scan_f_user_defined=02022_F_�®«ì§®¢ â¥«ì ®¯à¥¤¥«¨« $1
  198. % �p®¨§®è«  ®¯à¥¤¥«ï¥¬ ï ¯®«ì§®¢ â¥«¥¬ ä â «ì­ ï ®è¨¡ª . ‘¬. â ª¦¥ \progref
  199. scan_e_user_defined=02023_E_�®«ì§®¢ â¥«ì ®¯p¥¤¥«¨« $1
  200. % �p®¨§®è«  ®¯à¥¤¥«ï¥¬ ï ¯®«ì§®¢ â¥«¥¬ ®è¨¡ª . ‘¬. â ª¦¥ \progref
  201. scan_w_user_defined=02024_W_�®«ì§®¢ â¥«ì ®¯p¥¤¥«¨« $1
  202. % �p®¨§®è«® ®¯à¥¤¥«ï¥¬®¥ ¯®«ì§®¢ â¥«¥¬ ¯à¥¤ã¯à¥¦¤¥­¨¥. ‘¬. â ª¦¥ \progref
  203. scan_n_user_defined=02025_N_�®«ì§®¢ â¥«ì ®¯p¥¤¥«¨« $1
  204. % ‘⮫ª­y«¨áì á ®¯à¥¤¥«ï¥¬ë¬ ¯®«ì§®¢ â¥«¥¬ ¯à¨¬¥ç ­¨¥¬. ‘¬. â ª¦¥ \progref
  205. scan_h_user_defined=02026_H_�®«ì§®¢ â¥«ì ®¯p¥¤¥«¨« $1
  206. % ‘⮫ª­y«¨áì á ®¯à¥¤¥«ï¥¬®© ¯®«ì§®¢ â¥«¥¬ ¯®¤áª §ª®©. ‘¬. â ª¦¥ \progref
  207. scan_i_user_defined=02027_I_�®«ì§®¢ â¥«ì ®¯p¥¤¥«¨« $1
  208. % ‘⮫ª­y«¨áì á ®¯à¥¤¥«ï¥¬®© ¯®«ì§®¢ â¥«¥¬ ¯®¤áª §ª®©. ‘¬. â ª¦¥ \progref
  209. scan_e_keyword_cant_be_a_macro=02028_E_Š«î祢®¥ á«®¢® ¯¥à¥®¯à¥¤¥«¥­®, ¯®áª®«ìªã ¬ ªà®ª®¬ ­¤  ­¥ ¨¬¥¥â ­¨ª ª®£® íä䥪â 
  210. % ‚ë ­¥ ¬®¦¥â¥ ¯¥à¥®¯à¥¤¥«ïâì ª«îç¥¢ë¥ á«®¢  á ¬ ªà®ª®¬ ­¤ ¬¨.
  211. scan_f_macro_buffer_overflow=02029_F_�yä¥p ¬ ªp®á®¢ ¯¥à¥¯®«­¥­ ¯à¨ ç⥭¨¨ ¨«¨ à áè¨à¥­¨¨ ¬ ªà®ª®¬ ­¤ë
  212. % ‚ è ¬ ªp®á ¨«¨ १ã«ìâ â, ᫨誮¬ ¤«¨­¥­ ¤«ï ª®¬¯¨«ïâ®à .
  213. scan_w_macro_deep_ten=02030_W_� áè¨p¥­¨¥ ¬ ªà®ª®¬ ­¤ë ¯à¥¢ë蠥⠢®§¬®¦­ë© yp®¢¥­ì (¡®«¥¥ 16).
  214. % �ਠà áè¨à¥­¨¨ ¬ ªà®ª®¬ ­¤ë ¡ë«® ¨á¯®«ì§®¢ ­® ¡®«¥¥ 16 yp®¢­¥© ¢«®¦¥­­®áâ¨.
  215. % Š®¬¯¨«ïâ®à ­¥ ¬®¦¥â p áè¨p¨âì ¬ ªp®á, â ª ª ª íâ® ¬®¦¥â ¡ëâì §­ ª, çâ®
  216. % ¨á¯®«ì§y¥âáï ४ãàá¨ï
  217. scan_e_wrong_styled_switch=02031_E_�¥p¥ª«îç â¥«¨ ª®¬¯¨«ïâ®p  ­¥ ¯®§¢®«ïî⠨ᯮ«ì§®¢ âì (* ¨ *) áâ¨«ì ª®¬¬¥­â p¨¥¢.
  218. % �¥à¥ª«îç â¥«¨ ª®¬¯¨«ïâ®à  ¤®«¦­ë ¢á¥£¤  ¡ëâì ¬¥¦¤ã \var{\{\ }} à §¤¥«¨â¥«ï¬¨ ª®¬¬¥­â à¨ï.
  219. scan_d_handling_switch=02032_D_�p®¢¥p塞 ª«îç "$1"
  220. % Š®£¤  ‚ë ¢ª«î砥⥠¨­ä®à¬ æ¨î ¤«ï ®â« ¤ª¨ (\var{-vd}), ª®¬¯¨«ïâ®à á®®¡é ¥â
  221. % ¢ ¬, ª®£¤  ®­ ®æ¥­¨¢ ¥â ãá«®¢­®¥ ¢ëà ¦¥­¨¥, ¢«¨ïî饥 ­  ª®¬¯¨«ïæ¨î.
  222. scan_c_endif_found=02033_C_ENDIF $1 ­ ©¤¥­
  223. % Š®£¤  ‚ë ¢ª«î砥⥠ãá«®¢­ë¥ á®®¡é¥­¨ï (\var{-vc}), ª®¬¯¨«ïâ®à á®®¡é ¥â ¢ ¬
  224. % £¤¥ ®­ áâ «ª¨¢ ¥âáï á ãá«®¢­ë¬¨ ã⢥ত¥­¨ï¬¨.
  225. scan_c_ifdef_found=02034_C_IFDEF $1 ­ ©¤¥­, $2
  226. % Š®£¤  ‚ë ¢ª«î砥⥠ãá«®¢­ë¥ á®®¡é¥­¨ï (\var{-vc}), ª®¬¯¨«ïâ®à, á®®¡é ¥â ¢ ¬
  227. % £¤¥ ®­ áâ «ª¨¢ ¥âáï á ãá«®¢­ë¬¨ ã⢥ত¥­¨ï¬¨.
  228. scan_c_ifopt_found=02035_C_IFOPT $1 ­ ©¤¥­, $2
  229. % Š®£¤  ¢ë ¢ª«î砥⥠ãá«®¢­ë¥ á®®¡é¥­¨ï (\var{-vc}), ª®¬¯¨«ïâ®à, á®®¡é ¥â ¢ ¬
  230. % £¤¥ ®­ áâ «ª¨¢ ¥âáï á ãá«®¢­ë¬¨ ã⢥ত¥­¨ï¬¨.
  231. scan_c_if_found=02036_C_IF $1 ­ ©¤¥­, $2
  232. % Š®£¤  ¢ë ¢ª«î砥⥠ãá«®¢­ë¥ á®®¡é¥­¨ï (\var{-vc}), ª®¬¯¨«ïâ®à, á®®¡é ¥â ¢ ¬
  233. % £¤¥ ®­ áâ «ª¨¢ ¥âáï á ãá«®¢­ë¬¨ ã⢥ত¥­¨ï¬¨.
  234. scan_c_ifndef_found=02037_C_IFNDEF $1 ­ ©¤¥­, $2
  235. % Š®£¤  ¢ë ¢ª«î砥⥠ãá«®¢­ë¥ á®®¡é¥­¨ï (\var {-vc}), ª®¬¯¨«ïâ®à, á®®¡é ¥â ¢ ¬
  236. % £¤¥ ®­ áâ «ª¨¢ ¥âáï á ãá«®¢­ë¬¨ ã⢥ত¥­¨ï¬¨.
  237. scan_c_else_found=02038_C_ELSE $1 ­ ©¤¥­, $2
  238. % Š®£¤  ¢ë ¢ª«î砥⥠ãá«®¢­ë¥ á®®¡é¥­¨ï (\var{-vc}), ª®¬¯¨«ïâ®à, á®®¡é ¥â ¢ ¬
  239. % £¤¥ ®­ áâ «ª¨¢ ¥âáï á ãá«®¢­ë¬¨ ã⢥ত¥­¨ï¬¨.
  240. scan_c_skipping_until=02039_C_�p®¯y᪠¥¬ ¤® ...
  241. % Š®£¤  ¢ë ¢ª«î砥⥠ãá«®¢­ë¥ á®®¡é¥­¨ï (\var{-vc}), ª®¬¯¨«ïâ®à á®®¡é ¥â ¢ ¬
  242. % £¤¥ ®­ áâ «ª¨¢ ¥âáï á ãá«®¢­ë¬¨ ã⢥ত¥­¨ï¬¨, ¨ ¯à®¯ã᪠¥â «¨ íâ® ¨«¨ ­¥â.
  243. scan_i_press_enter=02040_I_H ¦¬¨â¥ <ENTER>, çâ®¡ë ¯à®¤®«¦¨âì
  244. % Š®£¤  ¨á¯®«ì§y¥âáï \var{-vi} ª«îç, ª®¬¯¨«ïâ®à ®áâ ­ ¢«¨¢ ¥â
  245. % âà ­á«ï樨 ¨ ¦¤¥â \var{enter} ª« ¢¨èy, ª®â®à ï ¡ã¤¥â ­ ¦ â , ª®£¤  ®­
  246. % á⮫ª­¥âáï á ¤¨p¥ªâ¨¢®© \var {\{\$STOP\}}.
  247. scan_w_unsupported_switch=02041_W_H¥¯®¤¤¥p¦¨¢ ¥¬ë© ª«îç $1
  248. % Š®£¤  ¯p¥¤y¯p¥¦¤¥­¨ï ¢ª«î祭ë (\var{-vw}), ª®¬¯¨«ïâ®à ¯à¥¤ã¯à¥¦¤ ¥â ¢ á
  249. % ®â­®á¨â¥«ì­® ­¥¯®¤¤¥à¦¨¢ ¥¬ëå ª«î祩. �â® ®§­ ç ¥â çâ®, ª«îç ¨á¯®«ì§ã¥âáï
  250. % ¢ Delphi ¨«¨ Turbo Pascal, ­® ­¥ ¢ \fpc
  251. scan_w_illegal_directive=02042_W_H¥¯p ¢¨«ì­ ï ¤¨à¥ªâ¨¢  ª®¬¯¨«ïâ®à  $1
  252. % Š®£¤  ¯p¥¤y¯p¥¦¤¥­¨ï ¢ª«î祭ë (\var{-vw}), ª®¬¯¨«ïâ®à ¯à¥¤ã¯à¥¦¤ ¥â ¢ á
  253. % ®â­®á¨â¥«ì­® ­¥¯à¨§­ ­­ëå ¤¨p¥ªâ¨¢. „«ï ᯨ᪠ à á¯®§­ ­­ëå ¤¨p¥ªâ¨¢, á¬. \progref
  254. scan_t_back_in=02043_T_‚®§p é ¥¬áï ¢ $1
  255. % Š®£¤  ¢ë ¨á¯®«ì§ã¥â¥ (\var{-vt}) ª®¬¯¨«ïâ®à, á®®¡é ¥â ¢ ¬, ª®£¤  ®­
  256. % § ª®­ç¨« ç¨â âì ¢ª«îç ¥¬ë© ä ©«.
  257. scan_w_unsupported_app_type=02044_W_H¥¯®¤¤¥p¦¨¢ ¥¬ë© ⨯ ¯p¨«®¦¥­¨ï: $1
  258. % ‚ë ¯®«ã砥⥠íâ® ¯à¥¤ã¯à¥¦¤¥­¨¥, ª®£¤  ®¯à¥¤¥«ï¥â¥ ­¥¨§¢¥áâ­ë© ⨯
  259. % ¯à¨«®¦¥­¨ï á ¤¨à¥ªâ¨¢®© $APPTYPE
  260. scan_w_app_type_not_support=02045_W_$APPTYPE ­¥ ¯®¤¤¥à¦¨¢ ¥âáï á¨á⥬®© ¤«ï ª®â®p®© ¢ë ª®¬¯¨«¨py¥â¥ ä ©«
  261. % $APPTYPE ¤¨à¥ªâ¨¢  ®¡¥á¯¥ç¨¢ ¥âáï ⮫쪮 win32 ¯à¨«®¦¥­¨ï¬¨.
  262. scan_w_decription_not_support=02046_W_’¥£ DESCRIPTION ­¥ ¯®¤¤¥à¦¨¢ ¥âáï á¨á⥬®© ¤«ï ª®â®p®© ¢ë ª®¬¯¨«¨py¥â¥ ä ©«
  263. % ’¥£ \var{\{\$DESCRIPTION\}} ¯®¤¤¥à¦¨¢ ¥âáï ⮫쪮 ­  á¨á⥬ å OS/2 ¨ Win32.
  264. scan_n_version_not_support=02047_N_’¥£ VERSION ­¥ ¯®¤¤¥à¦¨¢ ¥âáï á¨á⥬®© ¤«ï ª®â®p®© ¢ë ª®¬¯¨«¨py¥â¥ ä ©«
  265. % ’¥£ \var{\{\$VERSION\}} ¯®¤¤¥à¦¨¢ ¥âáï ⮫쪮 ¢ Win32 á¨á⥬ å.
  266. scan_n_only_exe_version=02048_N_’¥£ VERSION ¨á¯®«ì§ã¥âáï ⮫쪮 ¤«ï .EXE ¨ .DLL ¨á室­¨ª®¢.
  267. % ’¥£ \var{\{\$VERSION\}} ¨á¯®«ì§ã¥âáï ⮫쪮 ¤«ï .EXE ¨ .DLL ¨á室­¨ª®¢.
  268. scan_w_wrong_version_ignored=02049_W_�¥¢¥à­ë© ä®à¬ â ¤«ï ⥣  VERSION ¤«ï ¤¨à¥ªâ¨¢ë $1
  269. % The \var{\{\$VERSION\}} directive format is major_version.minor_version
  270. % where major_version and minor_version are words.
  271. scan_w_unsupported_asmmode_specifier=02050_W_H¥¯®¤¤¥p¦¨¢ ¥¬ë© áâ¨«ì  áᥬ¡«¥p  ¢ $1
  272. % Š®£¤  ‚ë ®¯à¥¤¥«ï¥â¥ ०¨¬  áᥬ¡«¥à  á \var{\{\$ASMMODE xxx\}}
  273. % ª®¬¯¨«ïâ®à ­¥ à á¯®§­ ¢ « ०¨¬, ª®â®àë© ‚ë â ¬ yª § «¨.
  274. % \end {®¯¨á ­¨¥}
  275. scan_w_no_asm_reader_switch_inside_asm=02051_W_Š«îç  áᥬ¡«¥p : ­¥¢®§¬®¦­ ï ¢­yâp¥­­ïï ¨­áâpyªæ¨ï  áᥬ¡«¥p , $1 ¡y¤¥â íä䥪⨢­  ⮫쪮 ¢ á«¥¤yî騩 p §
  276. % It is not possible to switch from one assembler reader to another
  277. % inside an assmebler block. The new reader will be used for next
  278. % assembler statement only.
  279. scan_e_wrong_switch_toggle=02052_E_H¥¢¥p­ë© p¥¦¨¬ ¯¥à¥ª«îç â¥«ï, ¨á¯®«ì§ã©â¥ ON/OFF ¨«¨ +/-
  280. % You need to use ON or OFF or a + or - to toggle the switch
  281. scan_e_resourcefiles_not_supported=02053_E_” ©«ë p¥áypᮢ ­¥ ¯®¤¤¥à¦¨¢ ¥âáï á¨á⥬®© ¤«ï ª®â®p®© ¢ë ª®¬¯¨«¨py¥â¥ ä ©«
  282. % The target you are compiling for doesn't support Resource files. The
  283. % only target which can use resource files is Win32
  284. scan_w_include_env_not_found=02054_W_‚ª«îç ¥¬ ï ¯¥p¥¬¥­­ ï ®ªpy¦¥­¨ï $1 ­¥ ­ ©¤¥­  ¢ ®ªpy¦¥­¨¨ á¨á⥬ë
  285. % The included environment variable can't be found in the environment, it'll
  286. % be replaced by an empty string instead.
  287. scan_e_invalid_maxfpureg_value=02055_E_�¥¢¥à­®¥ §­ ç¥­¨¥ ¤«ï £à ­¨æë ॣ¨áâà  á®¯à®æ¥áá®à 
  288. % Valid values for this directive are 0..8 and NORMAL/DEFAULT
  289. scan_w_only_one_resourcefile_supported=02056_W_„«ï í⮩ á¨áâ¥¬ë ¯®¤¤¥à¦¨¢ îâáï ⮫쪮 ®¤¨­ ä ©« à¥áãàᮢ
  290. % The target you are compiling for supports only one resource file. This is the
  291. % case of OS/2 (EMX) currently. The first resource file found is used, the
  292. % others are discarded.
  293. scan_w_macro_support_turned_off=02057_W_�®¤¤¥p¦ª  ¬ ªp®á®¢ ®âª«î祭 
  294. % A macro declaration has been found, but macro support is currently off,
  295. % so the declaration will be ignored. To turn macro support on compile with
  296. % -Sm on the commandline or add {$MACRO ON} in the source
  297. % \end{description}
  298. #
  299. # ‘¨­â ªá¨ç¥áª¨©  ­ «¨§ â®à
  300. #
  301. % \section {á®®¡é¥­¨ï ᨭ⠪á¨ç¥áª®£®  ­ «¨§ â®à }
  302. % �â®â à §¤¥« ¯¥à¥ç¨á«ï¥â ¢á¥ á®®¡é¥­¨ï ᨭ⠪á¨ç¥áª®£®  ­ «¨§ â®à .
  303. % ‘¨­â ªá¨ç¥áª¨©  ­ «¨§ â®à § ¡®â¨âáï ® ᥬ ­â¨ª¥ ï§ëª , â® ¥áâì ®­
  304. % ®¯à¥¤¥«ï¥â, ¯à ¢¨«¥­ «¨ ¢ è � áª «ì.
  305. % \begin {®¯¨á ­¨¥}
  306. parser_e_syntax_error=03000_E_‘¨­â ªá¨ç¥áª ï ®è¨¡ª  ( ­ «¨§ â®à)
  307. % An error against the Turbo Pascal language was encountered. This happens
  308. % typically when an illegal character is found in the sources file.
  309. parser_w_proc_far_ignored=03001_W_�p®æ¥¤yp  ¨¬¥¥â ⨯ FAR - ¨£­®p¨py¥¬
  310. % This is a warning. \var{FAR} is a construct for 8 or 16 bit programs. Since
  311. % the compile generates 32 bit programs, it ignores this directive.
  312. parser_w_proc_near_ignored=03002_W_�p®æ¥¤yp  ¨¬¥¥â ⨯ NEAR - ¨£­®p¨py¥¬
  313. % This is a warning. \var{NEAR} is a construct for 8 or 16 bit programs. Since
  314. % the compile generates 32 bit programs, it ignores this directive.
  315. parser_w_proc_interrupt_ignored=03003_W_�à®æ¥¤ãà­ë© ⨯ INTERRUPT ¨£­®à¨àã¥âáï ¤«ï ­¥ i386 ¯à®æ¥áá®à®¢
  316. % This is a warning. \var{INTERRUPT} is a i386 specific construct
  317. % and is ignored for other processors.
  318. parser_e_dont_nest_interrupt=03004_E_INTERRUPT ¯à®æ¥¤ãà  ­¥ ¬®¦¥â ¡ëâì ¢«®¦¥­­®©
  319. % An \VAR{INTERRUPT} procedure must be global.
  320. parser_w_proc_directive_ignored=03005_W_�à®æ¥¤ãà­ë© ⨯ $1 ¨£­®à¨àã¥âáï
  321. % This is a warning. \var{REGISTER},\var{REINTRODUCE} is ignored by FPC programs for now.
  322. % This is introduced first for Delphi compatibility.
  323. parser_e_no_overload_for_all_procs=03006_E_�¥ ¢á¥ ®¯à¥¤¥«¥­¨ï $1 ®¯à¥¤¥«¥­ë ª ª OVERLOAD
  324. % When you want to use overloading using the \var{OVERLOAD} directive, then
  325. % all declarations need to have \var{OVERLOAD} specified.
  326. parser_e_no_dll_file_specified=03007_E_DLL-ä ©« ­¥ yª § ­
  327. % No longer in use.
  328. parser_e_export_name_double=03008_E_ˆ¬ï äy­ªæ¨¨ íªá¯®pâ¨py¥âáï ¤¢ ¦¤ë $1
  329. % Exported function names inside a specific DLL must all be different
  330. parser_e_export_ordinal_double=03009_E_ˆ­¤¥ªá äy­ªæ¨¨ íªá¯®pâ¨py¥âáï ¤¢ ¦¤ë $1
  331. % Exported function names inside a specific DLL must all be different
  332. parser_e_export_invalid_index=03010_E_H¥¢¥p­ë© ¨­¤¥ªá y íªá¯®pâ¨py¥¬®© äy­ªæ¨¨
  333. % DLL function index must be in the range \var{1..\$FFFF}
  334. parser_w_parser_reloc_no_debug=03011_W_�¥à¥¬¥é ¥¬ë© DLL/EXE ä ©« $1 ®â« ¤®ç­ãî ¨­ä®à¬ æ¨î ­¥ ᮤ¥à¦¨â, ®âª«î祭®.
  335. parser_w_parser_win32_debug_needs_WN=03012_W_„«ï ¯®¤¤¥à¦ª¨ ®â« ¤ª¨ Win32-ª®¤ , ¢ ¬ ­¥®¡å®¤¨¬® ®âª«îç âì ¯¥à¥¬¥é¥­¨¥ á ®¯æ¨¥© -WN
  336. % Stabs info is wrong for relocatable DLL or EXES use -WN
  337. % if you want to debug win32 executables.
  338. parser_e_constructorname_must_be_init=03013_E_Š®­áâpyªâ®p ¤®«¦¥­ ¨¬¥âì ¨¬ï INIT
  339. % You are declaring a constructor with a name which isn't \var{init}, and the
  340. % \var{-Ss} switch is in effect. See the \var{-Ss} switch (\seeo{Ss}).
  341. parser_e_destructorname_must_be_done=03014_E_„¥áâpyªâ®p ¤®«¦¥­ ¨¬¥âì ¨¬ï DONE
  342. % You are declaring a constructor with a name which isn't \var{done}, and the
  343. % \var{-Ss} switch is in effect. See the \var{-Ss} switch (\seeo{Ss}).
  344. parser_e_illegal_open_parameter=03015_E_H¥¯p ¢¨«ì­® ®ä®p¬«¥­­ë¥ '®âªpëâë¥ ¯ p ¬¥âpë'
  345. % You are trying to use the wrong type for an open parameter.
  346. parser_e_proc_inline_not_supported=03016_E_�p®æ¥¤yp­ë© ⨯ INLINE ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  347. % You tried to compile a program with C++ style inlining, and forgot to
  348. % specify the \var{-Si} option (\seeo{Si}). The compiler doesn't support C++
  349. % styled inlining by default.
  350. parser_w_priv_meth_not_virtual=03017_W_Private ¬¥â®¤ë ­¥ ¬®£yâ ¡ëâì ¢¨pây «ì­ë¬¨
  351. % You declared a method in the private part of a object (class) as
  352. % \var{virtual}. This is not allowed. Private methods cannot be overridden
  353. % anyway.
  354. parser_w_constructor_should_be_public=03018_W_Š®­áâpyªâ®p ¤®«¦¥­ ¡ëâì public
  355. % Constructors must be in the 'public' part of an object (class) declaration.
  356. parser_w_destructor_should_be_public=03019_W_„¥áâpyªâ®p ¤®«¦¥­ ¡ëâì public
  357. % Destructors must be in the 'public' part of an object (class) declaration.
  358. parser_n_only_one_destructor=03020_N_Š« áá ¬®¦¥â ¨¬¥âì ⮫쪮 ®¤¨­ ¤¥áâpyªâ®p
  359. % You can declare only one destructor for a class.
  360. parser_e_no_local_objects=03021_E_ޝp¥¤¥«¥­¨ï «®ª «ì­ëå ª« áᮢ ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  361. % Classes must be defined globally. They cannot be defined inside a
  362. % procedure or function
  363. parser_f_no_anonym_objects=03022_F_ޝp¥¤¥«¥­¨ï ­¥¨§¢¥áâ­ëå ª« áᮢ ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  364. % An invalid object (class) declaration was encountered, i.e. an
  365. % object or class without methods that isn't derived from another object or
  366. % class. For example:
  367. % \begin{verbatim}
  368. % Type o = object
  369. % a : longint;
  370. % end;
  371. % \end{verbatim}
  372. % will trigger this error.
  373. parser_object_has_no_vmt=03023_E_Ž¡ê¥ªâ $1 ­¥ ï¥âáï â ¡«¨æ¥© VMT
  374. parser_e_illegal_parameter_list=03024_E_H¥¢¥p­ë© ᯨ᮪ ¯ p ¬¥âp®¢
  375. % You are calling a function with parameters that are of a different type than
  376. % the declared parameters of the function.
  377. parser_e_wrong_parameter_type=03025_E_H¥¯p ¢¨«ì­® ®¯p¥¤¥«¥­ ⨯ ¯ p ¬¥âp  ¤«ï  p£y¬¥­â  $1
  378. % There is an error in the parameter list of the function or procedure.
  379. % The compiler cannot determine the error more accurate than this.
  380. parser_e_wrong_parameter_size=03026_E_H¥¯p ¢¨«ì­® ®¯p¥¤¥«¥­® ª®«¨ç¥á⢮ ¯ p ¬¥âp®¢
  381. % There is an error in the parameter list of the function or procedure,
  382. % the number of parameters is not correct.
  383. parser_e_overloaded_no_procedure=03027_E_�¥à¥£à㦥­­ë© ¨¤¥­â¨ä¨ª â®p $1 ­¥ ï¥âáï äy­ªæ¨¥©
  384. % The compiler encountered a symbol with the same name as an overloaded
  385. % function, but it isn't a function it can overload.
  386. parser_e_overloaded_have_same_parameters=03028_E_�¥à¥£à㦥­­ë¥ äy­ªæ¨¨ ¤®«¦­ë ¨¬¥âì â®â-¦¥ ᯨ᮪ ¯ p ¬¥âp®¢
  387. % You're declaring overloaded functions, but with the same parameter list.
  388. % Overloaded function must have at least 1 different parameter in their
  389. % declaration.
  390. parser_e_header_dont_match_forward=03029_E_‡ £®«®¢®ª äy­ªæ¨¨ ­¥ ᮮ⢥âáâ¢y¥â ¯p¥¤ë¤y饬y ®¯p¥¤¥«¥­¨î ¢ forward $1
  391. % You declared a function with same parameters but
  392. % different result type or function modifiers.
  393. parser_e_header_different_var_names=03030_E_‡ £®«®¢®ª äy­ªæ¨¨ $1 ­¥ ᮮ⢥âáâ¢y¥â ¯p¥¤ë¤y饬y ®¯p¥¤¥«¥­¨î ¢ forward : ¨¬¥­  ¯¥p¥¬¥­­ëå ¨§¬¥­¥­ë $2 => $3
  394. % You declared the function in the \var{interface} part, or with the
  395. % \var{forward} directive, but define it with a different parameter list.
  396. parser_n_duplicate_enum=03031_N_‡­ ç¥­¨ï ¢ ⨯ å ¯¥à¥ç¨á«¥­¨ï ¤®«¦­ë ¡ëâì ¢®§à áâ î騬¨
  397. % \fpc allows enumeration constructions as in C. Given the following
  398. % declaration two declarations:
  399. % \begin{verbatim}
  400. % type a = (A_A,A_B,A_E:=6,A_UAS:=200);
  401. % type a = (A_A,A_B,A_E:=6,A_UAS:=4);
  402. % \end{verbatim}
  403. % The second declaration would produce an error. \var{A\_UAS} needs to have a
  404. % value higher than \var{A\_E}, i.e. at least 7.
  405. parser_n_interface_name_diff_implementation_name=03032_N_Interface ¨ Implementation ¨¬¥­  p §­ë¥ $1 => $2
  406. % This note warns you if the implementation and interface names of a
  407. % functions are different, but they have the same mangled name. This
  408. % is important when using overloaded functions (but should produce no error).
  409. parser_e_no_with_for_variable_in_other_segments=03033_E_With ­¥ ¬®¦¥â ¡ëâì ¨á¯®«ì§®¢ ­ ¢ ¯¥p¥¬¥­­ëå ª®â®pë¥ ­ å®¤ïâáï ¢ p §«¨ç­ëå ᥣ¬¥­â å
  410. % With stores a variable locally on the stack,
  411. % but this is not possible if the variable belongs to another segment.
  412. parser_e_too_much_lexlevel=03034_E_Š®«¨ç¥á⢮ ¢«®¦¥­¨© ¢ äy­ªæ¨¨ ᫨誮¬ ¬­®£® (¡®«¥¥ 31)
  413. % You can nest function definitions only 31 times.
  414. parser_e_range_check_error=03035_E_Žè¨¡ª  ¢ë室  ¨§ ¤®¯yá⨬®£® ¤¨ ¯ §®­  ¯p¨ p áç¥â¥ ª®­áâ ­â
  415. % The constants are out of their allowed range.
  416. parser_w_range_check_error=03036_W_Žè¨¡ª  ¢ë室  ¨§ ¤®¯yá⨬®£® ¤¨ ¯ §®­  ¯p¨ p áç¥â¥ ª®­áâ ­â
  417. % The constants are out of their allowed range.
  418. parser_e_double_caselabel=03037_E_�®¢â®p­ ï ¬¥âª  CASE
  419. % You are specifying the same label 2 times in a \var{case} statement.
  420. parser_e_case_lower_less_than_upper_bound=03038_E_‚¥på­ïï £p ­¨æ  ¤¨ ¯ §®­  ¬¥­ìè¥ ç¥¬ ­¨¦­ïï
  421. % The upper bound of a \var{case} label is less than the lower bound and this
  422. % is useless
  423. parser_e_type_const_not_possible=03039_E_’¨¯¨§¨p®¢ ­­ë¥ ª®­áâ ­âë ª« áᮢ ­¥ ¯®¤¤¥p¦¨¢ îâáï
  424. % You cannot declare a constant of type class or object.
  425. parser_e_no_overloaded_procvars=03040_E_�¥à¥¬¥­­ë¥ ¯¥à¥£à㦥­­ëå ä㭪権 ­¥ ¯®¤¤¥p¦¨¢ îâáï
  426. % You are trying to assign an overloaded function to a procedural variable.
  427. % This isn't allowed.
  428. parser_e_invalid_string_size=03041_E_„«¨­  áâp®ª¨ ¤®«¦­  ¡ëâì ¢ ¤¨ ¯ §®­¥ 1 .. 255
  429. % The length of a string in Pascal is limited to 255 characters. You are
  430. % trying to declare a string with length lower than 1 or greater than 255
  431. % (This is not true for \var{Longstrings} and \var{AnsiStrings}.
  432. parser_w_use_extended_syntax_for_objects=03042_W_ˆá¯®«ì§®¢ ­¨¥ p áè¨p¥­­®£® ᨭ⠪á¨á  NEW ¨ DISPOSE ¤«ï ¨­á⠭権 ®¡ê¥ªâ®¢
  433. % If you have a pointer \var{a} to a class type, then the statement
  434. % \var{new(a)} will not initialize the class (i.e. the constructor isn't
  435. % called), although space will be allocated. you should issue the
  436. % \var{new(a,init)} statement. This will allocate space, and call the
  437. % constructor of the class.
  438. parser_w_no_new_dispose_on_void_pointers=03043_W_ˆá¯®«ì§®¢ ­¨¥ NEW ¨ DISPOSE ¤«ï ­¥â¨¯¨§¨p®¢ ­­ëå yª § â¥«¥©, ¡¥áá¬ëá«¥­­®
  439. parser_e_no_new_dispose_on_void_pointers=03044_E_ˆá¯®«ì§®¢ ­¨¥ NEW ¨ DISPOSE ¤«ï ­¥â¨¯¨§¨p®¢ ­­ëå yª § â¥«¥©, ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  440. % You cannot use \var{new(p)} or \var{dispose(p)} if \var{p} is an untyped pointer
  441. % because no size is associated to an untyped pointer.
  442. % Accepted for compatibility in \var{tp} and \var{delphi} modes.
  443. parser_e_class_id_expected=03045_E_ަ¨¤ ¥âáï ¨¤¥­â¨ä¨ª â®p ª« áá 
  444. % This happens when the compiler scans a procedure declaration that contains
  445. % a dot,
  446. % i.e., a object or class method, but the type in front of the dot is not
  447. % a known type.
  448. parser_e_no_type_not_allowed_here=03046_E_ˆ¤¥­â¨ä¨ª â®p ⨯  §¤¥áì ­¥y¬¥á⥭
  449. % You cannot use a type inside an expression.
  450. parser_e_methode_id_expected=03047_E_ަ¨¤ ¥âáï ¨¤¥­â¨ä¨ª â®p ¬¥â®¤ 
  451. % This identifier is not a method.
  452. % This happens when the compiler scans a procedure declaration that contains
  453. % a dot, i.e., a object or class method, but the procedure name is not a
  454. % procedure of this type.
  455. parser_e_header_dont_match_any_member=03048_E_‡ £®«®¢®ª äy­ªæ¨¨ ­¥ ᮤ¥p¦¨â ­¥ ®¤­®£® ¨§ ¬¥â®¤®¢ ®¡ê¥ªâ  $1
  456. % This identifier is not a method.
  457. % This happens when the compiler scans a procedure declaration that contains
  458. % a dot, i.e., a object or class method, but the procedure name is not a
  459. % procedure of this type.
  460. parser_p_procedure_start=03049_P_�p®æ¥¤yp /”y­ªæ¨ï $1
  461. % When using the \var{-vp} switch, the compiler tells you when it starts
  462. % processing a procedure or function implementation.
  463. parser_e_error_in_real=03050_E_H¥¢¥p­ ï ª®­áâ ­â  á ¯« ¢ î饩 § ¯ï⮩
  464. % The compiler expects a floating point expression, and gets something else.
  465. parser_e_fail_only_in_constructor=03051_E_FAIL ¬®¦¥â ¨á¯®«ì§®¢ âáï ⮫쪮 ¢ ª®­áâpyªâ®p å
  466. % You are using the \var{FAIL} instruction outside a constructor method.
  467. parser_e_no_paras_for_destructor=03052_E_„¥áâpyªâ®pë ­¥ ¬®£yâ ¨¬¥âì ¯ p ¬¥âp®¢
  468. % You are declaring a destructor with a parameter list. Destructor methods
  469. % cannot have parameters.
  470. parser_e_only_class_methods_via_class_ref=03053_E_’®«ìª® ¬¥â®¤ë ª« áá  ¬®£ãâ ááë« âìáï ­  ª« áá
  471. % This error occurs in a situation like the following:
  472. % \begin{verbatim}
  473. % Type :
  474. % Tclass = Class of Tobject;
  475. %
  476. % Var C : TClass;
  477. %
  478. % begin
  479. % ...
  480. % C.free
  481. % \end{verbatim}
  482. % \var{Free} is not a class method and hence cannot be called with a class
  483. % reference.
  484. parser_e_only_class_methods=03054_E_’®«ìª® ª ¬¥â®¤ ¬ ª« áá  ¬®¦­® ®¡à é âìáï ¢ ¬¥â®¤ å ª« áá 
  485. % This is related to the previous error. You cannot call a method of an object
  486. % from a inside a class method. The following code would produce this error:
  487. % \begin{verbatim}
  488. % class procedure tobject.x;
  489. %
  490. % begin
  491. % free
  492. % \end{verbatim}
  493. % Because free is a normal method of a class it cannot be called from a class
  494. % method.
  495. parser_e_case_mismatch=03055_E_’¨¯ ª®­áâ ­âë ¨ ⨯ ¢ëp ¦¥­¨ï ¢ CASE ­¥ ᮢ¯ ¤ îâ
  496. % One of the labels is not of the same type as the case variable.
  497. parser_e_illegal_symbol_exported=03056_E_‘¨¬¢®« ­¥ ¬®¦¥â íªá¯®àâ¨à®¢ âìáï ¨§ ¡¨¡«¨®â¥ª¨
  498. % You can only export procedures and functions when you write a library. You
  499. % cannot export variables or constants.
  500. parser_w_should_use_override=03057_W_“­ á«¥¤®¢ ­­ë© ¬¥â®¤ áªpëâ $1
  501. % A method that is declared \var{virtual} in a parent class, should be
  502. % overridden in the descendent class with the \var{override} directive. If you
  503. % don't specify the \var{override} directive, you will hide the parent method;
  504. % you will not override it.
  505. parser_e_nothing_to_be_overridden=03058_E_�¥ ¨¬¥¥âáï ­¨ª ª®£® ¬¥â®¤  ¢ ª« áᥠ¯à¥¤ª , ª®â®àë© ­ã¦­® ¯¥p¥®¯p¥¤¥«¨âì: $1
  506. % You try to \var{override} a virtual method of a parent class that doesn't
  507. % exist.
  508. parser_e_no_procedure_to_access_property=03059_E_�¨ª ª®© í«¥¬¥­â ­¥ ®¡¥á¯¥ç¨¢ ¥â ®¡à é¥­¨ï ª ᢮©á⢠¬ ª« áá 
  509. % You specified no \var{read} directive for a property.
  510. parser_w_stored_not_implemented=03060_W_‘®åà ­¥­­ ï ¤¨à¥ªâ¨¢  ᢮©á⢠¥áâì, ­® ¥é¥ ­¥ p¥ «¨§®¢ ­ 
  511. % The \var{stored} directive is not yet implemented
  512. parser_e_ill_property_access_sym=03061_E_H¥¢¥p­ë© ᨬ¢®« ¤«ï ¤®áâ㯠 ª ᢮©áâ¢y
  513. % There is an error in the \var{read} or \var{write} directives for an array
  514. % property. When you declare an array property, you can only access it with
  515. % procedures and functions. The following code woud cause such an error.
  516. % \begin{verbatim}
  517. % tmyobject = class
  518. % i : integer;
  519. % property x [i : integer]: integer read I write i;
  520. % \end{verbatim}
  521. %
  522. parser_e_cant_access_protected_member=03062_E_H¥¢®§¬®¦­® ®¡à â¨âìáï ª protected ¯®«î ®¡ê¥ªâ 
  523. % Fields that are declared in a \var{protected} section of an object or class
  524. % declaration cannot be accessed outside the module wher the object is
  525. % defined, or outside descendent object methods.
  526. parser_e_cant_access_private_member=03063_E_H¥¢®§¬®¦­® ®¡à â¨âìáï ª private ¯®«î ®¡ê¥ªâ 
  527. % Fields that are declared in a \var{private} section of an object or class
  528. % declaration cannot be accessed outside the module where the class is
  529. % defined.
  530. parser_w_overloaded_are_not_both_virtual=03064_W_�¥à¥£à㦥­­ë¥ ¬¥â®¤ë ¢¨pây «ì­ëå ¬¥â®¤®¢, ¤®«¦­ë ¡ëâì ⮦¥ ¢¨pây «ì­ë¬¨: $1
  531. % If you declare overloaded methods in a class, then they should either all be
  532. % virtual, or none. You shouldn't mix them.
  533. parser_w_overloaded_are_not_both_non_virtual=03065_W_�¥à¥£à㦥­­ë© ¬¥â®¤ H… ¢¨àâã «ì­®£® ¬¥â®¤  ¤®«¦¥­ ¡ëâì ⮦¥ H… ¢¨àâã «ì­ë¬: $1
  534. % If you declare overloaded methods in a class, then they should either all be
  535. % virtual, or none. You shouldn't mix them.
  536. parser_e_overloaded_methodes_not_same_ret=03066_E_�¥à¥£à㦥­­ë¥ ¬¥â®¤ë, ª®â®àë¥ ï¢«ïîâáï ¢¨àâã «ì­ë¬¨, ¤®«¦­ë ¨¬¥âì â®â ¦¥ á ¬ë© â¨¯ p¥§y«ìâ â : $1
  537. % If you declare virtual overloaded methods in a class definition, they must
  538. % have the same return type.
  539. parser_e_dont_nest_export=03067_E_EXPORT äy­ªæ¨¨ ­¥ ¬®£yâ ¡ëâì ¢«®¦¥­­ë¬¨
  540. % You cannot declare a function or procedure within a function or procedure
  541. % that was declared as an export procedure.
  542. parser_e_methods_dont_be_export=03068_E_Œ¥â®¤ë ­¥ ¬®£yâ íªá¯®pâ¨p®¢ âìáï
  543. % You cannot declare a procedure that is a method for an object as
  544. % \var{export}ed. That is, your methods cannot be called from a C program.
  545. parser_e_call_by_ref_without_typeconv=03069_E_‚ë§®¢ á ¯¥à¥¬¥­­ë¬¨ ¯ à ¬¥âà ¬¨ ¤®«¦¥­ ᮮ⢥âá⢮¢ âì â®ç­®
  546. % When calling a function declared with \var{var} parameters, the variables in
  547. % the function call must be of exactly the same type. There is no automatic
  548. % type conversion.
  549. parser_e_no_super_class=03070_E_„ ­­ë© ª« áá ­¥ ï¥âáï த¨â¥«ì᪨¬ ª« áᮬ ⥪ã饣® ª« áá 
  550. % When calling inherited methods, you are trying to call a method of a strange
  551. % class. You can only call an inherited method of a parent class.
  552. parser_e_self_not_in_method=03071_E_SELF p §p¥è ¥âáï ⮫쪮 ¢ ¬¥â®¤ å
  553. % You are trying to use the \var{self} parameter outside an object's method.
  554. % Only methods get passed the \var{self} parameters.
  555. parser_e_generic_methods_only_in_methods=03072_E_Œ¥â®¤ë ¬®£yâ ¢ë§ë¢ âìáï ⮫쪮 ¢ ¤py£¨å ¬¥â®¤ å ­ ¯pï¬yî á ¨¤¥­â¨ä¨ª â®p®¬ ⨯  ª« áá 
  556. % A construction like \var{sometype.somemethod} is only allowed in a method.
  557. parser_e_illegal_colon_qualifier=03073_E_H¥¯p ¢¨«ì­®¥ ¨á¯®«ì§®¢ ­¨¥ ':'
  558. % You are using the format \var{:} (colon) 2 times on an expression that
  559. % is not a real expression.
  560. parser_e_illegal_set_expr=03074_E_Žè¨¡ª  ¯à®¢¥àª¨ ¯à¨­ ¤«¥¦­®á⨠ª ¤¨ ¯ §®­ã ¢ ª®­áâàãªâ®à¥ ­ ¡®à  ¨«¨ ¤¢®©­®¬ í«¥¬¥­â¥ ­ ¡®à 
  561. % The declaration of a set contains an error. Either one of the elements is
  562. % outside the range of the set type, either two of the elements are in fact
  563. % the same.
  564. parser_e_pointer_to_class_expected=03075_E_ަ¨¤ ¥âáï yª § â¥«ì ­  ®¡ê¥ªâ
  565. % You specified an illegal type in a \var{New} statement.
  566. % The extended synax of \var{New} needs an object as a parameter.
  567. parser_e_expr_have_to_be_constructor_call=03076_E_‚ëp ¦¥­¨¥ ¤®«¦­® ¢ë§ë¢ âì ª®­áâpyªâ®p
  568. % When using the extended syntax of \var{new}, you must specify the constructor
  569. % method of the object you are trying to create. The procedure you specified
  570. % is not a constructor.
  571. parser_e_expr_have_to_be_destructor_call=03077_E_‚ëp ¦¥­¨¥ ¤®«¦­® ¢ë§ë¢ âì ¤¥áâpyªâ®p
  572. % When using the extended syntax of \var{dispose}, you must specify the
  573. % destructor method of the object you are trying to dispose of.
  574. % The procedure you specified is not a destructor.
  575. parser_e_invalid_record_const=03078_E_H¥¢¥p­ë© ¯®p冷ª í«¥¬¥­â®¢ ⨯  RECORD
  576. % When declaring a constant record, you specified the fields in the wrong
  577. % order.
  578. parser_e_false_with_expr=03079_E_’¨¯ ¢ëp ¦¥­¨ï ¤®«¦­® ¡ëâì CLASS ¨«¨ RECORD
  579. % A \var{with} statement needs an argument that is of the type \var{record}
  580. % or \var{class}. You are using \var{with} on an expression that is not of
  581. % this type.
  582. parser_e_void_function=03080_E_�p®æ¥¤ypë ­¥ ¬®£yâ ¢®§¢p é âì §­ ç¥­¨ï
  583. % In \fpc, you can specify a return value for a function when using
  584. % the \var{exit} statement. This error occurs when you try to do this with a
  585. % procedure. Procedures cannot return a value.
  586. parser_e_constructors_always_objects=03081_E_Š®­áâpyªâ®pë ¨ ¤¥áâpyªâ®pë ¤®«¦­ë ¡ëâì ¬¥â®¤ ¬¨
  587. % You're declaring a procedure as destructor or constructor, when the
  588. % procedure isn't a class method.
  589. parser_e_operator_not_overloaded=03082_E_ޝ¥p â®p ­¥ ¯¥p¥£py¦¥­
  590. % You're trying to use an overloaded operator when it isn't overloaded for
  591. % this type.
  592. parser_e_no_such_assignment=03083_E_�¥à¥£à㦥­­®¥ á¢ï§ë¢ ­¨¥ ­¥¢®§¬®¦­® á ®¤¨­ ª®¢ë¬¨ ⨯ ¬¨ ¤ ­­ëå
  593. % You can not overload assignment for types
  594. % that the compiler considers as equal.
  595. parser_e_overload_impossible=03084_E_�¥à¥£à㧪  ®¯¥à â®à  ­¥¢®§¬®¦­ 
  596. % The combination of operator, arguments and return type are
  597. % incompatible.
  598. parser_e_no_reraise_possible=03085_E_RERAISE §¤¥áì ­¥¢®§¬®¦¥­
  599. % You are trying to raise an exception where it isn't allowed. You can only
  600. % raise exceptions in an \var{except} block.
  601. parser_e_no_new_or_dispose_for_classes=03086_E_� áè¨p¥­­ë© ᨭ⠪á¨á NEW ¨ DISPOSE ¤«ï ª« áá  ­¥¤®¯yá⨬®
  602. % You cannot generate an instance of a class with the extended syntax of
  603. % \var{new}. The constructor must be used for that. For the same reason, you
  604. % cannot call \var{Dispose} to de-allocate an instance of a class, the
  605. % destructor must be used for that.
  606. parser_e_asm_incomp_with_function_return=03087_E_€áᥬ¡«¥p ­¥á®¢¬¥á⨬ á ⨯®¬, ª®â®p®¥ ¢®§p é ¥â äy­ªæ¨ï
  607. % You're trying to implement a \var{assembler} function, but the return type
  608. % of the function doesn't allow that.
  609. parser_e_procedure_overloading_is_off=03088_E_�p®æ¥¤yp­ ï ¯¥à¥£à㧪  ®âª«î祭 
  610. % When using the \var{-So} switch, procedure overloading is switched off.
  611. % Turbo Pascal does not support function overloading.
  612. parser_e_overload_operator_failed=03089_E_�¥¢®§¬®¦­® ¯à¥®¡à §¨âì íâ®â ®¯¥à â®à ¢ ¯¥à¥£à㦥­­ë© ®¯¥à â®à
  613. % You are trying to overload an operator which cannot be overloaded.
  614. % The following operators can be overloaded :
  615. % \begin{verbatim}
  616. % +, -, *, /, =, >, <, <=, >=, is, as, in, **, :=
  617. % \end{verbatim}
  618. parser_e_comparative_operator_return_boolean=03090_E_‘à ¢­¨â¥«ì­ë© ®¯¥à â®à ¤®«¦¥­ ¢®§¢à â¨âì ¡ã«¥¢® §­ ç¥­¨¥
  619. % When overloading the \var{=} operator, the function must return a boolean
  620. % value.
  621. parser_e_only_virtual_methods_abstract=03091_E_’®«ìª® ¢¨àâã «ì­ë¥ ¬¥â®¤ë ¬®£ãâ ¡ëâì  ¡áâà ªâ­ë
  622. % You are declaring a method as abstract, when it isn't declared to be
  623. % virtual.
  624. parser_f_unsupported_feature=03092_F_ˆá¯®«ì§®¢ ­¨¥ ¯®ª  ­¥¯®¤¤¥à¦¨¢ ¥¬®© ®á®¡¥­­®á⨠ª®¬¯¨«ïâ®à 
  625. % You're trying to force the compiler into doing something it cannot do yet.
  626. parser_e_mix_of_classes_and_objects=03093_E_‘¬¥è¨¢ âì Š‹€‘‘› ¨ Ž�š…Š’› ­¥ ¯®§¢®«ï¥âáï
  627. % You cannot derive \var{objects} and \var{classes} intertwined . That is,
  628. % a class cannot have an object as parent and vice versa.
  629. parser_w_unknown_proc_directive_ignored=03094_W_�¥¨§¢¥áâ­ ï ¤¨à¥ªâ¨¢  ¯à®æ¥¤ãàë, $1 ¨£­®à¨ày¥âáï
  630. % The procedure direcive you secified is unknown. Recognised procedure
  631. % directives are \var{cdecl}, \var{stdcall}, \var{popstack}, \var{pascal}
  632. % \var{register}, \var{export}.
  633. parser_e_absolute_only_one_var=03095_E_ABSOLUTE ¬®¦¥â ¡ëâì á¢ï§ ­  ⮫쪮 á Ž„Hމ ¯¥p¥¬¥­­®©
  634. % You cannot specify more than one variable before the \var{absolute} directive.
  635. % Thus, the following construct will provide this error:
  636. % \begin{verbatim}
  637. % Var Z : Longint;
  638. % X,Y : Longint absolute Z;
  639. % \end{verbatim}
  640. % \item [ absolute can only be associated a var or const ]
  641. % The address of a \var{absolute} directive can only point to a variable or
  642. % constant. Therefore, the following code will produce this error:
  643. % \begin{verbatim}
  644. % Procedure X;
  645. %
  646. % var p : longint absolute x;
  647. % \end{verbatim}
  648. %
  649. parser_e_absolute_only_to_var_or_const=03096_E_ABSOLUTE ¬®¦¥â ¡ëâì á¢ï§ ­  ⮫쪮 á ¯¥p¥¬¥­­®© ¨«¨ ª®­á⠭⮩
  650. % The address of a \var{absolute} directive can only point to a variable or
  651. % constant. Therefore, the following code will produce this error:
  652. % \begin{verbatim}
  653. % Procedure X;
  654. %
  655. % var p : longint absolute x;
  656. % \end{verbatim}
  657. %
  658. parser_e_initialized_only_one_var=03097_E_’®«ìª® Ž„H€ ¯¥p¥¬¥­­ ï ¬®¦¥â ¡ëâì ¨­¨æ¨ «¨§¨p®¢ ­ 
  659. % You cannot specify more than one variable with a initial value
  660. % in Delphi syntax.
  661. parser_e_abstract_no_definition=03098_E_€¡áâà ªâ­ë¥ ¬¥â®¤ë ­¥ ¤®«¦­ë ¨¬¥âì ®¯à¥¤¥«¥­¨¥ (â® ¥áâì ¨¬¥âì ⥫®)
  662. % Abstract methods can only be declared, you cannot implement them. They
  663. % should be overridden by a descendant class.
  664. parser_e_overloaded_must_be_all_global=03099_E_�â  ¯¥à¥£à㦥­­ ï äã­ªæ¨ï ­¥ ¬®¦¥â ¡ëâì «®ª «ì­®©, ¨ ¤®«¦­  íªá¯®àâ¨à®¢ âìáï
  665. % You are defining a overloaded function in the implementation part of a unit,
  666. % but there is no corresponding declaration in the interface part of the unit.
  667. parser_w_virtual_without_constructor=03100_W_‚¨àâã «ì­ë¥ ¬¥â®¤ë ¨á¯®«ì§ãîâáï ¡¥§ ª®­áâàãªâ®à  ¢ $1
  668. % If you declare objects or classes that contain virtual methods, you need
  669. % to have a constructor and destructor to initialize them. The compiler
  670. % encountered an object or class with virtual methods that doesn't have
  671. % a constructor/destructor pair.
  672. parser_m_macro_defined=03101_M_ޝp¥¤¥«¥­ ¬ ªp®á: $1
  673. % When \var{-vm} is used, the compiler tells you when it defines macros.
  674. parser_m_macro_undefined=03102_M_Œ ªp®á ­¥®¯p¥¤¥«¥­: $1
  675. % When \var{-vm} is used, the compiler tells you when it undefines macros.
  676. parser_m_macro_set_to=03103_M_Œ ªp®á $1 yáâ ­®¢«¥­ ¢ $2
  677. % When \var{-vm} is used, the compiler tells you what values macros get.
  678. parser_i_compiling=03104_I_Š®¬¯¨«¨p®¢ ­¨¥ $1
  679. % When you turn on information messages (\var{-vi}), the compiler tells you
  680. % what units it is recompiling.
  681. parser_u_parsing_interface=03105_U_€­ «¨§¨à㥬 ¨­â¥à䥩á­ãî ç áâì ¬®¤y«ï $1
  682. % This tells you that the reading of the interface
  683. % of the current unit starts
  684. parser_u_parsing_implementation=03106_U_€­ «¨§¨à㥬 ॠ«¨§ æ¨®­­ãî ç áâì ¬®¤y«ï $1
  685. % This tells you that the code reading of the implementation
  686. % of the current unit, library or program starts
  687. parser_d_compiling_second_time=03107_D_�®¢â®à­®¥ ª®¬¯¨«¨à®¢ ­¨¥ $1
  688. % When you request debug messages (\var{-vd}) the compiler tells you what
  689. % units it recompiles for the second time.
  690. parser_e_no_paras_allowed=03108_E_‘¢®©á⢠ ¬ áᨢ  ¢ í⮩ â®çª¥ ­¥ ¯®¤¤¥p¦¨¢ îâáï
  691. % You cannot use array properties at that point in the source.
  692. parser_e_no_property_found_to_override=03109_E_H¥â ­¨ª ª¨å ᢮©á⢠¤«ï ¯¥p¥®¯p¥¤¥«¥­¨ï
  693. % You want to overrride a property of a parent class, when there is, in fact,
  694. % no such property in the parent class.
  695. parser_e_only_one_default_property=03110_E_’®«ìª® ®¤­® § ¤ ­­®¥ ¯®-㬮«ç ­¨î ᢮©á⢮ p §p¥è ¥âáï, ­ ©¤¥­® y­ á«¥¤®¢ ­­®¥, § ¤ ­­®¥ ¯® y¬®«ç ­¨î, ᢮©á⢮ ¢ ª« áᥠ$1
  696. % You specified a property as \var{Default}, but a parent class already has a
  697. % default property, and a class can have only one default property.
  698. parser_e_property_need_paras=03111_E_‡ ¤ ­­®¥ ¯®-㬮«ç ­¨î ᢮©á⢮ ¤®«¦­® ¡ëâì ᢮©á⢮¬ ¬ áᨢ 
  699. % Only array properties of classes can be made \var{default} properties.
  700. parser_e_constructor_cannot_be_not_virtual=03112_E_‚¨pây «ì­ë¥ ª®­áâpyªâ®pë ¯®¤¤¥p¦¨¢ îâáï ⮫쪮 ¢ ª« áᮢëå ¬®¤¥«ïå ®¡ê¥ªâ 
  701. % You cannot have virtual constructors in objects. You can only have them
  702. % in classes.
  703. parser_e_no_default_property_available=03113_E_H¥â ᢮©áâ¢
  704. % You try to access a default property of a class, but this class (or one of
  705. % it's ancestors) doesn't have a default property.
  706. parser_e_cant_have_published=03114_E_Š« áá ­¥ ¬®¦¥â ¨¬¥âì PUBLISHED à §¤¥«, ¨á¯®«ì§y©â¥ ª«îç {$M+}
  707. % If you want a \var{published} section in a class definition, you must
  708. % use the \var{\{\$M+\}} switch, whch turns on generation of type
  709. % information.
  710. parser_e_forward_declaration_must_be_resolved=03115_E_FORWARD ®¯p¥¤¥«¥­¨¥ ª« áá  $1 ¤®«¦­® ¡ëâì ॠ«¨§®¢ ­® §¤¥áì, çâ®¡ë ¨á¯®«ì§®¢ âì ª« áá ª ª ¯à¥¤®ª
  711. % To be able to use an object as an ancestor object, it must be defined
  712. % first. This error occurs in the following situation:
  713. % \begin{verbatim}
  714. % Type ParentClas = Class;
  715. % ChildClass = Class(ParentClass)
  716. % ...
  717. % end;
  718. % \end{verbatim}
  719. % Where \var{ParentClass} is declared but not defined.
  720. parser_e_no_local_operator=03116_E_‹®ª «ì­ë¥ ®¯¥p â®pë ­¥ ¯®¤¤¥p¦¨¢ îâáï
  721. % You cannot overload locally, i.e. inside procedures or function
  722. % definitions.
  723. parser_e_proc_dir_not_allowed_in_interface=03117_E_�p®æ¥¤yp­ ï ¤¨p¥ªâ¨¢  $1 ­¥ p §p¥è¥­  ¢ ¨­â¥à䥩᭮© ç á⨠¬®¤ã«ï
  724. % This procedure directive is not allowed in the \var{interface} section of
  725. % a unit. You can only use it in the \var{implementation} section.
  726. parser_e_proc_dir_not_allowed_in_implementation=03118_E_�p®æ¥¤yp­ ï ¤¨p¥ªâ¨¢  $1 ­¥ p §p¥è¥­  ¢ ॠ«¨§ æ¨®­­®© ç á⨠¬®¤ã«ï
  727. % This procedure directive is not defined in the \var{implementation} section of
  728. % a unit. You can only use it in the \var{interface} section.
  729. parser_e_proc_dir_not_allowed_in_procvar=03119_E_�p®æ¥¤yp­ ï ¤¨p¥ªâ¨¢  $1 ­¥ p §p¥è¥­  ¢ PROCVAR ®¯p¥¤¥«¥­¨¨
  730. % This procedure directive cannot be part of a procedural or function
  731. % type declaration.
  732. parser_e_function_already_declared_public_forward=03120_E_”ã­ªæ¨ï $1 㦥 ®¡ê¥­  ª ª PUBLIC ¨«¨ FORWARD
  733. % You will get this error if a function is defined as \var{forward} twice.
  734. % Or it is once in the \var{interface} section, and once as a \var{forward}
  735. % declaration in the \var{implmentation} section.
  736. parser_e_not_external_and_export=03121_E_H¥«ì§ï ¨á¯®«ì§®¢ âì EXPORT ¨ EXTERNAL ¢¬¥áâ¥
  737. % These two procedure directives are mutually exclusive
  738. parser_e_name_keyword_expected=03122_E_ަ¨¤ ¥âáï ª«î祢®¥ á«®¢® NAME
  739. % The definition of an external variable needs a \var{name} clause.
  740. parser_w_not_supported_for_inline=03123_W_$1 ­¥ ¯®¤¤¥p¦¨¢ ¥âáï ¢­yâp¨ INLINE ¯p®æ¥¤ypë/äy­ªæ¨¨
  741. % Inline procedures don't support this declaration.
  742. parser_w_inlining_disabled=03124_W_‚ª«î祭¨¥ INLINE ®âª«î祭®
  743. % Inlining of procedures is disabled.
  744. parser_i_writing_browser_log=03125_I_‡ ¯¨á뢠¥¬ «®£ ¡p y§¥p  $1
  745. % When information messages are on, the compiler warns you when it
  746. % writes the browser log (generated with the \var{\{\$Y+ \}} switch).
  747. parser_h_maybe_deref_caret_missing=03126_H_Œ®¦¥â ¡ëâì ®âáyâáâ¢y¥â p §ë¬¥­®¢ ­­ë© yª § â¥«ì
  748. % The compiler thinks that a pointer may need a dereference.
  749. parser_f_assembler_reader_not_supported=03127_F_‚ë¡p ­­ë© á⨫ì ç⥭¨ï  áᥬ¡«¥p  ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  750. % The selected assembler reader (with \var{\{\$ASMMODE xxx\}} is not
  751. % supported. The compiler can be compiled with or without support for a
  752. % particular assembler reader.
  753. parser_e_proc_dir_conflict=03128_E_�p®æ¥¤yp­ ï ¤¨p¥ªâ¨¢  $1 ª®­ä«¨ªây¥â á ¤py£¨¬¨ ¤¨p¥ªâ¨¢ ¬¨
  754. % You specified a procedure directive that conflicts with other directives.
  755. % for instance \var{cdecl} and \var{pascal} are mutually exclusive.
  756. parser_e_call_convention_dont_match_forward=03129_E_‘®£« è¥­¨¥ ® ¢ë§®¢¥ ¯p®æ¥¤ypë/äy­ªæ¨¨ ­¥ ᮮ⢥âáâ¢ã¥â yª § ­­®¬y ¢ëè¥ ¢ FORWARD
  757. % This error happens when you declare a function or procedure with
  758. % e.g. \var{cdecl;} but omit this directive in the implementation, or vice
  759. % versa. The calling convention is part of the function declaration, and
  760. % must be repeated in the function definition.
  761. parser_e_register_calling_not_supported=03130_E_‚ë§®¢ p¥£¨áâp®¢ ("FAST CALL") ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  762. % The \var{register} calling convention, i.e., arguments are passed in
  763. % registers instead of on the stack is not supported. Arguments are always
  764. % passed on the stack.
  765. parser_e_property_cant_have_a_default_value=03131_E_‘¢®©á⢮ ­¥ ¬®¦¥â ¨¬¥âì §­ ç¥­¨¥ ¯® y¬®«ç ­¨î
  766. % Set properties or indexed properties cannot have a default value.
  767. parser_e_property_default_value_must_const=03132_E_‡­ ç¥­¨¥ ¯® y¬®«ç ­¨î y ᢮©á⢠ ¤®«¦­® ¡ëâì ª®­á⠭⮩
  768. % The value of a \var{default} declared property must be known at compile
  769. % time. The value you specified is only known at run time. This happens
  770. % .e.g. if you specify a variable name as a default value.
  771. parser_e_cant_publish_that=03133_E_‘¨¬¢®« ­¥ ¬®¦¥â ¡ëâì PUBLISHED, ⮫쪮 ª« áá
  772. % Only class type variables can be in a \var{published} section of a class
  773. % if they are not declared as a property.
  774. parser_e_cant_publish_that_property=03134_E_�â®â ¢¨¤ ᢮©á⢠ ­¥ ¬®¦¥â ¡ëâì PUBLISHED
  775. % Properties in a \var{published} section cannot be array properties.
  776. % they must be moved to public sections. Properties in a \var{published}
  777. % section must be an ordinal type, a real type, strings or sets.
  778. parser_w_empty_import_name=03135_W_“ª § ­­®¥ ¨¬ï ¨¬¯®àâ  ¯yáâ®
  779. % Both index and name for the import are 0 or empty
  780. parser_e_empty_import_name=03136_W_’ॡã¥âáï ¨¬ï ¨¬¯®àâ 
  781. % Some targets need a name for the imported procedure or a cdecl specifier
  782. parser_e_used_proc_name_changed=03137_E_‚­ãâ७­¥¥ ¨¬ï ä㭪樨, ¨§¬¥­¥­­® ¯®á«¥ ¨á¯®«ì§®¢ ­¨ï ä㭪樨
  783. % This is an internal error; please report any occurrences of this error
  784. % to the \fpc team.
  785. parser_e_division_by_zero=03138_E_„¥«¥­¨¥ ­  ­®«ì
  786. % There is a divsion by zero encounted
  787. parser_e_invalid_float_operation=03139_E_H¥¯p ¢¨«ì­ ï ®¯¥p æ¨ï á ¯« ¢ î饩 § ¯ï⮩
  788. % An operation on two real type values produced an overflow or a division
  789. % by zero.
  790. parser_e_array_lower_less_than_upper_bound=03140_E_‚¥på­ïï £p ­¨æ  ¤¨ ¯ §®­  ¬¥­ìè¥, 祬 ­¨¦­ïï £p ­¨æ 
  791. % The upper bound of a \var{case} label is less than the lower bound and this
  792. % is not possible
  793. parser_w_string_too_long=03141_W_‘âப  "$1" ¡®«ìè¥ ç¥¬ $2
  794. % The size of the constant string is larger than the size you specified in
  795. % string type definition
  796. parser_e_string_larger_array=03142_E_‘âப®¢ ï ¤«¨­  ¡®«ìè¥, 祬 ¤«¨­  ¬ áᨢ  ᨬ¢®«®¢
  797. % The size of the constant string is larger than the size you specified in
  798. % the array[x..y] of char definition
  799. parser_e_ill_msg_expr=03143_E_H¥¢¥p­®¥ ¢ëp ¦¥­¨¥ ¯®á«¥ ¤¨p¥ªâ¨¢ë á®®¡é¥­¨ï
  800. % \fpc supports only integer or string values as message constants
  801. parser_e_ill_msg_param=03144_E_Ž¡p ¡®â稪¨ á®®¡é¥­¨© ¬®£yâ ¡p âì ⮫쪮 ®¤¨­ § ¯p®á ¢ áá뫮筮¬ ¯ p ¬¥âp¥
  802. % A method declared with the \var{message}-directive as message handler
  803. % can take only one parameter which must be declared as call by reference
  804. % Parameters are declared as call by reference using the \var{var}-directive
  805. parser_e_duplicate_message_label=03145_E_�®¢â®p­®¥ ®¯p¥¤¥«¥­¨¥ ¬¥âª¨ á®®¡é¥­¨ï: $1
  806. % A label for a message is used twice in one object/class
  807. parser_e_self_in_non_message_handler=03146_E_SELF ¬®¦¥â ¡ëâì ⮫쪮 ª ª ï¢­ë© ¯ à ¬¥âà ¢ ®¡à ¡®â稪 å á®®¡é¥­¨ï
  808. % The self parameter can be passed only explicitly in a method which
  809. % is declared as message method handler.
  810. parser_e_threadvars_only_sg=03147_E_�¥p¥¬¥­­ë¥ âp¥©¤®¢ ¬®£yâ ¡ëâì ⮫쪮 áâ â¨ç¥áª¨¬¨ ¨«¨ £«®¡ «ì­ë¬¨
  811. % Threadvars must be static or global, you can't declare a thread
  812. % local to a procedure. Local variables are always local to a thread,
  813. % because every thread has it's own stack and local variables
  814. % are stored on the stack
  815. parser_f_direct_assembler_not_allowed=03148_F_�àאַ© áâ¨«ì  áᥬ¡«¥p  ­¥ ¯®¤¤¥p¦¨¢ ¥âáï ä®p¬ â®¬ ¢ë室­®£® ä ©« 
  816. % You can't use direct assembler when using a binary writer, choose an
  817. % other outputformat or use an other assembler reader
  818. parser_w_no_objpas_use_mode=03149_W_H¥ § £py¦ ©â¥ OBJPAS ¬®¤y«ì, ¨á¯®«ì§y©â¥ {$mode objfpc} ¨«¨ {$mode delphi} ¢¬¥áâ® í⮣®
  819. % You're trying to load the ObjPas unit manual from a uses clause. This is
  820. % not a good idea to do, you can better use the \var{\{\$mode objfpc\}} or
  821. % \var{\{\$mode delphi\}}
  822. % directives which load the unit automaticly
  823. parser_e_no_object_override=03150_E_�¥p¥®¯p¥¤¥«¥­¨¥ ­¥ ¬®¦¥â ¡ëâì ¨á¯®«ì§®¢ ­­® ¢ ®¡ê¥ªâ å
  824. % Override isn't support for objects, use VIRTUAL instead to override
  825. % a method of an anchestor object
  826. parser_e_cant_use_inittable_here=03151_E_’¨¯ ¤ ­­ëå, ª®â®pë© âp¥¡y¥â INITILIZATION/FINALIZATION ­¥ ¬®¦¥â ¨á¯®«ì§®¢ âìáï ¢ p §«¨ç­ëå § ¯¨áïå
  827. % Some data type (e.g. \var{ansistring}) needs initialization/finalization
  828. % code which is implicitly generated by the compiler. Such data types
  829. % can't be used in the variant part of a record.
  830. parser_e_resourcestring_only_sg=03152_E_‘âப®¢ë¥ à¥áãàáë ¬®£ãâì ¡ëâì ⮫쪮 áâ â¨ç¥áª¨¬¨ ¨«¨ £«®¡ «ì­ë¬¨
  831. % Resourcestring can not be declared local, only global or using the static
  832. % directive.
  833. parser_e_exit_with_argument_not__possible=03153_E_�à®æ¥¤ãà  Exit á  à£ã¬¥­â®¬ §¤¥áì ­¥¤®¯ãá⨬ 
  834. % an exit statement with an argument for the return value can't be used here, this
  835. % can happen e.g. in \var{try..except} or \var{try..finally} blocks
  836. parser_e_stored_property_must_be_boolean=03154_E_’¨¯ á®å࠭塞®£® ᨬ¢®«  ¤®«¦¥­ ¡ëâì boolean
  837. % If you specify a storage symbol in a property declaration, it must be of
  838. % the type boolean
  839. parser_e_ill_property_storage_sym=03155_E_�â®â ⨯ ᨬ¢®«  ­¥ ¬®¦¥â ¡ëâì á®åp ­¥­ ¢ í⮬ ᢮©á⢥
  840. % You can't use this type of symbol as storage specifier in property
  841. % declaration. You can use only methods with the result type boolean,
  842. % boolean class fields or boolean constants
  843. parser_e_only_publishable_classes_can__be_published=03156_E_’®«ìª® ª« áá, ª®â®pë© ª®¬¯¨«¨py¥âáï ¢ $M+ p¥¦¨¬¥ ¬®¦¥â ¡ëâì published
  844. % In the published section of a class can be only class as fields used which
  845. % are compiled in $M+ or which are derived from such a class. Normally
  846. % such a class should be derived from TPersitent
  847. parser_e_proc_directive_expected=03157_E_ަ¨¤ ¥âáï ¯p®æ¥¤yp­ ï ¤¨p¥ªâ¨¢ 
  848. % When declaring a procedure in a const block you used a ; after the
  849. % procedure declaration after which a procedure directive must follow.
  850. % Correct declarations are:
  851. % \begin{verbatim}
  852. % const
  853. % p : procedure;stdcall=nil;
  854. % p : procedure stdcall=nil;
  855. % \end{verbatim}
  856. parser_e_invalid_property_index_value=03158_E_‡­ ç¥­¨¥ ᢮©á⢠ ¨­¤¥ªá  ¤®«¦­® ¡ëâì ®¡ëç­®£® ⨯ 
  857. % The value you use to index a property must be of an ordinal type, for
  858. % example an integer or enumerated type.
  859. parser_e_procname_to_short_for_export=03159_E_ˆ¬ï ¯p®æ¥¤ypë ᫨誮¬ ª®p®âª®¥ ¤«ï íªá¯®pâ 
  860. % The length of the procedure/function name must be at least 2 characters
  861. % long. This is because of a bug in dlltool which doesn't parse the .def
  862. % file correct with a name of length 1.
  863. parser_e_dlltool_unit_var_problem=03160_E_Žâáãâáâ¢ãîé ï DEFFILE § ¯¨áì ¬®¦¥â ¡ëâì á®§¤ ­  ¤«ï £«®¡ «ì­ëå ¯¥à¥¬¥­­ëå ¬®¤ã«ï
  864. parser_e_dlltool_unit_var_problem2=03161_E_Š®¬¯¨«¨à®¢ ­¨¥ ¡¥§ -WD ®¯æ¨¨
  865. parser_f_need_objfpc_or_delphi_mode=03162_F_‚ ¬ ­¥®¡å®¤¨¬ ObjFpc (-S2) ¨«¨ Delphi (-Sd) p¥¦¨¬ ᮢ¬¥á⨬®á⨠¤«ï ª®¬¯¨«ï樨 í⮣® ¬®¤y«ï
  866. % You need to use {$mode objfpc} or {$mode delphi} to compile this file.
  867. % Or use the equivalent commandline switches -S2 or -Sd.
  868. parser_e_no_export_with_index_for_target=03163_E_H¥ ¬®£y íªá¯®pâ¨p®¢ âì á í⨬ ¨­¤¥ªá®¬ ¯®¤ $1
  869. % Exporting of functions or procedures with a specified index is not
  870. % support on all targets. The only platforms currently supporting
  871. % export with index are OS/2 and Win32.
  872. parser_e_no_export_of_variables_for_target=03164_E_�ªá¯®pâ¨p®¢ ­¨¥ ¯¥p¥¬¥­­ëå ­¥ ¯®¤¤¥p¦¨¢ ¥âáï ¯®¤ $1
  873. % Exporting of variables is not support on all targets. The only platform
  874. % currently supporting export of variables is Win32.
  875. % \end{description}
  876. #
  877. # �p®¢¥pª  ⨯®¢
  878. #
  879. % \section{Type checking errors}
  880. % This section lists all errors that can occur when type checking is
  881. % performed.
  882. % \begin{description}
  883. type_e_mismatch=04000_E_H¥¯p ¢¨«ì­ë© ⨯
  884. % This can happen in many cases:
  885. % \begin{itemize}
  886. % \item The variable you're assigning to is of a different type than the
  887. % expression in the assignment.
  888. % \item You are calling a function or procedure with parameters that are
  889. % incompatible with the parameters in the function or procedure definition.
  890. % \end{itemize}
  891. type_e_incompatible_types=04001_E_H¥á®¢¬¥á⨬®áâì ⨯®¢: ¯®«y稫¨ $1,   ®¦¨¤ «¨ $2
  892. % There is no conversion possible between the two types
  893. % Another possiblity is that they are declared in different
  894. % declarations:
  895. % \begin{verbatim}
  896. % Var
  897. % A1 : Array[1..10] Of Integer;
  898. % A2 : Array[1..10] Of Integer;
  899. %
  900. % Begin
  901. % A1:=A2; { This statement gives also this error, it
  902. % is due the strict type checking of pascal }
  903. % End.
  904. % \end{verbatim}
  905. type_e_not_equal_types=04002_E_H¥á®®â¢¥âá⢨¥ ⨯®¢ ¬¥¦¤y $1 ¨ $2
  906. % The types are not equal
  907. type_e_type_id_expected=04003_E_ަ¨¤ ¥âáï ¢ëà ¦¥­¨¥ ⨯  TYPE
  908. % The identifier is not a type, or you forgot to supply a type identifier.
  909. type_e_variable_id_expected=04004_E_ަ¨¤ ¥âáï ¢ëà ¦¥­¨¥ ⨯  VAR
  910. % This happens when you pass a constant to a \var{Inc} var or \var{Dec}
  911. % procedure. You can only pass variables as arguments to these functions.
  912. type_e_integer_expr_expected=04005_E_ަ¨¤ ¥âáï ¢ëp ¦¥­¨¥ ⨯  INTEGER
  913. % The compiler expects an expression of type integer, but gets a different
  914. % type.
  915. type_e_boolean_expr_expected=04006_E_ަ¨¤ ¥âáï ¢ëà ¦¥­¨¥ ⨯  BOOLEAN, ­® ¯®«ã稫¨ "$1"
  916. % The expression must be a boolean type, it should be return true or
  917. % false.
  918. type_e_ordinal_expr_expected=04007_E_ަ¨¤ ¥âáï ¢ëp ¦¥­¨¥ â ª®£®-¦¥ ⨯ 
  919. % The expression must be of ordinal type, i.e., maximum a \var{Longint}.
  920. % This happens, for instance, when you specify a second argument
  921. % to \var{Inc} or \var{Dec} that doesn't evaluate to an ordinal value.
  922. type_e_pointer_type_expected=04008_E_ަ¨¤ ¥âáï ⨯ POINTER, ­® ¯®«ã稫¨ "$1"
  923. % The variable or expression isn't of the type \var{pointer}. This
  924. % happens when you pass a variable that isn't a pointer to \var{New}
  925. % or \var{Dispose}.
  926. type_e_class_type_expected=04009_E_ަ¨¤ ¥âáï ⨯ CLASS, ­® ¯®«ã稫¨ "$1"
  927. % The variable of expression isn't of the type \var{class}. This happens
  928. % typically when
  929. % \begin{enumerate}
  930. % \item The parent class in a class declaration isn't a class.
  931. % \item An exception handler (\var{On}) contains a type identifier that
  932. % isn't a class.
  933. % \end{enumerate}
  934. type_e_varid_or_typeid_expected=04010_E_ަ¨¤ ¥âáï ¯¥p¥¬¥­­ ï ¨«¨ ¨¤¥­â¨ä¨ª â®p
  935. % The argument to the \var{High} or \var{Low} function is not a variable
  936. % nor a type identifier.
  937. type_e_cant_eval_constant_expr=04011_E_H¥¢®§¬®¦­® p áç¨â âì §­ ç¥­¨¥ ª®­áâ ­âë
  938. % No longer in use.
  939. type_e_set_element_are_not_comp=04012_E_“áâ ­®¢ª  í«¥¬¥­â®¢ ¬ áᨢ  ­¥¢®§¬®¦­ 
  940. % You are trying to make an operation on two sets, when the set element types
  941. % are not the same. The base type of a set must be the same when taking the
  942. % union
  943. type_e_set_operation_unknown=04013_E_ޝ¥p æ¨ï ­¥ p¥ «¨§®¢ ­  ¤«ï ­ ¡®p®¢ §­ ç¥­¨©
  944. % several binary operations are not defined for sets
  945. % like div mod ** (also >= <= for now)
  946. type_w_convert_real_2_comp=04014_W_€¢â®¬ â¨ç¥áª®¥ ¯p¥®¡p §®¢ ­¨¥ ⨯®¢ ¨§ REAL ¢ COMP, ª®â®pë© ï¢«ï¥âáï ç¨á«®¬ ⨯  INTEGER
  947. % An implicit type conversion from a real type to a \var{comp} is
  948. % encountered. Since \var{Comp} is a 64 bit integer type, this may indicate
  949. % an error.
  950. type_h_use_div_for_int=04015_H_ˆá¯®«ì§y©â¥ DIV ¢¬¥áâ® í⮣®, ¤«ï ¯®«y祭¨ï 楫®ç¨á«¥­­®£® p¥§y«ìâ â 
  951. % When hints are on, then an integer division with the '/' operator will
  952. % procuce this message, because the result will then be of type real
  953. type_e_strict_var_string_violation=04016_E_‘âp®ª®¢ë¥ ⨯ë p §­ë¥ ¨§-§  $V+ p¥¦¨¬ 
  954. % When compiling in \var{\{\$V+\}} mode, the string you pass as a parameter
  955. % should be of the exact same type as the declared parameter of the procedure.
  956. type_e_succ_and_pred_enums_with_assign_not_possible=04017_E_SUCC ¨«¨ PRED ­  ¯¥p¥ç¨á«¥­¨ïå á ­ §­ ç¥­¨ï¬¨ ­¥¢®§¬®¦­ë
  957. % When you declared an enumeration type which has assignments in it, as in C,
  958. % like in the following:
  959. % \begin{verbatim}
  960. % Tenum = (a,b,e:=5);
  961. % \end{verbatim}
  962. % you cannot use the \var{Succ} or \var{Pred} functions on them.
  963. type_e_cant_read_write_type=04018_E_H¥¢®§¬®¦­® ¯p®ç¥áâì ¨«¨ § ¯¨á âì ¯¥p¥¬¥­­yî í⮣® ⨯ 
  964. % You are trying to \var{read} or \var{write} a variable from or to a
  965. % file of type text, which doesn't support that. Only integer types,
  966. % booleans, reals, pchars and strings can be read from/written to a text file.
  967. type_e_no_readln_writeln_for_typed_file=04019_E_�¥¢®§¬®¦­® ¨á¯®«ì§®¢ âì Readln ¨«¨ Writeln ­  ⨯¨§¨à®¢ ­­®¬ ä ©«¥
  968. % \var{readln} and \var{writeln} are only allowed for text files.
  969. type_e_no_read_write_for_untyped_file=04020_E_�¥¢®§¬®¦­® ¨á¯®«ì§®¢ âì Read ¨«¨ Write ­  ­¥â¨¯¨§¨à®¢ ­­®¬ ä ©«¥
  970. % \var{read} and \var{write} are only allowed for text or typed files.
  971. type_e_typeconflict_in_set=04021_E_Žè¨¡ª  ⨯®¢ ¬¥¦¤y í«¥¬¥­â ¬¨ ­ ¡®p 
  972. % There is at least one set element which is of the wrong type, i.e. not of
  973. % the set type.
  974. type_w_maybe_wrong_hi_lo=04022_W_LO/HI (LONGINT/DWORD) ¢®§¢p é îâ áâ p襥/¬« ¤è¥¥ á«®¢®
  975. % \fpc supports an overloaded version of \var{lo/hi} for \var{longint/dword/int64/qword}
  976. % which returns the lower/upper word/dword of the argument. TP always uses
  977. % a 16 bit \var{lo/hi} which returns always bits 0..7 for \var{lo} and the
  978. % bits 8..15 for \var{hi}. If you want the TP behavior you have
  979. % to type cast the argument to \var{word/integer}
  980. type_e_integer_or_real_expr_expected=04023_E_ަ¨¤ ¥âáï ¢ëp ¦¥­¨¥ ⨯  INTEGER ¨«¨ REAL
  981. % The first argument to \var{str} must a real or integer type.
  982. type_e_wrong_type_in_array_constructor=04024_E_H¥¢¥p­ë© ⨯ ¢ ¬ áᨢ¥ ª®­áâpyªâ®p 
  983. % You are trying to use a type in an array constructor which is not
  984. % allowed.
  985. type_e_wrong_parameter_type=04025_E_H¥á®¢¬¥á⨬®áâì ⨯®¢ ¢  p£y¬¥­â å
  986. % You are trying to pass an invalid type for the specified parameter.
  987. type_e_no_method_and_procedure_not_compatible=04026_E_Œ¥â®¤ (¯¥p¥¬¥­­ ï) ¨ �p®æ¥¤yp  (¯¥p¥¬¥­­ ï) ­¥ ᮢ¬¥á⨬ë
  988. % You can't assign a method to a procedure variable or a procedure to a
  989. % method pointer.
  990. type_e_wrong_math_argument=04027_E_‡ ¯p¥é¥­­ ï ª®­áâ ­â , ¡ë«  ¯¥p¥¤ ­  ª ¢­yâp¥­­¥© ¬ â¥¬ â¨ç¥áª®© äy­ªæ¨¨
  991. % The constant argument passed to a ln or sqrt function is out of
  992. % the definition range of these functions.
  993. type_e_no_addr_of_constant=04028_E_H¥ ¬®£y ¯®«yç¨âì  ¤p¥á ª®­áâ ­âë
  994. % It's not possible to get the address of a constant, because they
  995. % aren't stored in memory, you can try making it a typed constant.
  996. type_e_argument_cant_be_assigned=04029_E_€à£ã¬¥­â ­¥ ¬®¦¥â ¡ëâì á¢ï§ ­ á
  997. % Only expressions which can be on the left side of an
  998. % assignment can be passed as call by reference argument
  999. % Remark: Properties can be only
  1000. % used on the left side of an assignment, but they can't be used as arguments
  1001. type_e_cannot_local_proc_to_procvar=04030_E_�¥¬®£ã á¢ï§ âì «®ª «ì­ãî ¯à®æ¥¤ãàã/äã­ªæ¨î á ¯à®æ¥¤ãà­®© ¯¥à¥¬¥­­®©
  1002. % It's not allowed to assign a local procedure/function to a
  1003. % procedure variable, because the calling of local procedure/function is
  1004. % different. You can only assign local procedure/function to a void pointer.
  1005. type_e_no_assign_to_addr=04031_E_H¥ ¬®£y ¯®¤¢ï§ âì §­ ç¥­¨¥ ª  ¤p¥áy
  1006. % It's not allowed to assign a value to an address of a variable,constant,
  1007. % procedure or function. You can try compiling with -So if the identifier
  1008. % is a procedure variable.
  1009. type_e_no_assign_to_const=04032_E_H¥ ¬®£y ¯®¤¢ï§ âì §­ ç¥­¨¥ ª ª®­áâ ­â¥
  1010. % It's not allowed to assign a value to a variable which is declared
  1011. % as a const. This is normally a parameter declared as const, to allow
  1012. % changing make the parameter value or var.
  1013. type_e_array_required=04033_E_’p¥¡y¥âáï ⨯ array
  1014. % If you are accessing a variable using an index '[<x>]' then
  1015. % the type must be an array. In FPC mode also a pointer is allowed.
  1016. % \end{description}
  1017. #
  1018. # Symtable
  1019. #
  1020. % \section{Symbol handling}
  1021. % This section lists all the messages that concern the handling of symbols.
  1022. % This means all things that have to do with procedure and variable names.
  1023. % \begin{description}
  1024. sym_e_id_not_found=05000_E_ˆ¤¥­â¨ä¨ª â®p ­¥ ­ ©¤¥­ $1
  1025. % The compiler doesn't know this symbol. Usually happens when you misspel
  1026. % the name of a variable or procedure, or when you forgot to declare a
  1027. % variable.
  1028. sym_f_internal_error_in_symtablestack=05001_F_‚­yâp¥­­ïï ®è¨¡ª  ¢ SymTableStack()
  1029. % An internal error occurred in the compiler; If you encounter such an error,
  1030. % please contact the developers and try to provide an exact description of
  1031. % the circumstances in which the error occurs.
  1032. sym_e_duplicate_id=05002_E_„¢®©­®© ¨¤¥­â¨ä¨ª â®p $1
  1033. % The identifier was already declared in the current scope.
  1034. sym_h_duplicate_id_where=05003_H_ˆ¤¥­â¨ä¨ª â®p y¦¥ ®¯p¥¤¥«¥­ ¢ $1 (áâp®ª  $2)
  1035. % The identifier was already declared in a previous scope.
  1036. sym_e_unknown_id=05004_E_H¥¨§¢¥áâ­ë© ¨¤¥­â¨ä¨ª â®p $1
  1037. % The identifier encountered hasn't been declared, or is used outside the
  1038. % scope where it's defined.
  1039. sym_e_forward_not_resolved=05005_E_FORWARD ­¥ ­ ©¤¥­ $1
  1040. % This can happen in two cases:
  1041. % \begin{itemize}
  1042. % \item This happens when you declare a function (in the \var{interface} part, or
  1043. % with a \var{forward} directive, but do not implement it.
  1044. % \item You reference a type which isn't declared in the current \var{type}
  1045. % block.
  1046. % \end{itemize}
  1047. sym_f_id_already_typed=05006_F_ˆ¤¥­â¨ä¨ª â®p y¦¥ ®¯p¥¤¥«¥­ ª ª ⨯
  1048. % You are trying to redefine a type.
  1049. sym_e_error_in_type_def=05007_E_Žè¨¡ª  ¢ ®¯p¥¤¥«¥­¨¨ ⨯ 
  1050. % There is an error in your definition of a new array type:
  1051. % \item One of the range delimiters in an array declaration is erroneous.
  1052. % For example, \var{Array [1..1.25]} will trigger this error.
  1053. sym_e_type_id_not_defined=05008_E_’¨¯ ¨¤¥­â¨ä¨ª â®p  ­¥ ®¯p¥¤¥«¥­
  1054. % The type identifier has not been defined yet.
  1055. sym_e_forward_type_not_resolved=05009_E_FORWARD ⨯ ­¥ ­ ©¤¥­ $1
  1056. % A symbol was forward defined, but no declaration was encountered.
  1057. sym_e_only_static_in_static=05010_E_’®«ìª® áâ â¨ç¥áª¨¥ ¯¥à¥¬¥­­ë¥ ¬®£ã⠨ᯮ«ì§®¢ âìáï ¢ áâ â¨ç¥áª¨å ¨«¨ ¢­¥è­¨å ¬¥â®¤ å
  1058. % A static method of an object can only access static variables.
  1059. sym_e_invalid_call_tvarsymmangledname=05011_E_H¥¢¥p­ë© ¢ë§®¢ tvarsym.mangledname()
  1060. % An internal error occurred in the compiler; If you encounter such an error,
  1061. % please contact the developers and try to provide an exact description of
  1062. % the circumstances in which the error occurs.
  1063. sym_f_type_must_be_rec_or_class=05012_F_ަ¨¤ ¥âáï ⨯ RECORD ¨«¨ CLASS
  1064. % The variable or expression isn't of the type \var{record} or \var{class}.
  1065. sym_e_no_instance_of_abstract_object=05013_E_Ž¡p §æë ª« áᮢ ¨«¨ ®¡ê¥ªâ®¢ á  ¡áâp ªâ­ë¬ ¬¥â®¤®¬ ­¥ ¯®¤¤¥p¦¨¢ îâáï
  1066. % You are trying to generate an instance of a class which has an abstract
  1067. % method that wasn't overridden.
  1068. sym_w_label_not_defined=05014_W_Œ¥âª  ­¥ ®¯p¥¤¥«¥­  $1
  1069. % A label was declared, but not defined.
  1070. sym_e_label_used_and_not_defined=05015_E_Œ¥âª  $1 ¨á¯®«ì§ã¥âáï, ­® ­¥®¯à¥¤¥«¥­ 
  1071. % A label was declared and used, but not defined.
  1072. sym_e_ill_label_decl=05016_E_H¥¢¥p­®¥ ®¯à¥¤¥«¥­¨¥ ¬¥âª¨
  1073. % This error should never happen; it occurs if a label is defined outside a
  1074. % procedure or function.
  1075. sym_e_goto_and_label_not_supported=05017_E_GOTO ¨ LABEL ­¥ ¯®¤¤¥p¦¨¢ îâáï (¨á¯®«ì§y©â¥ ª«îç -Sg)
  1076. % You must compile a program which has \var{label}s and \var{goto} statements
  1077. % with the \var{-Sg} switch. By default, \var{label} and \var{goto} aren't
  1078. % supported.
  1079. sym_e_label_not_found=05018_E_Œ¥âª  ­¥ ­ ©¤¥­ 
  1080. % A \var{goto label} was encountered, but the label isn't declared.
  1081. sym_e_id_is_no_label_id=05019_E_�â®â ¨¤¥­â¨ä¨ª â®p ­¥ ¬¥âª 
  1082. % The identifier specified after the \var{goto} isn't of type label.
  1083. sym_e_label_already_defined=05020_E_�®¢â®p­®¥ ®¯p¥¤¥«¥­¨¥ ¬¥âª¨
  1084. % You are defining a label twice. You can define a label only once.
  1085. sym_e_ill_type_decl_set=05021_E_�¥¢¥p­®¥ ®¡ê¥­¨¥ ⨯  í«¥¬¥­â®¢ ­ ¡®à 
  1086. % The declaration of a set contains an invalid type definition.
  1087. sym_e_class_forward_not_resolved=05022_E_FORWARD ®¯p¥¤¥«¥­¨¥ ª« áá  ­¥ ®¡­ py¦¥­® $1
  1088. % You declared a class, but you didn't implement it.
  1089. sym_n_unit_not_used=05023_H_Œ®¤ã«ì $1 ­¥ ¨á¯®«ì§ã¥âáï ¢ $2
  1090. % The unit referenced in the \var{uses} clause is not used.
  1091. sym_h_para_identifier_not_used=05024_H_� p ¬¥âp ­¥ ¨á¯®«ì§y¥âáï $1
  1092. % This is a warning. The identifier was declared (locally or globally) but
  1093. % wasn't used (locally or globally).
  1094. sym_n_local_identifier_not_used=05025_N_‹®ª «ì­ ï ¯¥p¥¬¥­­ ï ­¥ ¨á¯®«ì§y¥âáï $1
  1095. % You have declared, but not used a variable in a procedure or function
  1096. % implementation.
  1097. sym_h_para_identifier_only_set=05026_H_‡­ ç¥­¨¥ ¯ à ¬¥âà  $1 á¢ï§ ­  á 祬-â®, ­® ­¥ ¨á¯®«ì§ã¥âáï
  1098. % This is a warning. The identifier was declared (locally or globally)
  1099. % set but not used (locally or globally).
  1100. sym_n_local_identifier_only_set=05027_N_‹®ª «ì­ ï ¯¥à¥¬¥­­ ï $1 á¢ï§ ­  á 祬-â®, ­® ­¥ ¨á¯®«ì§ã¥âáï
  1101. % The variable in a procedure or function
  1102. % implementation is declared, set but never used.
  1103. sym_h_local_symbol_not_used=05028_H_‹®ª «ì­ë© ᨬ¢®« $1 $2 ­¥¨á¯®«ì§ã¥âáï
  1104. % A local symbol is never used.
  1105. sym_n_private_identifier_not_used=05029_N_Private ¯®«¥ $1.$2 ­¥¨á¯®«ì§ã¥âáï
  1106. sym_n_private_identifier_only_set=05030_N_Private ¯®«¥ $1.$2 á¢ï§ ­  á 祬-â®, ­® ­¥ ¨á¯®«ì§ã¥âáï
  1107. sym_n_private_method_not_used=05031_N_Private ¬¥â®¤ $1.$2 ­¥¨á¯®«ì§ã¥âáï
  1108. sym_e_set_expected=05032_E_ަ¨¤ ¥âáï yáâ ­®¢ª  ⨯ 
  1109. % The variable or expression isn't of type \var{set}. This happens in an
  1110. % \var{in} statement.
  1111. sym_w_function_result_not_set=05033_W_�¥§y«ìâ â äy­ªæ¨¨ ª ¦¥âáï ­¥ yáâ ­®¢«¥­
  1112. % You can get this warning if the compiler thinks that a function return
  1113. % value is not set. This will not be displayed for assembler procedures,
  1114. % or procedures that contain assembler blocks.
  1115. sym_w_wrong_C_pack=05034_W_’¨¯ $1 ­¥ª®à४⭮ ¢ë஢­¥­ ¢ ⥪ã饩 § ¯¨á¨ C ï§ëª 
  1116. % Arrays with sizes not multiples of 4 will be wrongly aligned
  1117. % for C structures.
  1118. sym_e_illegal_field=05035_E_H¥¨§¢¥áâ­®¥ ¯®«¥ ¢ § ¯¨á¨ $1
  1119. % The field doesn't exist in the record definition.
  1120. sym_n_uninitialized_local_variable=05036_W_‹®ª «ì­ ï ¯¥p¥¬¥­­ ï $1 ª ¦¥âáï ­¥ ¨­¨æ¨ «¨§¨p®¢ ­ 
  1121. sym_n_uninitialized_variable=05037_W_�¥p¥¬¥­­ ï $1 ª ¦¥âáï ­¥ ¨­¨æ¨ «¨§¨p®¢ ­ 
  1122. % These messages are displayed if the compiler thinks that a variable will
  1123. % be used (i.e. appears in the right-hand-side of an expression) when it
  1124. % wasn't initialized first (i.e. appeared in the left-hand side of an
  1125. % assigment)
  1126. sym_e_id_no_member=05038_E_ˆ¤¥­â¨ä¨ª â®p ­¥ yª §ë¢ ¥â ­¨ ­  ª ª®© í«¥¬¥­â $1
  1127. % When using the extended syntax of \var{new}, you must specify the constructor
  1128. % method of the class you are trying to create. The procedure you specified
  1129. % does not exist.
  1130. sym_b_param_list=05039_B_H ©¤¥­® ®¯p¥¤¥«¥­¨¥: $1
  1131. % You get this when you use the \var{-vb} switch. In case an overloaded
  1132. % procedure is not found, then all candidate overloaded procedures are
  1133. % listed, with their parameter lists.
  1134. sym_e_segment_too_large=05040_E_‘¥£¬¥­â ¤ ­­ëå ᫨誮¬ ¡®«ì让 (¬ ªá. 2GB)
  1135. % You get this when you declare an array whose size exceeds the 2GB limit.
  1136. % \end{description}
  1137. #
  1138. # Codegenerator
  1139. #
  1140. % \section{Code generator messages}
  1141. % This section lists all messages that can be displayed if the code
  1142. % generator encounters an error condition.
  1143. % \begin{description}
  1144. cg_e_break_not_allowed=06000_E_BREAK ­¥ p §p¥è¥­®
  1145. % You're trying to use \var{break} outside a loop construction.
  1146. cg_e_continue_not_allowed=06001_E_CONTINUE ­¥ p §p¥è¥­®
  1147. % You're trying to use \var{continue} outside a loop construction.
  1148. cg_e_too_complex_expr=06002_E_‚ëp ¦¥­¨¥ ᫨誮¬ á«®¦­®¥ - ¯¥p¥¯®«­¥­¨¥ á⥪  FPU
  1149. % Your expression is too long for the compiler. You should try dividing the
  1150. % construct over multiple assignments.
  1151. cg_e_illegal_expression=06003_E_H¥¯p ¢¨«ì­®¥ ¢ëp ¦¥­¨¥
  1152. % This can occur under many circumstances. Mostly when trying to evaluate
  1153. % constant expressions.
  1154. cg_e_invalid_integer=06004_E_H¥¯p ¢¨«ì­®¥ 楫®ç¨á«¥­­®¥ ¢ëp ¦¥­¨¥
  1155. % You made an expression which isn't an integer, and the compiler expects the
  1156. % result to be an integer.
  1157. cg_e_invalid_qualifier=06005_E_H¥¤¥©á⢨⥫ì­ë© ᯥæ¨ä¨ª â®p
  1158. % One of the following is happening :
  1159. % \begin{itemize}
  1160. % \item You're trying to access a field of a variable that is not a record.
  1161. % \item You're indexing a variable that is not an array.
  1162. % \item You're dereferencing a variable that is not a pointer.
  1163. % \end{itemize}
  1164. cg_e_upper_lower_than_lower=06006_E_‚¥på­¨© ¯p¥¤¥« ¤¨ ¯ §®­  ¬¥­ìè¥ ­¨¦­¥£® ¯p¥¤¥« .
  1165. % You are declaring a subrange, and the lower limit is higher than the high
  1166. % limit of the range.
  1167. cg_e_illegal_count_var=06007_E_H¥¢¥p­ ï ¯¥à¥¬¥­­ ï-áç¥â稪
  1168. % The type of a \var{for} loop variable must be an ordinal type.
  1169. % Loop variables cannot be reals or strings.
  1170. cg_e_cant_choose_overload_function=06008_E_�¥ ¬®£ã ®¯à¥¤¥«¨âì, ªâ® '¯¥à¥£à㦠«' äã­ªæ¨î, çâ®¡ë ¥¥ ¢ë§¢ âì
  1171. % You're calling overloaded functions with a parameter that doesn't correspond
  1172. % to any of the declared function parameter lists. e.g. when you have declared
  1173. % a function with parameters \var{word} and \var{longint}, and then you call
  1174. % it with a parameter which is of type \var{integer}.
  1175. cg_e_parasize_too_big=06009_E_� §¬¥p ᯨ᪠ ¯ p ¬¥âp®¢ ¯p¥¢ëᨫ ¤®¯yáâ¨¬ë© ¯p¥¤¥« ¢ 65535 ¡ ©â (64kb)
  1176. % The I386 processor limits the parameter list to 65535 bytes (the \var{RET}
  1177. % instruction causes this)
  1178. cg_e_illegal_type_conversion=06010_E_H¥¯p ¢¨«ì­®¥ ¯p¥®¡p §®¢ ­¨¥ ⨯®¢
  1179. % When doing a type-cast, you must take care that the sizes of the variable and
  1180. % the destination type are the same.
  1181. cg_d_pointer_to_longint_conv_not_portable=06011_D_Š®­¢¥pâ æ¨ï ¬¥¦¤y ORDINAL ¨ POINTER ­¥¢®§¬®¦­  ¨§-§  ®âáãâáâ¢¨ï ¯®¤¤¥à¦ª¨ ã ¯« âä®à¬ë
  1182. % If you typecast a pointer to a longint, this code will not compile
  1183. % on a machine using 64bit for pointer storage.
  1184. cg_e_file_must_call_by_reference=06012_E_” ©«®¢ë¥ â¨¯ë ¤®«¦­ë ¡ëâì ¯¥p¥¬¥­­ë¬¨
  1185. % You cannot specify files as value parameters, i.e. they must always be
  1186. % declared \var{var} parameters.
  1187. cg_e_cant_use_far_pointer_there=06013_E_ˆá¯®«ì§®¢ ­¨¥ FAR yª § â¥«ï §¤¥áì ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  1188. % Free Pascal doesn't support far pointers, so you cannot take the address of
  1189. % an expression which has a far reference as a result. The \var{mem} construct
  1190. % has a far reference as a result, so the following code will produce this
  1191. % error:
  1192. % \begin{verbatim}
  1193. % var p : pointer;
  1194. % ...
  1195. % p:=@mem[a000:000];
  1196. % \end{verbatim}
  1197. cg_e_var_must_be_reference=06014_E_H¥¯p ¢¨«ì­ë© ¢ë§®¢ ¯ p ¬¥âp  ¯® áá뫪¥
  1198. % You are trying to pass a constant or an expression to a procedure that
  1199. % requires a \var{var} parameter. Only variables can be passed as a \var{var}
  1200. % parameter.
  1201. cg_e_dont_call_exported_direct=06015_E_ˆá¯®«ì§®¢ ­¨¥ EXPORT ®¯p¥¤¥«ï¥â, çâ® íâ  äy­ªæ¨ï ­¥ ¬®¦¥â §¤¥áì ¢ë§ë¢ âìáï
  1202. % No longer in use.
  1203. cg_w_member_cd_call_from_method=06016_W_‚®§¬®¦­® ­¥¯p ¢¨«ì­ë© ¢ë§®¢ ª®­áâpyªâ®p  ¨«¨ ¤¥áâpyªâ®p  (­¥ ᮮ⢥âáâ¢y¥â ⥪y饬y ª®­â¥ªáây)
  1204. % No longer in use.
  1205. cg_n_inefficient_code=06017_N_H¥íä䥪⨢­ë© ª®¤
  1206. % You construction seems dubious to the compiler.
  1207. cg_w_unreachable_code=06018_W_H¥¤®á⨦¨¬ë© ª®¤
  1208. % You specified a loop which will never be executed. Example:
  1209. % \begin{verbatim}
  1210. % while false do
  1211. % begin
  1212. % {.. code ...}
  1213. % end;
  1214. % \end{verbatim}
  1215. cg_e_stackframe_with_esp=06019_E_‚ë§®¢ ¯p®æ¥¤ypë á STACKFRAME ESP/SP
  1216. % The compiler encountered a procedure or function call inside a
  1217. % procedure that uses a \var{ESP/SP} stackframe. Normally, when a call is
  1218. % done the procedure needs a \var{EBP} stackframe.
  1219. cg_e_cant_call_abstract_method=06020_E_€¡áâp ªâ­ë¥ ¬¥â®¤ë ­¥ ¬®£yâ ¢ë§ë¢ âìáï ­ ¯pï¬yî
  1220. % You cannot call an abstract method directy, instead you must call a
  1221. % overriding child method, because an abstract method isn't implemented.
  1222. cg_f_internal_error_in_getfloatreg=06021_F_‚­yâp¥­­ïï ®è¨¡ª  ¢ getfloatreg(), p á¯p¥¤¥«¥­¨¥ ¯p®¢ «¥­®!
  1223. % An internal error occurred in the compiler; If you encounter such an error,
  1224. % please contact the developers and try to provide an exact description of
  1225. % the circumstances in which the error occurs.
  1226. cg_f_unknown_float_type=06022_F_H¥¨§¢¥áâ­ë© ⨯ ¯« ¢ î饩 § ¯ï⮩
  1227. % The compiler cannot determine the kind of float that occurs in an expression.
  1228. cg_f_secondvecn_base_defined_twice=06023_F_SecondVecn() ¡ §  ®¯p¥¤¥«¥­  ¤¢ ¦¤ë
  1229. % An internal error occurred in the compiler; If you encounter such an error,
  1230. % please contact the developers and try to provide an exact description of
  1231. % the circumstances in which the error occurs.
  1232. cg_f_extended_cg68k_not_supported=06024_F_� áè¨p¥­¨ï cg68k ­¥ ¯®¤¤¥p¦¨¢ îâáï
  1233. % The \var{extended} type is not supported on the m68k platform.
  1234. cg_f_32bit_not_supported_in_68000=06025_F_�¥§§­ ª®¢ë¥ 32-¡¨â­ë¥ ç¨á«  ­¥ ¯®¤¤¥p¦¨¢ îâáï ¢ MC680x0 p¥¦¨¬¥
  1235. % The cardinal is not supported on the m68k platform.
  1236. cg_f_internal_error_in_secondinline=06026_F_‚­yâp¥­­ïï ®è¨¡ª  ¢ secondinline()
  1237. % An internal error occurred in the compiler; If you encounter such an error,
  1238. % please contact the developers and try to provide an exact description of
  1239. % the circumstances in which the error occurs.
  1240. cg_d_register_weight=06027_D_�¥£¨áâp $1 ¢¥á¨â $2 $3
  1241. % Debugging message. Shown when the compiler considers a variable for
  1242. % keeping in the registers.
  1243. cg_e_stacklimit_in_local_routine=06028_E_‹¨¬¨â á⥪  ¢ «®ª «ì­®© ¯®¤¯p®£p ¬¬¥ ¨áç¥p¯ ­
  1244. % Your code requires a too big stack. Some operating systems pose limits
  1245. % on the stack size. You should use less variables or try ro put large
  1246. % variables on the heap.
  1247. cg_d_stackframe_omited=06029_D_STACK FRAME ®¯y饭ë
  1248. % Some procedure/functions do not need a complete stack-frame, so it is omitted.
  1249. % This message will be displayed when the {-vd} switch is used.
  1250. cg_w_64bit_range_check_not_supported=06030_W_�஢¥àª  ¤¨ ¯ §®­  ¤«ï 64-¡¨â­ëå ç¨á¥« ­¥ ¯®¤¤¥à¦¨¢ ¥âáï ­  í⮩ ¯« âä®à¬¥
  1251. % 64 bit range check is not yet implemented for 32 bit processors.
  1252. cg_e_unable_inline_object_methods=06031_E_‚ ®¡ê¥ªâ å ¨«¨ ª« áá å ­¥«ì§ï ¨á¯®«ì§®¢ âì INLINE
  1253. % You cannot have inlined object methods.
  1254. cg_e_unable_inline_procvar=06032_E_‚ ¢ë§®¢ å PROCVAR ­¥«ì§ï ¨á¯®«ì§®¢ âì INLINE
  1255. % A procedure with a procedural variable call cannot be inlined.
  1256. cg_e_no_code_for_inline_stored=06033_E_H¥â ª®¤  ¢ INLINE
  1257. % The compiler couldn't store code for the inline procedure.
  1258. cg_e_no_call_to_interrupt=06034_E_�àאַ© ¢ë§®¢ ¯à®æ¥¤ãàë-¯à¥à뢠­¨ï $1 ­¥¢®§¬®¦¥­
  1259. % You can not call an interrupt procedure directly from FPC code
  1260. cg_e_can_access_element_zero=06035_E_Hy«¥¢®© í«¥¬¥­â ¤«¨­­®© áâp®ª¨ ­¥¤®áây¯¥­, ¨á¯®«ì§y©â¥ ¢¬¥áâ® í⮣® SETLENGTH ¨«¨ LENGTH
  1261. % You should use \var{setlength} to set the length of an ansi/wide/longstring
  1262. % and \var{length} to get the length of such kinf of string
  1263. cg_e_include_not_implemented=06036_E_‚ª«î祭¨ï ¨ ¨áª«î祭¨ï ­¥ ¯®¤¤¥p¦¨¢ îâáï ¢ CASE
  1264. % \var{include} and \var{exclude} are only partially
  1265. % implemented for \var{i386} processors
  1266. % and not at all for \var{m68k} processors.
  1267. cg_e_cannot_call_cons_dest_inside_with=06037_E_Š®­áâpyªâ®pë ¨«¨ ¤¥áâpyªâ®pë ­¥ ¬®£yâ ¢ë§ë¢ âìáï ¢­yâp¨ 'WITH' ¯p¥¤«®¦¥­¨©
  1268. % Inside a \var{With} clause you cannot call a constructor or destructor for the
  1269. % object you have in the \var{with} clause.
  1270. cg_e_cannot_call_message_direct=06038_E_H¥«ì§ï ¢ë§ë¢ âì ¬¥â®¤ ®¡p ¡®â稪  ᮡë⨩ ­¥¯®áp¥¤á⢥­­®
  1271. % A message method handler method can't be called directly if it contains an
  1272. % explicit self argument
  1273. cg_e_goto_inout_of_exception_block=06039_E_�¥à¥å®¤ §  ¢­¥è­îî áâ®à®­ã ¢ exception ¡«®ª¥
  1274. % It isn't allowed to jump in or outside of an exception block like \var{try..finally..end;}:
  1275. % \begin{verbatim}
  1276. % label 1;
  1277. %
  1278. % ...
  1279. %
  1280. % try
  1281. % if not(final) then
  1282. % goto 1; // this line will cause an error
  1283. % finally
  1284. % ...
  1285. % end;
  1286. % 1:
  1287. % ...
  1288. % \end{verbatim}
  1289. % \end{description}
  1290. cg_e_control_flow_outside_finally=06040_E_Š®­â஫¨àãî騥 ¢ëà ¦¥­¨ï (break,continue ¨ exit) ¢ ¡«®ª¥ finally - ­¥¤®¯ãá⨬ë
  1291. % It isn't allowed to use the control flow statements \var{break},
  1292. % \var{continue} and \var{exit}
  1293. % inside a finally statement. The following example shows the problem:
  1294. % \begin{verbatim}
  1295. % ...
  1296. % try
  1297. % p;
  1298. % finally
  1299. % ...
  1300. % exit; // This exit ISN'T allowed
  1301. % end;
  1302. % ...
  1303. %
  1304. % \end{verbatim}
  1305. % If the procedure \var{p} raises an exception the finally block is
  1306. % executed. If the execution reaches the exit, it's unclear what to do:
  1307. % exiting the procedure or searching for another exception handler
  1308. # EndOfTeX
  1309. #
  1310. # Assembler reader
  1311. #
  1312. asmr_d_start_reading=07000_D_H ç¨­ ¥¬ ç¨â âì $1 áâ¨«ì  áᥬ¡«¥p 
  1313. % This informs you that an assembler block is being parsed
  1314. asmr_d_finish_reading=07001_D_Š®­¥æ ç⥭¨ï $1 áâ¨«ï  áᥬ¡«¥p 
  1315. % This informs you that an assembler block has finished.
  1316. asmr_e_none_label_contain_at=07002_E_—â®-â®, ­® ­¥ ¬¥âª , ᮤ¥p¦¨â @
  1317. % A identifier which isn't a label can't contain a @.
  1318. asmr_w_override_op_not_supported=07003_W_�¥p¥®¯p¥¤¥«¥­­ë¥ ®¯¥p â®pë ­¥ ¯®¤¤¥p¦¨¢ îâáï
  1319. % The Override operator is not supported
  1320. asmr_e_building_record_offset=07004_E_Žè¨¡ª  ¯®áâp®¥­¨ï ᬥ饭¨ï ¢ § ¯¨á¨
  1321. % There has an error occured while building the offset of a record/object
  1322. % structure, this can happend when there is no field specified at all or
  1323. % an unknown field identifier is used.
  1324. asmr_e_offset_without_identifier=07005_E_OFFSET ¨á¯®«ì§y¥âáï ¡¥§ ¨¤¥­â¨ä¨ª â®p 
  1325. % You can only use OFFSET with an identifier. Other syntaxes aren't
  1326. % supported
  1327. asmr_e_type_without_identifier=07006_E_TYPE ¨á¯®«ì§y¥âáï ¡¥§ ¨¤¥­â¨ä¨ª â®p 
  1328. % You can only use TYPE with an identifier. Other syntaxes aren't
  1329. % supported
  1330. asmr_e_no_local_or_para_allowed=07007_E_H¥ ¬®£y §¤¥áì ¨á¯®«ì§®¢ âì «®ª «ì­ë¥ ¯¥p¥¬¥­­ë¥ ¨«¨ ¯ p ¬¥âpë
  1331. % You can't use a local variable or parameter here, mostly because the
  1332. % addressing of locals and parameters is done using the %ebp register so the
  1333. % address can't be get directly.
  1334. asmr_e_need_offset=07008_E_‡¤¥áì ­¥®¡å®¤¨¬® ¨á¯®«ì§®¢ âì OFFSET
  1335. % You need to use OFFSET <id> here to get the address of the identifier.
  1336. asmr_e_need_dollar=07009_E_‡¤¥áì ­¥®¡å®¤¨¬® ¨á¯®«ì§®¢ âì §­ ª ¤®«« à  ('$')
  1337. % You need to use $<id> here to get the address of the identifier.
  1338. asmr_e_cant_have_multiple_relocatable_symbols=07010_E_H¥ ¬®£y ¨á¯®«ì§®¢ âì ¬­®¦¥á⢥­­ë¥ ¯¥p¥¬¥é ¥¬ë¥ ᨬ¢®«ë
  1339. % You can't have more than one relocatable symbol (variable/typed constant)
  1340. % in one argument.
  1341. asmr_e_only_add_relocatable_symbol=07011_E_�¥p¥¬¥é ¥¬ë© ᨬ¢®« ¬®¦¥â ¡ëâì ⮫쪮 ¤®¡ ¢«¥­
  1342. % Relocatable symbols (variable/typed constant) can't be used with other
  1343. % operators. Only addition is allowed.
  1344. asmr_e_invalid_constant_expression=07012_E_H¥¯p ¢¨«ì­®¥ ¢ëp ¦¥­¨¥ ¢ ª®­áâ ­â¥
  1345. % There is an error in the constant expression.
  1346. asmr_e_relocatable_symbol_not_allowed=07013_E_�¥p¥¬¥é ¥¬ë¥ ᨬ¢®«ë §¤¥áì ­¥ p §p¥è¥­ë
  1347. % You can't use a relocatable symbol (variable/typed constant) here.
  1348. asmr_e_invalid_reference_syntax=07014_E_H¥¢¥p­ë© ᨭ⠪á¨á áá뫪¨
  1349. % There is an error in the reference.
  1350. asmr_e_local_para_unreachable=07015_E_‚ë ­¥ ¬®¦¥â¥ ¤®áâ¨çì $1 ¨§ í⮣® ª®¤ 
  1351. % You can not read directly the value of local or para
  1352. % of a higher level in assembler code (except for
  1353. % local assembler code without parameter nor locals).
  1354. asmr_e_local_label_not_allowed_as_ref=07016_E_‹®ª «ì­ë¥ ᨬ¢®«ë ¨«¨ ¬¥âª¨ ­¥«ì§ï ¨á¯®«ì§®¢ âì ª ª áá뫪¨
  1355. % ‚ë ­¥ ¬®¦¥â¥ ¨á¯®«ì§®¢ âì «®ª «ì­ë¥ ᨬ¢®«ë ¨«¨ ¬¥âª¨ ª ª áá뫪¨
  1356. asmr_e_wrong_base_index=07017_E_H¥¢¥p­ ï ¡ §  ¨ ¨­¤¥ªá ¢ ¨á¯®«ì§®¢ ­¨¨ p¥£¨áâp 
  1357. % There is an error with the base and index register
  1358. asmr_w_possible_object_field_bug=07018_W_‚®§¬®¦­ ï ®è¨¡ª  ¢ ã¯à ¢«¥­¨¨ ¯®«ï ®¡ê¥ªâ 
  1359. % Fields of objects or classes can be reached directly in normal or objfpc
  1360. % modes but TP and Delphi modes treat the field name as a simple offset.
  1361. asmr_e_wrong_scale_factor=07019_E_H¥¢¥p­ë© ¬ èâ ¡ ä ªâ®p  (?ª®íä䍿¨¥­â ‹ ¬¥? :-&)
  1362. % The scale factor given is wrong, only 1,2,4 and 8 are allowed
  1363. asmr_e_multiple_index=07020_E_Œ­®¦¥á⢥­­®¥ ¨á¯®«ì§®¢ ­¨¥ ¨­¤¥ªá  p¥£¨áâp 
  1364. % You are trying to use more than one index register
  1365. asmr_e_invalid_operand_type=07021_E_H¥¢¥p­ë© ⨯ ®¯¥p ­¤ 
  1366. % The operand type doesn't match with the opcode used
  1367. asmr_e_invalid_string_as_opcode_operand=07022_E_H¥¢¥p­ ï áâp®ª , ª ª ®¯¥p ­¤ ª®¤  ®¯¥p æ¨¨: $1
  1368. % The string specified as operand is not correct with this opcode
  1369. asmr_w_CODE_and_DATA_not_supported=07023_W_@CODE ¨ @DATA ­¥ ¯®¤¤¥p¦¨¢ îâáï
  1370. % @CODE and @DATA are unsupported and are ignored.
  1371. asmr_e_null_label_ref_not_allowed=07024_E_�yáâë¥ áá뫪¨ ¬¥â®ª ­¥ p §p¥è¥­ë
  1372. asmr_e_expr_zero_divide=07025_E_„¥«¥­¨¥ ­  ­®«ì ¢ ¢ëà ¦¥­¨¨
  1373. asmr_e_expr_illegal=07026_E_�¥¢¥à­®¥ ¢ëà ¦¥­¨¥
  1374. asmr_e_escape_seq_ignored=07027_E_Esc-¯®á«¥¤®¢ â¥«ì­®áâì ¨£­®p¨py¥âáï: $1
  1375. asmr_e_invalid_symbol_ref=07028_E_H¥¢¥p­ ï áá뫪  ­  ᨬ¢®«
  1376. asmr_w_fwait_emu_prob=07029_W_FWAIT ¬®¦¥â ¢ë§¢ âì ¯p®¡«¥¬ë í¬y«ï樨 á EMU387
  1377. asmr_w_fadd_to_faddp=07030_W_FADD ¡¥§ ®¯¥à ­¤  â࠭᫨àã¥âáï ¢ FADDP
  1378. asmr_w_enter_not_supported_by_linux=07031_W_ENTER ¨­áâàãªæ¨ï ­¥ ¯®¤¤¥à¦¨¢ ¥âáï ¢ Linux kernel
  1379. % ENTER instruction can generate a stack page fault that is not
  1380. % caught correctly by the i386 Linux page handler.
  1381. asmr_w_calling_overload_func=07032_W_‚ë§®¢ ¯¥p¥£py¦¥­­®© äy­ªæ¨¨ ¢  áᥬ¡«¥p¥
  1382. asmr_e_unsupported_symbol_type=07033_E_H¥ ¯®¤¤¥p¦¨¢ ¥¬ë© ⨯ ᨬ¢®«  ¢ ®¯¥p ­¤¥
  1383. asmr_e_constant_out_of_bounds=07034_E_�®áâ®ï­­®¥ §­ ç¥­¨¥ ¢­¥ £p ­¨æ
  1384. asmr_e_error_converting_decimal=07035_E_Žè¨¡ª  ¯p¨ ¯p¥®¡p §®¢ ­¨¨ ¤¥áïâ¨ç­®£® ç¨á«  $1
  1385. asmr_e_error_converting_octal=07036_E_Žè¨¡ª  ¯p¨ ¯p¥®¡p §®¢ ­¨¨ ¢®á¬¥p¨ç­®£® ç¨á«  $1
  1386. asmr_e_error_converting_binary=07037_E_Žè¨¡ª  ¯p¨ ¯p¥®¡p §®¢ ­¨¨ ¤¢®¨ç­®£® ç¨á«  $1
  1387. asmr_e_error_converting_hexadecimal=07038_E_Žè¨¡ª  ¯p¨ ¯p¥®¡p §®¢ ­¨¨ è¥áâ­ ¤æ â¥p¨ç­®£® ç¨á«  $1
  1388. asmr_h_direct_global_to_mangled=07039_H_$1 ¯p¥®¡p §®¢ ­® ¢ $2
  1389. asmr_w_direct_global_is_overloaded_func=07040_W_$1 á¢ï§ ­ á ¯¥p¥£py¦¥­­®© äy­ªæ¨¥©
  1390. asmr_e_cannot_use_SELF_outside_a_method=07041_E_H¥ ¬®£y ¨á¯®«ì§®¢ âì SELF ¢­¥ ¬¥â®¤ 
  1391. asmr_e_cannot_use_OLDEBP_outside_nested_procedure=07042_E_H¥ ¬®£y ¨á¯®«ì§®¢ âì __OLDEBP ¢­¥ ¢«®¦¥­­®© ¯p®æ¥¤ypë
  1392. asmr_e_void_function=07043_W_”y­ªæ¨ï ª®â®p ï ®¯p¥¤¥«¥­  ª ª '­¥ ¢®§p é îé ï §­ ç¥­¨©' ­¥ ¬®¦¥â ¨å ¢®§¢p é âì
  1393. asmr_e_SEG_not_supported=07044_E_SEG ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  1394. asmr_e_size_suffix_and_dest_dont_match=07045_E_‘yä䨪á p §¬¥p  ¨  ¤p¥á â ¨«¨ ¨á室­ë© p §¬¥p ­¥ ᮮ⢥âáâ¢yîâ
  1395. asmr_w_size_suffix_and_dest_dont_match=07046_W_‘yä䨪á p §¬¥p  ¨  ¤p¥á â ¨«¨ ¨á室­ë© p §¬¥p ­¥ ᮮ⢥âáâ¢yîâ
  1396. asmr_e_syntax_error=07047_E_‘¨­â ªá¨ç¥áª ï ®è¨¡ª  ¯à¨  áᥬ¡«¨à®¢ ­¨¨
  1397. asmr_e_invalid_opcode_and_operand=07048_E_H¥¢¥p­ ï ª®¬¡¨­ æ¨ï ª®¤  ®¯¥p æ¨¨ ¨ ®¯¥p ­¤®¢
  1398. asmr_e_syn_operand=07049_E_‘¨­â ªá¨ç¥áª ï ®è¨¡ª  ¢ ®¯¥p ­¤¥ ¯à¨  áᥬ¡«¨à®¢ ­¨¨
  1399. asmr_e_syn_constant=07050_E_‘¨­â ªá¨ç¥áª ï ®è¨¡ª  ¢ ª®­á⠭⥠¯à¨  áᥬ¡«¨à®¢ ­¨¨
  1400. asmr_e_invalid_string_expression=07051_E_H¥¢¥p­®¥ áâp®ª®¢®¥ ¢ëp ¦¥­¨¥
  1401. asmr_w_const32bit_for_address=07052_-p §p來 ï ª®­áâ ­â  á®§¤ ­  ¤«ï  ¤p¥á 
  1402. asmr_e_unknown_opcode=07053_E_�¥¨§¢¥áâ­ë© ®¯ª®¤ $1
  1403. asmr_e_invalid_or_missing_opcode=07054_E_H¥¢¥p­ ï ¨«¨ ¯p®¯y饭­ ï ª®¬ ­¤ 
  1404. asmr_e_invalid_prefix_and_opcode=07055_E_H¥¢¥p­ ï ª®¬¡¨­ æ¨ï ¯p¥ä¨ªá  ¨ ª®¬ ­¤ë: $1
  1405. asmr_e_invalid_override_and_opcode=07056_E_H¥¢¥p­ ï ª®¬¡¨­ æ¨ï ¯¥p¥®¯p¥¤¥«¥­¨ï ¨ ª®¬ ­¤ë: $1
  1406. asmr_e_too_many_operands=07057_E_‘«¨èª®¬ ¬­®£® ®¯¥p ­¤®¢ ¢ áâp®ª¥
  1407. asmr_w_near_ignored=07058_W_„¨à¥ªâ¨¢  NEAR ¨£­®p¨pã¥âáï
  1408. asmr_w_far_ignored=07059_W_„¨à¥ªâ¨¢  FAR ¨£­®p¨pã¥âáï
  1409. asmr_e_dup_local_sym=07060_E_�®¢â®p­®¥ ®¯p¥¤¥«¥­¨¥ «®ª «ì­®£® ᨬ¢®«  $1
  1410. asmr_e_unknown_local_sym=07061_E_H¥¨§¢¥áâ­ë© «®ª «ì­ë© ᨬ¢®« $1
  1411. asmr_e_unknown_label_identifier=07062_E_H¥¨§¢¥áâ­ ï ¬¥âª  ¨¤¥­â¨ä¨ª â®p  $1
  1412. asmr_e_invalid_register=07063_E_�¥¯à ¢¨«ì­®¥ ¨¬ï ॣ¨áâà 
  1413. asmr_e_invalid_fpu_register=07064_E_H¥¯p ¢¨«ì­®¥ ¨¬ï p¥£¨áâp  ¤«ï ®¯¥p æ¨¨ á ¯« ¢ î饩 § ¯ï⮩
  1414. asmr_e_nor_not_supported=07065_E_NOR ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  1415. asmr_w_modulo_not_supported=07066_W_MODULO ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  1416. asmr_e_invalid_float_const=07067_E_H¥¢¥p­ ï ª®­áâ ­â  (¯« ¢ îé ï § ¯ïâ ï): $1
  1417. asmr_e_invalid_float_expr=07068_E_H¥¢¥p­®¥ ¢ëp ¦¥­¨¥ (¯« ¢ îé ï ®¯¥p æ¨ï)
  1418. asmr_e_wrong_sym_type=07069_E_H¥¢¥p­ë© ⨯ ᨬ¢®« 
  1419. asmr_e_cannot_index_relative_var=07070_E_H¥ ¬®£y ¨­¤¥ªá¨p®¢ âì «®ª «ì­yî ¯¥p¥¬¥­­yî ¨«¨ ¯ p ¬¥âp á p¥£¨áâp®¬
  1420. asmr_e_invalid_seg_override=07071_E_H¥¢¥p­®¥ ¢ëp ¦¥­¨¥ ¯¥p¥®¯p¥¤¥«¥­­®£® ᥣ¬¥­â 
  1421. asmr_w_id_supposed_external=07072_W_ˆ¤¥­â¨ä¨ª â®p $1, ¯p¥¤¯®«®¦¨¬ çâ® ®­ ¢­¥è­¨©
  1422. asmr_e_string_not_allowed_as_const=07073_E_H¥«ì§ï ¨á¯®«ì§®¢ âì áâp®ª¨ ª ª ª®­áâ ­âë
  1423. asmr_e_no_var_type_specified=07074_’¨¯ ¯¥p¥¬¥­­®© ­¥ yª § ­
  1424. asmr_w_assembler_code_not_returned_to_text=07075_E_€áᥬ¡«¥p᪨© ª®¤ ­¥ ¢®§¢p é ¥âáï ¢ TEXT ᥣ¬¥­â
  1425. asmr_e_not_directive_or_local_symbol=07076_E_$1 ­¥ ¤¨p¥ªâ¨¢  ¨ ­¥ «®ª «ì­ë© ᨬ¢®«
  1426. asmr_w_using_defined_as_local=07077_E_ˆá¯®«ì§®¢ ­¨¥ ®¯p¥¤¥«¥­­®£® ¨¬¥­¨ ª ª «®ª «ì­ ï ¬¥âª 
  1427. asmr_e_dollar_without_identifier=07078_E_‘¨¬¢®« '$' ¨á¯®«ì§y¥âáï ¡¥§ ¨¤¥­â¨ä¨ª â®p 
  1428. asmr_w_32bit_const_for_address=07079_W_32-¡¨â­ ï ª®­áâ ­â  á®§¤ ¥âáï ¤«ï  ¤p¥á 
  1429. asmr_n_align_is_target_specific=07080_N_.ALIGN ¨á¯®«ì§y¥âáï ᯥ樠«ì­® ¤«ï yª § ­¨ï ¯« âä®p¬ë, ¨á¯®«ì§y©â¥ .BALIGN ¨«¨ .P2ALIGN
  1430. asmr_e_cannot_access_field_directly_for_parameters=07081_E_H¥â ¤®áây¯  ª ¯®«î ¯ p ¬¥âp  ­ ¯pï¬yî, ¨á¯®«ì§y©â¥ p¥£¨áâpë
  1431. % You should load the parameter first into a register and then access the
  1432. % fields using that register.
  1433. asmr_e_cannot_access_object_field_directly=07082_E_H¥â ¤®áây¯  ª ¯®«ï¬ ®¡ê¥ªâ®¢/ª« áᮢ ­ ¯pï¬yî, ¨á¯®«ì§y©â¥ p¥£¨áâpë
  1434. % You should load the self pointer first into a register and then access the
  1435. % fields using the register as base. By default the self pointer is available
  1436. % in the esi register on i386.
  1437. asmr_e_unable_to_determine_reference_size=07083_E_H¥ § ¤ ­ p §¬¥p ¨ ­¥¢®§¬®¦­® ®¯p¥¤¥«¨âì p §¬¥p ®¯¥p ­¤®¢
  1438. % You should specify explicitly a size for the reference, because
  1439. % compiler is unable to determine what size (byte,word,dword,etc.) it
  1440. % should use for the reference.
  1441. asmr_e_cannot_use_RESULT_here=07084_E_H¥ ¬®£y ¨á¯®«ì§®¢ âì RESULT ¢ í⮩ äy­ªæ¨¨
  1442. asmr_h_RESULT_is_reg=07085_H_RESULT íâ® p¥£¨áâp $1
  1443. #
  1444. # Assembler/binary writers
  1445. #
  1446. asmw_f_too_many_asm_files=08000_F_‘«¨èª®¬ ¬­®£® ä ©«®¢ ¤«ï  áᥬ¡«¨p®¢ ­¨ï
  1447. asmw_f_assembler_output_not_supported=08001_F_‚ë¡p ­­ë© ⨯  áᥬ¡«¥p  ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  1448. asmw_f_comp_not_supported=08002_F_COMP ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  1449. asmw_f_direct_not_supported=08003_F_�àאַ©  áᥬ¡«¥p §¤¥áì ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  1450. asmw_e_alloc_data_only_in_bss=08004_E_� á¯p¥¤¥«¥­¨¥ ¤ ­­ëå ¢ ¯ ¬ï⨠¢®§¬®¦­® ⮫쪮 ¢ BSS ᥪ樨
  1451. asmw_f_no_binary_writer_selected=08005_F_�¥ ¢ë¡à ­ áâ¨«ì  áᥬ¡«¨à®¢ ­¨ï
  1452. asmw_e_opcode_not_in_table=08006_E_Asm: Š®¬ ­¤ë $1 ­¥â ¢ ᯨ᪥ ª®¬ ­¤
  1453. asmw_e_invalid_opcode_and_operands=08007_E_Asm: $1 ­¥¢¥p­ ï ª®¬¡¨­ æ¨ï ®¯¥p ­¤®¢ ¢ ª®¬ ­¤¥
  1454. asmw_e_16bit_not_supported=08008_E_Asm: 16-¡¨â­ë¥ áá뫪¨ ­¥ ¯®¤¤¥p¦¨¢ îâáï
  1455. asmw_e_invalid_effective_address=08009_E_Asm: H¥¢¥p­ë© íä䥪⨢­ë©(?)  ¤p¥á
  1456. asmw_e_immediate_or_reference_expected=08010_E_Asm: ަ¨¤ ¥âáï IMMEDIATE ¨«¨ áá뫪 
  1457. asmw_e_value_exceeds_bounds=08011_E_Asm: $1 §­ ç¥­¨¥ ¢ëè«® §  £p ­¨æë $2
  1458. asmw_e_short_jmp_out_of_range=08012_E_Asm: SHORT JUMP ¢ë襫 §  £p ­¨æë ¤¨ ¯®§®­  $1
  1459. asmw_e_undefined_label=08013_E_Asm: �¥®¯à¥¤¥«¥­­ ï ¬¥âª  $1
  1460. #
  1461. # Executing linker/assembler
  1462. #
  1463. exec_w_source_os_redefined=09000_W_ˆá室­ ï ®¯¥p æ¨®­­ ï á¨á⥬  ¯¥p¥®¯p¥¤¥«¥­ 
  1464. exec_i_assembling_pipe=09001_I_€áᥬ¡«¨py¥¬ (pipe) $1
  1465. exec_d_cant_create_asmfile=09002_E_H¥ ¬®£y á®§¤ âì ä ©«  áᬥ¡«¥p : $1
  1466. % The mentioned file can't be create. Check if you've
  1467. % permission to create this file
  1468. exec_e_cant_create_objectfile=09003_E_�¥ ¬®£ã á®§¤ âì ®¡ê¥ªâ­ë© ä ©«: $1
  1469. % The mentioned file can't be create. Check if you've
  1470. % permission to create this file
  1471. exec_e_cant_create_archivefile=09004_E_�¥ ¬®£ã á®§¤ âì  à娢­ë© ä ©«: $1
  1472. % The mentioned file can't be create. Check if you've
  1473. % permission to create this file
  1474. exec_w_assembler_not_found=09005_W_€áᥬ¡«¥p $1 ­¥ ­ ©¤¥­, ¨á¯®«ì§y¥¬ ¢¬¥áâ® ­¥£® ¢­¥è­¨©  áᥬ¡«¥p
  1475. exec_t_using_assembler=09006_T_ˆá¯®«ì§y¥¬  áᥬ¡«¥p: $1
  1476. exec_w_error_while_assembling=09007_W_Žè¨¡ª  ¯p¨  áᥬ¡«¨p®¢ ­¨¨ $1
  1477. exec_w_cant_call_assembler=09008_W_H¥ ¬®£y ¢ë§¢ âì  áᥬ¡«¥p, ®è¨¡ª  $1. ˆá¯®«ì§y¥¬ ¢¬¥áâ® ­¥£® ¢­¥è­¨©  áᥬ¡«¥p
  1478. exec_i_assembling=09009_I_€áᥬ¡«¨p®¢ ­¨¥ $1
  1479. exec_i_assembling_smart=09010_I_ˆ­â¥«¥ªây «ì­®¥  áᥬ¡«¨p®¢ ­¨¥ $1
  1480. exec_w_objfile_not_found=09011_W_Ž¡ê¥ªâ­ë© ä ©« $1 ­¥ ­ ©¤¥­, ª®¬¯®­®¢ª  ¬®¦¥â ¡ëâì ­¥y¤ ç­®© !
  1481. exec_w_libfile_not_found=09012_W_�¨¡«¨®â¥ª  $1 ­¥ ­ ©¤¥­ , ª®¬¯®­®¢ª  ¬®¦¥â ¡ëâì ­¥y¤ ç­®© !
  1482. exec_w_error_while_linking=09013_W_Žè¨¡ª  ¯p¨ ª®¬¯®­®¢ª¥
  1483. exec_w_cant_call_linker=09014_W_H¥ ¬®£y ¢ë§¢ âì ª®¬¯®­®¢é¨ª, ¨á¯®«ì§y¥¬ ¢¬¥áâ® ­¥£® ¢­¥è­¨© ª®¬¯®­®¢é¨ª
  1484. exec_i_linking=09015_I_Š®¬¯®­®¢ª  $1
  1485. exec_w_util_not_found=09016_W_“⨫¨â  $1 ­¥ ­ ©¤¥­ , ¯¥p¥ª«îç ¥¬áï ­  ¢­¥è­îî «¨­ª®¢ªy
  1486. exec_t_using_util=09017_T_ˆá¯®«ì§ã¥¬ ¢­¥è­îî ã⨫¨âã $1
  1487. exec_e_exe_not_supported=09018_E_‘®§¤ ­¨¥ ¨á¯®«­ï¥¬ëå ä ©«®¢ ­¥ ¯®¤¤¥p¦¨¢ ¥âáï
  1488. exec_e_dll_not_supported=09019_E_‘®§¤ ­¨¥ ¤¨­ ¬¨ç¥áª¨å ¡¨¡«¨®â¥ª (DLL) ­¥ ¯®¤¤¥p¦¨¢ îâáï
  1489. exec_i_closing_script=09020_I_‡ ªp뢠¥¬ áªp¨¯â $1
  1490. exec_w_res_not_found=09021_W_Š®¬¯¨«ïâ®p p¥áypᮢ ­¥ ­ ©¤¥­, ¯¥p¥ª«îç ¥¬áï ­  ¢­¥è­¨© ª®¬¯¨«ïâ®à à¥áãàᮢ
  1491. exec_i_compilingresource=09022_I_Š®¬¯¨«¨py¥¬ p¥áypá $1
  1492. exec_t_unit_not_static_linkable_switch_to_smart=09023_T_¬®¤y«ì $1 ­¥ ¬®¦¥â ¡ëâì ᮡp ­ ¢ p¥¦¨¬¥ static, ¢ª«îç ¥¬ smart á¡®pªy
  1493. exec_t_unit_not_smart_linkable_switch_to_static=09024_T_¬®¤y«ì $1 ­¥ ¬®¦¥â ¡ëâì ᮡp ­ ¢ p¥¦¨¬¥ smart, ¢ª«îç ¥¬ static á¡®pªy
  1494. exec_t_unit_not_shared_linkable_switch_to_static=09025_T_¬®¤y«ì $1 ­¥ ¬®¦¥â ¡ëâì ᮡp ­ ¢ p¥¦¨¬¥ shared, ¢ª«îç ¥¬ static á¡®pªy
  1495. exec_e_unit_not_smart_or_static_linkable=09026_E_¬®¤y«ì $1 ­¥ ¬®¦¥â ¡ëâì ᮡp ­ ¢ p¥¦¨¬ å smart ¨«¨ static
  1496. exec_e_unit_not_shared_or_static_linkable=09027_E_¬®¤y«ì $1 ­¥ ¬®¦¥â ¡ëâì ᮡp ­ ¢ p¥¦¨¬ å shared ¨«¨ static
  1497. #
  1498. # Executable information
  1499. #
  1500. execinfo_f_cant_process_executable=09028_F_H¥ ¬®¦¥¬ ¨á¯®«­¨âì ¨á¯®«­ï¥¬ë© ¬®¤y«ì $1
  1501. execinfo_f_cant_open_executable=09029_F_H¥ ¬®£y ®âªpëâì ¨á¯®«­ï¥¬ë© ¬®¤y«ì $1
  1502. execinfo_x_codesize=09030_X_� §¬¥p ª®¤ : $1 ¡ ©â
  1503. execinfo_x_initdatasize=09031_X_� §¬¥p ¨­¨æ¨ «¨§¨pyî饩 ç áâ¨: $1 ¡ ©â
  1504. execinfo_x_uninitdatasize=09032_X_� §¬¥p ¤¥-¨­¨æ¨ «¨§¨pyî饩 ç áâ¨: $1 ¡ ©â
  1505. execinfo_x_stackreserve=09033_X_‡ p¥§¥p¢¨p®¢ ­­® á⥪ : $1 ¡ ©â
  1506. execinfo_x_stackcommit=09034_X_ˆá¯®«ì§®¢ ­® á⥪ : $1 ¡ ©â
  1507. # Unit loading
  1508. #
  1509. # BeginOfTeX
  1510. % \section{Unit loading messages.}
  1511. % This section lists all messages that can occur when the compiler is
  1512. % loading a unit from disk into memory. Many of these mesages are
  1513. % informational messages.
  1514. % \begin{description}
  1515. unit_t_unitsearch=10000_T_�®¨áª ¬®¤y«¥©: $1
  1516. % When you use the \var{-vt}, the compiler tells you where it tries to find
  1517. % unit files.
  1518. unit_t_ppu_loading=10001_T_PPU § £py¦ ¥âáï $1
  1519. % When the \var{-vt} switch is used, the compiler tells you
  1520. % what units it loads.
  1521. unit_u_ppu_name=10002_U_PPU ¨¬ï: $1
  1522. % When you use the \var{-vu} flag, the unit name is shown.
  1523. unit_u_ppu_flags=10003_U_PPU ä« £¨: $1
  1524. % When you use the \var{-vu} flag, the unit flags are shown.
  1525. unit_u_ppu_crc=10004_U_PPU CRC: $1
  1526. % When you use the \var{-vu} flag, the unit CRC check is shown.
  1527. unit_u_ppu_time=10005_U_PPU ¢p¥¬ï: $1
  1528. % When you use the \var{-vu} flag, the time the unit was compiled is shown.
  1529. unit_u_ppu_file_too_short=10006_U_PPU ä ©« ᫨誮¬ ª®p®âª¨©
  1530. % The ppufile is too short, not all declarations are present.
  1531. unit_u_ppu_invalid_header=10007_U_H¥¢¥p­ë© § £®«®¢®ª PPU (­¥â PPU ¬¥âª¨ ¢­ ç «¥)
  1532. % A unit file contains as the first three bytes the ascii codes of \var{PPU}
  1533. unit_u_ppu_invalid_version=10008_U_H¥¢¥p­ ï ¢¥pá¨ï PPU ä ©«  $1
  1534. % This unit file was compiled with a different version of the compiler, and
  1535. % cannot be read.
  1536. unit_u_ppu_invalid_processor=10009_U_PPU ä ©« ®âª®¬¯¨«¨p®¢ ­ ¤«ï ¤py£®£® ¯p®æ¥áá®p 
  1537. % This unit file was compiled for a different processor type, and
  1538. % cannot be read
  1539. unit_u_ppu_invalid_target=10010_U_PPU ä ©« ®âª®¬¯¨«¨p®¢ ­ ¤«ï ¤py£®© OS
  1540. % This unit file was compiled for a different processor type, and
  1541. % cannot be read
  1542. unit_u_ppu_source=10011_U_PPU ¨áâ®ç­¨ª: $1
  1543. % When you use the \var{-vu} flag, the unit CRC check is shown.
  1544. unit_u_ppu_write=10012_U_‡ ¯¨á뢠¥¬ $1
  1545. % When you specify the \var{-vu} switch, the compiler will tell you where it
  1546. % writes the unit file.
  1547. unit_f_ppu_cannot_write=10013_F_H¥ ¬®£y § ¯¨á âì PPU-ä ©«
  1548. % An error occurred when writing the unit file.
  1549. unit_f_ppu_read_error=10014_F_—¨â ¥¬ PPU-ä ©«
  1550. % This means that the unit file was corrupted, and contains invalid
  1551. % information. Recompilation will be necessary.
  1552. unit_f_ppu_read_unexpected_end=10015_F_�¥®¦¨¤ ­­ë© ª®­¥æ y PPU-ä ©« 
  1553. % Unexpected end of file.
  1554. unit_f_ppu_invalid_entry=10016_F_H¥¯p ¢¨«ì­ë© ¢å®¤ ¢ PPU-ä ©«: $1
  1555. % The unit the compiler is trying to read is corrupted, or generated with a
  1556. % newer version of the compiler.
  1557. unit_f_ppu_dbx_count_problem=10017_F_PPU DBX COUNT ¯p®¡«¥¬ 
  1558. % There is an inconsistency in the debugging information of the unit.
  1559. unit_e_illegal_unit_name=10018_E_H¥¢¥p­®¥ ¨¬ï ¬®¤y«ï: $1
  1560. % The name of the unit doesn't match the file name.
  1561. unit_f_too_much_units=10019_F_‘«¨èª®¬ ¬­®£® ¬®¤y«¥©
  1562. % \fpc has a limit of 1024 units in a program. You can change this behavior
  1563. % by changing the \var{maxunits} constant in the \file{files.pas} file of the
  1564. % compiler, and recompiling the compiler.
  1565. unit_f_circular_unit_reference=10020_F_Špy£®¢ ï áá뫪  ¬®¤y«ï ¬¥¦¤y $1 ¨ $2
  1566. % Two units are using each other in the interface part. This is only allowed
  1567. % in the \var{implementation} part. At least one unit must contain the other one
  1568. % in the \var{implementation} section.
  1569. unit_f_cant_compile_unit=10021_F_H¥ ¬®£y ®âª®¬¯¨«¨p®¢ âì ¬®¤y«ì $1. H¥ ¬®£y ­ ©â¨ ¨á室­¨ª®¢.
  1570. % A unit was found that needs to be recompiled, but no sources are
  1571. % available.
  1572. unit_f_cant_find_ppu=10022_F_H¥ ¬®£y ­ ©â¨ PPU ä ©« $1.
  1573. % You tried to use a unit of which the PPU file isn't found by the
  1574. % compiler. Check your config files for the unit pathes
  1575. unit_w_unit_name_error=10023_W_Œ®¤ã«ì $1 ­¥ ­ ©¤¥­, ­® $2 áãé¥áâ¢ã¥â
  1576. unit_f_unit_name_error=10024_F_Œ®¤ã«ì $1 ¨áª «¨, ­® ­ è«¨ ¬®¤ã«ì $2
  1577. % Dos truncation of 8 letters for unit PPU files
  1578. % may lead to problems when unit name is longer than 8 letters.
  1579. unit_w_switch_us_missed=10025_W_’p¥¡y¥âáï ª®¬¯¨«¨p®¢ ­¨¥ á¨á⥬­®£® ¬®¤y«ï. ˆá¯®«ì§y©â¥ ª«îç -Us
  1580. % When recompiling the system unit (it needs special treatment), the
  1581. % \var{-Us} must be specified.
  1582. unit_f_errors_in_unit=10026_F_Ž¡­ py¦¥­® $1 ®è¨¡®ª ¯p¨ ª®¬¯¨«¨p®¢ ­¨¨ ¬®¤y«ï, ®áâ ­ ¢«¨¢ ¥¬áï
  1583. % When the compiler encounters a fatal error or too many errors in a module
  1584. % then it stops with this message.
  1585. unit_u_load_unit=10027_U_‡ £py§ª  ¨§ $1 ($2) ¬®¤y«ì $3
  1586. % When you use the \var{-vu} flag, which unit is loaded from which unit is
  1587. % shown.
  1588. unit_u_recompile_crc_change=10028_U_�¥p¥ª®¬¯¨«¨p®¢ ­¨¥ $1, ª®­âp®«ì­ ï áy¬¬  y $2 ¨§¬¥­¥­ 
  1589. unit_u_recompile_source_found_alone=10029_U_�¥p¥ª®¬¯¨«¨p®¢ ­¨¥ $1, â ª ª ª ­ ©¤¥­ë ⮫쪮 ¨á室­¨ª¨
  1590. % When you use the \var{-vu} flag, these messages tell you why the current
  1591. % unit is recompiled.
  1592. unit_u_recompile_staticlib_is_older=10030_U_�¥p¥ª®¬¯¨«¨p®¢ ­¨¥ ¬®¤y«ï, â ª ª ª ¡¨¡«¨®â¥ª  (static) áâ pè¥ ç¥¬ ppu-ä ©«
  1593. % When you use the \var{-vu} flag, the compiler warns if the static library
  1594. % of the unit are older than the unit file itself.
  1595. unit_u_recompile_sharedlib_is_older=10031_U_�¥p¥ª®¬¯¨«¨p®¢ ­¨¥ ¬®¤y«ï, â ª ª ª ¡¨¡«¨®â¥ª  (shared) áâ pè¥ ç¥¬ ppu-ä ©«
  1596. % When you use the \var{-vu} flag, the compiler warns if the shared library
  1597. % of the unit are older than the unit file itself.
  1598. unit_u_recompile_obj_and_asm_older=10032_U_�¥p¥ª®¬¯¨«¨p®¢ ­¨¥ ¬®¤y«ï, â ª ª ª .as ¨ .obj ä ©« áâ pè¥ ç¥¬ ppu-ä ©«
  1599. % When you use the \var{-vu} flag, the compiler warns if the assembler or
  1600. % object file of the unit are older than the unit file itself.
  1601. unit_u_recompile_obj_older_than_asm=10033_U_�¥p¥ª®¬¯¨«¨p®¢ ­¨¥ ¬®¤y«ï, â ª ª ª .obj ä ©« áâ pè¥ ç¥¬ .as ä ©«
  1602. % When you use the \var{-vu} flag, the compiler warns if the assembler
  1603. % file of the unit is older than the object file of the unit.
  1604. unit_u_start_parse_interface=10034_U_€­ «¨§¨à㥬 ¨­â¥p䥩á­ãî ç áâì $1
  1605. % When you use the \var{-vu} flag, the compiler warns that it starts
  1606. % parsing the interface part of the unit
  1607. unit_u_start_parse_implementation=10035_U_€­ «¨§¨à㥬 p¥ «¨§ æ¨®­­ãî ç áâì $1
  1608. % When you use the \var{-vu} flag, the compiler warns that it starts
  1609. % parsing the implementation part of the unit
  1610. unit_u_second_load_unit=10036_U_‚â®p ï § £py§ª  ¤«ï ¬®¤y«ï $1
  1611. % When you use the \var{-vu} flag, the compiler warns that it starts
  1612. % recompiling a unit for the second time. This can happend with interdepend
  1613. % units.
  1614. unit_u_check_time=10037_U_PPU ¯p®¢¥pª  ä ©«  $1 ¢p¥¬ï $2
  1615. unit_h_cond_not_set_in_last_compile=10038_H_“á«®¢­®¥ ¢ëp ¦¥­¨¥ $1 ­¥ ¡ë«® yáâ ­®¢«¥­® ¯p¨ ¯®á«¥¤­¥© ª®¬¯¨«ï樨 $2
  1616. % when recompilation of an unit is required the compiler will check that
  1617. % the same conditionals are set for the recompiliation. The compiler has
  1618. % found a conditional that currently is defined, but was not used the last
  1619. % time the unit was compiled.
  1620. unit_h_cond_set_in_last_compile=10039_H_“á«®¢­®¥ ¢ëp ¦¥­¨¥ $1 ¡ë«® yáâ ­®¢«¥­® ¯p¨ ¯®á«¥¤­¥© ª®¬¯¨«ï樨 $2
  1621. % when recompilation of an unit is required the compiler will check that
  1622. % the same conditionals are set for the recompiliation. The compiler has
  1623. % found a conditional that was used the last time the unit was compiled, but
  1624. % the conditional is currently not defined.
  1625. % \end{description}
  1626. #
  1627. # Options
  1628. #
  1629. option_usage=11000_$1 [®¯æ¨¨] <ä ©«> [®¯æ¨¨]
  1630. # BeginOfTeX
  1631. %
  1632. % \section{Command-line handling errors}
  1633. % This section lists errors that occur when the compiler is processing the
  1634. % command line or handling the configuration files.
  1635. % \begin{description}
  1636. option_only_one_source_support=11001_W_�®¤¤¥p¦¨¢ ¥âáï ⮫쪮 ®¤¨­ ä ©« ¤«ï ª®¬¯¨«ï樨
  1637. % You can specify only one source file on the command line. The first
  1638. % one will be compiled, others will be ignored. This may indicate that
  1639. % you forgot a \var{'-'} sign.
  1640. option_def_only_for_os2=11002_W_DEF ä ©« ¬®¦¥â á®§¤ ¢ âìáï ⮫쪮 ¯®¤ OS/2
  1641. % This option can only be specified when you're compiling for OS/2
  1642. option_no_nested_response_file=11003_E_‚«®¦¥­­ë¥ ä ©«ë ®â¢¥â  ­¥ ¯®¤¤¥p¦¨¢ îâáï
  1643. % you cannot nest response files with the \var{@file} command-line option.
  1644. option_no_source_found=11004_F_ˆ¬ï ä ©«  ¤«ï ª®¬¯¨«ï樨 ¢ ª®¬ ­¤­®© áâp®ª¥ ­¥ ®¡­ à㦥­®
  1645. % The compiler expects a source file name on the command line.
  1646. option_no_option_found=11005_N_ޝæ¨ï ª®¬¯¨«ïâ®à  $1 ¢­ãâਠª®­ä¨£ãà æ¨®­­®£® ä ©«  ­¥ ®¡­ à㦥­ 
  1647. % The compiler didn't find any option in that config file.
  1648. option_illegal_para=11006_E_H¥¢¥p­ë© ¯ p ¬¥âp: $1
  1649. % You specified an unknown option.
  1650. option_help_pages_para=11007_H_-? ¢ë¢¥á⨠áâp ­¨æë ¯®¬®é¨
  1651. % When an unknown option is given, this message is diplayed.
  1652. option_too_many_cfg_files=11008_F_‘«¨èª®¬ ¬­®£® ¢«®¦¥­­ëå ª®­ä¨£yp æ¨®­­ëå ä ©«®¢
  1653. % You can only nest up to 16 config files.
  1654. option_unable_open_file=11009_F_H¥ ¬®£y ®âªpëâì ä ©« $1
  1655. % The option file cannot be found.
  1656. option_reading_further_from=11010_N_—⥭¨¥ ¤ «ì­¥©è¨å ¯ p ¬¥âp®¢ ¨§ $1
  1657. % Displayed when you have notes turned on, and the compiler switches
  1658. % to another options file.
  1659. option_target_is_already_set=11011_W_TARGET yáâ ­®¢«¥­ ¤¢ ¦¤ë ¢: $1
  1660. % Displayed if more than one \var{-T} option is specified.
  1661. option_no_shared_lib_under_dos=11012_W_SHARED ¡¨¡«¨®â¥ª¨ ­¥ ¯®¤¤¥p¦¨¢ îâáï ¢ GO32* ¯p¨«®¦¥­¨ïå, ¤¥« ¥¬ ¨å STATIC
  1662. % If you specify \var{-CD} for the \dos platform, this message is displayed.
  1663. % The compiler supports only static libraries under \dos
  1664. option_too_many_ifdef=11013_F_‘«¨èª®¬ ¬­®£® $IFDEF ¨«¨ $IFNDEF
  1665. % the \var{\#IF(N)DEF} statements in the options file are not balanced with
  1666. % the \var{\#ENDIF} statements.
  1667. option_too_many_endif=11014_F_‘«¨èª®¬ ¬­®£® $ENDIF
  1668. % the \var{\#IF(N)DEF} statements in the options file are not balanced with
  1669. % the \var{\#ENDIF} statements.
  1670. option_too_less_endif=11015_F_Žâªpë⨥ yá«®¢­®£® ¢ëp ¦¥­¨ï ¢ ª®­æ¥ ä ©« 
  1671. % the \var{\#IF(N)DEF} statements in the options file are not balanced with
  1672. % the \var{\#ENDIF} statements.
  1673. option_no_debug_support=11016_W_ƒ¥­¥p æ¨ï ¨­ä®p¬ æ¨¨ ¤«ï ®â« ¤ª¨ ­¥ ¯®¤¤¥p¦¨¢ ¥âáï ¢ í⮬ ¨á¯®«­ï¥¬®¬ ä ©«¥
  1674. % It is possible to have a compiler executable that doesn't support
  1675. % the generation of debugging info. If you use such an executable with the
  1676. % \var{-g} switch, this warning will be displayed.
  1677. option_no_debug_support_recompile_fpc=11017_H_�®¯p®¡y©â¥ ®âª®¬¯¨«¨p®¢ âì á ®¯æ¨¥© -dGDB
  1678. % It is possible to have a compiler executable that doesn't support
  1679. % the generation of debugging info. If you use such an executable with the
  1680. % \var{-g} switch, this warning will be displayed.
  1681. option_obsolete_switch=11018_E_‚ë ¨á¯®«ì§y©â¥ yáâ p¥¢è¨© ª«îç $1
  1682. % this warns you when you use a switch that is not needed/supported anymore.
  1683. % It is recommended that you remove the switch to overcome problems in the
  1684. % future, when the switch meaning may change.
  1685. option_obsolete_switch_use_new=11019_E_‚ë ¨á¯®«ì§y¥â¥ yáâ p¥¢è¨© ª«îç $1, ¯®¦ «y©áâ  ¨á¯®«ì§y©â¥ ¢¬¥áâ® ­¥£® ª«îç $2
  1686. % �â® ¯à¥¤ã¯à¥¦¤ ¥â ‚ á, ª®£¤  ‚ë ¨á¯®«ì§ã¥â¥ ª«îç, ª®â®àë© ¡®«ìè¥ ­¥
  1687. % ¯®¤¤¥à¦¨¢ ¥âáï. ‚ë ¤®«¦­ë ¨á¯®«ì§®¢ âì ¢â®à®© ª«îç ¢¬¥áâ® í⮣®.
  1688. % �¥ª®¬¥­¤ã¥âáï, § ¬¥­¨âì ª«îç, çâ®¡ë ¯à¥®¤®«¥âì ¯à®¡«¥¬ë ¢ ¡ã¤ã饬,
  1689. % ª®£¤  ª«îç, yª § ­­ë© ¢ ¬¨ ¬®¦¥â ¨§¬¥­ïâìáï ¨ ¨¬¥âì ¤py£®¥ §­ ç¥­¨¥.
  1690. option_switch_bin_to_src_assembler=11020_N_�¥p¥ª«îç ¥¬  áᥬ¡«¥p ¢  áᥬ¡«¥p § ¤ ­­ë© ¯® y¬®«ç ­¨î
  1691. % this notifies you that the assembler has been changed because you used the
  1692. % -a switch which can't be used with a binary assembler writer.
  1693. option_incompatible_asm=11021_W_‚¨¤ ¢ë¡à ­­®£® áâ¨«ï  áᥬ¡«¥à  "$1" ­¥ ᮢ¬¥á⨬ á "$2"
  1694. option_asm_forced=11022_W_Š á®¦ «¥­¨î, ¨á¯®«ì§ã¥¬ áâ¨«ì  áᥬ¡«¥à  "$1"
  1695. % The assembler output selected can not generate
  1696. % object files with the correct format. Therefore, the
  1697. % default assembler for this target is used instead.
  1698. %
  1699. #
  1700. # ‹®£® (®¯æ¨ï -l)
  1701. #
  1702. option_logo=11023_[
  1703. Free Pascal Compiler version $FPCVER [$FPCDATE] for $FPCTARGET [Russian Edition]
  1704. Copyright (c) 1998-2000 by Florian Klaempfl
  1705. ]
  1706. #
  1707. # ˆ­ä®p¬ æ¨ï (®¯æ¨ï -i)
  1708. #
  1709. option_info=11024_[
  1710. Free Pascal Compiler version $FPCVER
  1711. Compiler Date : $FPCDATE
  1712. Compiler Target: $FPCTARGET
  1713. This program comes under the GNU General Public Licence
  1714. For more information read COPYING.FPC
  1715. Report bugs, suggestions and etc to:
  1716. [email protected], [email protected]
  1717. ]
  1718. #
  1719. # ‘âà ­¨æë ‘¯à ¢ª¨ (®¯æ¨ï -? ˆ -h)
  1720. #
  1721. # Ž¡à â¨âì ¢­¨¬ ­¨¥: Hy¬¥p æ¨î ­¥ ¬¥­ïâì!
  1722. #
  1723. option_help_pages=11025_[
  1724. **0*_¤¥« © '+', çâ®¡ë ¢ª«îç¨âì ª«îç, ¨ '-' çâ®¡ë ®âª«îç¨âì ¥£®
  1725. **1a_ª®¬¯¨«ïâ®à ­¥ ¡y¤¥â 㤠«ïâì ᣥ­¥à¨à®¢ ­­ë©  áᥬ¡«¥à᪨© ä ©«
  1726. **2al_¢ë¢®¤¨âì ­®¬¥p  áâப ¢  áᥬ¡«¨p®¢ ­­­®¬ ä ©«¥
  1727. **2ar_¢ë¢®¤¨âì ¨­ä®p¬ æ¨î ® ᯨ᪥ § ­ïâëå/®á¢®¡®¦¤¥­­ëå p¥£¨áâp®¢ ¢  áᥬ¡«¥p᪨© ä ©«
  1728. **2at_¢ë¢®¤¨âì ¨­ä®p¬ æ¨î ® ᯨ᪥ § ­ïâëå/®á¢®¡®¦¤¥­­ëå ¢p¥¬¥­­ëå ¯¥p¥¬¥­­ëå ¢  áᥬ¡«¥p᪨© ä ©«
  1729. **1b_£¥­¥p¨p®¢ âì ¨­ä®p¬ æ¨î ¤«ï ¡p y§¥p  (IDE)
  1730. **2bl_â ª¦¥ £¥­¥p¨p¨âì ¨­ä®p¬ æ¨î ® «®ª «ì­ëå ᨬ¢®« å
  1731. **1B_¯¥p¥ª®¬¯¨«¨p®¢ âì ¢á¥ ¬®¤y«¨
  1732. **1C<x>_®¯æ¨¨ £¥­¥p â®p  ª®¤ 
  1733. 3*2CD_â ª¦¥ á®§¤ âì ¤¨­ ¬¨ç¥áªyî ¡¨¡«¨®â¥ªy (­¥ ¯®¤¤¥p¦¨¢ ¥âáï)
  1734. **2Ch<n>_<n> ¡ ©â ªyç¨ (¬¥¦¤ã 1023 ¨ 67107840)
  1735. **2Ci_¯p®¢¥pª  ¢¢®¤ -¢ë¢®¤ 
  1736. **2Cn_¯p®¯yáâ¨âì áâ ¤¨î «¨­ª®¢ª¨ ¬®¤y«ï
  1737. **2Co_¯p®¢¥pïâì ¯¥à¥¯®«­¥­¨¥ ¢ 楫®ç¨á«¥­­ëå ®¯¥à æ¨ïå
  1738. **2Cr_¯p®¢¥pª  ¤¨ ¯ §®­ 
  1739. **2Cs<n>_yáâ ­®¢¨âì p §¬¥p á⥪  ¤® <n>
  1740. **2Ct_¯à®¢¥àª  á⥪ 
  1741. 3*2CX_â ª¦¥ á®§¤ âì smartlink ¢¥pá¨î
  1742. **1d<x>_®¯p¥¤¥«¨âì ᨬ¢®« <x>
  1743. *O1D_á®§¤ âì DEF-ä ©«
  1744. *O2Dd<x>_yáâ ­®¢¨âì ®¯¨á ­¨¥ ¢ <x>
  1745. *O2Dw_PM ¯à¨«®¦¥­¨¥
  1746. **1e<x>_yáâ ­®¢¨âì ¯yâì ¤«ï ¨á¯®«­ï¥¬ëå ä ©«®¢
  1747. **1E_⮦¥, çâ® ¨ -Cn
  1748. **1F<x>_yáâ ­®¢¨âì ¨¬¥­  ä ©«®¢ ¨ ¯ãâ¨
  1749. **2FD<x>_yáâ ­®¢¨âì ¯y⨠¤® ª â «®£®¢, £¤¥ ¨áª âì ã⨫¨âë
  1750. **2Fe<x>_¯¥p¥­ ¯p ¢¨âì ¢ë¢®¤ ®è¨¡®ª ¢ <x>
  1751. **2Fi<x>_¤®¡ ¢¨âì <x> ª ¯yâï¬ ¤® ¢ª«îç ¥¬ëå ä ©«®¢
  1752. **2Fl<x>_¤®¡ ¢¨âì <x> ª ¯yâï¬ ¤® ä ©«®¢ ¡¨¡«¨®â¥ª
  1753. *L2FL<x>_¨á¯®«ì§®¢ âì <x> ª ª ¤¨­ ¬¨ç¥áª¨© ª®¬¯®­®¢é¨ª
  1754. **2Fo<x>_¤®¡ ¢¨âì <x> ª ¯yâï¬ ¤® ®¡ê¥ªâ­ëå ä ©«®¢
  1755. **2Fr<x>_§ £py§¨âì ä ©« á®®¡é¥­¨© ®¡ ®è¨¡ª å <x>
  1756. **2Fu<x>_¤®¡ ¢¨âì <x> ª ¯ã⨠¤® ¬®¤ã«¥©
  1757. **2FU<x>_yáâ ­®¢¨âì ¯yâì ¤® ¬®¤y«¥© ª ª <x>, ®â¬¥­ï¥â -FE
  1758. *g1g_á®§¤ ¢ âì ¨­ä®à¬ æ¨î ¤«ï ®â« ¤ç¨ª 
  1759. *g2gg_¨á¯®«ì§®¢ âì GSYM
  1760. *g2gd_¨á¯®«ì§®¢ âì DBX
  1761. *g2gh_¨á¯®«ì§®¢ âì ¬®¤y«ì á«¥¦¥­¨ï §  ªã祩 (¤«ï ®â« ¤ª¨ yâ¥ç¥ª ¯ ¬ïâ¨)
  1762. *g2gl_¨á¯®«ì§®¢ âì «¨­¨¨ ¢ ¨­ä®p¬ æ¨®­­®¬ ¬®¤y«¥ ¤«ï ¡®«ì襩 ¨­ä®p¬ æ¨¨ ¯p¨ ®â« ¤ª¥
  1763. *g2gc_£¥­¥à¨à®¢ âì ¯à®¢¥àª¨ ¤«ï 㪠§ â¥«¥©
  1764. **1i_¨­ä®p¬ æ¨ï
  1765. **2iD_¢®§¢p é ¥â ¤ ây ª®¬¯¨«ïâ®p 
  1766. **2iV_¢®§p é ¥â ¢¥pá¨î ª®¬¯¨«ïâ®à 
  1767. **2iSO_¢®§¢p é ¥â ⨯ OS, ­  ª®â®p®© ¡ë« á®§¤ ­  ¯p®£p ¬¬ 
  1768. **2iSP_¢®§¢p é ¥â ⨯ ¯p®æ¥áá®p , ­  ª®â®p®¬ ¡ë«  á®§¤ ­  ¯p®£p ¬¬ 
  1769. **2iTO_¢®§¢p é ¥â ⨯ OS, ¤«ï ª®â®p®© ¡ë«  á®§¤ ­  ¯p®£p ¬¬ 
  1770. **2iTP_¢®§¢p é ¥â ⨯ ¯p®æ¥áá®p , ¤«ï ª®â®p®£® ¡ë«  á®§¤ ­  ¯p®£p ¬¬ 
  1771. **1I<x>_¤®¡ ¢«ï¥â <x> ¢ ¯y⨠¤® ¢ª«îç ¥¬ëå ä ©«®¢
  1772. **1k<x>_¯p®å®¤ <x> ª®¬¯®­®¢é¨ªy
  1773. **1l_§ ¯¨á뢠âì ¢ ¯p®£p ¬¬y «®£®â¨¯ fpc
  1774. **1n_­¥ ç¨â âì áâ ­¤ pâ­ë© ä ©« ª®­ä¨£ãà æ¨¨
  1775. **1o<x>_¨§¬¥­¨âì ¨¬ï ¯à®£à ¬¬ë, ­  <x>
  1776. **1pg_£¥­¥p æ¨ï ¯à®ä¨«¨àãî饣® ª®¤  ¤«ï GPROF (®¯p¥¤¥«ï¥â FPC_PROFILE)
  1777. *L1P_¨á¯®«ì§®¢ âì ä ©«ë ¢ ¯ ¬ï⨠(pipes) ¢¬¥áâ® ¢à¥¬¥­­ëå ä ©«®¢  áᥬ¡«¥à 
  1778. **1S_ᨭ⠪á¨ç¥áª¨¥ ®¯æ¨¨
  1779. **2S2_ª«îç ¢ª«î祭¨ï ­¥ª®â®pëå p áè¨p¥­¨© Delphi 2
  1780. **2Sc_¯®¤¤¥p¦¨¢ âì ®¯¥à â®àë, ¯®å®¦¨¥ ­  ®¯¥p â®pë ¢ C (*=,+=,/= ¨ -=)
  1781. **2sa_¢ª«îç âì ª®­â஫¨àãî騩 ª®¤
  1782. **2Sd_p¥¦¨¬ Delphi-ᮢ¬¥á⨬®áâ¨
  1783. **2Se<x>_ª®¬¯¨«ïâ®p ®áâ ­ ¢«¨¢ ¥âáï ¯®á«¥ <x> ®è¨¡ª¨ (¯® 㬮«ç ­¨î ¯®á«¥ 1 ®è¨¡ª¨)
  1784. **2Sg_¯®¤¤¥p¦¨¢ âì LABEL ¨ GOTO
  1785. **2Sh_¨á¯®«ì§®¢ âì ANSI áâp®ª¨
  1786. **2Si_¯®¤¤¥p¦¨¢ âì á⨫ì INLINE ï§ëª  C++
  1787. **2Sm_¯®¤¤¥p¦¨¢ âì ¬ ªà®ª®¬ ­¤ë ¯®¤®¡­® C (£«®¡ «ì­®)
  1788. **2So_p¥¦¨¬ TP/BP 7.0 ᮢ¬¥á⨬®áâ¨
  1789. **2Sp_p¥¦¨¬ GPC ᮢ¬¥á⨬®áâ¨
  1790. **2Ss_ª®­áâpyªâ®p ¤®«¦¥­ ¨¬¥âì ¨¬ï init (¤¥áâpyªâ®p ¤®«¦¥­ ¨¬¥âì ¨¬ï done)
  1791. **2St_¯®¤¤¥p¦ª  áâ â¨ç¥áª¨å ª«î祢ëå á«®¢ ¢ ®¡ê¥ªâ å
  1792. **1s_­¥ ¢ë§ë¢ âì  áᥬ¡«¥à ¨ ª®¬¯®­®¢é¨ª ¯p¨ p ¡®â¥ (⮫쪮 á -a)
  1793. **1u<x>_y¤ «ï¥â ®¯p¥¤¥«¥­¨¥ ᨬ¢®«  <x>
  1794. **1U_®¯æ¨¨ ¬®¤y«¥©
  1795. **2Un_­¥ ¯p®¢¥pïâì ᮮ⢥âá⢨¥ ¨¬¥­¨ ¬®¤y«ï ¨ ¨¬¥­¨ ä ©«  ¬®¤y«ï
  1796. **2Us_᪮¬¯¨«¨p®¢ âì £« ¢­ë© ¬®¤y«ì (system)
  1797. **1v<x>_¯®¤p®¡­®áâì <x> íâ® ª®¬¡¨­ æ¨ï á«¥¤yîé¨å ᨬ¢®«®¢:
  1798. **2*_e : ‚ᥠ®è¨¡ª¨ (¯® 㬮«ç ­¨î) d: ˆ­ä®à¬ æ¨ï ¤«ï ®â« ¤ª¨
  1799. **2*_w : �।ã¯à¥¦¤¥­¨ï u: ˆ­ä®à¬ æ¨î ¬®¤ã«ï
  1800. **2*_n : �ਬ¥ç ­¨ï t: �஡®¢ ­­ë¥/¨á¯®«ì§®¢ ­­ë¥ ä ©«ë
  1801. **2*_h : �®¤áª §ª¨ m: Ž¯à¥¤¥«¥­­ë¥ ¬ ªà®ª®¬ ­¤ë
  1802. **2*_i : Ž¡é ï ¨­ä®à¬ æ¨ï p: Š®¬¯¨«¨àã¥¬ë¥ ¯à®æ¥¤ãàë
  1803. **2*_l : H®¬¥p  «¨­¨© c: “á«®¢­ë¥ ¢ëà ¦¥­¨ï
  1804. **2*_a : ‚ᥠ¯®ª §ë¢ âì 0: H¨ç¥£® ­¥ á®®¡é âì, ªp®¬¥ ®è¨¡®ª
  1805. **2*_b : �®ª § âì ¢áî ¯p®æ¥¤ypy, r: Rhide/GCC ०¨¬ ᮢ¬¥á⨬®áâ¨
  1806. **2*_ ¥á«¨ ®è¨¡ª  ¯p®¨á室¨â x: ˆ­ä®à¬ æ¨ï ® ä ©«¥ (⮫쪮 Win32)
  1807. **2*_ ¨¬¥­­® ¢ ­¥©
  1808. **1X_®¯æ¨¨ ¢ë¯®«­¥­¨ï
  1809. *L2Xc_«¨­ª®¢ âì á ¡¨¡«¨®â¥ª®© ï§ëª  C
  1810. **2Xs_®ç¨áâ¨âì ¢á¥ á¨¬¢®«ì­ë¥ ¨¬¥­  ¨§ ¯p®£p ¬¬ë
  1811. **2XD_«¨­ª®¢ âì ¤¨­ ¬¨ç¥áª¨¥ ¡¨¡«¨®â¥ª¨ (®¯p¥¤¥«ï¥â FPC_LINK_DYNAMIC)
  1812. **2XS_«¨­ª®¢ âì áâ â¨ç¥áª¨¥ ¡¨¡«¨®â¥ª¨ (®¯p¥¤¥«ï¥â FPC_LINK_STATIC)
  1813. **2XX_«¨­ª®¢ âì smart-¡¨¡«¨®â¥ª¨ (®¯p¥¤¥«ï¥â FPC_LINK_SMART)
  1814. **0*_Ž¯æ¨¨ ᯥæ¨ä¨ç­ë¥ ¤«ï ¯p®æ¥áá®p®¢:
  1815. 3*1A<x>_ä®à¬ â ¢ë¢®¤ 
  1816. 3*2Aas_ä ©«, ¨á¯®«ì§ãî騩 GNU
  1817. 3*2Aasaout_ä ©«, ¨á¯®«ì§ãî騩 GNU for aout (Go32v1)
  1818. 3*2Anasmcoff_coff (Go32v2) ä ©«, ¨á¯®«ì§ãî騩 Nasm
  1819. 3*2Anasmelf_elf32 (Linux) ä ©«, ¨á¯®«ì§ãî騩 Nasm
  1820. 3*2Anasmobj_obj ä ©«, ¨á¯®«ì§ãî騩 Nasm
  1821. 3*2Amasm_obj ¨á¯®«ì§yî騩 Masm (Microsoft)
  1822. 3*2Atasm_obj ¨á¯®«ì§yî騩 Tasm (Borland)
  1823. 3*2Acoff_coff (Go32v2) ¨á¯®«ì§ãï ¢áâ஥­­ë©  áᥬ¡«¥à
  1824. 3*2Apecoff_pecoff (Win32) ¨á¯®«ì§ãï ¢áâ஥­­ë©  áᥬ¡«¥à
  1825. 3*1R<x>_á⨫ì ç⥭¨ï  áᥬ¡«¥p 
  1826. 3*2Ratt_ç¨â âì ª ª  áᥬ¡«¥à ¢ á⨫¥ AT&T
  1827. 3*2Rintel_ç¨â âì ª ª  áᥬ¡«¥à ¢ á⨫¥ Intel
  1828. 3*2Rdirect_⥪áâ  áᥬ¡«¥à  ¯¥p¥¤ ¢ âì ­¥¯®á।á⢥­­®  áᥬ¡«¥ày
  1829. 3*1O<x>_â¨¯ë ®¯â¨¬¨§ æ¨©
  1830. 3*2Og_£¥­¥p¨p®¢ âì ¬¥­ì訩 ª®¤
  1831. 3*2OG_£¥­¥p¨p®¢ âì ¡ëáâpë© ª®¤ (¯® y¬®«ç ­¨î)
  1832. 3*2Or_á®åp ­ïâì ­¥ª®â®àë¥ ¯¥à¥¬¥­­ë¥ ¢ ॣ¨áâp å
  1833. 3*2Ou_¢ª«îç¨âì ­¥®¯à¥¤¥«¥­­ë¥ ®¯â¨¬¨§ æ¨¨ (á¬. ¤®ªã¬¥­â æ¨î)
  1834. 3*2O1_yp®¢¥­ì 1 ®¯â¨¬¨§ æ¨¨ (¡ëáâàë¥ ®¯â¨¬¨§ æ¨¨)
  1835. 3*2O2_yp®¢¥­ì 2 ®¯â¨¬¨§ æ¨¨ (-O1 + ¡®«¥¥ ¬¥¤«¥­­ë¥ ®¯â¨¬¨§ æ¨¨)
  1836. 3*2O3_yp®¢¥­ì 3 ®¯â¨¬¨§ æ¨¨ (â®â ¦¥ á ¬ë© ª ª -O2u)
  1837. 3*2Op_⨯ ¯à®æ¥áá®à , ¤«ï ª®â®p®£® ¯p®¨á室¨â ª®¬¯¨«ïæ¨ï:
  1838. 3*3Op1_¤«ï ¯à®æ¥áá®à  386/486
  1839. 3*3Op2_¤«ï ¯à®æ¥áá®à Pentium/PentiumMMX (tm)
  1840. 3*3Op3_¯à®æ¥áá®à Pentium PRO/Pentium II/Cyrix 6X86/AMD K6 (tm)
  1841. 3*1T<x>_⨯ ®¯¥à æ¨®­­ ï á¨á⥬ë, ¤«ï ª®â®p®© ¯p®¨á室¨â ª®¬¯¨«ïæ¨ï:
  1842. 3*2TGO32V1_version 1 (DJ Delorie à áè¨à¨â¥«ì DOS)
  1843. 3*2TGO32V2_version 2 (DJ Delorie à áè¨à¨â¥«ì DOS)
  1844. 3*2TLINUX_Linux
  1845. 3*2TOS2_OS/2 2.x
  1846. 3*2TWin32_Windows 32 Bit
  1847. 3*1W<x>_Win32 ®¯æ¨¨
  1848. 3*1WB<x>_ “áâ ­®¢ª  Image ¡ §ë ¢ è¥áâ­ ¤æ¥â¨à¨ç­®¥ <x> §­ ç¥­¨¥
  1849. 3*1WC_ Ž¯à¥¤¥«¨âì, çâ® íâ® ¡ã¤¥â ª®­á®«ì­®¥ ¯à¨«®¦¥­¨¥
  1850. 3*1WD_ ˆá¯®«ì§®¢ âì DEFFILE ¤«ï íªá¯®àâ¨à®¢ ­­ëå ä㭪権 DLL ¨«¨ EXE
  1851. 3*1WG_ Ž¯à¥¤¥«¨âì, çâ® íâ® ¡ã¤¥â GUI ¯à¨«®¦¥­¨¥
  1852. 3*1WN_ �¥ £¥­¥à¨à®¢ âì ¯¥à¥¬¥é ¥¬ë© ª®¤ (­¥®¡å®¤¨¬® ¤«ï ®â« ¤ª¨)
  1853. 3*1WR_ ƒ¥­¥à¨à®¢ âì ¯¥à¥¬¥é ¥¬ë© ª®¤
  1854. 6*1A<x>_ä®à¬ â  áᥬ¡«¥p 
  1855. 6*2Ao_Unix o-ä ©«, ¨á¯®«ì§ãî騩 GNU  áᥬ¡«¥p
  1856. 6*2Agas_GNU  áᥬ¡«¥à ä¨à¬ë Motorola
  1857. 6*2Amit_MIT ᨭ⠪á¨á (áâ àë© GAS)
  1858. 6*2Amot_áâ ­¤ pâ­ë©  áᥬ¡«¥p ä¨à¬ë Motorola
  1859. 6*1O_®¯â¨¬¨§ æ¨¨
  1860. 6*2Oa_¢ª«î砥⠮¯â¨¬¨§ â®p
  1861. 6*2Og_£¥­¥p¨p®¢ âì ¬¥­ì訩 ª®¤
  1862. 6*2OG_£¥­¥p¨p®¢ âì ¡ëáâpë© ª®¤ (¯® 㬮«ç ­¨î)
  1863. 6*2Ox_¬ ªá¨¬ «ì­ ï ®¯â¨¬¨§ æ¨ï (¥áâì ®è¨¡ª¨!)
  1864. 6*2O2_¤«ï ¯à®æ¥áá®à  MC68020+
  1865. 6*1R<x>_á⨫ì ç⥭¨ï  áᥬ¡«¥p 
  1866. 6*2RMOT_ç¨â âì ª ª Motorola- áᥬ¡«¥p
  1867. 6*1T<x>_®¯¥à æ¨®­­ ï á¨á⥬  ¤«ï ª®â®p®© ª®¬¯¨«¨py¥âáï ä ©«
  1868. 6*2TAMIGA_Commodore ��‚Œ ä¨à¬ë Commodore
  1869. 6*2TATARI_Atari ST/STe/TT
  1870. 6*2TMACOS_Macintosh m68k
  1871. 6*2TLINUX_Linux-68k
  1872. **1*_
  1873. **1?_¯®ª § âì íây á¯à ¢ªy
  1874. **1h_¯®ª § âì íây á¯à ¢ªy, ¡¥§ ®¦¨¤ ­¨ï <enter>
  1875. ]
  1876. #
  1877. # The End
  1878. #