errorn.msg 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454
  1. %%% Reordering of msg/errorn.msg respective to msg/errore.msg
  2. %%% Contains all comments from msg/errorn.msg
  3. #
  4. # $Id: errorn.msg,v 1.6 2004/01/22 21:19:36 florian Exp $
  5. # This file is part of the Free Pascal Compiler
  6. # Copyright (c) 1998-2000 by the Free Pascal Development team
  7. #
  8. # Dutch Language File for Free Pascal
  9. #
  10. # See the file COPYING.FPC, included in this distribution,
  11. # for details about the copyright.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. #
  18. # The constants are build in the following order:
  19. # <part>_<type>_<txtidentifier>
  20. #
  21. # <part> is the part of the compiler the message is used
  22. # asmr_ assembler parsing
  23. # asmw_ assembler writing/binary writers
  24. # unit_ unit handling
  25. # scan_ scanner
  26. # parser_ parser
  27. # type_ type checking
  28. # general_ general info
  29. # exec_ calls to assembler, linker, binder
  30. #
  31. # <type> the type of the message it should normally used for
  32. # f_ fatal error
  33. # e_ error
  34. # w_ warning
  35. # n_ note
  36. # h_ hint
  37. # i_ info
  38. # l_ linenumber
  39. # u_ used
  40. # t_ tried
  41. # m_ macro
  42. # p_ procedure
  43. # c_ conditional
  44. # d_ debug message
  45. # b_ display overloaded procedures
  46. # x_ executable informations
  47. #
  48. #
  49. # Enkele punten om bij het vertalen in het achterhoofd te houden:
  50. #
  51. # - "Methoden" wordt vaak foutief als "methodes" geschreven.
  52. # - "Typen" wordt vaak foutief als "types" geschreven.
  53. # - "Illegal" wordt niet met "illegaal" vertaald, maar met "ongeldig".
  54. # Illegaal betekent onwettig in het Nederlands.
  55. # - Zo wordt "execute" niet met "executeren" vertaalt maar met "uitvoeren".
  56. # Programma, hebt u nog een laatste wens voordat de trekker wordt
  57. # overgehaald?
  58. # - In het Nederlands schrijft men woorden vaker aan elkaar dan in het
  59. # Engels: "compiler switch" (2 woorden) wordt "compileroptie" (1 woord).
  60. # Let ook op voorvoegingen: "Interface and implementation names" wordt:
  61. # "Interface- en implementatienamen" (streepje!)
  62. # - Pas op met het vernederlandsen van Engelse woorden. Bijvoorbeeld
  63. # "identifieerder". Voor deze categorie woorden bestaat geen goede
  64. # vertaling. Iedereen die zo'n vernederlandsing ziet krijgt echter gelijk
  65. # een pijnscheut in zijn taalknobbel. Soms helpt een woordenboek, anders
  66. # is het beter om de engelse term te laten staan. Wat improvisatie helpt
  67. # soms ook, "symbool" is niet precies hetzelfde maar kan in dit geval
  68. # prima als vertaling gebruikt worden.
  69. #
  70. # General
  71. #
  72. # BeginOfTeX
  73. % \section{General compiler messages}
  74. % This section gives the compiler messages which are not fatal, but which
  75. % display useful information. The number of such messages can be
  76. % controlled with the various verbosity level \var{-v} switches.
  77. % \begin{description}
  78. general_t_compilername=01000_T_Gebruikte compiler: $1
  79. % When the \var{-vt} switch is used, this line tells you what compiler
  80. % is used.
  81. general_d_sourceos=01001_D_Bronsysteem: $1
  82. % When the \var{-vd} switch is used, this line tells you what the source
  83. % operating system is.
  84. general_i_targetos=01002_I_Doelsysteem: $1
  85. % When the \var{-vd} switch is used, this line tells you what the target
  86. % operating system is.
  87. general_t_exepath=01003_T_Programmalocatie: $1
  88. % When the \var{-vt} switch is used, this line tells you where the compiler
  89. % looks for its binaries.
  90. general_t_unitpath=01004_T_Locatie units: $1
  91. % When the \var{-vt} switch is used, this line tells you where the compiler
  92. % looks for compiled units. You can set this path with the \var{-Fu}
  93. general_t_includepath=01005_T_Locatie includes: $1
  94. % When the \var{-vt} switch is used, this line tells you where the compiler
  95. % looks for its include files (files used in \var{\{\$I xxx\}} statements).
  96. % You can set this path with the \var{-I} option.
  97. general_t_librarypath=01006_T_Locatie bibliotheken: $1
  98. % When the \var{-vt} switch is used, this line tells you where the compiler
  99. % looks for the libraries. You can set this path with the \var{-Fl} option.
  100. general_t_objectpath=01007_T_Locatie objectbestanden: $1
  101. % When the \var{-vt} switch is used, this line tells you where the compiler
  102. % looks for object files you link in (files used in \var{\{\$L xxx\}} statements).
  103. % You can set this path with the \var{-Fo} option.
  104. general_i_abslines_compiled=01008_I_$1 Regels gecompileerd, $2 sec.
  105. % When the \var{-vi} switch is used, the compiler reports the number
  106. % of lines compiled, and the time it took to compile them (real time,
  107. % not program time).
  108. general_f_no_memory_left=01009_F_Geen geheugen meer vrij
  109. % The compiler doesn't have enough memory to compile your program. There are
  110. % several remedies for this:
  111. % \begin{itemize}
  112. % \item If you're using the build option of the compiler, try compiling the
  113. % different units manually.
  114. % \item If you're compiling a huge program, split it up in units, and compile
  115. % these separately.
  116. % \item If the previous two don't work, recompile the compiler with a bigger
  117. % heap (you can use the \var{-Ch} option for this, \seeo{Ch})
  118. % \end{itemize}
  119. % \end{description}
  120. #
  121. # Scanner
  122. #
  123. % \section{Scanner messages.}
  124. % This section lists the messages that the scanner emits. The scanner takes
  125. % care of the lexical structure of the pascal file, i.e. it tries to find
  126. % reserved words, strings, etc. It also takes care of directives and
  127. % conditional compiling handling.
  128. % \begin{description}
  129. general_i_writingresourcefile=01010_I_Schrijven van resource string tabel bestand: $1
  130. % This message is shown when the compiler writes the Resource String Table
  131. % file containing all the resource strings for a program.
  132. general_e_errorwritingresourcefile=01011_E_Schrijven van resource string tabel bestand: $1
  133. % This message is shown when the compiler encountered an error when writing
  134. % the Resource String Table file
  135. % \end{description}
  136. #
  137. # Scanner
  138. #
  139. % \section{Scanner messages.}
  140. % This section lists the messages that the scanner emits. The scanner takes
  141. % care of the lexical structure of the pascal file, i.e. it tries to find
  142. % reserved words, strings, etc. It also takes care of directives and
  143. % conditional compiling handling.
  144. % \begin{description}
  145. general_i_fatal=01012_I_Fatale fout:
  146. % Prefix for Fatal Errors
  147. general_i_error=01013_I_Fout:
  148. % Prefix for Errors
  149. general_i_warning=01014_I_Waarschuwing:
  150. % Prefix for Warnings
  151. general_i_note=01015_I_Noot:
  152. % Prefix for Notes
  153. general_i_hint=01016_I_Tip:
  154. % Prefix for Hints
  155. general_e_path_does_not_exist=01017_E_Pad "$1" bestaat niet
  156. % The specified path does not exist.
  157. general_f_compilation_aborted=01018_F_Compilatie afgebroken
  158. % \end{description}
  159. #
  160. # Scanner
  161. #
  162. # 02063 is the last used one
  163. #
  164. % \section{Scanner messages.}
  165. % This section lists the messages that the scanner emits. The scanner takes
  166. % care of the lexical structure of the pascal file, i.e. it tries to find
  167. % reserved words, strings, etc. It also takes care of directives and
  168. % conditional compiling handling.
  169. % \begin{description}
  170. scan_f_end_of_file=02000_F_Onverwacht einde van bestand
  171. % this typically happens in one of the following cases :
  172. % \begin{itemize}
  173. % \item The source file ends before the final \var{end.} statement. This
  174. % happens mostly when the \var{begin} and \var{end} statements aren't
  175. % balanced;
  176. % \item An include file ends in the middle of a statement.
  177. % \item A comment wasn't closed.
  178. % \end{itemize}
  179. scan_f_string_exceeds_line=02001_F_String langer dan regel
  180. % You forgot probably to include the closing ' in a string, so it occupies
  181. % multiple lines.
  182. scan_f_illegal_char=02002_F_ongeldig teken "$1" ($2)
  183. % An illegal character was encountered in the input file.
  184. scan_f_syn_expected=02003_F_Taalfout: $2 verwacht in kolom $1
  185. % This indicates that the compiler expected a different token than
  186. % the one you typed. It can occur almost everywhere where you make a
  187. % mistake against the pascal language.
  188. scan_t_start_include_file=02004_TL_Ingevoegd bestand $1 word geopend
  189. % When you provide the \var{-vt} switch, the compiler tells you
  190. % when it starts reading an included file.
  191. scan_w_comment_level=02005_W_Commentaar van niveau $1 gevonden
  192. % When the \var{-vw} switch is used, then the compiler warns you if
  193. % it finds nested comments. Nested comments are not allowed in Turbo Pascal
  194. % and can be a possible source of errors.
  195. scan_n_ignored_switch=02008_N_Genegeerde compileroptie $1
  196. % With \var{-vn} on, the compiler warns if it ignores a switch
  197. scan_w_illegal_switch=02009_W_Foutieve compileroptie $1
  198. % You included a compiler switch (i.e. \var{\{\$... \}}) which the compiler
  199. % doesn't know.
  200. scan_w_switch_is_global=02010_W_Deze compileroptie heeft ook een globaal effect
  201. % When \var{-vw} is used, the compiler warns if a switch is global.
  202. scan_e_illegal_char_const=02011_E_Foutieve constante voor een karakter
  203. % This happens when you specify a character with its ASCII code, as in
  204. % \var{\#96}, but the number is either illegal, or out of range. The range
  205. % is 1-255.
  206. scan_f_cannot_open_input=02012_F_Kan bestand "$1" niet openen
  207. % \fpc cannot find the program or unit source file you specified on the
  208. % command line.
  209. scan_f_cannot_open_includefile=02013_F_Kan ingevoerd bestand niet openen $1
  210. % \fpc cannot find the source file you specified in a \var{\{\$include ..\}}
  211. % statement.
  212. scan_e_illegal_pack_records=02015_E_Ongeldige alignatie-aanduiding voor records: "$1"
  213. % You are specifying the \var{\{\$PACKRECORDS n\} } or \var{\{\$ALIGN n\} }
  214. % with an illegal value for \var{n}. For \$PACKRECORDS valid alignments are 1, 2, 4, 8, 16, 32, C,
  215. % NORMAL, DEFAULT, and for \$ALIGN valid alignment are 1, 2, 4, 8, 16, 32, ON,
  216. % OFF. Under mode MacPas \$ALIGN also supports MAC68K, POWER and RESET.
  217. scan_e_illegal_pack_enum=02016_E_Ongeldige enumeratie grootte aanduiding "$1"
  218. % You are specifying the \var{\{\$PACKENUM n\}} with an illegal value for
  219. % \var{n}. Only 1,2,4, NORMAL or DEFAULT are valid here.
  220. scan_e_endif_expected=02017_E_$ENDIF verwacht voor $1 op $2 $3 lijn $4
  221. % Your conditional compilation statements are unbalanced.
  222. scan_e_preproc_syntax_error=02018_E_Taalfout bij het compileren van een conditionele compilatie uitdrukking
  223. % There is an error in the expression following the \var{\{\$if ..\}} compiler
  224. % directive.
  225. scan_e_error_in_preproc_expr=02019_E_Evalueren van een conditionele compilatie uitdrukking
  226. % There is an error in the expression following the \var{\{\$if ..\}} compiler
  227. % directive.
  228. scan_w_macro_cut_after_255_chars=02020_W_Macro inhoud is afgekapt op 255 karakters voor evaluatie
  229. % The contents of macros cannot be longer than 255 characters. This is a
  230. % safety in the compiler, to prevent buffer overflows. This is shown as a
  231. % warning, i.e. when the \var{-vw} switch is used.
  232. scan_e_endif_without_if=02021_E_ENDIF zonder IF(N)DEF
  233. % Your \var{\{\$IFDEF ..\}} and {\{\$ENDIF\}} statements aren't balanced.
  234. scan_f_user_defined=02022_F_Gebruiker definitie: $1
  235. % A user defined fatal error occurred. see also the \progref
  236. scan_e_user_defined=02023_E_Gebruiker definitie: $1
  237. % A user defined error occurred. see also the \progref
  238. scan_w_user_defined=02024_W_Gebruiker definitie: $1
  239. % A user defined warning occurred. see also the \progref
  240. scan_n_user_defined=02025_N_Gebruiker definitie: $1
  241. % A user defined note was encountered. see also the \progref
  242. scan_h_user_defined=02026_H_Gebruiker definitie: $1
  243. % A user defined hint was encountered. see also the \progref
  244. scan_i_user_defined=02027_I_Gebruiker definitie: $1
  245. % User defined information was encountered. see also the \progref
  246. scan_e_keyword_cant_be_a_macro=02028_E_Sleutelwoord herdefinieren als macro heeft geen effect
  247. % You cannot redefine keywords with macros.
  248. scan_f_macro_buffer_overflow=02029_F_Macro buffer overflow bij lezen of expansie van macro
  249. % Your macro or its result was too long for the compiler.
  250. scan_w_macro_too_deep=02030_W_Uitwerken van macros heeft niveau 16 overschreden
  251. % When expanding a macro, macros have been nested to a level of 16.
  252. % The compiler will expand no further, since this may be a sign that
  253. % recursion is used.
  254. scan_w_wrong_styled_switch=02031_W_Compiler opties in delphi commentaar stijl zijn niet ondersteund
  255. % Compiler switches should be in normal pascal style comments.
  256. scan_d_handling_switch=02032_DL_Behandel schakelaar "$1"
  257. % When you set debugging info on (\var{-vd}) the compiler tells you when it
  258. % is evaluating conditional compile statements.
  259. scan_c_endif_found=02033_CL_ENDIF $1 gevonden
  260. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  261. % where it encounters conditional statements.
  262. scan_c_ifdef_found=02034_CL_IFDEF $1 gevonden, $2
  263. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  264. % where it encounters conditional statements.
  265. scan_c_ifopt_found=02035_CL_IFOPT $1 gevonden, $2
  266. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  267. % where it encounters conditional statements.
  268. scan_c_if_found=02036_CL_IF $1 gevonden, $2
  269. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  270. % where it encounters conditional statements.
  271. scan_c_ifndef_found=02037_CL_IFNDEF $1 gevonden, $2
  272. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  273. % where it encounters conditional statements.
  274. scan_c_else_found=02038_CL_ELSE $1 gevonden, $2
  275. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  276. % where it encounters conditional statements.
  277. scan_c_skipping_until=02039_CL_Negeer tot...
  278. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  279. % where it encounters conditional statements, and whether it is skipping or
  280. % compiling parts.
  281. scan_i_press_enter=02040_I_Druk <return> om verder te gaan
  282. % When the \var{-vi} switch is used, the compiler stops compilation
  283. % and waits for the \var{Enter} key to be pressed when it encounters
  284. % a \var{\{\$STOP\}} directive.
  285. scan_w_unsupported_switch=02041_W_Niet ondersteunde optie $1
  286. % When warings are turned on (\var{-vw}) the compiler warns you about
  287. % unsupported switches. This means that the switch is used in Delphi or
  288. % Turbo Pascal, but not in \fpc
  289. scan_w_illegal_directive=02042_W_Ongeldige compiler optie $1
  290. % When warings are turned on (\var{-vw}) the compiler warns you about
  291. % unrecognised switches. For a list of recognised switches, \progref
  292. scan_t_back_in=02043_TL_Terug in $1
  293. % When you use (\var{-vt}) the compiler tells you when it has finished
  294. % reading an include file.
  295. %
  296. %
  297. %
  298. scan_w_unsupported_app_type=02044_W_Niet ondersteund programmatype: $1
  299. % It is not possible to switch from one assembler reader to another
  300. % inside an assmebler block. The new reader will be used for next
  301. % assembler statement only.
  302. scan_w_app_type_not_support=02045_W_$APPTYPE niet ondersteund op doelsysteem
  303. % The \var{\{\$APPTYPE\}} directive is supported by win32 applications only.
  304. scan_w_description_not_support=02046_W_DESCRIPTIION is niet ondersteund op het geselecteerde OS
  305. % The \var{\{\$DESCRIPTION\}} directive is not supported on this target OS
  306. scan_n_version_not_support=02047_N_VERSION is niet ondersteund door het doel OS.
  307. % The \var{\{\$VERSION\}} directive is only supported by win32 target.
  308. scan_n_only_exe_version=02048_N_VERSION kan alleen voor executables of bibliotheken
  309. % The \var{\{\$VERSION\}} directive is only used for executable or DLL sources.
  310. scan_w_wrong_version_ignored=02049_W_verkeerd formaat voor VERSION directive $1
  311. % The \var{\{\$VERSION\}} directive format is major_version.minor_version
  312. % where major_version and minor_version are words.
  313. scan_e_illegal_asmmode_specifier=02050_E_Ongeldige assembler-stijl opgegeven: "$1"
  314. % When you specify an assembler mode with the \var{\{\$ASMMODE xxx\}}
  315. % the compiler didn't recognize the mode you specified.
  316. scan_w_no_asm_reader_switch_inside_asm=02051_W_ASM lezer-optie is niet mogelijk in een asm instructie, $1 ingesteld voor volgende blok
  317. % It is not possible to switch from one assembler reader to another
  318. % inside an assmebler block. The new reader will be used for next
  319. % assembler statement only.
  320. scan_e_wrong_switch_toggle=02052_E_Verkeerde optiewaarde, gebruik ON/OFF of +/-
  321. % You need to use ON or OFF or a + or - to toggle the switch
  322. scan_e_resourcefiles_not_supported=02053_E_Resource bestanden worden niet ondersteund op doel OS
  323. % The target you are compiling for doesn't support Resource files. The
  324. % only target which can use resource files is Win32
  325. %
  326. % \end{description}
  327. #
  328. # Parser
  329. #
  330. % \section{Parser messages}
  331. % This section lists all parser messages. The parser takes care of the
  332. % semantics of you language, i.e. it determines if your pascal constructs
  333. % are correct.
  334. % \begin{description}
  335. scan_w_include_env_not_found=02054_W_Include omgevingsvariabele $1 niet gevonden in omgeving
  336. % The included environment variable can't be found in the environment, it'll
  337. % be replaced by an empty string instead.
  338. scan_e_invalid_maxfpureg_value=02055_E_Ongeldige waarde voor FPU register limiet
  339. % Valid values for this directive are 0..8 and NORMAL/DEFAULT
  340. % \end{description}
  341. #
  342. # Parser
  343. #
  344. % \section{Parser messages}
  345. % This section lists all parser messages. The parser takes care of the
  346. % semantics of you language, i.e. it determines if your pascal constructs
  347. % are correct.
  348. % \begin{description}
  349. scan_w_only_one_resourcefile_supported=02056_W_Slechts 1 resource bestand ondersteund voor dit operating systeem.
  350. % The target you are compiling for supports only one resource file. This is the
  351. % case of OS/2 (EMX) currently. The first resource file found is used, the
  352. % others are discarded.
  353. % \end{description}
  354. #
  355. # Parser
  356. #
  357. % \section{Parser messages}
  358. % This section lists all parser messages. The parser takes care of the
  359. % semantics of you language, i.e. it determines if your pascal constructs
  360. % are correct.
  361. % \begin{description}
  362. scan_w_macro_support_turned_off=02057_W_Macro ondersteuning is uitgeschakeld
  363. % A macro declaration has been found, but macro support is currently off,
  364. % so the declaration will be ignored. To turn macro support on compile with
  365. % -Sm on the commandline or add \{\$MACRO ON\} in the source
  366. scan_e_invalid_interface_type=02058_E_Ongeldig interface type opgegeven. Geldige waarden zijn COM, CORBA of DEFAULT
  367. % The interface type that was specified is not supported
  368. scan_w_appid_not_support=02059_W_APPID is slechts ondersteund op PalmOS
  369. % The \var{\{\$APPID\}} directive is only supported for the PalmOS target.
  370. scan_w_appname_not_support=02060_W_APPNAME is slechts ondersteund op PalmOS
  371. % The \var{\{\$APPNAME\}} directive is only supported for the PalmOS target.
  372. scan_e_string_exceeds_255_chars=02061_E_Constante tekenreeksen (strings) kunnen niet langer dan 255 karakters zijn.
  373. % A single string constant can contain at most 255 chars. Try splitting up the
  374. % string in multiple smaller parts and concatenate them with a + operator.
  375. scan_f_include_deep_ten=02062_F_Include bestanden kunnen maar tot op 16 niveaus genest worden
  376. % When including include files the files have been nested to a level of 16.
  377. % The compiler will expand no further, since this may be a sign that
  378. % recursion is used.
  379. scan_e_too_many_push=02063_F_Te veel PUSH niveaus
  380. % A maximum of 20 levels is allowed. This error occurs only in mode MacPas.
  381. scan_e_too_many_pop=02064_E_POP instructie zonder voorafgaande PUSH instructie
  382. % This error occurs only in mode MacPas.
  383. scan_e_error_macro_lacks_value=02065_E_Macro of compilatie-variabele "$1" heeft geen waarde
  384. % Thus the conditional compile time expression cannot be evaluated.
  385. scan_e_wrong_switch_toggle_default=02066_E_Verkeerde schakel-waarde. Gebruik ON/OFF/DEFAULT of +/-/*
  386. % You need to use ON or OFF or DEFAULT or a + or - or * to toggle the switch
  387. scan_e_mode_switch_not_allowed=02067_E_MODE schakel "$1" is niet toegestaan op deze plaats.
  388. % A mode switch has already been encountered, or, in case of option -Mmacpas,
  389. % a mode switch occur after UNIT.
  390. scan_e_error_macro_undefined=02068_E_Macro of compilatie-variabele "$1" is niet gedefinieerd
  391. % Thus the conditional compile time expression cannot be evaluated. Only in mode MacPas.
  392. scan_e_utf8_bigger_than_65535=02069_E_UTF-8 code groter dan 65535 gevonden
  393. % \fpc handles utf-8 strings internally as widestrings e.g. the char codes are limited to 65535
  394. scan_e_utf8_malformed=02070_E_Ongeldige UTF-8 tekenreeks
  395. % The given string isn't a valid UTF-8 string
  396. scan_c_switching_to_utf8=02071_C_UTF-8 handtekening gevonden, gebruik UTF-8 codering
  397. % The compiler found an UTF-8 encoding signature (\$ef, \$bb, \$bf) at the beginning of a file,
  398. % so it interprets it as an UTF-8 file
  399. scan_e_compile_time_typeerror=02072_E_Compilatie-expressie: "$1" gevraagd, maar kreeg "$2" op "$3"
  400. % Type check of a compile time expression failed.
  401. % \end{description}
  402. #
  403. # Parser
  404. #
  405. # 03192 is the last used one
  406. #
  407. % \section{Parser messages}
  408. % This section lists all parser messages. The parser takes care of the
  409. % semantics of you language, i.e. it determines if your pascal constructs
  410. % are correct.
  411. % \begin{description}
  412. parser_e_syntax_error=03000_E_Parser - Taalfout
  413. % An error against the Turbo Pascal language was encountered. This happens
  414. % typically when an illegal character is found in the sources file.
  415. parser_e_dont_nest_interrupt=03004_E_INTERRUPT procedures kunnen niet genest worden
  416. % An \VAR{INTERRUPT} procedure must be global.
  417. parser_w_proc_directive_ignored=03005_W_Procedure type $1 ignored
  418. % This is a warning. \var{REGISTER},\var{REINTRODUCE} is ignored by FPC programs for now.
  419. % This is introduced first for Delphi compatibility.
  420. parser_e_no_overload_for_all_procs=03006_E_Not all declarations of $1 are declared with OVERLOAD
  421. % When you want to use overloading using the \var{OVERLOAD} directive, then
  422. % all declarations need to have \var{OVERLOAD} specified.
  423. parser_e_export_name_double=03008_E_Dubbel geexporteerde functienaam $1
  424. % Exported function names inside a specific DLL must all be different
  425. parser_e_export_ordinal_double=03009_E_Dubbel geexporteerde functie index $1
  426. % Exported function names inside a specific DLL must all be different
  427. parser_e_export_invalid_index=03010_E_Ongeldige index for geexporteerde functie
  428. % DLL function index must be in the range \var{1..\$FFFF}
  429. parser_w_parser_reloc_no_debug=03011_W_Relocatable bibliotheek of applicatie $1 debug informatie niet ondersteund.
  430. parser_w_parser_win32_debug_needs_WN=03012_W_Om win32 code te debuggen moet relocatie afgezet worden door de -WN optie
  431. % Stabs info is wrong for relocatable DLL or EXES use -WN
  432. % if you want to debug win32 executables.
  433. parser_e_constructorname_must_be_init=03013_E_Constructornaam moet INIT zijn
  434. % You are declaring a constructor with a name which isn't \var{init}, and the
  435. % \var{-Ss} switch is in effect. See the \var{-Ss} switch (\seeo{Ss}).
  436. parser_e_destructorname_must_be_done=03014_E_Destructornaam moet DONE zijn
  437. % You are declaring a constructor with a name which isn't \var{done}, and the
  438. % \var{-Ss} switch is in effect. See the \var{-Ss} switch (\seeo{Ss}).
  439. parser_e_proc_inline_not_supported=03016_E_Procedure type INLINE wordt niet ondersteund
  440. % You tried to compile a program with C++ style inlining, and forgot to
  441. % specify the \var{-Si} option (\seeo{Si}). The compiler doesn't support C++
  442. % styled inlining by default.
  443. parser_w_constructor_should_be_public=03018_W_Constructor mag niet private or protected zijn
  444. % Constructors must be in the 'public' part of an object (class) declaration.
  445. parser_w_destructor_should_be_public=03019_W_Destructor mag niet private or protected zijn
  446. % Destructors must be in the 'public' part of an object (class) declaration.
  447. parser_n_only_one_destructor=03020_N_Klasse heeft slechts 1 destructor
  448. % You can declare only one destructor for a class.
  449. parser_e_no_local_objects=03021_E_Lokale klassedefinities zijn niet toegestaan
  450. % Classes must be defined globally. They cannot be defined inside a
  451. % procedure or function
  452. parser_f_no_anonym_objects=03022_F_Anonieme klassedefinities zijn niet toegestaan
  453. % An invalid object (class) declaration was encountered, i.e. an
  454. % object or class without methods that isn't derived from another object or
  455. % class. For example:
  456. % \begin{verbatim}
  457. % Type o = object
  458. % a : longint;
  459. % end;
  460. % \end{verbatim}
  461. % will trigger this error.
  462. parser_n_object_has_no_vmt=03023_N_Het object "$1Ã" heeft geen VMT
  463. % This is a note indicating that the declared object has no
  464. % virtual method table.
  465. parser_e_illegal_parameter_list=03024_E_Foutieve parameterlijst
  466. % You are calling a function with parameters that are of a different type than
  467. % the declared parameters of the function.
  468. parser_e_wrong_parameter_size=03026_E_Onjuist aantal parameters meegegeven
  469. % There is an error in the parameter list of the function or procedure,
  470. % the number of parameters is not correct.
  471. parser_e_overloaded_no_procedure=03027_E_Overladen symbool "$1" is geen procedure of functie
  472. % The compiler encountered a symbol with the same name as an overloaded
  473. % function, but it isn't a function it can overload.
  474. parser_e_overloaded_have_same_parameters=03028_E_Overroepen procedures hebben identieke parameterlijst
  475. % You're declaring overloaded functions, but with the same parameter list.
  476. % Overloaded function must have at least 1 different parameter in their
  477. % declaration.
  478. parser_e_header_dont_match_forward=03029_E_Declaratie komt niet overeen met eerdere declaratie: $1
  479. % You declared a function with same parameters but
  480. % different result type or function specifiers.
  481. parser_e_header_different_var_names=03030_E_Procedurehoofding $1 komt niet overeen met eerdere declaratie: variabelenaam veranderd $2 => $3
  482. % You declared the function in the \var{interface} part, or with the
  483. % \var{forward} directive, but define it with a different parameter list.
  484. parser_n_duplicate_enum=03031_N_Waarden in opsommingstypes moeten steeds stijgen
  485. % \fpc allows enumeration constructions as in C. Given the following
  486. % declaration two declarations:
  487. % \begin{verbatim}
  488. % type a = (A_A,A_B,A_E:=6,A_UAS:=200);
  489. % type a = (A_A,A_B,A_E:=6,A_UAS:=4);
  490. % \end{verbatim}
  491. % The second declaration would produce an error. \var{A\_UAS} needs to have a
  492. % value higher than \var{A\_E}, i.e. at least 7.
  493. parser_e_no_with_for_variable_in_other_segments=03033_E_With kan niet gebruikt worden voor variabelen in verschillende segmenten
  494. % With stores a variable locally on the stack,
  495. % but this is not possible if the variable belongs to another segment.
  496. parser_e_too_much_lexlevel=03034_E_Procedure meer dan 31 keer genest
  497. % You can nest function definitions only 31 times.
  498. parser_e_range_check_error=03035_E_Bereikfout bij evalueren constanten
  499. % The constants are out of their allowed range.
  500. parser_w_range_check_error=03036_W_Bereikscontrolefout bij evalueren constantes.
  501. % The constants are out of their allowed range.
  502. parser_e_double_caselabel=03037_E_Dubbel case-element
  503. % You are specifying the same label 2 times in a \var{case} statement.
  504. parser_e_case_lower_less_than_upper_bound=03038_E_Bovengrens van casebereik is lager dan ondergrens
  505. % The upper bound of a \var{case} label is less than the lower bound and this
  506. % is useless
  507. parser_e_type_const_not_possible=03039_E_Getypeerde constanten van klassen zijn niet toegestaan
  508. % You cannot declare a constant of type class or object.
  509. parser_e_no_overloaded_procvars=03040_E_Procedurele variabelen van overroepen procedures zijn niet toegestaan
  510. % You are trying to assign an overloaded function to a procedural variable.
  511. % This isn't allowed.
  512. parser_e_invalid_string_size=03041_E_Stringlengte moet tussen 1 en 255 liggen
  513. % The length of a string in Pascal is limited to 255 characters. You are
  514. % trying to declare a string with length lower than 1 or greater than 255
  515. % (This is not true for \var{Longstrings} and \var{AnsiStrings}.
  516. parser_w_use_extended_syntax_for_objects=03042_W_Gebruik de uitgebreide syntax van DISPOSE en NEW om nieuwe instanties van klassen te genereren
  517. % If you have a pointer \var{a} to a class type, then the statement
  518. % \var{new(a)} will not initialize the class (i.e. the constructor isn't
  519. % called), although space will be allocated. you should issue the
  520. % \var{new(a,init)} statement. This will allocate space, and call the
  521. % constructor of the class.
  522. parser_w_no_new_dispose_on_void_pointers=03043_W_Het gebruik van NEW of DISPOSE voor pointers zonder type is zinloos
  523. parser_e_no_new_dispose_on_void_pointers=03044_E_Het gebruik van NEW of DISPOSE is niet mogelijk voor pointers zonder type
  524. % You cannot use \var{new(p)} or \var{dispose(p)} if \var{p} is an untyped pointer
  525. % because no size is associated to an untyped pointer.
  526. % Accepted for compatibility in \var{tp} and \var{delphi} modes.
  527. parser_e_class_id_expected=03045_E_Klasse verwacht
  528. % This happens when the compiler scans a procedure declaration that contains
  529. % a dot,
  530. % i.e., a object or class method, but the type in front of the dot is not
  531. % a known type.
  532. parser_e_no_type_not_allowed_here=03046_E_Typesymbool is hier niet toegestaan
  533. % You cannot use a type inside an expression.
  534. parser_e_methode_id_expected=03047_E_Methode verwacht
  535. % This identifier is not a method.
  536. % This happens when the compiler scans a procedure declaration that contains
  537. % a dot, i.e., a object or class method, but the procedure name is not a
  538. % procedure of this type.
  539. parser_e_header_dont_match_any_member=03048_E_Proceduredeclaratie komt niet overeen met een methode van deze klasse $1
  540. % This identifier is not a method.
  541. % This happens when the compiler scans a procedure declaration that contains
  542. % a dot, i.e., a object or class method, but the procedure name is not a
  543. % procedure of this type.
  544. parser_d_procedure_start=03049_DL_procedure/functie $1
  545. % When using the \var{-vd} switch, the compiler tells you when it starts
  546. % processing a procedure or function implementation.
  547. parser_e_error_in_real=03050_E_Foutieve vlottende-komma constante
  548. % The compiler expects a floating point expression, and gets something else.
  549. parser_e_fail_only_in_constructor=03051_E_FAIL mag alleen in constructors gebruikt worden
  550. % You are using the \var{FAIL} instruction outside a constructor method.
  551. parser_e_no_paras_for_destructor=03052_E_Destructors hebben geen parameters
  552. % You are declaring a destructor with a parameter list. Destructor methods
  553. % cannot have parameters.
  554. parser_e_only_class_methods_via_class_ref=03053_E_Alleen klassemethoden kunnen gerefereerd worden via een klasse
  555. % This error occurs in a situation like the following:
  556. % \begin{verbatim}
  557. % Type :
  558. % Tclass = Class of Tobject;
  559. %
  560. % Var C : TClass;
  561. %
  562. % begin
  563. % ...
  564. % C.free
  565. % \end{verbatim}
  566. % \var{Free} is not a class method and hence cannot be called with a class
  567. % reference.
  568. parser_e_only_class_methods=03054_E_Alleen klassemethoden zijn toegankelijk in klassen
  569. % This is related to the previous error. You cannot call a method of an object
  570. % from a inside a class method. The following code would produce this error:
  571. % \begin{verbatim}
  572. % class procedure tobject.x;
  573. %
  574. % begin
  575. % free
  576. % \end{verbatim}
  577. % Because free is a normal method of a class it cannot be called from a class
  578. % method.
  579. parser_e_case_mismatch=03055_E_Type van constante komt niet overeen met dat van de case uitrukking
  580. % One of the labels is not of the same type as the case variable.
  581. parser_e_illegal_symbol_exported=03056_E_Het symbool kan niet uitgevoerd worden uit een bibliotheek
  582. % You can only export procedures and functions when you write a library. You
  583. % cannot export variables or constants.
  584. parser_w_should_use_override=03057_W_Een virtuele methode moet met OVERRIDE overroepen worden: $1
  585. % A method that is declared \var{virtual} in a parent class, should be
  586. % overridden in the descendent class with the \var{override} directive. If you
  587. % don't specify the \var{override} directive, you will hide the parent method;
  588. % you will not override it.
  589. parser_e_nothing_to_be_overridden=03058_E_Er is geen geerfde methode die overroepen kan worden: $1
  590. % You try to \var{override} a virtual method of a parent class that doesn't
  591. % exist.
  592. parser_e_no_procedure_to_access_property=03059_E_Er is geen lid om de eigenschap te bereiken
  593. % You specified no \var{read} directive for a property.
  594. parser_w_stored_not_implemented=03060_W_Stored prorperty directive is not yet implemented
  595. % The \var{stored} directive is not yet implemented
  596. parser_e_ill_property_access_sym=03061_E_Ongeldig symbool voor eigenschaptoegang
  597. % There is an error in the \var{read} or \var{write} directives for an array
  598. % property. When you declare an array property, you can only access it with
  599. % procedures and functions. The following code woud cause such an error.
  600. % \begin{verbatim}
  601. % tmyobject = class
  602. % i : integer;
  603. % property x [i : integer]: integer read I write i;
  604. % \end{verbatim}
  605. %
  606. parser_e_cant_access_protected_member=03062_E_Kan niet in beschermd veld van een object schrijven
  607. % Fields that are declared in a \var{protected} section of an object or class
  608. % declaration cannot be accessed outside the module wher the object is
  609. % defined, or outside descendent object methods.
  610. parser_e_cant_access_private_member=03063_E_Kan niet in prive-veld van een object schrijven
  611. % Fields that are declared in a \var{private} section of an object or class
  612. % declaration cannot be accessed outside the module where the class is
  613. % defined.
  614. parser_e_overridden_methods_not_same_ret=03066_E_Overridden methodes moeten dezelfde resultaat type hebben: "$2" wordt overridden door Ã"1$1" met een ander type
  615. % If you declare overridden methods in a class definition, they must
  616. % have the same return type.
  617. parser_e_dont_nest_export=03067_E_Als EXPORT gedeclareerde procedures kunnen niet genest worden
  618. % You cannot declare a function or procedure within a function or procedure
  619. % that was declared as an export procedure.
  620. parser_e_methods_dont_be_export=03068_E_Methoden kunnen niet geexporteerd worden.
  621. % You cannot declare a procedure that is a method for an object as
  622. % \var{export}ed. That is, your methods cannot be called from a C program.
  623. parser_e_call_by_ref_without_typeconv=03069_E_Typen van referentieparameters moeten exact overeenkomen. "$1" gekregen, "$2" verwacht.
  624. % When calling a function declared with \var{var} parameters, the variables in
  625. % the function call must be of exactly the same type. There is no automatic
  626. % type conversion.
  627. parser_e_no_super_class=03070_E_Deze klasse is geen ouderklasse van de huidige klasse
  628. % When calling inherited methods, you are trying to call a method of a strange
  629. % class. You can only call an inherited method of a parent class.
  630. parser_e_self_not_in_method=03071_E_SELF is alleen toegelaten in methoden.
  631. % You are trying to use the \var{self} parameter outside an object's method.
  632. % Only methods get passed the \var{self} parameters.
  633. parser_e_generic_methods_only_in_methods=03072_E_Methoden kunnen alleen in andere methoden worden aangeroepen met type symbool
  634. % A construction like \var{sometype.somemethod} is only allowed in a method.
  635. parser_e_illegal_colon_qualifier=03073_E_Ongeldig gebruik van ':'
  636. % You are using the format \var{:} (colon) 2 times on an expression that
  637. % is not a real expression.
  638. parser_e_illegal_set_expr=03074_E_Bereikfout in setconstructor of dubbel setelement
  639. % The declaration of a set contains an error. Either one of the elements is
  640. % outside the range of the set type, either two of the elements are in fact
  641. % the same.
  642. parser_e_pointer_to_class_expected=03075_E_Pointer naar klasse verwacht
  643. % You specified an illegal type in a \var{New} statement.
  644. % The extended synax of \var{New} needs an object as a parameter.
  645. parser_e_expr_have_to_be_constructor_call=03076_E_Uitdrukking moet een constructoraanroep zijn.
  646. % When using the extended syntax of \var{new}, you must specify the constructor
  647. % method of the object you are trying to create. The procedure you specified
  648. % is not a constructor.
  649. parser_e_expr_have_to_be_destructor_call=03077_E_Uitdrukking moet een destructoraanroep zijn
  650. % When using the extended syntax of \var{dispose}, you must specify the
  651. % destructor method of the object you are trying to dispose of.
  652. % The procedure you specified is not a destructor.
  653. parser_e_invalid_record_const=03078_E_Ongeldige volgorde van record leden
  654. % When declaring a constant record, you specified the fields in the wrong
  655. % order.
  656. parser_e_false_with_expr=03079_E_Type van uitdrukking moet class of record type zijn
  657. % A \var{with} statement needs an argument that is of the type \var{record}
  658. % or \var{class}. You are using \var{with} on an expression that is not of
  659. % this type.
  660. parser_e_void_function=03080_E_Procedures kunnen geen resultaat teruggeven
  661. % In \fpc, you can specify a return value for a function when using
  662. % the \var{exit} statement. This error occurs when you try to do this with a
  663. % procedure. Procedures cannot return a value.
  664. parser_e_constructors_always_objects=03081_E_Constructors en destructors moeten methoden zijn
  665. % You're declaring a procedure as destructor or constructor, when the
  666. % procedure isn't a class method.
  667. parser_e_operator_not_overloaded=03082_E_Operator is niet hergedefineerd
  668. % You're trying to use an overloaded operator when it isn't overloaded for
  669. % this type.
  670. parser_e_no_such_assignment=03083_E_Het is niet toegestaan de toewijzingsoperator te overroepen voor gelijke typen
  671. % You can not overload assignment for types
  672. % that the compiler considers as equal.
  673. parser_e_overload_impossible=03084_E_Het overroepen van deze operator is onmogelijk
  674. % The combination of operator, arguments and return type are
  675. % incompatible.
  676. parser_e_no_reraise_possible=03085_E_Re-raise is hier niet mogelijk
  677. % You are trying to raise an exception where it isn't allowed. You can only
  678. % raise exceptions in an \var{except} block.
  679. parser_e_no_new_or_dispose_for_classes=03086_E_De uitgebreide syntax van NEW of DISPOSE is niet toegestaan voor klassen
  680. % You cannot generate an instance of a class with the extended syntax of
  681. % \var{new}. The constructor must be used for that. For the same reason, you
  682. % cannot call \var{Dispose} to de-allocate an instance of a class, the
  683. % destructor must be used for that.
  684. parser_e_procedure_overloading_is_off=03088_E_Procedure overroepen is afgezet
  685. % When using the \var{-So} switch, procedure overloading is switched off.
  686. % Turbo Pascal does not support function overloading.
  687. parser_e_overload_operator_failed=03089_E_Deze operator kan niet overroepen worden.
  688. % You are trying to overload an operator which cannot be overloaded.
  689. % The following operators can be overloaded :
  690. % \begin{verbatim}
  691. % +, -, *, /, =, >, <, <=, >=, is, as, in, **, :=
  692. % \end{verbatim}
  693. parser_e_comparative_operator_return_boolean=03090_E_Vergelijkingsoperator moet een boolean type als resultaat hebben.
  694. % When overloading the \var{=} operator, the function must return a boolean
  695. % value.
  696. parser_e_only_virtual_methods_abstract=03091_E_Enkel virtuele methoden kunnen abstract zijn
  697. % You are declaring a method as abstract, when it isn't declared to be
  698. % virtual.
  699. parser_f_unsupported_feature=03092_F_Gebruik van niet ondersteunde functionaliteit!
  700. % You're trying to force the compiler into doing something it cannot do yet.
  701. parser_e_mix_of_classes_and_objects=03093_E_CLASSES and OBJECTS kunnen niet gemengd worden.
  702. % You cannot derive \var{objects} and \var{classes} intertwined . That is,
  703. % a class cannot have an object as parent and vice versa.
  704. parser_w_unknown_proc_directive_ignored=03094_W_Onbekende proceduredirective is genegeerd: $1
  705. % The procedure direcive you secified is unknown. Recognised procedure
  706. % directives are \var{cdecl}, \var{stdcall}, \var{popstack}, \var{pascal}
  707. % \var{register}, \var{export}.
  708. parser_e_absolute_only_one_var=03095_E_Absolute kan maar aan een variabele verbonden worden.
  709. % You cannot specify more than one variable before the \var{absolute} directive.
  710. % Thus, the following construct will provide this error:
  711. % \begin{verbatim}
  712. % Var Z : Longint;
  713. % X,Y : Longint absolute Z;
  714. % \end{verbatim}
  715. % \item [ absolute can only be associated a var or const ]
  716. % The address of a \var{absolute} directive can only point to a variable or
  717. % constant. Therefore, the following code will produce this error:
  718. % \begin{verbatim}
  719. % Procedure X;
  720. %
  721. % var p : longint absolute x;
  722. % \end{verbatim}
  723. %
  724. parser_e_absolute_only_to_var_or_const=03096_E_Absolute kan slechts aan variabelen of constanten verbonden worden.
  725. % The address of a \var{absolute} directive can only point to a variable or
  726. % constant. Therefore, the following code will produce this error:
  727. % \begin{verbatim}
  728. % Procedure X;
  729. %
  730. % var p : longint absolute x;
  731. % \end{verbatim}
  732. %
  733. parser_e_initialized_only_one_var=03097_E_Slechts 1 variabele kan geinitialiseerd worden.
  734. % You cannot specify more than one variable with a initial value
  735. % in Delphi syntax.
  736. parser_e_abstract_no_definition=03098_E_Abtracte methoden kunnen niet gedefineerd worden
  737. % Abstract methods can only be declared, you cannot implement them. They
  738. % should be overridden by a descendant class.
  739. parser_e_overloaded_must_be_all_global=03099_E_Deze overroepen procedure kan niet lokaal zijn (moet geexporteerd worden)
  740. % You are defining a overloaded function in the implementation part of a unit,
  741. % but there is no corresponding declaration in the interface part of the unit.
  742. parser_w_virtual_without_constructor=03100_W_Gebruik van virtuele methoden zonder constructor in "$1"
  743. % If you declare objects or classes that contain virtual methods, you need
  744. % to have a constructor and destructor to initialize them. The compiler
  745. % encountered an object or class with virtual methods that doesn't have
  746. % a constructor/destructor pair.
  747. parser_c_macro_defined=03101_CL_Macro gedefinieerd: $1
  748. % When \var{-vc} is used, the compiler tells you when it defines macros.
  749. parser_c_macro_undefined=03102_CL_Macro definitie verwijderd: $1
  750. % When \var{-vc} is used, the compiler tells you when it undefines macros.
  751. parser_c_macro_set_to=03103_CL_Macro $1 heeft waarde $2 gekregen
  752. % When \var{-vc} is used, the compiler tells you what values macros get.
  753. parser_i_compiling=03104_I_Compilatie van $1
  754. % When you turn on information messages (\var{-vi}), the compiler tells you
  755. % what units it is recompiling.
  756. parser_u_parsing_interface=03105_UL_Parsen van de interface van unit $1
  757. % This tells you that the reading of the interface
  758. % of the current unit starts
  759. parser_u_parsing_implementation=03106_UL_Parsen van de implementatie van unit $1
  760. % This tells you that the code reading of the implementation
  761. % of the current unit, library or program starts
  762. parser_d_compiling_second_time=03107_DL_Compilatie van $1 voor de tweede keer.
  763. % When you request debug messages (\var{-vd}) the compiler tells you what
  764. % units it recompiles for the second time.
  765. parser_e_no_property_found_to_override=03109_E_Geen eigenschap gevonden om te herdefinieren
  766. % You want to overrride a property of a parent class, when there is, in fact,
  767. % no such property in the parent class.
  768. parser_e_only_one_default_property=03110_E_Slechts 1 standaardeigenschap is toegestaan, geerfde standaardeigenschap in kind gevonden.
  769. % You specified a property as \var{Default}, but a parent class already has a
  770. % default property, and a class can have only one default property.
  771. parser_e_property_need_paras=03111_E_Standaardeigenschappen moeten van type array zijn.
  772. % Only array properties of classes can be made \var{default} properties.
  773. parser_e_constructor_cannot_be_not_virtual=03112_E_Virtuele constructors worden alleen ondersteunt in het klassemodel
  774. % You cannot have virtual constructors in objects. You can only have them
  775. % in classes.
  776. parser_e_no_default_property_available=03113_E_Geen standaardeigenschap gevonden
  777. % You try to access a default property of a class, but this class (or one of
  778. % its ancestors) doesn't have a default property.
  779. parser_e_cant_have_published=03114_E_De klasse kan geen gepubliceerde sectie hebben, gebruik {$M+}
  780. % If you want a \var{published} section in a class definition, you must
  781. % use the \var{\{\$M+\}} switch, whch turns on generation of type
  782. % information.
  783. parser_e_forward_declaration_must_be_resolved=03115_E_Declaratie van klasse $1 moet worden opgelost om de klasse als ouder te gebruiken
  784. % To be able to use an object as an ancestor object, it must be defined
  785. % first. This error occurs in the following situation:
  786. % \begin{verbatim}
  787. % Type ParentClas = Class;
  788. % ChildClass = Class(ParentClass)
  789. % ...
  790. % end;
  791. % \end{verbatim}
  792. % Where \var{ParentClass} is declared but not defined.
  793. parser_e_no_local_operator=03116_E_Lokale operatoren worden niet ondersteund
  794. % You cannot overload locally, i.e. inside procedures or function
  795. % definitions.
  796. parser_e_proc_dir_not_allowed_in_interface=03117_E_Procedure directive $1 niet toegestaan in interfacesectie
  797. % This procedure directive is not allowed in the \var{interface} section of
  798. % a unit. You can only use it in the \var{implementation} section.
  799. parser_e_proc_dir_not_allowed_in_implementation=03118_E_Procedure directive $1 niet toegestaan in implementatiesectie
  800. % This procedure directive is not defined in the \var{implementation} section of
  801. % a unit. You can only use it in the \var{interface} section.
  802. parser_e_proc_dir_not_allowed_in_procvar=03119_E_Procedure directive $1 niet toegestaan in procvar declaratie
  803. % This procedure directive cannot be part of a procedural of function
  804. % type declaration.
  805. parser_e_function_already_declared_public_forward=03120_E_Functie is al publiek/forward gedeclareerd $1
  806. % You will get this error if a function is defined as \var{forward} twice.
  807. % Or it is once in the \var{interface} section, and once as a \var{forward}
  808. % declaration in the \var{implmentation} section.
  809. parser_e_not_external_and_export=03121_E_Kan niet zowel EXPORT als EXTERNAL gebruiken
  810. % These two procedure directives are mutually exclusive
  811. parser_w_not_supported_for_inline=03123_W_$1 wordt niet ondersteund voor inline procedure/functie
  812. % Inline procedures don't support this declaration.
  813. parser_w_inlining_disabled=03124_W_Inlining uitgeschakeld
  814. % Inlining of procedures is disabled.
  815. parser_i_writing_browser_log=03125_I_Schrijven van browser logfile $1
  816. % When information messages are on, the compiler warns you when it
  817. % writes the browser log (generated with the \var{\{\$Y+ \}} switch).
  818. parser_h_maybe_deref_caret_missing=03126_H_misschien is het een pointer, ^ ontbreekt dan
  819. % The compiler thinks that a pointer may need a dereference.
  820. parser_f_assembler_reader_not_supported=03127_F_Geselecteerde assemblerlezer wordt niet ondersteund
  821. % The selected assembler reader (with \var{\{\$ASMMODE xxx\}} is not
  822. % supported. The compiler can be compiled with or without support for a
  823. % particular assembler reader.
  824. parser_e_proc_dir_conflict=03128_E_Procedure directive $1 geeft conflicten met andere directives
  825. % You specified a procedure directive that conflicts with other directives.
  826. % for instance \var{cdecl} and \var{pascal} are mutually exclusive.
  827. parser_e_call_convention_dont_match_forward=03129_E_Aanroep conventie klopt niet met voorwaartse
  828. % This error happens when you declare a function or procedure with
  829. % e.g. \var{cdecl;} but omit this directive in the implementation, or vice
  830. % versa. The calling convention is part of the function declaration, and
  831. % must be repeated in the function definition.
  832. parser_e_property_cant_have_a_default_value=03131_E_Eigenschap kan geen standaard waarde hebben
  833. % Set properties or indexed properties cannot have a default value.
  834. parser_e_property_default_value_must_const=03132_E_De standaard waarde van een eigenschap moet een constante zijn
  835. % The value of a \var{default} declared property must be knwon at compile
  836. % time. The value you specified is only known at run time. This happens
  837. % .e.g. if you specify a variable name as a default value.
  838. parser_e_cant_publish_that=03133_E_Symbool kan niet worden gepubliceerd, alleen mogelijk voor een klasse
  839. % Only class type variables can be in a \var{published} section of a class
  840. % if they are not declared as a property.
  841. parser_e_cant_publish_that_property=03134_E_Dit soort eigenschappen kunnen niet worden gepubliceerd
  842. % Properties in a \var{published} section cannot be array properties.
  843. % they must be moved to public sections. Properties in a \var{published}
  844. % section must be an ordinal type, a real type, strings or sets.
  845. parser_e_empty_import_name=03136_E_Lege importnaam opgegeven
  846. % Some targets need a name for the imported procedure or a cdecl specifier
  847. parser_e_division_by_zero=03138_E_Deling door nul
  848. % There is a divsion by zero encounted
  849. parser_e_invalid_float_operation=03139_E_Ongeldige vlottende-komma bewerking.
  850. % An operation on two real type values produced an overflow or a division
  851. % by zero.
  852. parser_e_array_lower_less_than_upper_bound=03140_E_Bovengrens van bereik is lager dan ondergrens
  853. % The upper bound of a \var{case} label is less than the lower bound and this
  854. % is not possible
  855. parser_w_string_too_long=03141_W_string "$1" is langer dan $2
  856. % The size of the constant string is larger than the size you specified in
  857. % string type definition
  858. parser_e_string_larger_array=03142_E_Stringlengte moet tussen 1 en 255 liggen
  859. % The size of the constant string is larger than the size you specified in
  860. % the array[x..y] of char definition
  861. parser_e_ill_msg_expr=03143_E_Ongeldige uitdrukking achter message optie
  862. % \fpc supports only integer or string values as message constants
  863. parser_e_ill_msg_param=03144_E_Message handlers aanvaarden slechts 1 variabele parameter
  864. % A method declared with the \var{message}-directive as message handler
  865. % can take only one parameter which must be declared as call by reference
  866. % Parameters are declared as call by reference using the \var{var}-directive
  867. parser_e_duplicate_message_label=03145_E_Dubbel message label: $1
  868. % A label for a message is used twice in one object/class
  869. parser_e_self_in_non_message_handler=03146_E_Self kan alleen een explicite parameter zijn bij string message handlers
  870. % The self parameter can be passed only explicit if it is a method which
  871. % is declared as message method handler
  872. parser_e_threadvars_only_sg=03147_E_Threadvariabelen kunnen alleen globaal of statisch zijn
  873. % Threadvars must be static or global, you can't declare a thread
  874. % local to a procedure. Local variables are always local to a thread,
  875. % because every thread has its own stack and local variables
  876. % are stored on the stack
  877. parser_f_direct_assembler_not_allowed=03148_F_Directe assemblercode wordt niet ondersteund door de interne assembler.
  878. % You can't use direct assembler when using a binary writer, choose an
  879. % other outputformat or use an other assembler reader
  880. parser_w_no_objpas_use_mode=03149_W_Laad de OBJPAS unit niet manueel, gebruik {$mode objfpc} of {$mode delphi}.
  881. % You're trying to load the ObjPas unit manual from a uses clause. This is
  882. % not a good idea to do, you can better use the \var{\{\$mode objfpc\}} or
  883. % \var{\{\$mode delphi\}}
  884. % directives which load the unit automaticly
  885. parser_e_no_object_override=03150_E_OVERRIDE kan niet gebruikt worden in objecten
  886. % Override isn't support for objects, use VIRTUAL instead to override
  887. % a method of an anchestor object
  888. parser_e_cant_use_inittable_here=03151_E_Datatypen die initializatie/finalizatie vereisen zijn niet toegestaan in variabele records.
  889. % Some data type (e.g. \var{ansistring}) needs initialization/finalization
  890. % code which is implicitly generated by the compiler. Such data types
  891. % can't be used in the variant part of a record.
  892. % \end{description}
  893. #
  894. # Type Checking
  895. #
  896. % \section{Type checking errors}
  897. % This section lists all errors that can occur when type checking is
  898. % performed.
  899. % \begin{description}
  900. parser_e_resourcestring_only_sg=03152_E_Resourcestrings kunnen alleen statisch of globaal zijn.
  901. % Resourcestring can not be declared local, only global or using the static
  902. % directive.
  903. parser_e_exit_with_argument_not__possible=03153_E_Exit met parameter is hier niet toegestaan
  904. % an exit statement with an argument for the return value can't be used here, this
  905. % can happen e.g. in \var{try..except} or \var{try..finally} blocks
  906. parser_e_stored_property_must_be_boolean=03154_E_De stored directive verwacht een boolean argument.
  907. % If you specify a storage symbol in a property declaration, it must be of
  908. % the type boolean
  909. parser_e_ill_property_storage_sym=03155_E_Dit symbool is niet toegestaan achter het stored sleutelwoord.
  910. % You can't use this type of symbol as storage specifier in property
  911. % declaration. You can use only methods with the result type boolean,
  912. % boolean class fields or boolean constants
  913. parser_e_only_publishable_classes_can__be_published=03156_E_Alleen klassen gecompileerd in $M+ modus kunnen een published sectie hebben.
  914. % In the published section of a class can be only class as fields used which
  915. % are compiled in $M+ or which are derived from such a class. Normally
  916. % such a class should be derived from TPersitent
  917. parser_e_proc_directive_expected=03157_E_Proceduredirective verwacht.
  918. % When declaring a procedure in a const block you used a ; after the
  919. % procedure declaration after which a procedure directive must follow.
  920. % Correct declarations are:
  921. % \begin{verbatim}
  922. % const
  923. % p : procedure;stdcall=nil;
  924. % p : procedure stdcall=nil;
  925. % \end{verbatim}
  926. parser_e_invalid_property_index_value=03158_E_De waarde voor een eigenschapindex moet een ordinale waarde zijn.
  927. % The value you use to index a property must be of an ordinal type, for
  928. % example an integer or enumerated type.
  929. parser_e_procname_to_short_for_export=03159_E_Procedurenaam te kort om te exporteren.
  930. % The length of the procedure/function name must be at least 2 characters
  931. % long. This is because of a bug in dlltool which doesn't parse the .def
  932. % file correct with a name of length 1.
  933. parser_e_dlltool_unit_var_problem=03160_E_Kan geen DEFFILE item genereren voor globale variabelen.
  934. parser_e_dlltool_unit_var_problem2=03161_E_Compileer zonder -WD optie
  935. % \end{description}
  936. #
  937. # Type Checking
  938. #
  939. % \section{Type checking errors}
  940. % This section lists all errors that can occur when type checking is
  941. % performed.
  942. % \begin{description}
  943. parser_f_need_objfpc_or_delphi_mode=03162_F_U moet OBJFPC (-S2) of DELPHI (-Sd) mode gebruiken om deze code te compileren
  944. % You need to use \{\$mode objfpc\} or \{\$mode delphi\} to compile this file.
  945. % Or use the equivalent commandline switches -S2 or -Sd.
  946. parser_e_no_export_with_index_for_target=03163_E_Kan niet exporteren met indexen kleiner dan $1
  947. % Exporting of functions or procedures with a specified index is not
  948. % supported on this target.
  949. parser_e_no_export_of_variables_for_target=03164_E_Exporteren van variabelen is niet ondersteund op $1
  950. % Exporting of variables is not supported on this target.
  951. parser_e_improper_guid_syntax=03165_E_Ongeldige GUID aanduiding
  952. parser_w_interface_mapping_notfound=03168_W_PGeen procedure genaamd "$1Ã" om "$2.$3" te implementeren gevonden
  953. parser_e_interface_id_expected=03169_E_Interface aanduiding verwacht
  954. % This happens when the compiler scans a \var{class} declaration that contains
  955. % \var{interface} function name mapping code like this:
  956. % \begin{verbatim}
  957. % type
  958. % TMyObject = class(TObject, IDispatch)
  959. % function IUnknown.QueryInterface=MyQueryInterface;
  960. % ....
  961. % \end{verbatim}
  962. % and the \var{interface} before the dot not listed in the inheritance list.
  963. parser_e_type_cant_be_used_in_array_index=03170_E_Type "$1" kan niet als array index type gebruikt worden
  964. % Types like \var{qword} or \var{int64} aren't allowed as array index type
  965. parser_e_no_con_des_in_interfaces=03171_E_Constructors and destructors zijn niet toegestaan in interfaces
  966. % Constructor and destructor declarations aren't allowed in interface
  967. % In the most cases the method \var{QueryInterface} of \var{IUnknown} can
  968. % be used to create a new interface.
  969. parser_e_no_access_specifier_in_interfaces=03172_E_Toegangsmethoden kunnen niet gebruikt worden in interfaces
  970. % The access specifiers \var{public}, \var{private}, \var{protected} and
  971. % \var{pusblished} can't be used in interfaces because all methods
  972. % of an interfaces must be public.
  973. parser_e_no_vars_in_interfaces=03173_E_Een interface definitie kan geen velden bevatten
  974. % Declarations of fields aren't allowed in interfaces. An interface
  975. % can contain only methods
  976. parser_e_no_local_proc_external=03174_E_Can lokale procedure niet als EXTERNAL definieren
  977. % Declaring local procedures as external is not possible. Local procedures
  978. % get hidden parameters that will make the chance of errors very high
  979. parser_w_skipped_fields_before=03175_W_Sommige velden voor "$1Ã" zijn niet geinitialiseerd
  980. % In Delphi mode, not all fields of a typed constant record have to be
  981. % initialized, but the compiler warns you when it detects such situations.
  982. parser_e_skipped_fields_before=03176_E_Sommige velden voor "$1" zijn niet geinitialiseerd
  983. % In all syntax modes but Delphi mode, you can't leave some fields uninitialized
  984. % in the middle of a typed constant record
  985. parser_w_skipped_fields_after=03177_W_Sommige velden na "$1" zijn niet geinitialiseerd
  986. % You can leave some fields at the end of a type constant record uninitialized
  987. % (the compiler will initialize them to zero automatically). This may be the cause
  988. % of subtle problems.
  989. parser_e_varargs_need_cdecl_and_external=03178_E_VARARGS aanduiding zonder CDECL of EXTERNAL
  990. % The varargs directive can only be used with procedures or functions
  991. % that are declared with \var{cdecl} and \var{external} directives. The varargs directive
  992. % is only meant to provide a compatible interface to C functions like printf.
  993. parser_e_self_call_by_value=03179_E_SELF moet een normale waarde parameter zijn
  994. % You can't declare self as a const or var parameter, it must always be
  995. % a call-by-value parameter
  996. parser_e_interface_has_no_guid=03180_E_Interface "$1" heeft geen interface definitie
  997. % When you want to assign an interface to a constant, then the interface
  998. % must have a GUID value set.
  999. parser_e_illegal_field_or_method=03181_E_Ongekend klasse-veld of methode aanduiding "$1Ã"
  1000. % Properties must refer to a field or method in the same class.
  1001. parser_w_proc_overriding_calling=03182_W_Aanroep-modus "$1Ã" vervangen door "$2"
  1002. % There are two directives in the procedure declaration that specify a calling
  1003. % convention. Only the last directive will be used
  1004. parser_e_no_procvarobj_const=03183_E_Getypeerde constanten van type "procedure of object" kunnen alleen met NIL geinitialiseerd worden
  1005. % You can't assign the address of a method to a typed constant which has a
  1006. % 'procedure of object' type, because such a constant requires two addresses:
  1007. % that of the method (which is known at compile time) and that of the object or
  1008. % class instance it operates on (which can not be known at compile time).
  1009. parser_e_default_value_only_one_para=03184_E_De default aanduiding kan maar bij 1 parameter horen.
  1010. parser_e_default_value_expected_for_para=03185_E_Default parameter vereist voor "$1"
  1011. parser_w_unsupported_feature=03186_W_Gebruik van niet-ondersteunde mogelijkheden
  1012. % You're trying to force the compiler into doing something it cannot do yet.
  1013. parser_h_c_arrays_are_references=03187_H_C arrays worden via referentie doorgegeven
  1014. % Any array passed to a C functions is passed
  1015. % by a pointer (i.e. by reference).
  1016. parser_e_C_array_of_const_must_be_last=03188_E_"C array of const" moet het laatste argument zijn
  1017. % You can not add any other argument after an \var{array of const} for
  1018. % \var{cdecl} functions, as the size pushed on stack for this argument is
  1019. % not known.
  1020. parser_h_type_redef=03189_H_Type "$1Ã" herdefinitie
  1021. % This is an indicator that a previously declared type is
  1022. % being redefined as something else. This may, or may not
  1023. % be, a cause for errors.
  1024. parser_w_cdecl_has_no_high=03190_W_CDECL functies hebben geen HIGH parameter
  1025. % Functions declared with cdecl modifier do not pass an extra implicit parameter.
  1026. parser_w_cdecl_no_openstring=03191_W_CDECL functies ondersteunen geen open strings
  1027. % Openstring is not supported for cdecl'ared functions.
  1028. parser_e_initialized_not_for_threadvar=03192_E_Kan THREADVAR variabelen niet initialiseren
  1029. % Variables declared as threadvar can not be initialized with a default value.
  1030. % The variables will always be filled with zero at the start of a new thread.
  1031. parser_e_msg_only_for_classes=03193_E_de MESSAGE aanduiding is alleen toegestaan in classes
  1032. % The message directive is only supported for Class types.
  1033. parser_e_procedure_or_function_expected=03194_E_Procedure of functie verwacht
  1034. % A class method can only be specified for procedures and functions.
  1035. parser_e_illegal_calling_convention=03195_W_Aanroep-specificatie genegeerd: "$1"
  1036. % Some calling conventions are supported only by certain CPUs. I.e. most non-i386 ports support
  1037. % only the standard ABI calling convention of the CPU.
  1038. parser_e_no_object_reintroduce=03196_E_REINTRODUCE kan niet in objecten worden gebruikt
  1039. % \var{reintroduce} is not supported for objects.
  1040. parser_e_paraloc_only_one_para=03197_E_Elk argument moet zijn eigen locatie hebben
  1041. % If locations for arguments are specified explicitly as it is required by
  1042. % some syscall conventions, each argument must have it's only location, things
  1043. % like \var{procedure p(i,j : longint 'r1');} aren't allowed
  1044. parser_e_paraloc_all_paras=03198_E_Elk argument moet een expliciete locatie hebben
  1045. % If one argument has an explicit argument location, all arguments of a procedure
  1046. % must have one.
  1047. parser_e_illegal_explicit_paraloc=03199_E_Ongekende argument locatie
  1048. % The location specified for an argument isn't recognized by the compiler
  1049. parser_e_32bitint_or_pointer_variable_expected=03200_E_32-bit integer of pointer variabele verwacht
  1050. % The libbase for MorphOS/AmigaOS can be give only as \var{longint}, \var{dword} or any pointer variable.
  1051. parser_e_goto_outside_proc=03201_E_GOTO opdrachten zijn niet toegestaan tussen verschillende procedures
  1052. % It isn't allowed to use the \var{goto} statements referencing labels outside the
  1053. % current procedure. The following example shows the problem:
  1054. % \begin{verbatim}
  1055. % ...
  1056. % procedure p1;
  1057. % label
  1058. % l1;
  1059. %
  1060. % procedure p2;
  1061. % begin
  1062. % goto l1; // This goto ISN'T allowed
  1063. % end;
  1064. %
  1065. % begin
  1066. % p2
  1067. % l1:
  1068. % end;
  1069. % ...
  1070. %
  1071. % \end{verbatim}
  1072. parser_f_too_complex_proc=03202_F_Procedure te moeilijk, te veel registers vereist
  1073. % Your procedure body is too long for the compiler. You should split the
  1074. % procedure into multiple smaller procedures.
  1075. parser_e_illegal_expression=03203_E_Ongeldige uitdrukking
  1076. % This can occur under many circumstances. Mostly when trying to evaluate
  1077. % constant expressions.
  1078. parser_e_invalid_integer=03204_E_Ongeldige integer uitdrukking
  1079. % You made an expression which isn't an integer, and the compiler expects the
  1080. % result to be an integer.
  1081. parser_e_invalid_qualifier=03205_E_Ongeldige aanduiding
  1082. % One of the following is happening :
  1083. % \begin{itemize}
  1084. % \item You're trying to access a field of a variable that is not a record.
  1085. % \item You're indexing a variable that is not an array.
  1086. % \item You're dereferencing a variable that is not a pointer.
  1087. % \end{itemize}
  1088. parser_e_upper_lower_than_lower=03206_E_Bovengrens kleiner dan ondergrens
  1089. % You are declaring a subrange, and the lower limit is higher than the high
  1090. % limit of the range.
  1091. parser_e_macpas_exit_wrong_param=03207_E_Exit parameter moet de naam zijn van de procedure waarin het gebruikt wordt
  1092. % Non local exit is not allowed. This error occurs only in mode MacPas.
  1093. parser_e_illegal_assignment_to_count_var=03208_E_Ongeldige toekenning aan lus-variabele "$1"
  1094. % The type of a \var{for} loop variable must be an ordinal type.
  1095. % Loop variables cannot be reals or strings.
  1096. parser_e_no_local_var_external=03209_E_Kan een locale variabele niet als EXTERNAL aanduiden
  1097. % Declaring local variables as external is not allowed. Only global variables can reference
  1098. % to external variables.
  1099. parser_e_proc_already_external=03210_E_De procedure is reeds als EXTERNAL aangeduid
  1100. % The procedure is already declared with the EXTERNAL directive in an interface or
  1101. % forward declaration.
  1102. parser_w_implicit_uses_of_variants_unit=03211_W_Impliciet gebruik van de VARIANTS unit
  1103. % The Variant type is used in the unit without any used unit using the Variants unit. The
  1104. % compiler has implicitly added the Variants unit to the uses list. To remove this warning
  1105. % the Variants unit needs to be added to the uses statement.
  1106. parser_e_no_static_method_in_interfaces=03212_E_Class en statische methoden kunnen niet gebruikt worden in interfaces
  1107. % The specifier \var{class} and directive \var{static} can't be used in interfaces
  1108. % because all methods of an interfaces must be public.
  1109. parser_e_arithmetic_operation_overflow=03213_E_Overflow in wiskundige berekening
  1110. % An operation on two integers values produced an overflow
  1111. parser_e_protected_or_private_expected=03214_E_Protected of Private verwacht
  1112. % \var{strict} can be only used together with \var{protected} or \var{private}.
  1113. % \end{description}
  1114. #
  1115. # Type Checking
  1116. #
  1117. # 04049 is the last used one
  1118. #
  1119. % \section{Type checking errors}
  1120. % This section lists all errors that can occur when type checking is
  1121. % performed.
  1122. % \begin{description}
  1123. type_e_mismatch=04000_E_Typen stemmen niet overeen
  1124. % This can happen in many cases:
  1125. % \begin{itemize}
  1126. % \item The variable you're assigning to is of a different type than the
  1127. % expression in the assignment.
  1128. % \item You are calling a function or procedure with parameters that are
  1129. % incompatible with the parameters in the function or procedure definition.
  1130. % \end{itemize}
  1131. type_e_incompatible_types=04001_E_Incompatibele typen: kreeg $1, verwachtte $2
  1132. % There is no conversion possible between the two types
  1133. % Another possiblity is that they are declared in different
  1134. % declarations:
  1135. % \begin{verbatim}
  1136. % Var
  1137. % A1 : Array[1..10] Of Integer;
  1138. % A2 : Array[1..10] Of Integer;
  1139. %
  1140. % Begin
  1141. % A1:=A2; { This statement gives also this error, it
  1142. % is due the strict type checking of pascal }
  1143. % End.
  1144. % \end{verbatim}
  1145. type_e_not_equal_types=04002_E_Typen komen niet overeen $1 en $2
  1146. % The types are not equal
  1147. type_e_type_id_expected=04003_E_Typesymbool verwacht
  1148. % The identifier is not a type, or you forgot to supply a type identifier.
  1149. type_e_variable_id_expected=04004_E_Variabelesymbool verwacht
  1150. % This happens when you pass a constant to a \var{Inc} var or \var{Dec}
  1151. % procedure. You can only pass variables as arguments to these functions.
  1152. type_e_integer_expr_expected=04005_E_Gehele uitdrukking verwacht, $1 gekregen
  1153. % The compiler expects an expression of type integer, but gets a different
  1154. % type.
  1155. type_e_boolean_expr_expected=04006_E_Boolean waarde verwacht, kreeg echter "$1"
  1156. % The expression must be a boolean type, it should be return true or
  1157. % false.
  1158. type_e_ordinal_expr_expected=04007_E_Ordinale expressie verwacht
  1159. % The expression must be of ordinal type, i.e., maximum a \var{Longint}.
  1160. % This happens, for instance, when you specify a second argument
  1161. % to \var{Inc} or \var{Dec} that doesn't evaluate to an ordinal value.
  1162. type_e_pointer_type_expected=04008_E_Pointer type verwacht, "$1" gekregen
  1163. % The variable or expression isn't of the type \var{pointer}. This
  1164. % happens when you pass a variable that isn't a pointer to \var{New}
  1165. % or \var{Dispose}.
  1166. type_e_class_type_expected=04009_E_Klasse type verwacht, "$1" gekregen
  1167. % The variable of expression isn't of the type \var{class}. This happens
  1168. % typically when
  1169. % \begin{enumerate}
  1170. % \item The parent class in a class declaration isn't a class.
  1171. % \item An exception handler (\var{On}) contains a type identifier that
  1172. % isn't a class.
  1173. % \end{enumerate}
  1174. type_e_cant_eval_constant_expr=04011_E_Kan constante expressie niet evalueren
  1175. % No longer in use.
  1176. type_e_set_element_are_not_comp=04012_E_Elementen van set zijn niet compatible
  1177. % You are trying to make an operation on two sets, when the set element types
  1178. % are not the same. The base type of a set must be the same when taking the
  1179. % union
  1180. type_e_set_operation_unknown=04013_E_Bewerking niet ondersteund voor sets
  1181. % several binary operations are not defined for sets
  1182. % like div mod ** (also >= <= for now)
  1183. type_w_convert_real_2_comp=04014_W_Typeconversie van vlottende-komma type naar COMP, wat een integer type is.
  1184. % An implicit type conversion from a real type to a \var{comp} is
  1185. % encountered. Since \var{Comp} is a 64 bit integer type, this may indicate
  1186. % an error.
  1187. type_h_use_div_for_int=04015_H_Gebruik DIV voor gehele getallen om geheel resultaat te krijgen
  1188. % When hints are on, then an integer division with the '/' operator will
  1189. % procuce this message, because the result will then be of type real
  1190. type_e_strict_var_string_violation=04016_E_String typen stemmen niet overeen wegens de $V+ modus
  1191. % When compiling in \var{\{\$V+\}} mode, the string you pass as a parameter
  1192. % should be of the exact same type as the declared parameter of the procedure.
  1193. type_e_succ_and_pred_enums_with_assign_not_possible=04017_E_SUCC of PRED op enumeratietypen met toekenningen zijn niet mogelijk
  1194. % When you declared an enumeration type which has assignments in it, as in C,
  1195. % like in the following:
  1196. % \begin{verbatim}
  1197. % Tenum = (a,b,e:=5);
  1198. % \end{verbatim}
  1199. % you cannot use the \var{Succ} or \var{Pred} functions on them.
  1200. type_e_cant_read_write_type=04018_E_Kan dit type variabelen niet lezen of schrijven
  1201. % You are trying to \var{read} or \var{write} a variable from or to a
  1202. % file of type text, which doesn't support that. Only integer types,
  1203. % booleans, reals, pchars and strings can be read from/written to a text file.
  1204. type_e_no_readln_writeln_for_typed_file=04019_E_Kan geen readln of writeln op getypeerde bestanden doen.
  1205. % \var{readln} and \var{writeln} are only allowed for text files.
  1206. type_e_no_read_write_for_untyped_file=04020_E_Kan geen read of write doen op ongetypeerde bestanden.
  1207. % \var{read} and \var{write} are only allowed for text or typed files.
  1208. type_e_typeconflict_in_set=04021_E_Typeconflict tussen setelementen.
  1209. % There is at least one set element which is of the wrong type, i.e. not of
  1210. % the set type.
  1211. type_w_maybe_wrong_hi_lo=04022_W_lo/hi(longint/dword) geeft hoog/laag (ipv byte) woord terug.
  1212. % \fpc supports an overloaded version of \var{lo/hi} for \var{longint/dword}
  1213. % which returns the lower/upper word of the argument. TP always uses
  1214. % a 16 bit \var{lo/hi} which returns always bits 0..7 for \var{lo} and the
  1215. % bits 8..15 for \var{hi}. If you want the TP behavior you have
  1216. % to type case the argument to \var{word/integer}
  1217. type_e_integer_or_real_expr_expected=04023_E_Integer of vlottende-komma uitdrukking verwacht
  1218. % The first argument to \var{str} must a real or integer type.
  1219. type_e_wrong_type_in_array_constructor=04024_E_Verkeerd type "$1" in array constructor
  1220. % You are trying to use a type in an array constructor which is not
  1221. % allowed.
  1222. type_e_wrong_parameter_type=04025_E_Incompatibel type voor argument #$1: kreeg $2, verwachtte $3
  1223. % You are trying to pass an invalid type for the specified parameter.
  1224. type_e_no_method_and_procedure_not_compatible=04026_E_Methode (variabele) en Procedure (variable) zijn niet compatible
  1225. % You can't assign a method to a procedure variable or a procedure to a
  1226. % method pointer.
  1227. type_e_wrong_math_argument=04027_E_Ongeldige constante opgegeven aan interne wiskundige functie
  1228. % The constant argument passed to a ln or sqrt function is out of
  1229. % the definition range of these functions.
  1230. type_e_no_addr_of_constant=04028_E_Een constante heeft geen adres
  1231. % It's not possible to get the address of a constant, because they
  1232. % aren't stored in memory, you can try making it a typed constant.
  1233. % \end{description}
  1234. #
  1235. # Symtable
  1236. #
  1237. % \section{Symbol handling}
  1238. % This section lists all the messages that concern the handling of symbols.
  1239. % This means all things that have to do with procedure and variable names.
  1240. % \begin{description}
  1241. type_e_argument_cant_be_assigned=04029_E_Kan geen waarde toekennen aan argument
  1242. % Only expressions which can be on the left side of an
  1243. % assignment can be passed as call by reference argument
  1244. % Remark: Properties can be only
  1245. % used on the left side of an assignment, but they can't be used as arguments
  1246. type_e_cannot_local_proc_to_procvar=04030_E_Kan geen lokale procedure toekennen aan procedure variabele
  1247. % It's not allowed to assign a local procedure/function to a
  1248. % procedure variable, because the calling of local procedure/function is
  1249. % different. You can only assign local procedure/function to a void pointer.
  1250. type_e_no_assign_to_addr=04031_E_Kan geen waarde toekennen aan een adres
  1251. % It's not allowed to assign a value to an address of a variable,constant,
  1252. % procedure or function. You can try compiling with -So if the identifier
  1253. % is a procedure variable.
  1254. type_e_no_assign_to_const=04032_E_Kan geen waarde toekennen aan constante
  1255. % It's not allowed to assign a value to a variable which is declared
  1256. % as a const. This is normally a parameter declared as const, to allow
  1257. % changing make the parameter value or var.
  1258. % \end{description}
  1259. #
  1260. # Symtable
  1261. #
  1262. % \section{Symbol handling}
  1263. % This section lists all the messages that concern the handling of symbols.
  1264. % This means all things that have to do with procedure and variable names.
  1265. % \begin{description}
  1266. type_e_array_required=04033_E_ARRAY type verwacht
  1267. % If you are accessing a variable using an index '[<x>]' then
  1268. % the type must be an array. In FPC mode also a pointer is allowed.
  1269. type_e_interface_type_expected=04034_E_Interface type verwacht, maar kreeg "$1"
  1270. type_w_mixed_signed_unsigned=04035_W_Mengen van mogelijk negatieve uitdrukkingen en longwords geeft een 64-bits resultaat
  1271. % If you divide (or calculate the modulus of) a signed expression by a longword (or vice versa),
  1272. % or if you have overflow and/or range checking turned on and use an arithmetic
  1273. % expression (+, -, *, div, mod) in which both signed numbers and longwords appear,
  1274. % then everything has to be evaluated in 64bit which is slower than normal
  1275. % 32bit arithmetic. You can avoid this by typecasting one operand so it
  1276. % matches the result type of the other one.
  1277. type_w_mixed_signed_unsigned2=04036_W_Mengen van mogelijk negatieve uitdrukkingen en cardinals kan tot range check fouten leiden
  1278. % If you use a binary operator (and, or, xor) and one of
  1279. % the operands is a longword while the other one is a signed expression, then,
  1280. % if range checking is turned on, you may get a range check error because in
  1281. % such a case both operands are converted to longword before the operation is
  1282. % carried out. You can avoid this by typecasting one operand so it
  1283. % matches the result type of the other one.
  1284. type_e_typecast_wrong_size_for_assignment=04037_E_Typecast heeft een verschillende grootte ($1 -> $2) in toekenning
  1285. % Type casting to a type with a different size is not allowed when the variable is
  1286. % used for assigning.
  1287. type_e_array_index_enums_with_assign_not_possible=04038_E_enumeratie typen met vaste waarden kunnen niet als array index gebruikt worden
  1288. % When you declared an enumeration type which has assignments in it, as in C,
  1289. % like in the following:
  1290. % \begin{verbatim}
  1291. % Tenum = (a,b,e:=5);
  1292. % \end{verbatim}
  1293. % you cannot use it as index of an array.
  1294. type_e_classes_not_related=04039_E_Klasse of object types "$1Ã" en "$2" zijn niet verwant
  1295. % There is a typecast from one class or object to another while the class/object
  1296. % are not related. This will probably lead to errors
  1297. type_w_classes_not_related=04040_W_Klasse types "$1" en "$2" zijn niet verwant
  1298. % There is a typecast from one class or object to another while the class/object
  1299. % are not related. This will probably lead to errors
  1300. type_e_class_or_interface_type_expected=04041_E_Klasse of interface type verwacht, maar kreeg Ã"$1Ã"
  1301. type_e_type_is_not_completly_defined=04042_E_Type "$1Ã" is niet volledig gedefinieerd
  1302. type_w_string_too_long=04043_W_String constante heeft meer karakters dan de lengte van een shortstring
  1303. % The size of the constant string, which is assigned to a shortstring,
  1304. % is longer than the maximum size of the shortstring
  1305. type_w_signed_unsigned_always_false=04044_W_De vergelijking is steeds onwaar omwille van de interval waarden
  1306. % There is a comparison between an unsigned value and a signed constant which is
  1307. % less than zero. Because of type promotion, the statement will always evaluate to
  1308. % false. Exlicitly typecast the constant to the correct range to avoid this problem.
  1309. type_w_signed_unsigned_always_true=04045_W_e vergelijking is steeds waar omwille van de interval waarden
  1310. % There is a comparison between an unsigned value and a signed constant which is
  1311. % less than zero. Because of type promotion, the statement will always evaluate to
  1312. % true. Exlicitly typecast the constant to the correct range to avoid this problem.
  1313. type_w_instance_with_abstract=04046_W_Constructie van een klasse "$1" met abstracte methoden
  1314. % An instance of a class is created which contains non-implemented abstract
  1315. % methods. This will probably lead to a runtime error 211 in the code if that
  1316. % routine is ever called. All abstract methods should be overriden.
  1317. type_h_in_range_check=04047_H_De linker operand van de IN operator moet de grootte van een byte hebben
  1318. % The left operand of the \var{in} operator is not an ordinal or enumeration which fits
  1319. % within 8-bits, this may lead to range check errors. The \var{in} operator
  1320. % currently only supports a left operand which fits within a byte. In the case of
  1321. % enumerations, the size of an element of an enumeration can be controlled with
  1322. % the \var{\{\$PACKENUM\}} or \var{\{\$Zn\}} switches.
  1323. type_w_smaller_possible_range_check=04048_W_Grootte-fout voor type, mogelijk verlies van gegevens/interval-check fout
  1324. % There is an assignment to a smaller type than the source type. This means that
  1325. % this may cause a range-check error, or may lead to possible loss of data.
  1326. type_h_smaller_possible_range_check=04049_H_Grootte-fout voor type, mogelijk verlies van gegevens/interval-check fout
  1327. % There is an assignment to a smaller type than the source type. This means that
  1328. % this may cause a range-check error, or may lead to possible loss of data.
  1329. type_e_cant_take_address_of_abstract_method=04050_E_Het adres van een abstracte methode kan niet opgevraagd worden
  1330. % An abstract method has no body, so the address of an abstract method can't be taken.
  1331. type_e_operator_not_allowed=04051_E_De operator kan niet gebruikt worden op dit type operand
  1332. % You are trying an operator that is not available for the type of the
  1333. % operands
  1334. type_e_constant_expr_expected=04052_E_Constante uitdrukking verwacht
  1335. % The compiler expects an constant expression, but gets a variable expression.
  1336. type_e_operator_not_supported_for_types=04053_E_Operatie "$1" niet ondersteund voor types "$2" en "$3"
  1337. % The operation is not allowed for the supplied types
  1338. type_e_illegal_type_conversion=04054_E_Ongeldige type-conversie: "$1" naar "$2"
  1339. % When doing a type-cast, you must take care that the sizes of the variable and
  1340. % the destination type are the same.
  1341. type_h_pointer_to_longint_conv_not_portable=04055_H_Conversies tussen ordinalen en pointers is niet overzetbaar naar andere platformen
  1342. % If you typecast a pointer to a longint (or vice-versa), this code will not compile
  1343. % on a machine using 64-bit for pointer storage.
  1344. type_w_pointer_to_longint_conv_not_portable=04056_W_Conversies tussen ordinalen en pointers is niet overzetbaar naar andere platformen
  1345. % If you typecast a pointer to a ordinal type of a different size (or vice-versa), this can
  1346. % cause problems. This is a warning to help finding the 32bit specific code where cardinal/longint is used
  1347. % to typecast pointers to ordinals. A solution is to use the ptrint/ptruint types instead.
  1348. type_e_cant_choose_overload_function=04057_E_Kan niet beslissen welke overladen functie te kiezen
  1349. % You're calling overloaded functions with a parameter that doesn't correspond
  1350. % to any of the declared function parameter lists. e.g. when you have declared
  1351. % a function with parameters \var{word} and \var{longint}, and then you call
  1352. % it with a parameter which is of type \var{integer}.
  1353. type_e_illegal_count_var=04058_E_Ongeldige lus variabele
  1354. % The type of a \var{for} loop variable must be an ordinal type.
  1355. % Loop variables cannot be reals or strings.
  1356. % \end{description}
  1357. #
  1358. # Symtable
  1359. #
  1360. # 05055 is the last used one
  1361. #
  1362. % \section{Symbol handling}
  1363. % This section lists all the messages that concern the handling of symbols.
  1364. % This means all things that have to do with procedure and variable names.
  1365. % \begin{description}
  1366. sym_e_id_not_found=05000_E_Symbool niet gevonden $1
  1367. % The compiler doesn't know this symbol. Usually happens when you misspel
  1368. % the name of a variable or procedure, or when you forgot to declare a
  1369. % variable.
  1370. sym_f_internal_error_in_symtablestack=05001_F_Interne fout in SymTableStack()
  1371. % An internal error occurred in the compiler; If you encounter such an error,
  1372. % please contact the developers and try to provide an exact description of
  1373. % the circumstances in which the error occurs.
  1374. sym_e_duplicate_id=05002_E_Dubbel symbool $1
  1375. % The identifier was already declared in the current scope.
  1376. sym_h_duplicate_id_where=05003_H_Symbool reeds gedefinieerd in $1 op lijn $2
  1377. % The identifier was already declared in a previous scope.
  1378. sym_e_unknown_id=05004_E_Onbekende symbool $1
  1379. % The identifier encountered hasn't been declared, or is used outside the
  1380. % scope where it's defined.
  1381. sym_e_forward_not_resolved=05005_E_Voorwaartse declaratie niet opgelost $1
  1382. % This can happen in two cases:
  1383. % \begin{itemize}
  1384. % \item This happens when you declare a function (in the \var{interface} part, or
  1385. % with a \var{forward} directive, but do not implement it.
  1386. % \item You reference a type which isn't declared in the current \var{type}
  1387. % block.
  1388. % \end{itemize}
  1389. sym_e_error_in_type_def=05007_E_Fout in type definitie
  1390. % There is an error in your definition of a new array type:
  1391. % \item One of the range delimiters in an array declaration is erroneous.
  1392. % For example, \var{Array [1..1.25]} will trigger this error.
  1393. sym_e_forward_type_not_resolved=05009_E_Forward declaratie niet opgelost $1
  1394. % The compiler encountered an unknown type.
  1395. sym_e_only_static_in_static=05010_E_Alleen statische variabelen kunnen gebruikt worden in statische methoden
  1396. % A static method of an object can only access static variables.
  1397. sym_f_type_must_be_rec_or_class=05012_F_Record- of klassetype verwacht
  1398. % The variable or expression isn't of the type \var{record} or \var{class}.
  1399. sym_e_no_instance_of_abstract_object=05013_E_U kunt geen vertegenwoordiger van een klasse met abstracte methoden instantieren
  1400. % You are trying to generate an instance of a class which has an abstract
  1401. % method that wasn't overridden.
  1402. sym_w_label_not_defined=05014_W_Label niet gedefineerd $1
  1403. % A label was declared, but not defined.
  1404. sym_e_label_used_and_not_defined=05015_E_Label "$1" gebruikt maar niet gedefinieerd
  1405. % A label was declared and used, but not defined.
  1406. sym_e_ill_label_decl=05016_E_Label foutief gedefineerd
  1407. % This error should never happen; it occurs if a label is defined outside a
  1408. % procedure or function.
  1409. sym_e_goto_and_label_not_supported=05017_E_GOTO en LABEL zijn afgezet (gebruik -Sg)
  1410. % You must compile a program which has \var{label}s and \var{goto} statements
  1411. % with the \var{-Sg} switch. By default, \var{label} and \var{goto} aren't
  1412. % supported.
  1413. sym_e_label_not_found=05018_E_Label niet gevonden
  1414. % A \var{goto label} was encountered, but the label isn't declared.
  1415. sym_e_id_is_no_label_id=05019_E_Symbool is geen label
  1416. % The identifier specified after the \var{goto} isn't of type label.
  1417. sym_e_label_already_defined=05020_E_Label is al gedefineerd
  1418. % You are defining a label twice. You can define a label only once.
  1419. sym_e_ill_type_decl_set=05021_E_Type declaratie van set elementen is foutief
  1420. % The declaration of a set contains an invalid type definition.
  1421. sym_e_class_forward_not_resolved=05022_E_Voorwaartse definitie van klasse niet opgelost $1
  1422. % You declared a class, but you didn't implement it.
  1423. sym_n_unit_not_used=05023_H_Unit $1 wordt niet gebruikt in $2
  1424. % The unit referenced in the \var{uses} clause is not used.
  1425. sym_h_para_identifier_not_used=05024_H_Parameter niet gebruikt $1
  1426. % This is a warning. The identifier was declared (locally or globally) but
  1427. % wasn't used (locally or globally).
  1428. sym_n_local_identifier_not_used=05025_N_Lokale variabele niet gebruikt $1
  1429. % You have declared, but not used a variable in a procedure or function
  1430. % implementation.
  1431. sym_h_para_identifier_only_set=05026_H_Waarde parameter $1 is gedeclareerd maar niet gebruikt.
  1432. % This is a warning. The identifier was declared (locally or globally)
  1433. % set but not used (locally or globally).
  1434. sym_n_local_identifier_only_set=05027_N_Lokale variabele $1 gedeclareerd maar niet gebruikt.
  1435. % The variable in a procedure or function
  1436. % implementation is declared, set but never used.
  1437. sym_h_local_symbol_not_used=05028_H_Lokaal $1 $2 is niet gebruikt
  1438. % A local symbol is never used.
  1439. sym_n_private_identifier_not_used=05029_N_Privaat veld $1.$2 wordt niet gebruikt
  1440. sym_n_private_identifier_only_set=05030_N_Privaat veld $1.$2 gedeclareerd maar niet gebruikt.
  1441. sym_n_private_method_not_used=05031_N_Private methode $1.$2 wordt nooit gebruikt.
  1442. sym_e_set_expected=05032_E_Set type verwacht
  1443. % The variable or expression isn't of type \var{set}. This happens in an
  1444. % \var{in} statement.
  1445. sym_w_function_result_not_set=05033_W_Resultaat van functie lijkt niet te zijn toegekend
  1446. % You can get this warning if the compiler thinks that a function return
  1447. % value is not set. This will not be displayed for assembler procedures,
  1448. % or procedures that contain assembler blocks.
  1449. sym_w_wrong_C_pack=05034_W_Type $1 is not aligned correctly in current record for C
  1450. % Arrays with sizes not multiples of 4 will be wrongly aligned
  1451. % for C structures.
  1452. sym_e_illegal_field=05035_E_Onbekend record lid $1
  1453. % The field doesn't exist in the record definition.
  1454. sym_w_uninitialized_local_variable=05036_W_Lokale variabele "$1" lijkt niet geinitialiseerd
  1455. % This message is displayed if the compiler thinks that a variable will
  1456. % be used (i.e. appears in the right-hand-side of an expression) when it
  1457. % was not initialized first (i.e. appeared in the left-hand side of an
  1458. % assigment)
  1459. sym_w_uninitialized_variable=05037_W_okale variabele "$1" lijkt niet geinitialiseerd
  1460. % This message is displayed if the compiler thinks that a variable will
  1461. % be used (i.e. appears in the right-hand-side of an expression) when it
  1462. % was not initialized first (i.e. appeared in the left-hand side of an
  1463. % assigment)
  1464. sym_e_id_no_member=05038_E_Geen lid met de naam $1
  1465. % When using the extended syntax of \var{new}, you must specify the constructor
  1466. % method of the class you are trying to create. The procedure you specified
  1467. % does not exist.
  1468. sym_h_param_list=05039_H_NDeclaratie "$1" gevonden
  1469. % You get this when you use the \var{-vh} switch. In case an overloaded
  1470. % procedure is not found, then all candidate overloaded procedures are
  1471. % listed, with their parameter lists.
  1472. sym_e_segment_too_large=05040_E_Data segment te groot (max. 2GB)
  1473. % You get this when you declare an array whose size exceeds the 2GB limit.
  1474. % \end{description}
  1475. #
  1476. # Codegenerator
  1477. #
  1478. % \section{Code generator messages}
  1479. % This section lists all messages that can be displayed if the code
  1480. % generator encounters an error condition.
  1481. % \begin{description}
  1482. sym_e_no_matching_implementation_found=05042_E_Geen overeenstemmende implementatie voor interface methode "$1" gevonden
  1483. % There was no matching method found which could implement the interface
  1484. % method. Check argument types and result type of the methods.
  1485. sym_w_deprecated_symbol=05043_W_Symbool "$1Ã" is afgeraden
  1486. % This means that a symbol (a variable, routine, etc...) which is
  1487. % declared as \var{deprecated} is used. Deprecated symbols may no longer
  1488. % be available in newer versions of the unit / library. Usage of this symbol
  1489. % should be avoided as much as possible.
  1490. sym_w_non_portable_symbol=05044_W_Symbool "$1" is niet overzetbaar naar andere platformen
  1491. % This means that a symbol (a variable, routine, etc...) which is
  1492. % declared as \var{platform} is used. This symbol's value, usage
  1493. % and availability is platform specific and should not be used
  1494. % if the source code must be portable.
  1495. sym_w_non_implemented_symbol=05055_W_Symbool "$1" is niet geimplementeerd
  1496. % This means that a symbol (a variable, routine, etc...) which is
  1497. % declared as \var{unimplemented} is used. This symbol is defined,
  1498. % but is not yet implemented on this specific platform.
  1499. sym_e_cant_create_unique_type=05056_E_Kan geen uniek type aanmaken van dit type
  1500. % Only simple types like ordinal, float and string types are supported when
  1501. % redefining a type with \var{type newtype = type oldtype;}.
  1502. sym_h_uninitialized_local_variable=05057_H_ Lokale variabele "$1" lijkt niet geinitialiseerd
  1503. % This message is displayed if the compiler thinks that a variable will
  1504. % be used (i.e. appears in the right-hand-side of an expression) when it
  1505. % was not initialized first (i.e. appeared in the left-hand side of an
  1506. % assigment)
  1507. sym_h_uninitialized_variable=05058_H_Lokale variabele "$1" lijkt niet geinitialiseerd
  1508. % This message is displayed if the compiler thinks that a variable will
  1509. % be used (i.e. appears in the right-hand-side of an expression) when it
  1510. % was not initialized first (i.e. appeared in the left-hand side of an
  1511. % assigment)
  1512. % \end{description}
  1513. #
  1514. # Codegenerator
  1515. #
  1516. # 06040 is the last used one
  1517. #
  1518. % \section{Code generator messages}
  1519. % This section lists all messages that can be displayed if the code
  1520. % generator encounters an error condition.
  1521. % \begin{description}
  1522. cg_e_parasize_too_big=06009_E_Parameters gebruiken meer dan 64 kilobyte
  1523. % The I386 processor limits the parameter list to 65535 bytes (the \var{RET}
  1524. % instruction causes this)
  1525. cg_e_file_must_call_by_reference=06012_E_File variabelen moeten altijd var parameters zijn
  1526. % You cannot specify files as value parameters, i.e. they must always be
  1527. % declared \var{var} parameters.
  1528. cg_e_cant_use_far_pointer_there=06013_E_U kunt daar geen far pointer gebruiken
  1529. % Free Pascal doesn't support far pointers, so you cannot take the address of
  1530. % an expression which has a far reference as a result. The \var{mem} construct
  1531. % has a far reference as a result, so the following code will produce this
  1532. % error:
  1533. % \begin{verbatim}
  1534. % var p : pointer;
  1535. % ...
  1536. % p:=@mem[a000:000];
  1537. % \end{verbatim}
  1538. cg_e_dont_call_exported_direct=06015_E_Procedures die als EXPORT gedeclareerd staan kunnen niet aangeroepen worden
  1539. % No longer in use.
  1540. cg_w_member_cd_call_from_method=06016_W_Mogelijke ongeldige aanroep van constructor of destructor
  1541. % No longer in use.
  1542. cg_n_inefficient_code=06017_N_Inefficiente code
  1543. % You construction seems dubious to the compiler.
  1544. cg_w_unreachable_code=06018_W_Deze code wordt nooit uitgevoerd
  1545. % You specified a loop which will never be executed. Example:
  1546. % \begin{verbatim}
  1547. % while false do
  1548. % begin
  1549. % {.. code ...}
  1550. % end;
  1551. % \end{verbatim}
  1552. cg_e_cant_call_abstract_method=06020_E_Abstracte methoden kunnen niet direct aangeroepen worden
  1553. % You cannot call an abstract method directy, instead you must call a
  1554. % overriding child method, because an abstract method isn't implemented.
  1555. cg_d_register_weight=06027_DL_Register $1 gewicht $2 $3
  1556. % Debugging message. Shown when the compiler considers a variable for
  1557. % keeping in the registers.
  1558. cg_d_stackframe_omited=06029_DL_Stackframe wordt niet gemaakt
  1559. % Some procedure/functions do not need a complete stack-frame, so it is omitted.
  1560. % This message will be displayed when the {-vd} switch is used.
  1561. cg_e_unable_inline_object_methods=06031_E_Kan inline niet gebruiken voor object methoden
  1562. % You cannot have inlined object methods.
  1563. cg_e_unable_inline_procvar=06032_E_Kan inline niet gebruiken voor procvar aanroepen
  1564. % A procedure with a procedural variable call cannot be inlined.
  1565. cg_e_no_code_for_inline_stored=06033_E_Geen code voor inline procedure opgeslagen
  1566. % The compiler couldn't store code for the inline procedure.
  1567. cg_e_can_access_element_zero=06035_E_Element nul van een ansi/wide- of longstring is niet toegankelijk, gebruik (set)length.
  1568. % You should use \var{setlength} to set the length of an ansi/wide/longstring
  1569. % and \var{length} to get the length of such kinf of string
  1570. cg_e_cannot_call_cons_dest_inside_with=06037_E_Constructors of destructors kunnen niet aangeroepen worden binnen een 'with' clausule
  1571. % Inside a \var{With} clause you cannot call a constructor or destructor for the
  1572. % object you have in the \var{with} clause.
  1573. cg_e_cannot_call_message_direct=06038_E_Een message handler methode kan niet direct aangeroepen worden.
  1574. % A message method handler method can't be called directly if it contains an
  1575. % explicit self argument
  1576. % \end{description}
  1577. # EndOfTeX
  1578. #
  1579. # Assembler reader
  1580. #
  1581. cg_e_goto_inout_of_exception_block=06039_E_Sprong in of uit een exception blok
  1582. % It isn't allowed to jump in or outside of an exception block like \var{try..finally..end;}:
  1583. % \begin{verbatim}
  1584. % label 1;
  1585. %
  1586. % ...
  1587. %
  1588. % try
  1589. % if not(final) then
  1590. % goto 1; // this line will cause an error
  1591. % finally
  1592. % ...
  1593. % end;
  1594. % 1:
  1595. % ...
  1596. % \end{verbatim}
  1597. % \end{description}
  1598. cg_e_control_flow_outside_finally=06040_E_Control flow statements niet toegestaan in een finally blok
  1599. % It isn't allowed to use the control flow statements \var{break},
  1600. % \var{continue} and \var{exit}
  1601. % inside a finally statement. The following example shows the problem:
  1602. % \begin{verbatim}
  1603. % ...
  1604. % try
  1605. % p;
  1606. % finally
  1607. % ...
  1608. % exit; // This exit ISN'T allowed
  1609. % end;
  1610. % ...
  1611. %
  1612. % \end{verbatim}
  1613. % If the procedure \var{p} raises an exception the finally block is
  1614. % executed. If the execution reaches the exit, it's unclear what to do:
  1615. % exiting the procedure or searching for another exception handler
  1616. # EndOfTeX
  1617. cg_w_parasize_too_big=06041_W_Grootte van de parameters is te groot voor bepaalde CPUs
  1618. % This indicates that you are declaring more than 64K of parameters, which
  1619. % might not be supported on other processor targets.
  1620. cg_w_localsize_too_big=06042_W_Grootte van lokale variabelen is te groot voor sommige CPUs
  1621. % This indicates that you are declaring more than 32K of local variables, which
  1622. % might not be supported on other processor targets.
  1623. cg_e_localsize_too_big=06043_E_Lokale variabelen te groot
  1624. % This indicates that you are declaring more than 32K of local variables, which
  1625. % is not supported by this processor.
  1626. cg_e_break_not_allowed=06044_E_BREAK niet toegelaten
  1627. % You're trying to use \var{break} outside a loop construction.
  1628. cg_e_continue_not_allowed=06045_E_CONTINUE niet toegelaten
  1629. % You're trying to use \var{continue} outside a loop construction.
  1630. cg_f_unknown_compilerproc=06046_F_Ongekende schakel-aanduiding "$1". Kijk na of u de correcte looptijd bibliotheek gebruikt
  1631. % The compiler expects that the runtime library contains some subrountines. If you see this error
  1632. % and you didn't mess with the runtime library, it's very likely that the runtime library
  1633. % you're using doesn't match the used compiler. If you changed the runtime library this error means
  1634. % that you removed a subroutine which the compiler needs for internal use.
  1635. % \end{description}
  1636. # EndOfTeX
  1637. #
  1638. # Assembler reader
  1639. #
  1640. # 07097 is the last used one
  1641. #
  1642. asmr_d_start_reading=07000_DL_Begonnen met verwerken van $1 assembler
  1643. % This informs you that an assembler block is being parsed
  1644. asmr_d_finish_reading=07001_DL_Gedaan met verwerken van $1 assembler
  1645. % This informs you that an assembler block has finished.
  1646. asmr_e_none_label_contain_at=07002_E_Symbool dat geen label is bevat "@"
  1647. % A identifier which isn't a label can't contain a @.
  1648. asmr_e_building_record_offset=07004_E_Fout bij berekenen offset in record
  1649. % There has an error occured while building the offset of a record/object
  1650. % structure, this can happend when there is no field specified at all or
  1651. % an unknown field identifier is used.
  1652. asmr_e_offset_without_identifier=07005_E_OFFSET gebruikt zonder symbool
  1653. % You can only use OFFSET with an identifier. Other syntaxes aren't
  1654. % supported
  1655. asmr_e_type_without_identifier=07006_E_TYPE gebruikt zonder symbool
  1656. % You can only use TYPE with an identifier. Other syntaxes aren't
  1657. % supported
  1658. asmr_e_no_local_or_para_allowed=07007_E_Kan hier geen lokale variabele of parameter gebruiken
  1659. % You can't use a local variable or parameter here, mostly because the
  1660. % addressing of locals and parameters is done using the %ebp register so the
  1661. % address can't be get directly.
  1662. asmr_e_need_offset=07008_E_OFFSET moet hier gebruikt worden
  1663. % You need to use OFFSET <id> here to get the address of the identifier.
  1664. asmr_e_need_dollar=07009_E_Gebruik van $ is hier verplicht
  1665. % You need to use $<id> here to get the address of the identifier.
  1666. asmr_e_cant_have_multiple_relocatable_symbols=07010_E_Kan niet meerdere verplaatsbare symbolen gebruiken
  1667. % You can't have more than one relocatable symbol (variable/typed constant)
  1668. % in one argument.
  1669. asmr_e_only_add_relocatable_symbol=07011_E_Een verplaatsbaar symbool kan enkel toegevoegd worden
  1670. % Relocatable symbols (variable/typed constant) can't be used with other
  1671. % operators. Only addition is allowed.
  1672. asmr_e_invalid_constant_expression=07012_E_Ongeldige constante uitdrukking
  1673. % There is an error in the constant expression.
  1674. asmr_e_relocatable_symbol_not_allowed=07013_E_Verplaatsbaar symbool niet toegelaten
  1675. % You can't use a relocatable symbol (variable/typed constant) here.
  1676. asmr_e_invalid_reference_syntax=07014_E_Ongeldige geheugenlocatie schrijfwijze
  1677. % There is an error in the reference.
  1678. asmr_e_local_para_unreachable=07015_E_$1 niet bereikbaar vanuit deze code
  1679. % You can not read directly the value of local or para
  1680. % of a higher level in assembler code (except for
  1681. % local assembler code without parameter nor locals).
  1682. asmr_e_local_label_not_allowed_as_ref=07016_E_Lokale symbolen/labels niet toegestaan als referenties
  1683. % You can't use local symbols/labels as references
  1684. asmr_e_wrong_base_index=07017_E_Ongeldig gebruik van basis en index register
  1685. % There is an error with the base and index register
  1686. asmr_w_possible_object_field_bug=07018_W_Mogelijke fout in behandeling velden van object.
  1687. % Fields of objects or classes can be reached directly in normal or objfpc
  1688. % modes but TP and Delphi modes treat the field name as a simple offset.
  1689. asmr_e_wrong_scale_factor=07019_E_Ongeldige schaalfactor
  1690. % The scale factor given is wrong, only 1,2,4 and 8 are allowed
  1691. asmr_e_multiple_index=07020_E_Meervoudig indexregister gebruik
  1692. % You are trying to use more than one index register
  1693. asmr_e_invalid_operand_type=07021_E_Ongeldig operandus type
  1694. % The operand type doesn't match with the opcode used
  1695. asmr_e_invalid_string_as_opcode_operand=07022_E_Ongeldige tekenreeks als instructie operandus: $1
  1696. % The string specified as operand is not correct with this opcode
  1697. asmr_w_CODE_and_DATA_not_supported=07023_W_@CODE en @DATA worden niet ondersteund
  1698. % @CODE and @DATA are unsupported and are ignored.
  1699. asmr_e_null_label_ref_not_allowed=07024_E_Null label verwijzingen zijn niet toegelaten
  1700. asmr_e_expr_zero_divide=07025_E_Deling door nul
  1701. % There is a division by zero in a constant expression
  1702. asmr_e_expr_illegal=07026_E_Ongeldige uitdrukking
  1703. % There is an illegal expression in a constant expression
  1704. asmr_e_escape_seq_ignored=07027_E_Expliciete reeks genegeerd: $1
  1705. % There is a C-styled string, but the escape sequence in the string
  1706. % is unknown, and is therefore ignored
  1707. asmr_e_invalid_symbol_ref=07028_E_Ongeldige symboolverwijzing
  1708. asmr_w_fwait_emu_prob=07029_W_Fwait kan emulatieproblemen met emu387 veroorzaken
  1709. asmr_w_fadd_to_faddp=07030_W_$1 zonder operand vertaald naar $1P
  1710. asmr_w_enter_not_supported_by_linux=07031_W_De ENTER instructie wordt niet ondersteund door de Linux kernel
  1711. % ENTER instruction can generate a stack page fault that is not
  1712. % caught correctly by the i386 Linux page handler.
  1713. asmr_w_calling_overload_func=07032_W_Een overroepen functie wordt aangeroepen vanuit assemblercode
  1714. % There is a call to an overloaded method in the assembler block,
  1715. % this might be the sign there is a problem
  1716. asmr_e_unsupported_symbol_type=07033_E_Niet ondersteund symbool type voor operandus
  1717. asmr_e_constant_out_of_bounds=07034_E_Constante waarde valt buiten bereik
  1718. asmr_e_error_converting_decimal=07035_E_Fout bij omzetten van decimaal getal $1
  1719. % A constant decimal value does not have the correct syntax
  1720. asmr_e_error_converting_octal=07036_E_Fout bij omzetten van octaal getal $1
  1721. % A constant octal value does not have the correct syntax
  1722. asmr_e_error_converting_binary=07037_E_Fout bij omzetten van binair getal $1
  1723. % A constant binary value does not have the correct syntax
  1724. asmr_e_error_converting_hexadecimal=07038_E_Fout bij omzetten van hexadecimaal getal $1
  1725. % A constant hexadecimal value does not have the correct syntax
  1726. asmr_h_direct_global_to_mangled=07039_H_$1 vertaald naar $2
  1727. asmr_w_direct_global_is_overloaded_func=07040_W_$1 is geassocieerd met een overroepen functie
  1728. asmr_e_cannot_use_SELF_outside_a_method=07041_E_Kan SELF niet buiten een methode gebruiken
  1729. % There is a reference to the \var{self} symbol while it is not
  1730. % allowed. \var{self} can only be referenced inside methods
  1731. asmr_e_cannot_use_OLDEBP_outside_nested_procedure=07042_E_Kan OLDEBP niet buiten een genestelde procedure gebruiken
  1732. % There is a reference to the \var{oldebp} symbol while it is not
  1733. % allowed. \var{oldebp} can only be referenced inside nested routines
  1734. asmr_e_void_function=07043_W_Functies met een ongedefinieerde teruggeefwaarde kunnen geen waarde teruggeven
  1735. % Trying to return a value while in a procedure. A procedure
  1736. % does not have any return value
  1737. asmr_e_SEG_not_supported=07044_E_SEG niet ondersteund
  1738. asmr_e_size_suffix_and_dest_dont_match=07045_E_Grootte-achtervoegsel en doel- of brongrootte komen niet overeen
  1739. % The register size and the opcode size suffix don't match. This is
  1740. % probably an error in the assembler statement
  1741. asmr_w_size_suffix_and_dest_dont_match=07046_W_Grootte-achtervoegsel en doel- of brongrootte komen niet overeen
  1742. % The register size and the opcode size suffix don't match. This is
  1743. % probably an error in the assembler statement
  1744. asmr_e_syntax_error=07047_E_Assembler taalfout
  1745. % There is an assembler syntax error
  1746. asmr_e_invalid_opcode_and_operand=07048_E_Ongeldige combinatie van instructie en operandi
  1747. % The opcode cannot be used with this type of operand
  1748. asmr_e_syn_operand=07049_E_Assembler taalfout in operandum
  1749. asmr_e_syn_constant=07050_E_Assembler taalfout in constante
  1750. asmr_e_invalid_string_expression=07051_E_Ongeldige String uitdrukking
  1751. asmr_w_const32bit_for_address=07052_W_ Constante met symbool $1 voor adres dat zich niet op een pointer bevindt
  1752. % A constant expression represents an address which does not fit
  1753. % into a pointer. The address is probably incorrect
  1754. asmr_e_unknown_opcode=07053_E_Ongekende opcode $1
  1755. % This opcode is not known
  1756. asmr_e_invalid_or_missing_opcode=07054_E_Ongeldige of ontbrekende instructie
  1757. asmr_e_invalid_prefix_and_opcode=07055_E_Ongeldige combinatie van voorvoegsel en instructie: $1
  1758. asmr_e_invalid_override_and_opcode=07056_E_Ongeldige combinatie van segment overroeping en instructie: $1
  1759. asmr_e_too_many_operands=07057_E_Te veel operandi op een lijn
  1760. % There are too many operands for this opcode. Check your
  1761. % assembler syntax
  1762. asmr_w_near_ignored=07058_W_NEAR genegeerd
  1763. asmr_w_far_ignored=07059_W_FAR genegeerd
  1764. asmr_e_dup_local_sym=07060_E_Dubbel lokaal symbool $1
  1765. asmr_e_unknown_local_sym=07061_E_Niet gedefinieerd lokaal symbool $1
  1766. asmr_e_unknown_label_identifier=07062_E_Onbekende labelnaam $1
  1767. asmr_e_invalid_register=07063_E_Ongeldige register naam
  1768. % There is an unknown register name used as operand.
  1769. asmr_e_invalid_fpu_register=07064_E_Ongeldig vlottende-komma registernaam
  1770. % There is an unknown register name used as operand.
  1771. asmr_w_modulo_not_supported=07066_W_Modulo wordt niet ondersteund
  1772. asmr_e_invalid_float_const=07067_E_Ongeldige vlottende-komma constante $1
  1773. % The floating point constant declared in an assembler block is
  1774. % invalid.
  1775. asmr_e_invalid_float_expr=07068_E_Ongeldige vlottende-komma uitdrukking
  1776. % The floating point expression declared in an assembler block is
  1777. % invalid.
  1778. asmr_e_wrong_sym_type=07069_E_Verkeerd symbool type
  1779. asmr_e_cannot_index_relative_var=07070_E_Een lokale variabele of parameter kan niet geindedxeerd worden met een register
  1780. % Trying to index using a base register a symbol which is already relative
  1781. % to a register. This is not possible, and will probably lead to crashes.
  1782. asmr_e_invalid_seg_override=07071_E_Ongeldige segment overroeping
  1783. asmr_w_id_supposed_external=07072_W_Symbool $1 wordt verondersteld extern te zijn
  1784. % There is a reference to an undefined symbol. This will not result
  1785. % in an error, since the symbol might be external, but may cause
  1786. % problems at link time if the symbol is not defined anywhere.
  1787. asmr_e_string_not_allowed_as_const=07073_E_Strings zijn niet toegelaten als constante
  1788. % Character strings are not allowed as constants.
  1789. asmr_e_no_var_type_specified=07074_Geen type van de variabele gegeven
  1790. % The syntax expects a type idenfitifer after the dot, but
  1791. % none was found.
  1792. asmr_w_assembler_code_not_returned_to_text=07075_E_De assembler code stopt niet in een '.text' gedeelte
  1793. % There was a directive in the assembler block to change sections,
  1794. % but there is a missing return to the text section at the end
  1795. % of the assembler block. This might cause errors during link time.
  1796. asmr_e_not_directive_or_local_symbol=07076_E_Geen aanwijzing of lokaal symbool $1
  1797. % This symbol is unknown.
  1798. asmr_w_using_defined_as_local=07077_E_Een gedfinieerde naam wordt gebruikt als assembler label
  1799. #
  1800. # Assembler/binary writers
  1801. #
  1802. asmr_e_dollar_without_identifier=07078_E_Dollar teken gebruikt zonder identifier
  1803. % A constant expression has an identifier which does not start with
  1804. % the $ symbol.
  1805. asmr_w_32bit_const_for_address=07079_W_32bit constante aangemaakt voor adres
  1806. % A constant was used as an address. This is probably an error,
  1807. % since using absolute addresses will probably not work.
  1808. asmr_n_align_is_target_specific=07080_N_.align is doel specifiek, gebruik .balign of .p2align
  1809. % Using the .align directive is platform specific, and its meaning will vary
  1810. % from one platform to another.
  1811. asmr_e_cannot_access_field_directly_for_parameters=07081_E_Kan velden niet direct gebruiken voor parameters.
  1812. % You should load the parameter first into a register and then access the
  1813. % fields using that register.
  1814. asmr_e_cannot_access_object_field_directly=07082_E_Kan velden van objecten/klassen niet direct aanspreken
  1815. % You should load the self pointer first into a register and then access the
  1816. % fields using the register as base. By default the self pointer is available
  1817. % in the esi register on i386.
  1818. #
  1819. # Assembler/binary writers
  1820. #
  1821. asmr_e_unable_to_determine_reference_size=07083_E_Geen grootte aangegegeven en kan de grootte van de operanden niet bepalen
  1822. % You should specify explicitly a size for the reference, because
  1823. % the compiler is unable to determine what size (byte,word,dword,etc.) it
  1824. % should use for the reference.
  1825. asmr_e_cannot_use_RESULT_here=07084_E_Kan RESULT aanduiding niet gebruiken in deze functie
  1826. % Some functions which return complex types cannot use the \var{result}
  1827. % keyword.
  1828. asmr_w_adding_explicit_args_fXX=07086_W_"$1Ã" zonder operand vertaald naar "$1 %st,%st(1)"
  1829. asmr_w_adding_explicit_first_arg_fXX=07087_W_"$1 %st(n)" vertaald naar "$1 %st,%st(n)"
  1830. asmr_w_adding_explicit_second_arg_fXX=07088_W_"$1 %st(n)" vertaald naar "$1 %st(n),%st"
  1831. asmr_e_invalid_char_smaller=07089_E_Karakter < hier niet toegestaan
  1832. % The shift operator requires the << characters. Only one
  1833. % of those characters was found.
  1834. asmr_e_invalid_char_greater=07090_E_Karakter > hier niet toegestaan
  1835. % The shift operator requires the >> characters. Only one
  1836. % of those characters was found.
  1837. asmr_w_align_not_supported=07093_W_ALIGN niet ondersteund
  1838. asmr_e_no_inc_and_dec_together=07094_E_INC en DEC kunnen niet samengaan
  1839. % Trying to use an increment and a decrement within the same
  1840. % opcode on the 680x0. This is impossible.
  1841. asmr_e_invalid_reg_list_in_movem=07095_E_Ongeldige register lijst voor movem
  1842. % Trying to use the \var{movem} opcode with invalid registers
  1843. % to save or restore.
  1844. asmr_e_invalid_reg_list_for_opcode=07096_E_Ongeldige register lijst voor opcode
  1845. asmr_e_higher_cpu_mode_required=07097_E_hogere CPU mode vereist ($1)
  1846. % Trying to use an instruction which is not supported in the current
  1847. % cpu mode. Use a higher cpu generation to be able to use this
  1848. % opcode in your assembler block
  1849. asmr_w_unable_to_determine_reference_size_using_dword=07098_W_Grootte niet opgegeven en kan de grootte van de operanden niet bepalen. De standaard DWORD wordt gebruikt
  1850. % You should specify explicitly a size for the reference, because
  1851. % the compiler is unable to determine what size (byte,word,dword,etc.) it
  1852. % should use for the reference. This warning is only used in Delphi mode where
  1853. % it falls back to use DWORD as default.
  1854. asmr_e_illegal_shifterop_syntax=07099_E_Syntax fout bij het bepalen van een shift operand
  1855. % ARM only; ARM assembler supports a so called shifter operand. The used syntax isn't
  1856. % a valid shifter operand. Example for an operation with shifter operand:
  1857. % \begin{verbatim}
  1858. % asm
  1859. % orr r2,r2,r2,lsl #8
  1860. % end;
  1861. % \end{verbatim}
  1862. #
  1863. # Assembler/binary writers
  1864. #
  1865. # 08018 is the last used one
  1866. #
  1867. asmw_f_too_many_asm_files=08000_F_Te veel assemblerbestanden
  1868. % With smartlinking enabled, there are too many assembler
  1869. % files generated. Disable smartlinking.
  1870. asmw_f_assembler_output_not_supported=08001_F_De geselecteerde assembler modus wordt hier niet ondersteund
  1871. asmw_f_comp_not_supported=08002_F_Het COMP type wordt hier niet ondersteund
  1872. asmw_f_direct_not_supported=08003_F_Directe assembler modus wordt niet ondersteund door de binaire assemblerschrijver
  1873. % Direct assembler mode is not supported for binary writers.
  1874. asmw_e_alloc_data_only_in_bss=08004_E_Ruimte voor gegevens reserveren mag enkel in een bss gedeelte
  1875. asmw_f_no_binary_writer_selected=08005_F_Binaire assemblerschrijver geselecteerd
  1876. asmw_e_opcode_not_in_table=08006_E_Asm: Opcode $1 not gevonden in interne tabel
  1877. asmw_e_invalid_opcode_and_operands=08007_E_Asm: $1 Ongeldige combinatie van instructie en operandi
  1878. asmw_e_16bit_not_supported=08008_E_Asm: 16 Bit geheugenlocaties worden niet ondersteund
  1879. asmw_e_invalid_effective_address=08009_E_Asm: Ongeldig direct adres
  1880. asmw_e_immediate_or_reference_expected=08010_E_Asm: Constante of geheugenadres verwacht
  1881. asmw_e_value_exceeds_bounds=08011_E_Asm: $1 waarde overschrijdt grenzen van $2
  1882. asmw_e_short_jmp_out_of_range=08012_E_Asm: Korte spronginstructie gaat te ver $1
  1883. #
  1884. # Executing linker/assembler
  1885. #
  1886. asmw_e_undefined_label=08013_E_Asm: Ongedefinieerd label $1
  1887. #
  1888. # Executing linker/assembler
  1889. #
  1890. # BeginOfTeX
  1891. %
  1892. % \section{Errors of assembling/linking stage}
  1893. % This section lists errors that occur when the compiler is processing the
  1894. % command line or handling the configuration files.
  1895. % \begin{description}
  1896. asmw_e_comp_not_supported=08014_E_Asm: COMP type niet ondersteund voor dit platfirl
  1897. asmw_e_extended_not_supported=08015_E_Asm: EXTENDED type niet ondersteund voor dit platform
  1898. asmw_e_duplicate_label=08016_E_Asm: Label dubbel gebruikt: $1
  1899. asmw_e_redefined_label=08017_E_Asm: Label opnieuw gedefinieerd: $1
  1900. asmw_e_first_defined_label=08018_E_Asm: eerste definitie hier
  1901. asmw_e_invalid_register=08019_E_Asm: ongeldig register $1
  1902. #
  1903. # Executing linker/assembler
  1904. #
  1905. # 09034 is the last used one
  1906. #
  1907. # BeginOfTeX
  1908. %
  1909. % \section{Errors of assembling/linking stage}
  1910. % This section lists errors that occur when the compiler is processing the
  1911. % command line or handling the configuration files.
  1912. % \begin{description}
  1913. exec_w_source_os_redefined=09000_W_Bronbesturingssysteem geherdefinieerd
  1914. exec_i_assembling_pipe=09001_I_Assembleren (pijp) van $1
  1915. exec_d_cant_create_asmfile=09002_E_Kan geen assembler bestand $1 niet maken
  1916. % The mentioned file can't be create. Check if you've
  1917. % permission to create this file
  1918. exec_e_cant_create_objectfile=09003_E_Kan geen object bestand openen: $1
  1919. % The mentioned file can't be create. Check if you've
  1920. % permission to create this file
  1921. exec_e_cant_create_archivefile=09004_E_kan geen archief bestand openen: $1
  1922. % The mentioned file can't be create. Check if you've
  1923. % permission to create this file
  1924. exec_e_assembler_not_found=09005_E_Assembler $1 niet gevonden. Schakel over op externe assemblage
  1925. exec_t_using_assembler=09006_T_Gebruikte assembler: $1
  1926. exec_e_error_while_assembling=09007_E_Fout bij het assembleren, exit code $1
  1927. % There was an error while assembling the file using an external assembler.
  1928. % Consult the documentation of the assembler tool to find out more information
  1929. % on this error.
  1930. exec_e_cant_call_assembler=09008_E_Kan de assembler niet oproepen, fout $1. Schakel over op externe assemblage
  1931. exec_i_assembling=09009_I_Assembleren van $1
  1932. exec_i_assembling_smart=09010_I_Assembleren slim-link $1
  1933. exec_w_objfile_not_found=09011_W_Bestand $1 niet gevonden, linken kan foutlopen !
  1934. % One of the object file is missing, and linking will probably fail.
  1935. % Check your paths.
  1936. exec_w_libfile_not_found=09012_W_Bibliotheek $1 niet gevonden, linken kan foutlopen !
  1937. % One of the library file is missing, and linking will probably fail.
  1938. % Check your paths.
  1939. exec_e_error_while_linking=09013_E_Fout bij het linken
  1940. % Generic error while linking.
  1941. exec_e_cant_call_linker=09014_E_Kan de linker niet oproepen, schakel over op extern linken
  1942. exec_i_linking=09015_I_Linken van $1
  1943. exec_e_util_not_found=09016_E_Gereedschap $1 niet gevonden, schakel over op extern linken
  1944. exec_t_using_util=09017_T_Gebruik tool $1
  1945. exec_e_exe_not_supported=09018_E_Creatie van executable bestanden niet ondersteund.
  1946. exec_e_dll_not_supported=09019_E_Dynamische bibliotheken niet ondersteund
  1947. exec_i_closing_script=09020_I_Afsluiten batch $1
  1948. exec_e_res_not_found=09021_E_Resource compiler niet gevonde, schakel over op externe modus
  1949. exec_i_compilingresource=09022_I_Compileer resource $1
  1950. #
  1951. # Executable information
  1952. #
  1953. exec_t_unit_not_static_linkable_switch_to_smart=09023_T_Unit $1 kan niet statisch gelinkt worden. Schakel over op slim linken
  1954. exec_t_unit_not_smart_linkable_switch_to_static=09024_T_Unit $1 kan niet slim gelinkt worden. Schakel over op statisch linken
  1955. exec_t_unit_not_shared_linkable_switch_to_static=09025_T_Unit $1 kan niet gedeeld gelinkt worden, Schakel over op statisch linken
  1956. exec_e_unit_not_smart_or_static_linkable=09026_E_Unit $1 kan niet slim of statisch gelinkt worden
  1957. exec_e_unit_not_shared_or_static_linkable=09027_E_Unit $1 kan niet gedeeld of statisch gelinkt worden
  1958. exec_d_resbin_params=09028_D_Oproep resource compiler "$1" met "$2" als commando-lijn opties
  1959. %\end{description}
  1960. # EndOfTeX
  1961. #
  1962. # Executable information
  1963. #
  1964. execinfo_f_cant_process_executable=09128_F_Kan applicatie niet nabehandelen $1
  1965. execinfo_f_cant_open_executable=09129_F_Kan applicatie niet openen $1
  1966. execinfo_x_codesize=09130_X_Grootte van de code: $1 bytes
  1967. execinfo_x_initdatasize=09131_X_Grootte van geinitialiseerde data: $1 bytes
  1968. execinfo_x_uninitdatasize=09132_X_Grootte van niet-geinitialiseerde data: $1 bytes
  1969. execinfo_x_stackreserve=09133_X_Gereserveerde stackruimte: $1 bytes
  1970. execinfo_x_stackcommit=09134_X_Toegewezen stackruimte: $1 bytes
  1971. # Unit loading
  1972. #
  1973. # BeginOfTeX
  1974. % \section{Unit loading messages.}
  1975. % This section lists all messages that can occur when the compiler is
  1976. % loading a unit from disk into memory. Many of these mesages are
  1977. % informational messages.
  1978. % \begin{description}
  1979. unit_t_unitsearch=10000_T_Unit zoeken: $1
  1980. % When you use the \var{-vt}, the compiler tells you where it tries to find
  1981. % unit files.
  1982. unit_t_ppu_loading=10001_T_PPU Laden $1
  1983. % When the \var{-vt} switch is used, the compiler tells you
  1984. % what units it loads.
  1985. unit_u_ppu_name=10002_U_PPU Naam: $1
  1986. % When you use the \var{-vu} flag, the unit name is shown.
  1987. unit_u_ppu_flags=10003_U_PPU Vlaggen: $1
  1988. % When you use the \var{-vu} flag, the unit flags are shown.
  1989. unit_u_ppu_crc=10004_U_PPU CRC: $1
  1990. % When you use the \var{-vu} flag, the unit CRC check is shown.
  1991. unit_u_ppu_time=10005_U_PPU Tijd: $1
  1992. % When you use the \var{-vu} flag, the unit time is shown.
  1993. unit_u_ppu_file_too_short=10006_U_PPU bestand te kort
  1994. % When you use the \var{-vu} flag, the unit time is shown.
  1995. unit_u_ppu_invalid_header=10007_U_PPU Ongeldige kop (geen PPU aan het begin)
  1996. % A unit file contains as the first three bytes the ascii codes of \var{PPU}
  1997. unit_u_ppu_invalid_version=10008_U_PPU Ongeldige versie $1
  1998. % This unit file was compiled with a different version of the compiler, and
  1999. % cannot be read.
  2000. unit_u_ppu_invalid_processor=10009_U_PPU is gecompileerd voor een andere processor
  2001. % This unit file was compiled for a different processor type, and
  2002. % cannot be read
  2003. unit_u_ppu_invalid_target=10010_U_PPU is gecompileerd voor een ander doelsysteem
  2004. % This unit file was compiled for a different processor type, and
  2005. % cannot be read
  2006. unit_u_ppu_source=10011_U_PPU bron: $1
  2007. % When you use the \var{-vu} flag, the unit CRC check is shown.
  2008. unit_u_ppu_write=10012_U_Schrijven van $1
  2009. % When you specify the \var{-vu} switch, the compiler will tell you where it
  2010. % writes the unit file.
  2011. unit_f_ppu_cannot_write=10013_F_Kan PPU bestand niet schrijven
  2012. % An err
  2013. unit_f_ppu_read_error=10014_F_Lezen van PPU bestand
  2014. % Unexpected end of file
  2015. unit_f_ppu_read_unexpected_end=10015_F_Onverwacht einde van PPU-bestand
  2016. % This means that the unit file was corrupted, and contains invalid
  2017. % information. Recompilation will be necessary.
  2018. unit_f_ppu_invalid_entry=10016_F_Ongeldig PPU bestand post: $1
  2019. % The unit the compiler is trying to read is corrupted, or generated with a
  2020. % newer version of the compiler.
  2021. unit_f_ppu_dbx_count_problem=10017_F_PPU Dbx aantal probleem
  2022. % There is an inconsistency in the debugging information of the unit.
  2023. unit_e_illegal_unit_name=10018_E_Ongeldige unitnaam: $1
  2024. % The name of the unit doesn't match the file name.
  2025. unit_f_too_much_units=10019_F_Te veel units
  2026. % \fpc has a limit of 1024 units in a program. You can change this behavior
  2027. % by changing the \var{maxunits} constant in the \file{files.pas} file of the
  2028. % compiler, and recompiling the compiler.
  2029. unit_f_circular_unit_reference=10020_F_Uses statement veroorzaakt vicieuze cirkel tussen $1 en $2
  2030. % Two units are using each other in the interface part. This is only allowed
  2031. % in the \var{implementation} part. At least one unit must contain the other one
  2032. % in the \var{implementation} section.
  2033. unit_f_cant_compile_unit=10021_F_Kan unit $1 niet compileren, geen broncode beschikbaar
  2034. % A unit was found that needs to be recompiled, but no sources are
  2035. % available.
  2036. unit_f_cant_find_ppu=10022_F_Kan unit $1 niet vinden
  2037. % You tried to use a unit of which the PPU file isn't found by the
  2038. % compiler. Check your config files for the unit pathes
  2039. unit_w_unit_name_error=10023_W_Unit $1 niet gevonden maar $2 bestaat
  2040. unit_f_unit_name_error=10024_F_Unit $1 gezocht maar $2 gevonden
  2041. % Dos truncation of 8 letters for unit PPU files
  2042. % may lead to problems when unit name is longer than 8 letters.
  2043. unit_w_switch_us_missed=10025_W_De systeemunit compileren vereist de -Us schakelaar
  2044. % When recompiling the system unit (it needs special treatment), the
  2045. % \var{-Us} must be specified.
  2046. unit_f_errors_in_unit=10026_F_Er waren fouten $1 bij het compileren van een module, compilatie gestopt.
  2047. % When the compiler encounters a fatal error or too many errors in a module
  2048. % then it stops with this message.
  2049. unit_u_load_unit=10027_U_Laden van $1 ($2) unit $3
  2050. % When you use the \var{-vu} flag, which unit is loaded from which unit is
  2051. % shown.
  2052. unit_u_recompile_crc_change=10028_U_Hercompileer $1, checksum voor $2 veranderd
  2053. unit_u_recompile_source_found_alone=10029_U_herkompileer $1, alleen bron gevonden
  2054. % When you use the \var{-vu} flag, these messages tell you why the current
  2055. % unit is recompiled.
  2056. unit_u_recompile_staticlib_is_older=10030_U_Hercompileer unit, statische bibliotheek ouder dan ppu-bestand
  2057. % When you use the \var{-vu} flag, the compiler warns if the static library
  2058. % of the unit are older than the unit file itself.
  2059. unit_u_recompile_sharedlib_is_older=10031_U_Hercompileer unit, dynamische bibliotheek ouder dan ppu-bestand
  2060. % When you use the \var{-vu} flag, the compiler warns if the shared library
  2061. % of the unit are older than the unit file itself.
  2062. unit_u_recompile_obj_and_asm_older=10032_U_Hercompileer unit, object en asm zijn ouder dan ppu-bestand
  2063. % When you use the \var{-vu} flag, the compiler warns if the assembler of
  2064. % object file of the unit are older than the unit file itself.
  2065. unit_u_recompile_obj_older_than_asm=10033_U_Hercompileer unit, object is ouder dan assembler
  2066. % When you use the \var{-vu} flag, the compiler warns if the assembler
  2067. % file of the unit is older than the object file of the unit.
  2068. unit_u_parsing_interface=10034_U_Interface van $1 wordt geparsed
  2069. % When you use the \var{-vu} flag, the compiler warns that it starts
  2070. % parsing the interface part of the unit
  2071. unit_u_parsing_implementation=10035_U_Implementatie van $1 wordt geparsed
  2072. % When you use the \var{-vu} flag, the compiler warns that it starts
  2073. % parsing the implementation part of the unit
  2074. unit_u_second_load_unit=10036_U_Tweede maal unit $1 laden
  2075. % When you use the \var{-vu} flag, the compiler warns that it starts
  2076. % recompiling a unit for the second time. This can happend with interdepend
  2077. % units.
  2078. unit_u_check_time=10037_U_PPU Controleren van bestand $1 tijd $2
  2079. % When you use the \var{-vu} flag, the compiler show the filename and
  2080. % date and time of the file which a recompile depends on
  2081. % \end{description}
  2082. # EndOfTeX
  2083. #
  2084. # Options
  2085. #
  2086. unit_w_cant_compile_unit_with_changed_incfile=10040_W_Kan unit $1 niet hercompileren, maar vond gewijzigde include bestanden
  2087. % A unit was found to have modified include files, but
  2088. % some source files were not found, so recompilation is impossible.
  2089. unit_h_source_modified=10041_H_Bestand $1 is nieuwer dan release PPU bestand $2
  2090. % A modified source file for a unit was found that was compiled with the
  2091. % release flag (-Ur). The unit will not implicitly be recompiled because
  2092. % this release flag is set.
  2093. unit_u_ppu_invalid_fpumode=10042_U_Er wordt een unit gebruikt die niet met de correcte FPU modus is gecompileerd
  2094. % Trying to compile code while using units which were not compiled with
  2095. % the same floating point format mode. Either all code should be compiled
  2096. % with FPU emulation on, or with FPU emulation off.
  2097. unit_u_loading_interface_units=10043_U_Laden van interface units voor unit $1
  2098. % When you use the \var{-vu} flag, the compiler warns that it starts
  2099. % loading the units defined in the interface part of the unit.
  2100. unit_u_loading_implementation_units=10044_U_Laden van implementatie units voor unit $1
  2101. % When you use the \var{-vu} flag, the compiler warns that it starts
  2102. % loading the units defined in the implementation part of the unit.
  2103. unit_u_interface_crc_changed=10045_U_Interface CRC voor unit $1 is gewijzigd
  2104. % When you use the \var{-vu} flag, the compiler warns that it the
  2105. % CRC calculated for the interface has been changed after the implementation
  2106. % has been parsed.
  2107. unit_u_implementation_crc_changed=10046_U_Implementatie CRC voor unit $1 is gewijzigd
  2108. % When you use the \var{-vu} flag, the compiler warns that it the
  2109. % CRC calculated has been changed after the implementation
  2110. % has been parsed.
  2111. unit_u_finished_compiling=10047_U_Klaar met compileren van unit Â$1
  2112. % When you use the \var{-vu} flag, the compiler warns that it
  2113. % has finished compiling the unit.
  2114. unit_u_add_depend_to=10048_U_Afhankelijkheid van $1 toegevoegd aan $2
  2115. % When you use the \var{-vu} flag, the compiler warns that it
  2116. % has added a dependency between the two units.
  2117. unit_u_no_reload_is_caller=10049_U_Niet herladen, oproeper is: $1
  2118. % When you use the \var{-vu} flag, the compiler warns that it
  2119. % has will not reload the unit because it is the unit that wants
  2120. % to load this unit
  2121. unit_u_no_reload_in_second_compile=10050_U_Niet herladen, reads in tweede compilatie: $1
  2122. % When you use the \var{-vu} flag, the compiler warns that it
  2123. % has will not reload the unit because it is already in a second recompile
  2124. unit_u_flag_for_reload=10051_U_Vlaggen voor herladen: $1
  2125. % When you use the \var{-vu} flag, the compiler warns that it
  2126. % has to reload the unit
  2127. unit_u_forced_reload=10052_U_Verplicht herladen
  2128. % When you use the \var{-vu} flag, the compiler warns that it
  2129. % has is reloading the unit because it was required
  2130. unit_u_previous_state=10053_U_Vorige toestand van $1: $2
  2131. % When you use the \var{-vu} flag, the compiler shows the
  2132. % previous state of the unit
  2133. unit_u_second_compile_unit=10054_U_$1 wordt reeds gecompileerd, tweede compile wordt gezet
  2134. % When you use the \var{-vu} flag, the compiler warns that it starts
  2135. % recompiling a unit for the second time. This can happend with interdepend
  2136. % units.
  2137. unit_u_loading_unit=10055_U_Laden unit $1
  2138. % When you use the \var{-vu} flag, the compiler warns that it starts
  2139. % loading the unit.
  2140. unit_u_finished_loading_unit=10056_U_Klaar met laden van unit $1
  2141. % When you use the \var{-vu} flag, the compiler warns that it finished
  2142. % loading the unit.
  2143. unit_u_registering_new_unit=10057_U_Nieuwe unit $1 wordt geregistreerd
  2144. % When you use the \var{-vu} flag, the compiler warns that it has
  2145. % found a new unit and registers it in the internal lists.
  2146. unit_u_reresolving_unit=10058_U_Opnieuw oplossen van unit $1
  2147. % When you use the \var{-vu} flag, the compiler warns that it
  2148. % has to recalculate the internal data of the unit
  2149. unit_u_skipping_reresolving_unit=10059_U_Oplossen van unit $1 wordt overgeslagen, gebruikte units worden nog geladen
  2150. % When you use the \var{-vu} flag, the compiler warns that it
  2151. % skips to recalculate the internal data of the unit because there
  2152. % is no data to recalculate
  2153. % \end{description}
  2154. # EndOfTeX
  2155. #
  2156. # Options
  2157. #
  2158. # 11039 is the last used one
  2159. #
  2160. option_usage=11000_O_$1 [opties] <bestand> [opties]
  2161. # BeginOfTeX
  2162. %
  2163. % \section{Command-line handling errors}
  2164. % This section lists errors that occur when the compiler is processing the
  2165. % command line or handling the configuration files.
  2166. % \begin{description}
  2167. option_only_one_source_support=11001_W_Maar een (1) bronbestand wordt ondersteunt
  2168. % You can specify only one source file on the command line. The first
  2169. % one will be compiled, others will be ignored. This may indicate that
  2170. % you forgot a \var{'-'} sign.
  2171. option_def_only_for_os2=11002_W_Een DEF file kan alleen worden gemaakt voor OS/2
  2172. % This option can only be specified when you're compiling for OS/2
  2173. option_no_nested_response_file=11003_E_Geneste optie bestanden niet ondersteund
  2174. % you cannot nest response files with the \var{@file} command-line option.
  2175. option_no_source_found=11004_F_Geen bronbestand op de commando-lijn
  2176. % The compiler expects a source file name on the command line.
  2177. option_no_option_found=11005_N_geen opties in configuratie bestand $1
  2178. % The compiler didn't find any option in that config file.
  2179. option_illegal_para=11006_E_Ongeldige parameter: $1
  2180. % You specified an unknown option.
  2181. option_help_pages_para=11007_H_-? druk hulp af
  2182. % When an unknown option is given, this message is diplayed.
  2183. option_too_many_cfg_files=11008_F_Te veel geneste instellingsbestanden
  2184. % You can only nest up to 16 config files.
  2185. option_unable_open_file=11009_F_Kan bestand $1 niet openen
  2186. % The option file cannot be found.
  2187. option_reading_further_from=11010_D_Meer instellingen worden gelezen van $1
  2188. % Displayed when you have notes turned on, and the compiler switches
  2189. % to another options file.
  2190. option_target_is_already_set=11011_W_Doel is reeds ingesteld op: $1
  2191. % Displayed if more than one \var{-T} option is specified.
  2192. option_no_shared_lib_under_dos=11012_W_Shared bibliotheken niet onderteund onder DOS, val terug op statisch
  2193. % If you specify \var{-CD} for the \dos platform, this message is displayed.
  2194. % The compiler supports only static libraries under \dos
  2195. option_too_many_ifdef=11013_F_Te veel IF(N)DEFs
  2196. % the \var{\#IF(N)DEF} statements in the options file are not balanced with
  2197. % the \var{\#ENDIF} statements.
  2198. option_too_many_endif=11014_F_Te veel ENDIFs
  2199. % the \var{\#IF(N)DEF} statements in the options file are not balanced with
  2200. % the \var{\#ENDIF} statements.
  2201. option_too_less_endif=11015_F_Open voorwaardelijke aan eind van bestand
  2202. % the \var{\#IF(N)DEF} statements in the options file are not balanced with
  2203. % the \var{\#ENDIF} statements.
  2204. option_no_debug_support=11016_W_Debug informatie generatie wordt niet ondersteund door deze applicatie
  2205. % It is possible to have a compiler executable that doesn't support
  2206. % the generation of debugging info. If you use such an executable with the
  2207. % \var{-g} switch, this warning will be displayed.
  2208. option_no_debug_support_recompile_fpc=11017_H_Hercompileer de compiler-applicatie met -dGDB
  2209. % It is possible to have a compiler executable that doesn't support
  2210. % the generation of debugging info. If you use such an executable with the
  2211. % \var{-g} switch, this warning will be displayed.
  2212. option_obsolete_switch=11018_E_U gebruikt een in onbruik geraakte schakeloptie $1
  2213. % this warns you when you use a switch that is not needed/supported anymore.
  2214. % It is recommended that you remove the switch to overcome problems in the
  2215. % future, when the switch meaning may change.
  2216. option_obsolete_switch_use_new=11019_E_U gebruikt een in onbruik geraakte schakeloptie $1, gebruik $2 a.u.b.
  2217. % this warns you when you use a switch that is not supported anymore. You
  2218. % must now use the second switch instead.
  2219. % It is recommended that you change the switch to overcome problems in the
  2220. % future, when the switch meaning may change.
  2221. option_switch_bin_to_src_assembler=11020_N_De assembler wordt veranderd in de standaard assemblerschrijver
  2222. % this notifies you that the assembler has been changed because you used the
  2223. % -a switch which can't be used with a binary assembler writer.
  2224. option_incompatible_asm=11021_W_Geselecteerde assembler "$1" is niet verenigbaar met "$2"
  2225. option_asm_forced=11022_W_Gebruik van "$1" assembler opgelegd
  2226. % The assembler output selected can not generate
  2227. % object files with the correct format. Therefore, the
  2228. % default assembler for this target is used instead.
  2229. %\end{description}
  2230. # EndOfTeX
  2231. #
  2232. # Logo (option -l)
  2233. #
  2234. option_using_file=11026_T_Opties worden gelezen van bestand $1
  2235. % Options are also read from this file
  2236. option_using_env=11027_T_Opties worden gelezen van omgevingsvariabelen $1
  2237. % Options are also read from this environment string
  2238. option_handling_option=11028_D_Behandelen van optie "$1"
  2239. % Debug info that an option is found and will be handled
  2240. option_help_press_enter=11029__***Druk op de ENTER toets***
  2241. option_start_reading_configfile=11030_H_Start lezen van configuratie bestand $1
  2242. % Starting of config file parsing.
  2243. option_end_reading_configfile=11031_H_Einde van lezen van configuratie bestand $1
  2244. % End of config file parsing.
  2245. option_interpreting_option=11032_D_Optie $1 wordt behandeld
  2246. option_interpreting_firstpass_option=11036_D_Behandel prioritaire optie "$1"
  2247. option_interpreting_file_option=11033_D_Behandel bestandsoptie "$1"
  2248. option_read_config_file=11034_D_Lezen configuratie bestand "$1"
  2249. option_found_file=11035_D_Bronbestand "$1" gevonden
  2250. % Additional infos about options, displayed
  2251. % when you have debug option turned on.
  2252. option_code_page_not_available=11039_E_Ongekende coderingspagina
  2253. %\end{description}
  2254. # EndOfTeX
  2255. #
  2256. # Logo (option -l)
  2257. #
  2258. option_logo=11023_[
  2259. Free Pascal Compiler versie $FPCVER [$FPCDATE] voor $FPCTARGET
  2260. Copyright (c) 1998-2004 door Florian Klaempfl en anderen
  2261. ]
  2262. #
  2263. # Info (option -i)
  2264. #
  2265. option_info=11024_[
  2266. Free Pascal Compiler versie $FPCVER
  2267. Compiler datum: $FPCDATE
  2268. Compiler doelsysteem: $FPCTARGET
  2269. Dit programma wordt verspreid onder de GNU General Public Licence
  2270. Voor meer informatie, lees COPYING.FPC. Hiervan is helaas geen
  2271. Nederlandse vertaling beschikbaar.
  2272. [email protected]
  2273. ]
  2274. #
  2275. # Help pages (option -? and -h)
  2276. #
  2277. option_help_pages=11025_[
  2278. **0*_+ schakelt optie aan, - af
  2279. **1a_De compiler verwijdert gegenereerd assemblerbestand niet
  2280. **2al_Toon broncode in assemblerbestand
  2281. **2ar_Toon register allocatie/release informatie in assemblerbestand
  2282. **2at_Toon tijdelijke allocatie/release informatie in assemblerbestand
  2283. **1b_genereer browser info
  2284. **2bl_genereer info voor lokale symbolen info
  2285. **1B_Bouw alle modules
  2286. **1C_Codegeneratie opties
  2287. 3*2CD_Creeer dynamische bibliotheek
  2288. **2Ch<n>_<n> bytes heap (tussen 1023 en 67107840)
  2289. **2Ci_IO-checking
  2290. **2Cn_Laat linken achterwege
  2291. **2Co_Controleer overflow van integeroperaties
  2292. **2Cr_Bereikcontrole (range check)
  2293. **2Cs<n>_Stel stack grootte in op <n>
  2294. **2Ct_Stack controle
  2295. 3*2CS_Cre‰er dynamische bibliotheek
  2296. 3*2Cx_Gebruik slim linken
  2297. **1d<x>_definieer het symbool <x>
  2298. *O1D_genereer een DEF bestand
  2299. *O2Dd<x>_Zet beschrijving op <x>
  2300. *O2Dw_PM applicatie
  2301. **1e<x>_Zet pad naar applicaties
  2302. **1E_Zelfde als -Cn
  2303. **1F_Zet bestandsnamen en paden
  2304. **2Fe<x>_Zend foutboodschappen naar bestand <x>
  2305. *L2Fg<x>_Zelfde als -Fl
  2306. **2Fi<x>_Voegt <x> toe aan invoegpad
  2307. **2Fl<x>_Voegt <x> toe aan bibliotheek-pad
  2308. *L2FL<x>_Gebruik <x> als dynamische linker
  2309. **2Fo<x>_Voeg <x> toe aan object-pad
  2310. **2Fr<x>_Lees foutmeldingen uit bestand <x>
  2311. **2Fu<x>_Voeg <x> toe aan unit pad
  2312. **2FU<x>_Schrijf units in folder <x>, (primeert op -FE)
  2313. *g1g_genereer debuginformatie
  2314. *g2gg_gebruik gsym
  2315. *g2gd_gebruik dbx
  2316. *g2gh_laad heaptrc unit automatisch
  2317. *g2gl_Gebruik regelinformatie unit voor meer informatie in backtraces
  2318. *g2gc_genereer controles voor pointers
  2319. **1i_informatie
  2320. **2iD_Toon compilerdatum
  2321. **2iV_Toon compilerversie
  2322. **2iSO_Toon compiler-OS
  2323. **2iSP_Toon compilerprocessor
  2324. **2iTO_Toon doel-OS
  2325. **2iTP_Toon doelprocessor
  2326. **1I<x>_Voeg <x> toe aan invoegpad
  2327. **1k<x>_Geef <x> door aan de linker
  2328. **1l_Druk logo af
  2329. **1n_Standaard configuratie bestand niet lezen
  2330. **1o<x>_Stel de naam van het applicatiebestand in op <x>
  2331. **1pg_genereer profile code voor gprof
  2332. *L1P_Gebruik pipes in plaats van tijdelijke assembler bestanden
  2333. **1S_Syntax instellingen
  2334. **2S2_Stel Delphi 2 uitbreidingen in
  2335. **2Sc_Ondersteun operatoren als in C (*=,+=,/= en -=)
  2336. **2sa_Voeg assertion code toe
  2337. **2S2_Tracht Delphi compatibel te zijn
  2338. **2Se<x>_Compiler stopt na <x> fouten (standaard 1)
  2339. **2Sg_Laat LABEL en GOTO toe
  2340. **2Sh_Gebruik ansistrings
  2341. **2Si_Ondersteun INLINE
  2342. **2Sm_Ondersteun macros zoals in C (globaal)
  2343. **2So_Probeer TP/BP 7.0 compatibel te zijn
  2344. **2Sp_Probeer GNU Pascal compatibel te zijn
  2345. **2Ss_Constructor naam moet init zijn (destructor moet done zijn)
  2346. **2St_Sta static sleutelwoord toe in objecten
  2347. **1s_Roep assembler en linker niet op (slechts met -a)
  2348. **1sh_Genereer een script om op het hostplatform te linken
  2349. **1sr_Voer geen registertoewijzing uit (optimalizaties worden uitgeschakeld)
  2350. **1st_Genereer een script om op het doelplatform te linken
  2351. **1u<x>_Verwijdert symbooldefinitie <x>
  2352. **1U_unit opties
  2353. **2Un_Unit naam niet nagaan
  2354. **2Us_Compileer een systeemunit
  2355. **1v<x>_Wees uitvoerig. <x> is een combinatie van volgende letters:
  2356. **2*_e : Toon fouten (standaard) d : Toon debug informatie
  2357. **2*_w : Toon waarschuwingen u : Toon gebruikte bestanden
  2358. **2*_n : Toon notas t : Toon geteste bestanden
  2359. **2*_h : Toon hints m : Toon gedefinieerde macros
  2360. **2*_i : Toon algemene informatie p : Toon gecompileerde routines
  2361. **2*_l : Toon regelnummers c : Toon voorwaardelijken
  2362. **2*_a : Toon alles 0 : Toon alleen fouten
  2363. **2*_b : Toon alle procedures r : Rhide/GCC compatibiliteit modus
  2364. **2*_ declaraties indien een x : Executable informatie (alleen Win32)
  2365. **2*_ fout optreedt
  2366. **1X_applicatie instellingen
  2367. *L2Xc_link met de C bibliotheek
  2368. **2Xs_verwijder alle symbolen uit applicatie
  2369. **2XD_link met dynamische bibliotheken (definieert FPC_LINK_DYNAMIC)
  2370. **2XS_link met statische bibliotheken (definieert FPC_LINK_STATIC)
  2371. **2XS_link slim (definieert FPC_LINK_STATIC_SMART)
  2372. **0*_Processor specifieke instellingen:
  2373. 3*1A_Output formaat
  2374. 3*2Aas_assembleer met GNU AS
  2375. 3*2Aasaout_assembleer met GNU AS voor aout (Go32v1)
  2376. 3*2Anasmcoff_Coff (Go32v2) bestand met Nasm
  2377. 3*2Anasmelf_elf32 (linux) bestand met Nasm
  2378. 3*2Anasmobj_obj bestand met Nasm
  2379. 3*2Amasm_obj bestand met Masm (Microsoft)
  2380. 3*2Atasm_obj bestand met Tasm (Borland)
  2381. 3*2Acoff_coff (Go32v2) met interne assembler
  2382. 3*2Apecoff_pecoff (Win32) met interne assembler
  2383. 3*1R<x>_Geef de grammatica voor de assemblerlezer op:
  2384. 3*2Ratt_Lees assembler in AT&T stijl
  2385. 3*2Rintel_Lees assembler in Intel stijl
  2386. 3*2Rdirect_Kopieer assemblercode rechtstreeks naar assemblerbestand
  2387. 3*1O<x>_optimalizaties
  2388. 3*2Og_Genereer kleinere code
  2389. 3*2OG_Genereerd snellere code (standaard)
  2390. 3*2Or_Houdt zekere variabelen in registers (Nog steeds BUGGY!!!)
  2391. 3*2Ou_Probeer onzekere optimalizaties (zie documentatie)
  2392. 3*2O1_Niveau 1 optimalizaties (snelle optimizaties)
  2393. 3*2O2_Niveau 2 optimalizaties (-O1 + tragere optimizaties)
  2394. 3*2O3_Niveau 3 optimalizaties (Zelfde als -O2u)
  2395. 3*2Op_Doelprocessor
  2396. 3*3Op1_Stel doelprocessor in op 386/486
  2397. 3*3Op2_Stel doelprocessor in op Pentium/PentiumMMX (tm)
  2398. 3*3Op3_Stel doelprocessor in op PPro/PII/c6x86/K6 (tm)
  2399. 6*1T<x>_Doel besturingssysteem:
  2400. 3*2TGO32V2_version 2 of DJ Delorie DOS extender
  2401. 3*2TLINUX_Linux
  2402. 3*2TOS2_OS/2 / eComStation
  2403. 3*2TWIN32_Windows 32 Bit
  2404. 3*1W<x>_Win32 Doel opties
  2405. 3*2WB<x>_Stel Image base in op (hexadecimale) waarde <x>
  2406. 3*2WC_Maak een console applicatie
  2407. 3*2WD_Gebruik DEFFILE om functies van bibliotheek of applicatie te exporteren
  2408. 3*2WG_Maak een grafische applicatie
  2409. 3*2WN_Genereer geen relocatie code (nodig voor debuggen)
  2410. 3*2WR_Genereer relocatie code
  2411. 6*1A_output formaat
  2412. 6*2Aas_Unix o-bestand met GNU AS
  2413. 6*2Agas_GNU Motorola assembler
  2414. 6*2Amit_MIT Syntax (oude GAS)
  2415. 6*2Amot_Standaard Motorola assembler
  2416. 6*1O_optimizaties
  2417. 6*2Oa_Gebruik de optimizaties
  2418. 6*2Og_Genereer kleinere code
  2419. 6*2OG_Genereer snellere code (standaard)
  2420. 6*2Ox_Optimizeer maximaal (nog steeds BUGGY!!!)
  2421. 6*2O2_Stel doelprocessor in op MC68020+
  2422. 6*1R<x>_assembler reading style:
  2423. 6*2RMOT_read motorola style assembler
  2424. 6*1T<x>_Target operating system:
  2425. 6*2TAMIGA_Commodore Amiga
  2426. 6*2TATARI_Atari ST/STe/TT
  2427. 6*2TMACOS_Macintosh m68k
  2428. 6*2TLINUX_Linux-68k
  2429. **1*_
  2430. **1?_Toont deze hulp
  2431. **1h_Toont deze hulp zonder wachten
  2432. ]
  2433. #
  2434. # The End...