errorn.msg 136 KB

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