errorf.msg 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875
  1. #
  2. # $Id$
  3. # This file is part of the Free Pascal Compiler
  4. # Copyright (c) 1998-2000 by the Free Pascal Development team
  5. #
  6. # French (cp850) Language File for Free Pascal
  7. #
  8. # See the file COPYING.FPC, included in this distribution,
  9. # for details about the copyright.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. #
  15. #
  16. # The constants are build in the following order:
  17. # <part>_<type>_<txtidentifier>
  18. #
  19. # <part> is the part of the compiler the message is used
  20. # asmr_ assembler parsing
  21. # asmw_ assembler writing/binary writers
  22. # unit_ unit handling
  23. # scan_ scanner
  24. # parser_ parser
  25. # type_ type checking
  26. # general_ general info
  27. # exec_ calls to assembler, linker, binder
  28. #
  29. # <type> the type of the message it should normally used for
  30. # f_ fatal error
  31. # e_ error
  32. # w_ warning
  33. # n_ note
  34. # h_ hint
  35. # i_ info
  36. # l_ linenumber
  37. # u_ used
  38. # t_ tried
  39. # m_ macro
  40. # p_ procedure
  41. # c_ conditional
  42. # d_ debug message
  43. # b_ display overloaded procedures
  44. # x_ executable informations
  45. #
  46. #
  47. # General
  48. #
  49. # BeginOfTeX
  50. % \section{General compiler messages}
  51. % This section gives the compiler messages which are not fatal, but which
  52. % display useful information. The number of such messages can be
  53. % controlled with the various verbosity level \var{-v} switches.
  54. % \begin{description}
  55. general_t_compilername=T_Compilateur : $1
  56. % When the \var{-vt} switch is used, this line tells you what compiler
  57. % is used.
  58. general_d_sourceos=D_SystŠme d'exploitation source : $1
  59. % When the \var{-vd} switch is used, this line tells you what the source
  60. % operating system is.
  61. general_i_targetos=I_SystŠme d'exploitation cible : $1
  62. % When the \var{-vd} switch is used, this line tells you what the target
  63. % operating system is.
  64. general_t_exepath=T_R‚pertoire pour fichiers executables : $1
  65. % When the \var{-vt} switch is used, this line tells you where the compiler
  66. % looks for it's binaries.
  67. general_t_unitpath=T_R‚pertoire de recherche d'unit‚s : $1
  68. % When the \var{-vt} switch is used, this line tells you where the compiler
  69. % looks for compiled units. You can set this path with the \var{-Fu}
  70. general_t_includepath=T_R‚pertoire pour recherche de fichiers inclus : $1
  71. % When the \var{-vt} switch is used, this line tells you where the compiler
  72. % looks for it's include files (files used in \var{\{\$I xxx\}} statements).
  73. % You can set this path with the \var{-I} option.
  74. general_t_librarypath=T_R‚pertoire pour librairies : $1
  75. % When the \var{-vt} switch is used, this line tells you where the compiler
  76. % looks for the libraries. You can set this path with the \var{-Fl} option.
  77. general_t_objectpath=T_R‚pertoire pour fichiers objets : $1
  78. % When the \var{-vt} switch is used, this line tells you where the compiler
  79. % looks for object files you link in (files used in \var{\{\$L xxx\}} statements).
  80. % You can set this path with the \var{-Fo} option.
  81. general_i_abslines_compiled=I_$1 lignes compil‚es, $2 secondes
  82. % When the \var{-vi} switch is used, the compiler reports the number
  83. % of lines compiled, and the time it took to compile them (real time,
  84. % not program time).
  85. general_f_no_memory_left=F_Plus de m‚moire disponible
  86. % The compiler doesn't have enough memory to compile your program. There are
  87. % several remedies for this:
  88. % \begin{itemize}
  89. % \item If you're using the build option of the compiler, try compiling the
  90. % different units manually.
  91. % \item If you're compiling a huge program, split it up in units, and compile
  92. % these separately.
  93. % \item If the previous two don't work, recompile the compiler with a bigger
  94. % heap (you can use the \var{-Ch} option for this, \seeo{Ch})
  95. % \end{itemize}
  96. % \end{description}
  97. #
  98. # Scanner
  99. #
  100. % \section{Scanner messages.}
  101. % This section lists the messages that the scanner emits. The scanner takes
  102. % care of the lexical structure of the pascal file, i.e. it tries to find
  103. % reserved words, strings, etc. It also takes care of directives and
  104. % conditional compiling handling.
  105. % \begin{description}
  106. general_i_writingresourcefile=I_Ecriture du fichier Resource : $1
  107. % This message is shown when the compiler writes the Resource String Table
  108. % file containing all the resource strings for a program.
  109. general_e_errorwritingresourcefile=E_Ecriture du fichier Resource String Table : $1
  110. % This message is shown when the compiler encountered an error when writing
  111. % the Resource String Table file
  112. % \end{description}
  113. #
  114. # Scanner
  115. #
  116. % \section{Scanner messages.}
  117. % This section lists the messages that the scanner emits. The scanner takes
  118. % care of the lexical structure of the pascal file, i.e. it tries to find
  119. % reserved words, strings, etc. It also takes care of directives and
  120. % conditional compiling handling.
  121. % \begin{description}
  122. scan_f_end_of_file=F_Fin de fichier inattendue
  123. % this typically happens in on of the following cases :
  124. % \begin{itemize}
  125. % \item The source file ends befor then final \var{end.} statement. This
  126. % happens mostly when the \var{begin} and \var{end} statements aren't
  127. % balanced;
  128. % \item An include file ends in the middle of a statement.
  129. % \item A comment wasn't closed.
  130. % \end{itemize}
  131. scan_f_string_exceeds_line=F_String au-del… de la fin de ligne
  132. % You forgot probably to include the closing ' in a string, so it occupies
  133. % multiple lines.
  134. scan_f_illegal_char=F_caractŠre ill‚gal
  135. % An illegal character was encountered in the input file.
  136. scan_f_syn_expected=F_Erreur de syntaxe, $1 attendu mais $2 trouv‚
  137. % This indicates that the compiler expected a different token than
  138. % the one you typed. It can occur almost everywhere where you make a
  139. % mistake against the pascal language.
  140. scan_t_start_include_file=T_D‚but de lecture du fichier inclus $1
  141. % When you provide the \var{-vt} switch, the compiler tells you
  142. % when it starts reading an included file.
  143. scan_w_comment_level=W_Commentaire de niveau $1
  144. % When the \var{-vw} switch is used, then the compiler warns you if
  145. % it finds nested comments. Nested comments are not allowed in Turbo Pascal
  146. % and can be a possible source of errors.
  147. scan_n_far_directive_ignored=N_$F directive (FAR) ignor‚e
  148. % The \var{FAR} directive is a 16-bit construction which is recorgnised
  149. % but ignored by the compiler, since it produces 32 bit code.
  150. scan_n_stack_check_global_under_linux=N_Le controle de la gestion de la pile est global sous Linux
  151. % Stack checking with the \var{-Cs} switch is ignored under \linux, since
  152. % \linux does this for you. Only displayed when \var{-vn} is used.
  153. scan_n_ignored_switch=N_Switch "$1" ignor‚
  154. % With \var{-vn} on, the compiler warns if it ignores a switch
  155. scan_w_illegal_switch=W_Switch "$1" ill‚gal
  156. % You included a compiler switch (i.e. \var{\{\$... \}}) which the compiler
  157. % doesn't know.
  158. scan_w_switch_is_global=W_Ce switch a un effet global
  159. % When \var{-vw} is used, the compiler warns if a switch is global.
  160. scan_e_illegal_char_const=E_Constante de type char ill‚gale
  161. % This happens when you specify a character with its ASCII code, as in
  162. % \var{\#96}, but the number is either illegal, or out of range. The range
  163. % is 1-255.
  164. scan_f_cannot_open_input=F_Impossible d'ouvrir le fichier $1
  165. % \fpc cannot find the program or unit source file you specified on the
  166. % command line.
  167. scan_f_cannot_open_includefile=F_Impossible d'ouvrir le fichier inclus $1
  168. % \fpc cannot find the source file you specified in a \var{\{\$include \}}
  169. % stateent.
  170. scan_e_too_much_endifs=E_Trop de $ENDIFs ou de $ELSEs
  171. % Your \var{\{\$IFDEF ..\}} and {\{\$ENDIF\}} statements aren't balanced.
  172. scan_w_only_pack_records=W_L'alignement des Records peut uniquement ˆtre de 1,2,4,8 ou 16 bytes
  173. % You are specifying the \var{\{\$PACKRECORDS n\} } with an illegal value for
  174. % \var{n}. Only 1,2,4 or 16 are valid in this case.
  175. scan_w_only_pack_enum=W_Les ‚numerations peuvent seulement ˆtre sauvegard‚s en 1,2 ou 4 bytes
  176. % You are specifying the \var{\{\$PACKENUM n\}} with an illegal value for
  177. % \var{n}. Only 1,2 or 4 are valid in this case.
  178. scan_e_endif_expected=E_$1 attendu pour $2 d‚fini … la ligne $3
  179. % Your conditional compilation statements are unbalanced.
  180. scan_e_preproc_syntax_error=E_Erreur de syntaxe pendant l'interpr‚tation d'une directive de compilation
  181. % There is an error in the expression following the \var{\{\$if \}} compiler
  182. % directive.
  183. scan_e_error_in_preproc_expr=E_Erreur d'‚valuation d'une directive de compilation
  184. % There is an error in the expression following the \var{\{\$if \}} compiler
  185. % directive.
  186. scan_w_marco_cut_after_255_chars=W_Le contenu d'une macro est tronqu‚ … 255 caractŠres
  187. % The contents of macros canno be longer than 255 characters. This is a
  188. % safety in the compiler, to prevent buffer overflows. This is shown as a
  189. % warning, i.e. when the \var{-vw} switch is used.
  190. scan_e_endif_without_if=E_ENDIF sans IF(N)DEF
  191. % Your \var{\{\$IFDEF ..\}} and {\{\$ENDIF\}} statements aren't balanced.
  192. scan_f_user_defined=F_D‚fini par l'utilisateur : $1
  193. % A user defined fatal error occurred. see also the \progref
  194. scan_e_user_defined=E_D‚fini par l'utilisateur : $1
  195. % A user defined error occurred. see also the \progref
  196. scan_w_user_defined=W_D‚fini par l'utilisateur : $1
  197. % A user defined warning occurred. see also the \progref
  198. scan_n_user_defined=N_D‚fini par l'utilisateur : $1
  199. % A user defined note was encountered. see also the \progref
  200. scan_h_user_defined=H_D‚fini par l'utilisateur : $1
  201. % A user defined hint was encountered. see also the \progref
  202. scan_i_user_defined=I_D‚fini par l'utilisateur : $1
  203. % User defined information was encountered. see also the \progref
  204. scan_e_keyword_cant_be_a_macro=E_Impossible de redefinir un mot r‚serv‚
  205. % You cannot redefine keywords with macros.
  206. scan_f_macro_buffer_overflow=F_D‚bordement du buffer de la macro en lecture ou expansion
  207. % Your macro or it's result was too long for the compiler.
  208. scan_w_macro_deep_ten=W_L'expansion des macros d‚passe un niveau de 16.
  209. % When expanding a macro macros have been nested to a level of 16.
  210. % The compiler will expand no further, since this may be a sign that
  211. % recursion is used.
  212. scan_e_wrong_styled_switch=E_Les directives de compilation entre (* ... *) ne sont pas accept‚es
  213. % Compiler switches should always be between \var{\{ \}} comment delimiters.
  214. scan_d_handling_switch=D_Interpr‚tation switch "$1"
  215. % When you set debugging info on (\var{-vd}) the compiler tells you when it
  216. % is evaluating conditional compile statements.
  217. scan_c_endif_found=C_ENDIF $1 trouv‚
  218. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  219. % where it encounters conditional statements.
  220. scan_c_ifdef_found=C_IFDEF $1 trouv‚, $2
  221. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  222. % where it encounters conditional statements.
  223. scan_c_ifopt_found=C_IFOPT $1 trouv‚, $2
  224. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  225. % where it encounters conditional statements.
  226. scan_c_if_found=C_IF $1 trouv‚, $2
  227. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  228. % where it encounters conditional statements.
  229. scan_c_ifndef_found=C_IFNDEF $1 trouv‚, $2
  230. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  231. % where it encounters conditional statements.
  232. scan_c_else_found=C_ELSE $1 trouv‚, $2
  233. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  234. % where it encounters conditional statements.
  235. scan_c_skipping_until=C_Passant jusqu'…...
  236. % When you turn on conditional messages(\var{-vc}), the compiler tells you
  237. % where it encounters conditional statements, and whether it is skipping or
  238. % compiling parts.
  239. scan_i_press_enter=I_Appuyez sur <Entr‚e> pour continuer
  240. % When the \var{-vi} switch is used, the compiler stops compilation
  241. % and waits for the \var{Enter} key to be pressed when it encounters
  242. % a \var{\{\$STOP\}} directive.
  243. scan_w_unsupported_switch=W_Switch non support‚ $1
  244. % When warings are turned on (\var{-vw}) the compiler warns you about
  245. % unsupported switches. This means that the switch is used in Delphi or
  246. % Turbo Pascal, but not in \fpc
  247. scan_w_illegal_directive=W_directive de compilation ill‚gale $1
  248. % When warings are turned on (\var{-vw}) the compiler warns you about
  249. % unrecognised switches. For a list of recognised switches, \progref
  250. scan_t_back_in=T_De retour dans $1
  251. % When you use (\var{-vt}) the compiler tells you when it has finished
  252. % reading an include file.
  253. scan_w_unsupported_app_type=W_Type d'application non support‚e : $1
  254. % You get this warning, ff you specify an unknown application type
  255. % with the directive $APPTYPE
  256. scan_w_app_type_not_support=W_$APPTYPE non support‚ par OS cible
  257. % The $APPTYPE directive is supported by win32 applications only
  258. scan_w_decription_not_support=W_DESCRIPTION est support‚ seulement pour OS2 et Win32
  259. % The \var{\{\$DESCRIPTION\}} directive is only supported for OS2 and Win32 targets.
  260. scan_n_version_not_support=N_VERSION non support‚ par OS cible
  261. % The \var{\{\$VERSION\}} directive is only supported by win32 target.
  262. scan_n_only_exe_version=N_VERSION seulement pour exes ou DLLs
  263. % The \var{\{\$VERSION\}} directive is only used for executable or DLL sources.
  264. scan_w_wrong_version_ignored=W_Mauvais format de la directive VERSION $1
  265. % The \var{\{\$VERSION\}} directive format is major_version.minor_version
  266. % where major_version and minor_version are words.
  267. scan_w_unsupported_asmmode_specifier=W_Style assembleur non support‚ $1
  268. % When you specify an assembler mode with the \var{\{\$ASMMODE xxx\}}
  269. % the compiler didn't recognize the mode you specified.
  270. scan_w_no_asm_reader_switch_inside_asm=W_Changement de type d'interpr‚teur ASM … l'int‚rieur de code assembleur, $1 sera effectif seulement pour le prochain
  271. % It is not possible to switch from one assembler reader to another
  272. % inside an assmebler block. The new reader will be used for next
  273. % assembler statement only.
  274. scan_e_wrong_switch_toggle=E_Mauvais argument de switch, utilisez ON/OFF ou +/-
  275. % You need to use ON or OFF or a + or - to toggle the switch
  276. scan_e_resourcefiles_not_supported=E_Fichiers ressource non support‚ pour cette cible
  277. % The target you are compiling for doesn't support Resource files. The
  278. % only target which can use resource files is Win32
  279. %
  280. % \end{description}
  281. #
  282. # Parser
  283. #
  284. % \section{Parser messages}
  285. % This section lists all parser messages. The parser takes care of the
  286. % semantics of you language, i.e. it determines if your pascal constructs
  287. % are correct.
  288. % \begin{description}
  289. scan_w_include_env_not_found=W_Include pour variable d'environment $1 non trouv‚
  290. % The included environment variable can't be found in the environment, it'll
  291. % be replaced by an empty string instead.
  292. scan_e_invalid_maxfpureg_value=E_Valeur invalide pour nombre limite de variables en registre FPU
  293. % Valid values for this directive are 0..8 and NORMAL/DEFAULT
  294. % \end{description}
  295. #
  296. # Parser
  297. #
  298. % \section{Parser messages}
  299. % This section lists all parser messages. The parser takes care of the
  300. % semantics of you language, i.e. it determines if your pascal constructs
  301. % are correct.
  302. % \begin{description}
  303. parser_e_syntax_error=E_Parseur - Erreur de syntaxe
  304. % An error against the Turbo Pascal language was encountered. This happens
  305. % typically when an illegal character is found in the sources file.
  306. parser_w_proc_far_ignored=W_Directive pour proc‚dure FAR ignor‚
  307. % This is a warning. \var{FAR} is a construct for 8 or 16 bit programs. Since
  308. % the compile generates 32 bit programs, it ignores this directive.
  309. parser_w_proc_near_ignored=W_Directive pour proc‚dure NEAR ignor‚
  310. % This is a warning. \var{NEAR} is a construct for 8 or 16 bit programs. Since
  311. % the compile generates 32 bit programs, it ignores this directive.
  312. parser_w_proc_interrupt_ignored=W_Directive pour proc‚dure INTERRUPT ignor‚
  313. % This is a warning. \var{INTERRUPT} is a i386 specific construct
  314. % and is igonred for other processors.
  315. parser_e_dont_nest_interrupt=E_Une proc‚dure de type INTERRUPT ne peut ˆtre locale
  316. % An \VAR{INTERRUPT} procedure must be global.
  317. parser_w_proc_register_ignored=W_Directive pour proc‚dure REGISTER ignor‚e
  318. % This is a warning. \var{REGISTER} is ignored by FPC programs for now.
  319. % This is introduced first for Delphi compatibility.
  320. parser_e_no_dll_file_specified=E_Pas de fichier DLL sp‚cifi‚
  321. % No longer in use.
  322. parser_e_export_name_double=E_Nom de fonction export‚e doubl‚ $1
  323. % Exported function names inside a specific DLL must all be different
  324. parser_e_export_ordinal_double=E_Index de fonction export‚e doubl‚ $1
  325. % Exported function names inside a specific DLL must all be different
  326. parser_e_export_invalid_index=E_Index non valide pour fonction export‚e
  327. % DLL function index must be in the range 1..$FFFF
  328. parser_w_parser_reloc_no_debug=W_Les DLL ou EXE relogeables sont incompatibles avec les informations de d‚bogage, d‚bogage d‚sactiv‚.
  329. parser_w_parser_win32_debug_needs_WN=W_Pour permettre le d‚bogage de code win32, utilisez l'option -WN
  330. % Stabs info is wrong for relocatable DLL or EXES use -WN
  331. % if you want to debug win32 executables.
  332. parser_e_constructorname_must_be_init=E_Le nom du constructeur doit ˆtre INIT
  333. % You are declaring a constructor with a name which isn't \var{init}, and the
  334. % \var{-Ss} switch is in effect. See the \var{-Ss} switch (\seeo{Ss}).
  335. parser_e_destructorname_must_be_done=E_Le nom du destructeur doit ˆtre DONE
  336. % You are declaring a constructor with a name which isn't \var{done}, and the
  337. % \var{-Ss} switch is in effect. See the \var{-Ss} switch (\seeo{Ss}).
  338. parser_e_illegal_open_parameter=E_ParamŠtre ouvert non valide
  339. % You are trying to use the wrong type for an open parameter.
  340. parser_e_proc_inline_not_supported=E_Directive de fonction INLINE non support‚e
  341. % You tried to compile a program with C++ style inlining, and forgot to
  342. % specify the \var{-Si} option (\seeo{Si}). The compiler doesn't support C++
  343. % styled inlining by default.
  344. parser_w_priv_meth_not_virtual=W_Les m‚thodes priv‚es ne devraient pas ˆtre virutelles
  345. % You declared a method in the private part of a object (class) as
  346. % \var{virtual}. This is not allowed. Private methods cannot be overridden
  347. % anyway.
  348. parser_w_constructor_should_be_public=W_Le constructeur devrait ˆtre public
  349. % Constructors must be in the 'public' part of an object (class) declaration.
  350. parser_w_destructor_should_be_public=W_Le destructeur devrait ˆtre public
  351. % Destructors must be in the 'public' part of an object (class) declaration.
  352. parser_n_only_one_destructor=N_Les classes ne devraient avoir qu'un selu destructeur
  353. % You can declare only one destructor for a class.
  354. parser_e_no_local_objects=E_Les D‚finitions locales de classes ne sont pas autoris‚es
  355. % Classes must be defined globally. They cannot be defined inside a
  356. % procedure or function
  357. parser_f_no_anonym_objects=F_Les d‚finitions de classes anonymes sont interdites
  358. % An invalid object (class) declaration was encountered, i.e. an
  359. % object or class without methods that isn't derived from another object or
  360. % class. For example:
  361. % \begin{verbatim}
  362. % Type o = object
  363. % a : longint;
  364. % end;
  365. % \end{verbatim}
  366. % will trigger this error.
  367. parser_object_has_no_vmt=E_L'object $1 n'a pas de table de m‚thodes virtuelles (VMT)
  368. parser_e_illegal_parameter_list=E_Liste de paramŠtres ill‚gale
  369. % You are calling a function with parameters that are of a different type than
  370. % the declared parameters of the function.
  371. parser_e_wrong_parameter_type=E_Mauvais type pour paramŠtre #$1
  372. % There is an error in the parameter list of the function or procedure.
  373. % The compiler cannot determine the error more accurate than this.
  374. parser_e_wrong_parameter_size=E_Mauvais nombre de paramŠtres sp‚cifi‚
  375. % There is an error in the parameter list of the function or procedure,
  376. % the number of parameters is not correct.
  377. parser_e_overloaded_no_procedure=E_L'identificateur surcharg‚ $1 n'est pas une fonction
  378. % The compiler encountered a symbol with the same name as an overloaded
  379. % function, but it isn't a function it can overload.
  380. parser_e_overloaded_have_same_parameters=E_Les fonctions surcharg‚es ont les mˆmes paramŠtres
  381. % You're declaring overloaded functions, but with the same parameter list.
  382. % Overloaded function must have at least 1 different parameter in their
  383. % declaration.
  384. parser_e_header_dont_match_forward=E_L'entˆte de la fonction ne correspond pas … la d‚claration $1
  385. % You declared a function with same parameters but
  386. % different result type or function specifiers.
  387. parser_e_header_different_var_names=E_L'entˆte de la fonction $1 ne correspond pas … la d‚claration : le nom de variable change $2 => $3
  388. % You declared the function in the \var{interface} part, or with the
  389. % \var{forward} directive, but define it with a different parameter list.
  390. parser_n_duplicate_enum=N_Les valeurs d'une ‚num‚ration doivent ˆtre en ordre ascendant
  391. % \fpc allows enumeration constructions as in C. Given the following
  392. % declaration two declarations:
  393. % \begin{verbatim}
  394. % type a = (A_A,A_B,A_E:=6,A_UAS:=200);
  395. % type a = (A_A,A_B,A_E:=6,A_UAS:=4);
  396. % \end{verbatim}
  397. % The second declaration would produce an error. \var{A\_UAS} needs to have a
  398. % value higher than \var{A\_E}, i.e. at least 7.
  399. parser_n_interface_name_diff_implementation_name=N_Les noms d'interface et d'implementation sont diff‚rents $1 => $2
  400. % This note warns you if the implementation and interface names of a
  401. % functions are different, but they have the same mangled name. This
  402. % is important when using overloaded functions (but should produce no error).
  403. parser_e_no_with_for_variable_in_other_segments=E_With ne peut ˆtre utilis‚ pour des variables dans un autre segment
  404. % With stores a variable locally on the stack,
  405. % but this is not possible if the variable belongs to another segment.
  406. parser_e_too_much_lexlevel=E_Niveau d'inbrication de fonctions > 31
  407. % You can nest function definitions only 31 times.
  408. parser_e_range_check_error=E_Erreur d'intervalle dans l'‚valuation d'une constante
  409. % The constants are out of their allowed range.
  410. parser_w_range_check_error=W_Erreur d'intervalle dans l'‚valuation d'une constante
  411. % The constants are out of their allowed range.
  412. parser_e_double_caselabel=E_Valeur en double dans une instruction CASE
  413. % You are specifying the same label 2 times in a \var{case} statement.
  414. parser_e_case_lower_less_than_upper_bound=E_Valeur max inf‚rieure … la valeur min dans CASE
  415. % The upper bound of a \var{case} label is less than the lower bound and this
  416. % is useless
  417. parser_e_type_const_not_possible=E_Les constantes typ‚es de classes sont interdites
  418. % You cannot declare a constant of type class or object.
  419. parser_e_no_overloaded_procvars=E_Impossible d'assigner … une variable fonctionelle une fonction surcharg‚e
  420. % You are trying to assign an overloaded function to a procedural variable.
  421. % This isn't allowed.
  422. parser_e_invalid_string_size=E_La longueur d'une STRING doit ˆtre situ‚e entre 1 et 255
  423. % The length of a string in Pascal is limited to 255 characters. You are
  424. % trying to declare a string with length lower than 1 or greater than 255
  425. % (This is not true for \var{Longstrings} and \var{AnsiStrings}.
  426. parser_w_use_extended_syntax_for_objects=W_Utilisez la syntaxe ‚tendue de NEW et DISPOSE pour les objets
  427. % If you have a pointer \var{a} to a class type, then the statement
  428. % \var{new(a)} will not initialize the class (i.e. the constructor isn't
  429. % called), although space will be allocated. you should issue the
  430. % \var{new(a,init)} statement. This will allocate space, and call the
  431. % constructor of the class.
  432. parser_w_no_new_dispose_on_void_pointers=W_L'usage de NEW ou DISPOSE pour des pointeurs non typ‚s est sans signification meaningless
  433. parser_e_no_new_dispose_on_void_pointers=E_L'usage de NEW ou DISPOSE pour des pointeurs non typ‚s est sans signification meaningless
  434. % You cannot use \var{new(p)} or \var{dispose(p)} if \var{p} is an untyped pointer
  435. % because no size is associated to an untyped pointer.
  436. % Accepted for compatibility in \var{tp} and \vat{delphi} modes.
  437. parser_e_class_id_expected=E_Identificateur de classe attendu
  438. % This happens when the compiler scans a procedure declaration that contains
  439. % a dot,
  440. % i.e., a object or class method, but the type in front of the dot is not
  441. % a known type.
  442. parser_e_no_type_not_allowed_here=E_Identificateur de type interdit ici
  443. % You cannot use a type inside an expression.
  444. parser_e_methode_id_expected=E_Identificateur de m‚thode attendu
  445. % This identifier is not a method.
  446. % This happens when the compiler scans a procedure declaration that contains
  447. % a dot, i.e., a object or class method, but the procedure name is not a
  448. % procedure of this type.
  449. parser_e_header_dont_match_any_member=E_La fonction ne correspond … aucune m‚thode de cette classe
  450. % This identifier is not a method.
  451. % This happens when the compiler scans a procedure declaration that contains
  452. % a dot, i.e., a object or class method, but the procedure name is not a
  453. % procedure of this type.
  454. parser_p_procedure_start=P_proc‚dure/fonction $1
  455. % When using the \var{-vp} switch, the compiler tells you when it starts
  456. % processing a procedure or function implementation.
  457. parser_e_error_in_real=E_Constante r‚elle ill‚gale
  458. % The compiler expects a floating point expression, and gets something else.
  459. parser_e_fail_only_in_constructor=E_FAIL peut uniquement ˆtre utilis‚ dans un constructeur
  460. % You are using the \var{FAIL} instruction outside a constructor method.
  461. parser_e_no_paras_for_destructor=E_Les destructeurs ne peuvent avoir de paramŠtres
  462. % You are declaring a destructor with a parameter list. Destructor methods
  463. % cannot have parameters.
  464. parser_e_only_class_methods_via_class_ref=E_Seules des m‚thodes de classes peuvent ˆtre r‚f‚r‚ avec des r‚f‚rences de classes
  465. % This error occurs in a situation like the following:
  466. % \begin{verbatim}
  467. % Type :
  468. % Tclass = Class of Tobject;
  469. %
  470. % Var C : TClass;
  471. %
  472. % begin
  473. % ...
  474. % C.free
  475. % \end{verbatim}
  476. % \var{Free} is not a class method and hence cannot be called with a class
  477. % reference.
  478. parser_e_only_class_methods=E_Seuls des m‚thodes de classes peuvent ˆtre appel‚s dans une m‚thode de classe
  479. % This is related to the previous error. You cannot call a method of an object
  480. % from a inside a class method. The following code would produce this error:
  481. % \begin{verbatim}
  482. % class procedure tobject.x;
  483. %
  484. % begin
  485. % free
  486. % \end{verbatim}
  487. % Because free is a normal method of a class it cannot be called from a class
  488. % method.
  489. parser_e_case_mismatch=E_La constante et le type de CASE ne conserpodnet pas
  490. % One of the labels is not of the same type as the case variable.
  491. parser_e_illegal_symbol_exported=E_Le symbole ne peut ˆtre export‚ d'une librairie
  492. % You can only export procedures and functions when you write a library. You
  493. % cannot export variables or constants.
  494. parser_w_should_use_override=W_Une m‚thode h‚rit‚e est cach‚e par $1
  495. % A method that is declared \var{virtual} in a parent class, should be
  496. % overridden in the descendent class with the \var{override} directive. If you
  497. % don't specify the \var{override} directive, you will hide the parent method;
  498. % you will not override it.
  499. parser_e_nothing_to_be_overridden=E_Il n'y a pas de m‚thode dans l'ancˆtre que l'on peut surcharger : $1
  500. % You try to \var{override} a virtual method of a parent class that doesn't
  501. % exist.
  502. parser_e_no_procedure_to_access_property=E_Il manque un champ pour sp‚cifier l'accŠss … la property
  503. % You specified no \var{read} directive for a property.
  504. parser_w_stored_not_implemented=W_Directive de property Stored non implement‚e
  505. % The \var{stored} directive is not yet implemented
  506. parser_e_ill_property_access_sym=E_Symbole ill‚gal pour accŠs … la property
  507. % There is an error in the \var{read} or \var{write} directives for an array
  508. % property. When you declare an array property, you can only access it with
  509. % procedures and functions. The following code woud cause such an error.
  510. % \begin{verbatim}
  511. % tmyobject = class
  512. % i : integer;
  513. % property x [i : integer]: integer read I write i;
  514. % \end{verbatim}
  515. %
  516. parser_e_cant_access_protected_member=E_Impossible d'acc‚der … un champ "protected" d'un object ici
  517. % Fields that are declared in a \var{protected} section of an object or class
  518. % declaration cannot be accessed outside the module wher the object is
  519. % defined, or outside descendent object methods.
  520. parser_e_cant_access_private_member=E_Impossible d'acc‚der … un champ "private" d'un object ici
  521. % Fields that are declared in a \var{private} section of an object or class
  522. % declaration cannot be accessed outside the module where the class is
  523. % defined.
  524. parser_w_overloaded_are_not_both_virtual=W_M‚thode surchargeant une m‚thode virtuelle devrait ˆtre virtuelle : $1
  525. % If you declare overloaded methods in a class, then they should either all be
  526. % virtual, or none. You shouldn't mix them.
  527. parser_w_overloaded_are_not_both_non_virtual=W_M‚thode surchargeant une m‚thode non virtuelle devrait ˆtre non virtuelle : $1
  528. % If you declare overloaded methods in a class, then they should either all be
  529. % virtual, or none. You shouldn't mix them.
  530. parser_e_overloaded_methodes_not_same_ret=E_M‚thodes virtuelles surcharg‚es doivent avoir le mˆme type r‚sultat : $1
  531. % If you declare virtual overloaded methods in a class definition, they must
  532. % have the same return type.
  533. parser_e_dont_nest_export=E_Des fonctions d‚clar‚es comme EXPORT ne peuvent ˆtre locales
  534. % You cannot declare a function or procedure within a function or procedure
  535. % that was declared as an export procedure.
  536. parser_e_methods_dont_be_export=E_Les m‚thodes ne peuvent pas ˆtre EXPORT‚es
  537. % You cannot declare a procedure that is a method for an object as
  538. % \var{export}ed. That is, your methods cannot be called from a C program.
  539. parser_e_call_by_ref_without_typeconv=E_Un appel avec paramŠtre par variable doivent ˆtre du type exact de la d‚claration
  540. % When calling a function declared with \var{var} parameters, the variables in
  541. % the function call must be of exactly the same type. There is no automatic
  542. % type conversion.
  543. parser_e_no_super_class=E_Cette classe n'est pas un paarent de la classe actuelle
  544. % When calling inherited methods, you are trying to call a method of a strange
  545. % class. You can only call an inherited method of a parent class.
  546. parser_e_self_not_in_method=E_SELF est seulement possible dans les m‚thodes
  547. % You are trying to use the \var{self} parameter outside an object's method.
  548. % Only methods get passed the \var{self} parameters.
  549. parser_e_generic_methods_only_in_methods=E_Les m‚thodes ne peuvent ˆtre appel‚s avec un type qu'… l'int‚rieur d'une m‚thode
  550. % A construction like \var{sometype.somemethod} is only allowed in a method.
  551. parser_e_illegal_colon_qualifier=E_Utilisation non valide de ':'
  552. % You are using the format \var{:} (colon) 2 times on an expression that
  553. % is not a real expression.
  554. parser_e_illegal_set_expr=E_Erreur d'intervalle ou ‚l‚ment dupliqu‚ dans un constructeur d'ensemble
  555. % The declaration of a set contains an error. Either one of the elements is
  556. % outside the range of the set type, either two of the elements are in fact
  557. % the same.
  558. parser_e_pointer_to_class_expected=E_Pointeur d'object attendu
  559. % You specified an illegal type in a \var{New} statement.
  560. % The extended synax of \var{New} needs an object as a parameter.
  561. parser_e_expr_have_to_be_constructor_call=E_Expression doit ˆtre un appel … un constructeur
  562. % When using the extended syntax of \var{new}, you must specify the constructor
  563. % method of the object you are trying to create. The procedure you specified
  564. % is not a constructor.
  565. parser_e_expr_have_to_be_destructor_call=E_Expression doit ˆtre un appel … un destructeur
  566. % When using the extended syntax of \var{dispose}, you must specify the
  567. % destructor method of the object you are trying to dispose of.
  568. % The procedure you specified is not a destructor.
  569. parser_e_invalid_record_const=E_Mauvais ordre des ‚l‚ments d'un record
  570. % When declaring a constant record, you specified the fields in the wrong
  571. % order.
  572. parser_e_false_with_expr=E_L'expression doit ˆtre de type record ou objet
  573. % A \var{with} statement needs an argument that is of the type \var{record}
  574. % or \var{class}. You are using \var{with} on an expression that is not of
  575. % this type.
  576. parser_e_void_function=E_Les proc‚dures ne peuvent retourner une valeur
  577. % In \fpc, you can specify a return value for a function when using
  578. % the \var{exit} statement. This error occurs when you try to do this with a
  579. % procedure. Procedures cannot return a value.
  580. parser_e_constructors_always_objects=E_Les constructeurs et destructeurs doivent ˆtre des m‚thodes
  581. % You're declaring a procedure as destructor or constructor, when the
  582. % procedure isn't a class method.
  583. parser_e_operator_not_overloaded=E_Operator n'est pas surcharg‚
  584. % You're trying to use an overloaded operator when it isn't overloaded for
  585. % this type.
  586. parser_e_no_such_assignment=E_Impossible de surcharger l'assignement pour des types ‚gaux
  587. % You can not overload assignment for types
  588. % that the compiler considers as equal.
  589. parser_e_no_reraise_possible=E_Re-raise impossible ici
  590. % You are trying to raise an exception where it isn't allowed. You can only
  591. % raise exceptions in an \var{except} block.
  592. parser_e_no_new_or_dispose_for_classes=E_La syntaxe ‚tendue de new ou dispose n'est pas valide pour une classe
  593. % You cannot generate an instance of a class with the extended syntax of
  594. % \var{new}. The constructor must be used for that. For the same reason, you
  595. % cannot call \var{Dispose} to de-allocate an instance of a class, the
  596. % destructor must be used for that.
  597. parser_e_asm_incomp_with_function_return=E_Directive "Assembler" incompatible avec le type de la fonction
  598. % You're trying to implement a \var{assembler} function, but the return type
  599. % of the function doesn't allow that.
  600. parser_e_procedure_overloading_is_off=E_L'overloading de proc‚dure est d‚sactiv‚
  601. % When using the \var{-So} switch, procedure overloading is switched off.
  602. % Turbo Pascal does not support function overloading.
  603. parser_e_overload_operator_failed=E_Impossible de red‚finir cet op‚rateur
  604. % You are trying to overload an operator which cannot be overloaded.
  605. % The following operators can be overloaded :
  606. % \begin{verbatim}
  607. % +, -, *, /, =, >, <, <=, >=, is, as, in, **, :=
  608. % \end{verbatim}
  609. parser_e_comparative_operator_return_boolean=E_Un op‚ratuer de comparaison doit retourner une valeur bool‚enne
  610. % When overloading the \var{=} operator, the function must return a boolean
  611. % value.
  612. parser_e_only_virtual_methods_abstract=E_Seule une m‚thode virtuelle peut ˆtre abstraite
  613. % You are declaring a method as abstract, when it isn't declared to be
  614. % virtual.
  615. parser_f_unsupported_feature=F_Utilisation d'une caract‚ristique non support‚e !
  616. % You're trying to force the compiler into doing something it cannot do yet.
  617. parser_e_mix_of_classes_and_objects=E_Il est interdit de m‚langer des objets et des classes
  618. % You cannot derive \var{objects} and \var{classes} intertwined . That is,
  619. % a class cannot have an object as parent and vice versa.
  620. parser_w_unknown_proc_directive_ignored=W_Directive de proc‚dure non reconnue a due ˆtre ignor‚e : $1
  621. % The procedure direcive you secified is unknown. Recognised procedure
  622. % directives are \var{cdecl}, \var{stdcall}, \var{popstack}, \var{pascal}
  623. % \var{register}, \var{export}.
  624. parser_e_absolute_only_one_var=E_absolute put seulement ˆtre associ‚ … une seule variable
  625. % You cannot specify more than one variable before the \var{absolute} directive.
  626. % Thus, the following construct will provide this error:
  627. % \begin{verbatim}
  628. % Var Z : Longint;
  629. % X,Y : Longint absolute Z;
  630. % \end{verbatim}
  631. % \item [ absolute can only be associated a var or const ]
  632. % The address of a \var{absolute} directive can only point to a variable or
  633. % constant. Therefore, the following code will produce this error:
  634. % \begin{verbatim}
  635. % Procedure X;
  636. %
  637. % var p : longint absolute x;
  638. % \end{verbatim}
  639. %
  640. parser_e_absolute_only_to_var_or_const=E_absolute peut seulement ˆtre associ‚ … une variable ou une constante
  641. % The address of a \var{absolute} directive can only point to a variable or
  642. % constant. Therefore, the following code will produce this error:
  643. % \begin{verbatim}
  644. % Procedure X;
  645. %
  646. % var p : longint absolute x;
  647. % \end{verbatim}
  648. %
  649. parser_e_initialized_only_one_var=E_Seule UNE variable peut ˆtre initialis‚e
  650. % You cannot specify more than one variable with a initial value
  651. % in Delphi syntax.
  652. parser_e_abstract_no_definition=E_Les m‚thodes "Abstract" ne peuvent pas avoir d'implementation
  653. % Abstract methods can only be declared, you cannot implement them. They
  654. % should be overridden by a descendant class.
  655. parser_e_overloaded_must_be_all_global=E_Cette fonction surcharg‚e ne peut ˆtre locale (doit ˆtre export‚e)
  656. % You are defining a overloaded function in the implementation part of a unit,
  657. % but there is no corresponding declaration in the interface part of the unit.
  658. parser_w_virtual_without_constructor=W_Des m‚thodes virtuelles sont utilis‚es sans constructeur pour $1
  659. % If you declare objects or classes that contain virtual methods, you need
  660. % to have a constructor and destructor to initialize them. The compiler
  661. % encountered an object or class with virtual methods that doesn't have
  662. % a constructor/destructor pair.
  663. parser_m_macro_defined=M_Macro d‚finie : $1
  664. % When \var{-vm} is used, the compiler tells you when it defines macros.
  665. parser_m_macro_undefined=M_Macro non d‚finie : $1
  666. % When \var{-vm} is used, the compiler tells you when it undefines macros.
  667. parser_m_macro_set_to=M_Macro $1 … pour valeur $2
  668. % When \var{-vm} is used, the compiler tells you what values macros get.
  669. parser_i_compiling=I_Compilation de $1
  670. % When you turn on information messages (\var{-vi}), the compiler tells you
  671. % what units it is recompiling.
  672. parser_u_parsing_interface=U_Lecture de l'interface de l'unit‚ $1
  673. % This tells you that the reading of the interface
  674. % of the current unit starts
  675. parser_u_parsing_implementation=U_Lecture de l'implementation de $1
  676. % This tells you that the code reading of the implementation
  677. % of the current unit, library or program starts
  678. parser_d_compiling_second_time=D_Compilation de $1 pour la seconde fois
  679. % When you request debug messages (\var{-vd}) the compiler tells you what
  680. % units it recompiles for the second time.
  681. parser_e_no_paras_allowed=E_Les propri‚t‚s vecteurs ne sont pas accept‚es ici
  682. % You cannot use array properties at that point.
  683. parser_e_no_property_found_to_override=E_Aucune propri‚t‚ trouv‚e pour override
  684. % You want to overrride a property of a parent class, when there is, in fact,
  685. % no such property in the parent class.
  686. parser_e_only_one_default_property=E_Seule une propri‚t‚ pard‚faut autoris‚e, il y en a une dans la classe $1
  687. % You specified a property as \var{Default}, but a parent class already has a
  688. % default property, and a class can have only one default property.
  689. parser_e_property_need_paras=E_La propri‚t‚ par d‚faut doit ˆtre une propri‚t‚ vecteur
  690. % Only array properties of classes can be made \var{default} properties.
  691. parser_e_constructor_cannot_be_not_virtual=E_Les constructeurs virtuels sont seulement possible pour les classes
  692. % You cannot have virtual constructors in objects. You can only have them
  693. % in classes.
  694. parser_e_no_default_property_available=E_Pas de propri‚t‚ par d‚faut
  695. % You try to access a default property of a class, but this class (or one of
  696. % it's ancestors) doesn't have a default property.
  697. parser_e_cant_have_published=E_PUBLISHED non autoris‚ ici pour des classes, utilisez {$M+}
  698. % If you want a \var{published} section in a class definition, you must
  699. % use the \var{\{\$M+\}} switch, whch turns on generation of type
  700. % information.
  701. parser_e_forward_declaration_must_be_resolved=E_La d‚claration anticip‚e de la classe $1 doit ˆtre r‚solue ici pour pouvoir ˆtreparent
  702. % To be able to use an object as an ancestor object, it must be defined
  703. % first. This error occurs in the following situation:
  704. % \begin{verbatim}
  705. % Type ParentClas = Class;
  706. % ChildClass = Class(ParentClass)
  707. % ...
  708. % end;
  709. % \end{verbatim}
  710. % Where \var{ParentClass} is declared but not defined.
  711. parser_e_no_local_operator=E_Les op‚rateurs ne peuvent ˆtre locaux
  712. % You cannot overload locally, i.e. inside procedures or function
  713. % definitions.
  714. parser_e_proc_dir_not_allowed_in_interface=E_La directive de proc‚dure $1 n'est pas autoris‚e en interface
  715. % This procedure directive is not allowed in the \var{interface} section of
  716. % a unit. You can only use it in the \var{implementation} section.
  717. parser_e_proc_dir_not_allowed_in_implementation=E_La directive de proc‚dure $1 n'est pas autoris‚e en impl‚mentation
  718. % This procedure directive is not defined in the \var{implementation} section of
  719. % a unit. You can only use it in the \var{interface} section.
  720. parser_e_proc_dir_not_allowed_in_procvar=E_La directive de proc‚dure n'est pas valide pour une variable
  721. % This procedure directive cannot be part of a procedural of function
  722. % type declaration.
  723. parser_e_function_already_declared_public_forward=E_La fonction $1 est d‚j… d‚clar‚e comme publique ou forward
  724. % You will get this error if a function is defined as \var{forward} twice.
  725. % Or it is once in the \var{interface} section, and once as a \var{forward}
  726. % declaration in the \var{implmentation} section.
  727. parser_e_not_external_and_export=E_EXPORT et EXTERNAL sont incompatibles
  728. % These two procedure directives are mutually exclusive
  729. parser_e_name_keyword_expected=E_Le mot r‚serv‚ NAME est requis ici
  730. % The definition of an external variable needs a \var{name} clause.
  731. parser_w_not_supported_for_inline=W_$1 n'est pas support‚ pour des fonctions INLINE
  732. % Inline procedures don't support this declaration.
  733. parser_w_inlining_disabled=W_Inlining d‚sactiv‚
  734. % Inlining of procedures is disabled.
  735. parser_i_writing_browser_log=I_Ecriture du Browser log $1
  736. % When information messages are on, the compiler warns you when it
  737. % writes the browser log (generated with the \var{\{\$Y+ \}} switch).
  738. parser_h_maybe_deref_caret_missing=H_le d‚r‚f‚rencement du pointeur semble manquer
  739. % The compiler thinks that a pointer may need a dereference.
  740. parser_f_assembler_reader_not_supported=F_Lecteur de code assembleur non support‚
  741. % The selected assembler reader (with \var{\{\$ASMMODE xxx\}} is not
  742. % supported. The compiler can be compiled with or without support for a
  743. % particular assembler reader.
  744. parser_e_proc_dir_conflict=E_La directive de proc‚dure $1 est en conflit avec d'autres directives
  745. % You specified a procedure directive that conflicts with other directives.
  746. % for instance \var{cdecl} and \var{pascal} are mutually exclusive.
  747. parser_e_call_convention_dont_match_forward=E_La convention d'appel ne correspond pas … la fonction pr‚d‚finie
  748. % This error happens when you declare a function or procedure with
  749. % e.g. \var{cdecl;} but omit this directive in the implementation, or vice
  750. % versa. The calling convention is part of the function declaration, and
  751. % must be repeated in the function definition.
  752. parser_e_register_calling_not_supported=E_Appel avec registres (fastcall) non support‚
  753. % The \var{register} calling convention, i.e., arguments are passed in
  754. % registers instead of on the stack is not supported. Arguments are always
  755. % passed on the stack.
  756. parser_e_property_cant_have_a_default_value=E_Cette propri‚t‚ ne peut avoir de valeur par d‚faut
  757. % Set properties or indexed properties cannot have a default value.
  758. parser_e_property_default_value_must_const=E_La valeur par d‚faut d'une propri‚t‚ doit ˆtre une constante
  759. % The value of a \var{default} declared property must be knwon at compile
  760. % time. The value you specified is only known at run time. This happens
  761. % .e.g. if you specify a variable name as a default value.
  762. parser_e_cant_publish_that=E_Ce symbole n'est pas une classe et ne peut donc pas ˆtre PUBLISHED
  763. % Only class type variables can be in a \var{published} section of a class
  764. % if they are not declared as a property.
  765. parser_e_cant_publish_that_property=E_Ce genre de propri‚t‚ ne peut ˆtre PUBLISHED
  766. % Properties in a \var{published} section cannot be array properties.
  767. % they must be moved to public sections. Properties in a \var{published}
  768. % section must be an ordinal type, a real type, strings or sets.
  769. parser_w_empty_import_name=W_Nom d'importation vide
  770. % Both index and name for the import are 0 or empty
  771. parser_e_empty_import_name=W_Empty import name specified
  772. % Some targets need a name for the imported procedure or a cdecl specifier
  773. parser_e_used_proc_name_changed=E_Le nom interne de la fonction … chang‚ aprŠs son usage
  774. % This is an internal error; please report any occurrences of this error
  775. % to the \fpc team.
  776. parser_e_division_by_zero=E_Division par z‚ro
  777. % There is a divsion by zero encounted
  778. parser_e_invalid_float_operation=E_Op‚ration en virgule flottatne invalide
  779. % An operation on two real type values produced an overflow or a division
  780. % by zero.
  781. parser_e_array_lower_less_than_upper_bound=E_Limite sup‚rieure inf‚rieure … la limite inf‚rieure d'un intervalle
  782. % The upper bound of a \var{case} label is less than the lower bound and this
  783. % is not possible
  784. parser_w_string_too_long=W_String "$1" est plus long que $2
  785. % The size of the constant string is larger than the size you specified in
  786. % string type definition
  787. parser_e_string_larger_array=E_longueur du String sup‚rieure … la longueur du CHAR ARRAY
  788. % The size of the constant string is larger than the size you specified in
  789. % the array[x..y] of char definition
  790. parser_e_ill_msg_expr=E_Expression invalide aprŠs directive MESSAGE
  791. % \fpc supports only integer or string values as message constants
  792. parser_e_ill_msg_param=E_MESSAGE handler peuvent seulement accepter un paramŠtre par r‚f‚rence
  793. % A method declared with the \var{message}-directive as message handler
  794. % can take only one parameter which must be declared as call by reference
  795. % Parameters are declared as call by reference using the \var{var}-directive
  796. parser_e_duplicate_message_label=E_Duplicate message label: %1
  797. % A label for a message is used twice in one object/class
  798. parser_e_self_in_non_message_handler=E_SELF ne peut ˆtre un paramŠtre explicite que dans les MESSAGE handlers
  799. % The self parameter can be passed only explicit if it is a method which
  800. % is declared as message method handler
  801. parser_e_threadvars_only_sg=E_THREADVARS peuvent seulement ˆtre statiques ou globaux
  802. % Threadvars must be static or global, you can't declare a thread
  803. % local to a procedure. Local variables are always local to a thread,
  804. % because every thread has it's own stack and local variables
  805. % are stored on the stack
  806. parser_f_direct_assembler_not_allowed=F_Assembleur direct non support‚ pour la sortie binaire
  807. % You can't use direct assembler when using a binary writer, choose an
  808. % other outputformat or use an other assembler reader
  809. parser_w_no_objpas_use_mode=W_Ne chargez pas l'unit‚ OBJPAS manuellement, utilisez {$mode objfpc} ou {$mode delphi}
  810. % You're trying to load the ObjPas unit manual from a uses clause. This is
  811. % not a good idea to do, you can better use the {$mode objfpc} or {$mode delphi}
  812. % directives which load the unit automaticly
  813. parser_e_no_object_override=E_OVERRIDE nepeut ˆtre utilis‚ pour des objets
  814. % Override isn't support for objects, use VIRTUAL instead to override
  815. % a method of an anchestor object
  816. % \end{description}
  817. #
  818. # Type Checking
  819. #
  820. % \section{Type checking errors}
  821. % This section lists all errors that can occur when type checking is
  822. % performed.
  823. % \begin{description}
  824. parser_e_cant_use_inittable_here=E_Les types de donn‚es n‚cessitant des initialisations ne peuvent faire partie de RECORD variables
  825. % Some data type (e.g. \var{ansistring}) needs initialization/finalization
  826. % code which is implicitly generated by the compiler. Such data types
  827. % can't be used in the variant part of a record.
  828. parser_e_resourcestring_only_sg=E_RESOURCESTRINGS doivent ˆtre statiques ou globaux
  829. % Resourcestring can not be declared local, only global or using the static
  830. % directive.
  831. parser_e_exit_with_argument_not__possible=E_Exit avec un argument ne peut ˆtre utilis‚ ici
  832. % an exit statement with an argument for the return value can't be used here, this
  833. % can happen e.g. in \var{try..except} or \var{try..finally} blocks
  834. parser_e_stored_property_must_be_boolean=E_Le type du symbole STORED doit ˆtre un bool‚en
  835. % If you specify a storage symbol in a property declaration, it must be of
  836. % the type boolean
  837. parser_e_ill_property_storage_sym=E_Ce symbole n'est pas admis comme symbole STORED
  838. % You can't use this type of symbol as storage specifier in property
  839. % declaration. You can use only methods with the result type boolean,
  840. % boolean class fields or boolean constants
  841. parser_e_only_publishable_classes_can__be_published=E_Selues les classes compil‚es en mode $M+ peuvent ˆtre PUBLISHED
  842. % In the published section of a class can be only class as fields used which
  843. % are compiled in $M+ or which are derived from such a class. Normally
  844. % such a class should be derived from TPersitent
  845. parser_e_proc_directive_expected=E_Directive de proc‚dure attendue
  846. % When declaring a procedure in a const block you used a ; after the
  847. % procedure declaration after which a procedure directive must follow.
  848. % Correct declarations are:
  849. % \begin{verbatim}
  850. % const
  851. % p : procedure;stdcall=nil;
  852. % p : procedure stdcall=nil;
  853. % \end{verbatim}
  854. parser_e_invalid_property_index_value=E_Le type d'un index de propri‚t‚ doit ˆtre un type ordinal
  855. % The value you use to index a property must be of an ordinal type, for
  856. % example an integer or enumerated type.
  857. parser_e_procname_to_short_for_export=E_Nom de proc‚dure trop court pour ˆtre exprot‚
  858. % The length of the procedure/function name must be at least 2 characters
  859. % long. This is because of a bug in dlltool which doesn't parse the .def
  860. % file correct with a name of length 1.
  861. parser_e_dlltool_unit_var_problem=E_Impossible de cr‚er une entr‚e DEFFILE pour des variables globales d'unit‚s
  862. parser_e_dlltool_unit_var_problem2=E_Compilez sans l'option -WD
  863. % \end{description}
  864. #
  865. # Type Checking
  866. #
  867. % \section{Type checking errors}
  868. % This section lists all errors that can occur when type checking is
  869. % performed.
  870. % \begin{description}
  871. type_e_mismatch=E_Incompatibilit‚ de types
  872. % This can happen in many cases:
  873. % \begin{itemize}
  874. % \item The variable you're assigning to is of a different type than the
  875. % expression in the assignment.
  876. % \item You are calling a function or procedure with parameters that are
  877. % incompatible with the parameters in the function or procedure definition.
  878. % \end{itemize}
  879. type_e_incompatible_types=E_Incompatible types: got $1 expected $2
  880. % There is no conversion possible between the two types
  881. type_e_not_equal_types=E_Incompatibilit‚ de types entre $1 et $2
  882. % The types are not equal
  883. type_e_type_id_expected=E_Identificateur de type attendu
  884. % The identifier is not a type, or you forgot to supply a type identifier.
  885. type_e_variable_id_expected=E_Identificateur de variable attendu
  886. % This happens when you pass a constant to a \var{Inc} var or \var{Dec}
  887. % procedure. You can only pass variables as arguments to these functions.
  888. type_e_integer_expr_expected=E_Integer expression expected
  889. % The compiler expects an expression of type integer, but gets a different
  890. % type.
  891. type_e_boolean_expr_expected=E_Expression bool‚enne attendue, mais "$1" obtenu
  892. % The expression must be a boolean type, it should be return true or
  893. % false.
  894. type_e_ordinal_expr_expected=E_Expression ordinale attendue
  895. % The expression must be of ordinal type, i.e., maximum a \var{Longint}.
  896. % This happens, for instance, when you specify a second argument
  897. % to \var{Inc} or \var{Dec} that doesn't evaluate to an ordinal value.
  898. type_e_pointer_type_expected=E_Type pointeur attendu
  899. % The variable or expression isn't of the type \var{pointer}. This
  900. % happens when you pass a variable that isn't a pointer to \var{New}
  901. % or \var{Dispose}.
  902. type_e_class_type_expected=E_Type classe attendu
  903. % The variable of expression isn't of the type \var{class}. This happens
  904. % typically when
  905. % \begin{enumerate}
  906. % \item The parent class in a class declaration isn't a class.
  907. % \item An exception handler (\var{On}) contains a type identifier that
  908. % isn't a class.
  909. % \end{enumerate}
  910. type_e_varid_or_typeid_expected=E_Identificateur de variable ou de type attendu
  911. % The argument to the \var{High} or \var{Low} function is not a variable
  912. % nor a type identifier.
  913. type_e_cant_eval_constant_expr=E_Impossible d'‚valuer l'expression constante
  914. % No longer in use.
  915. type_e_set_element_are_not_comp=E_Elements d'ensembles non compatibles
  916. % You are trying to make an operation on two sets, when the set element types
  917. % are not the same. The base type of a set must be the same when taking the
  918. % union
  919. type_e_set_operation_unknown=E_Op‚ration non permise pour des ensembles
  920. % several binary operations are not defined for sets
  921. % like div mod ** (also >= <= for now)
  922. type_w_convert_real_2_comp=W_Conversion automatique de r‚el vers COMP qui est un type entier
  923. % An implicit type conversion from a real type to a \var{comp} is
  924. % encountered. Since \var{Comp} is a 64 bit integer type, this may indicate
  925. % an error.
  926. type_h_use_div_for_int=H_Utilisez DIV pour obtenir un r‚sultat entier
  927. % When hints are on, then an integer division with the '/' operator will
  928. % procuce this message, because the result will then be of type real
  929. type_e_strict_var_string_violation=E_Types string incompatibles, … cause du mode $V+
  930. % When compiling in \var{\{\$V+ \}} mode, the string you pass as a parameter
  931. % should be of the exact same type as the declared parameter of the procedure.
  932. type_e_succ_and_pred_enums_with_assign_not_possible=E_succ ou pred impossible pour des ‚num‚rations avec valeurs fix‚es
  933. % When you declared an enumeration type which has assignments in it, as in C,
  934. % like in the following:
  935. % \begin{verbatim}
  936. % Tenum = (a,b,e:=5);
  937. % \end{verbatim}
  938. % you cannot use the \var{Succ} or \var{Pred} functions on them.
  939. type_e_cant_read_write_type=E_Impossible de lire ou d'‚crire des variables de ce type
  940. % You are trying to \var{read} or \var{write} a variable from or to a
  941. % file of type text, which doesn't support that. Only integer types,
  942. % booleans, reals, pchars and strings can be read from/written to a text file.
  943. type_e_no_readln_writeln_for_typed_file=E_Impossible d'utiliser READLN ou WRITELN pour un ficher typ‚
  944. % \var{readln} and \var{writeln} are only allowed for text files.
  945. type_e_no_read_write_for_untyped_file=E_Impossible d'utiliser READ ou WRITE pour un FILE non typ‚
  946. % \var{read} and \var{write} are only allowed for text or typed files.
  947. type_e_typeconflict_in_set=E_Confit de type pour des ‚l‚ments d'un ensemble
  948. % There is at least one set element which is of the wrong type, i.e. not of
  949. % the set type.
  950. type_w_maybe_wrong_hi_lo=W_lo/hi(longint/dword) retourne le word bas/haut
  951. % \fpc supports an overloaded version of \var{lo/hi} for \var{longint/dword}
  952. % which returns the lower/upper word of the argument. TP always uses
  953. % a 16 bit \var{lo/hi} which returns always bits 0..7 for \var{lo} and the
  954. % bits 8..15 for \var{hi}. If you want the TP behavior you have
  955. % to type case the argument to \var{word/integer}
  956. type_e_integer_or_real_expr_expected=E_Expression entiŠre ou r‚elle attendue
  957. % The first argument to \var{str} must a real or integer type.
  958. type_e_wrong_type_in_array_constructor=E_Mauvais type dans array constructor
  959. % You are trying to use a type in an array constructor which is not
  960. % allowed.
  961. type_e_wrong_parameter_type=E_Type incompatible type pour arg #$1: $2 au lieu de $3
  962. % You are trying to pass an invalid type for the specified parameter.
  963. % \end{description}
  964. type_e_no_method_and_procedure_not_compatible=E_Method (variable) et Procedure (variable) sont incompatibles
  965. % You can't assign a method to a procedure variable or a procedure to a
  966. % method pointer.
  967. type_e_wrong_math_argument=E_Constante invalide pass‚e … une fonction math‚matique interne
  968. % The constant argument passed to a ln or sqrt function is out of
  969. % the definition range of these functions.
  970. type_e_no_addr_of_constant=E_Impossible d'obtenir l'adresse d'une constante
  971. % It's not possible to get the address of a constant, because they
  972. % aren't stored in memory, you can try making it a typed constant.
  973. % \end{description}
  974. #
  975. # Symtable
  976. #
  977. % \section{Symbol handling}
  978. % This section lists all the messages that concern the handling of symbols.
  979. % This means all things that have to do with procedure and variable names.
  980. % \begin{description}
  981. #
  982. # Symtable
  983. #
  984. % \section{Symbol handling}
  985. % This section lists all the messages that concern the handling of symbols.
  986. % This means all things that have to do with procedure and variable names.
  987. % \begin{description}
  988. type_e_argument_cant_be_assigned=E_Impossible d'assigner une valeur … l'argument
  989. % Only expressions which can be on the left side of an
  990. % assignment can be passed as call by reference argument
  991. % Remark: Properties can be only
  992. % used on the left side of an assignment, but they can't be used as arguments
  993. type_e_cannot_local_proc_to_procvar=E_Impossible d'assigner une fonction ou proc‚dure locale … une variable de proc‚dure
  994. % It's not allowed to assign a local procedure/function to a
  995. % procedure variable, because the calling of local procedure/function is
  996. % different. You can only assign local procedure/function to a void pointer.
  997. type_e_no_assign_to_addr=E_Can't assign values to an address
  998. % It's not allowed to assign a value to an address of a variable,constant,
  999. % procedure or function. You can try compiling with -So if the identifier
  1000. % is a procedure variable.
  1001. type_e_no_assign_to_const=E_Can't assign values to const variable
  1002. % It's not allowed to assign a value to a variable which is declared
  1003. % as a const. This is normally a parameter declared as const, to allow
  1004. % changing make the parameter value or var.
  1005. % \end{description}
  1006. #
  1007. # Symtable
  1008. #
  1009. % \section{Symbol handling}
  1010. % This section lists all the messages that concern the handling of symbols.
  1011. % This means all things that have to do with procedure and variable names.
  1012. % \begin{description}
  1013. sym_e_id_not_found=E_Identificateur non trouv‚ $1
  1014. % The compiler doesn't know this symbol. Usually happens when you misspel
  1015. % the name of a variable or procedure, or when you forgot to declare a
  1016. % variable.
  1017. sym_f_internal_error_in_symtablestack=F_Internal Error in SymTableStack()
  1018. % An internal error occurred in the compiler; If you encounter such an error,
  1019. % please contact the developers and try to provide an exact description of
  1020. % the circumstances in which the error occurs.
  1021. sym_e_duplicate_id=E_Duplicate identifier $1
  1022. % The identifier was already declared in the current scope.
  1023. sym_h_duplicate_id_where=H_Identifier already defined in $1 at line $2
  1024. % The identifier was already declared in a previous scope.
  1025. sym_e_unknown_id=E_Unknown identifier $1
  1026. % The identifier encountered hasn't been declared, or is used outside the
  1027. % scope where it's defined.
  1028. sym_e_forward_not_resolved=E_Forward declaration not solved $1
  1029. % This can happen in two cases:
  1030. % \begin{itemize}
  1031. % \item This happens when you declare a function (in the \var{interface} part, or
  1032. % with a \var{forward} directive, but do not implement it.
  1033. % \item You reference a type which isn't declared in the current \var{type}
  1034. % block.
  1035. % \end{itemize}
  1036. sym_f_id_already_typed=F_Identifier type already defined as type
  1037. % You are trying to redefine a type.
  1038. sym_e_error_in_type_def=E_Error in type definition
  1039. % There is an error in your definition of a new array type:
  1040. % \item One of the range delimiters in an array declaration is erroneous.
  1041. % For example, \var{Array [1..1.25]} will trigger this error.
  1042. sym_e_type_id_not_defined=E_Type identifier not defined
  1043. % The type identifier has not been defined yet.
  1044. sym_e_forward_type_not_resolved=E_Forward type not resolved $1
  1045. % The compiler encountered an unknown type.
  1046. sym_e_only_static_in_static=E_Only static variables can be used in static methods or outside methods
  1047. % A static method of an object can only access static variables.
  1048. sym_e_invalid_call_tvarsymmangledname=E_Invalid call to tvarsym.mangledname()
  1049. % An internal error occurred in the compiler; If you encounter such an error,
  1050. % please contact the developers and try to provide an exact description of
  1051. % the circumstances in which the error occurs.
  1052. sym_f_type_must_be_rec_or_class=F_record or class type expected
  1053. % The variable or expression isn't of the type \var{record} or \var{class}.
  1054. sym_e_no_instance_of_abstract_object=E_Instances of classes or objects with an abstract method are not allowed
  1055. % You are trying to generate an instance of a class which has an abstract
  1056. % method that wasn't overridden.
  1057. sym_w_label_not_defined=W_Label not defined $1
  1058. % A label was declared, but not defined.
  1059. sym_e_label_used_and_not_defined=E_Label used but not defined $1
  1060. % A label was declared and used, but not defined.
  1061. sym_e_ill_label_decl=E_Illegal label declaration
  1062. % This error should never happen; it occurs if a label is defined outside a
  1063. % procedure or function.
  1064. sym_e_goto_and_label_not_supported=E_GOTO und LABEL are not supported (use switch -Sg)
  1065. % You must compile a program which has \var{label}s and \var{goto} statements
  1066. % with the \var{-Sg} switch. By default, \var{label} and \var{goto} aren't
  1067. % supported.
  1068. sym_e_label_not_found=E_Label not found
  1069. % A \var{goto label} was encountered, but the label isn't declared.
  1070. sym_e_id_is_no_label_id=E_identifier isn't a label
  1071. % The identifier specified after the \var{goto} isn't of type label.
  1072. sym_e_label_already_defined=E_label already defined
  1073. % You are defining a label twice. You can define a label only once.
  1074. sym_e_ill_type_decl_set=E_illegal type declaration of set elements
  1075. % The declaration of a set contains an invalid type definition.
  1076. sym_e_class_forward_not_resolved=E_Forward class definition not resolved $1
  1077. % You declared a class, but you didn't implement it.
  1078. sym_n_unit_not_used=H_Unit $1 not used in $2
  1079. % The unit referenced in the \var{uses} clause is not used.
  1080. sym_h_para_identifier_not_used=H_Parameter not used $1
  1081. % This is a warning. The identifier was declared (locally or globally) but
  1082. % wasn't used (locally or globally).
  1083. sym_n_local_identifier_not_used=N_Local variable not used $1
  1084. % You have declared, but not used a variable in a procedure or function
  1085. % implementation.
  1086. sym_h_para_identifier_only_set=H_Value parameter $1 is assigned but never used
  1087. % This is a warning. The identifier was declared (locally or globally)
  1088. % set but not used (locally or globally).
  1089. sym_n_local_identifier_only_set=N_Local variable $1 is assigned but never used
  1090. % The variable in a procedure or function
  1091. % implementation is declared, set but never used.
  1092. sym_h_local_symbol_not_used=H_Local $1 $2 is not used
  1093. % A local symbol is never used.
  1094. sym_n_private_identifier_not_used=N_Private field $1.$2 is never used
  1095. sym_n_private_identifier_only_set=N_Private field $1.$2 is assigned but never used
  1096. sym_n_private_method_not_used=N_Private method $1.$2 never used
  1097. sym_e_set_expected=E_Set type expected
  1098. % The variable or expression isn't of type \var{set}. This happens in an
  1099. % \var{in} statement.
  1100. sym_w_function_result_not_set=W_Function result does not seem to be set
  1101. % You can get this warning if the compiler thinks that a function return
  1102. % value is not set. This will not be displayed for assembler procedures,
  1103. % or procedures that contain assembler blocks.
  1104. sym_e_illegal_field=E_Unknown record field identifier $1
  1105. % The field doesn't exist in the record definition.
  1106. sym_n_uninitialized_local_variable=W_Local variable $1 does not seem to be initialized
  1107. % This message is displayed if the compiler thinks that a variable will
  1108. % be used (i.e. appears in the right-hand-side of an expression) when it
  1109. % wasn't initialized first (i.e. appeared in the right-hand side of an
  1110. % assigment)
  1111. sym_n_uninitialized_variable=W_Variable $1 does not seem to be initialized
  1112. % These messages are displayed if the compiler thinks that a variable will
  1113. % be used (i.e. appears in the right-hand-side of an expression) when it
  1114. % wasn't initialized first (i.e. appeared in the left-hand side of an
  1115. % assigment)
  1116. sym_e_id_no_member=E_identifier idents no member $1
  1117. % When using the extended syntax of \var{new}, you must specify the constructor
  1118. % method of the class you are trying to create. The procedure you specified
  1119. % does not exist.
  1120. sym_b_param_list=B_Found declaration: $1
  1121. % You get this when you use the \var{-vb} switch. In case an overloaded
  1122. % procedure is not found, then all candidate overloaded procedures are
  1123. % listed, with their parameter lists.
  1124. % \end{description}
  1125. #
  1126. # Codegenerator
  1127. #
  1128. % \section{Code generator messages}
  1129. % This section lists all messages that can be displayed if the code
  1130. % generator encounters an error condition.
  1131. % \begin{description}
  1132. sym_e_segment_too_large=E_Data segment too large (max. 2GB)
  1133. % You get this when you declare an array whose size exceeds the 2GB limit.
  1134. % \end{description}
  1135. #
  1136. # Codegenerator
  1137. #
  1138. % \section{Code generator messages}
  1139. % This section lists all messages that can be displayed if the code
  1140. % generator encounters an error condition.
  1141. % \begin{description}
  1142. cg_e_break_not_allowed=E_BREAK not allowed
  1143. % You're trying to use \var{break} outside a loop construction.
  1144. cg_e_continue_not_allowed=E_CONTINUE not allowed
  1145. % You're trying to use \var{continue} outside a loop construction.
  1146. cg_e_too_complex_expr=E_Expression too complicated - FPU stack overflow
  1147. % Your expression is too long for the compiler. You should try dividing the
  1148. % construct over multiple assignments.
  1149. cg_e_illegal_expression=E_Illegal expression
  1150. % This can occur under many circumstances. Mostly when trying to evaluate
  1151. % constant expressions.
  1152. cg_e_invalid_integer=E_Invalid integer expression
  1153. % You made an expression which isn't an integer, and the compiler expects the
  1154. % result to be an integer.
  1155. cg_e_invalid_qualifier=E_Illegal qualifier
  1156. % One of the following is happening :
  1157. % \begin{itemize}
  1158. % \item You're trying to access a field of a variable that is not a record.
  1159. % \item You're indexing a variable that is not an array.
  1160. % \item You're dereferencing a variable that is not a pointer.
  1161. % \end{itemize}
  1162. cg_e_upper_lower_than_lower=E_High range limit < low range limit
  1163. % You are declaring a subrange, and the lower limit is higher than the high
  1164. % limit of the range.
  1165. cg_e_illegal_count_var=E_Illegal counter variable
  1166. % The type of a \var{for} loop variable must be an ordinal type.
  1167. % Loop variables cannot be reals or strings.
  1168. cg_e_cant_choose_overload_function=E_Can't determine which overloaded function to call
  1169. % You're calling overloaded functions with a parameter that doesn't correspond
  1170. % to any of the declared function parameter lists. e.g. when you have declared
  1171. % a function with parameters \var{word} and \var{longint}, and then you call
  1172. % it with a parameter which is of type \var{integer}.
  1173. cg_e_parasize_too_big=E_Parameter list size exceeds 65535 bytes
  1174. % The I386 processor limits the parameter list to 65535 bytes (the \var{RET}
  1175. % instruction causes this)
  1176. cg_e_illegal_type_conversion=E_Illegal type conversion
  1177. % When doing a type-cast, you must take care that the sizes of the variable and
  1178. % the destination type are the same.
  1179. cg_d_pointer_to_longint_conv_not_portable=D_Conversion between ordinals and pointers is not portable across platforms
  1180. % If you typecast a pointer to a longint, this code will not compile
  1181. % on a machine using 64bit for pointer storage.
  1182. cg_e_file_must_call_by_reference=E_File types must be var parameters
  1183. % You cannot specify files as value parameters, i.e. they must always be
  1184. % declared \var{var} parameters.
  1185. cg_e_cant_use_far_pointer_there=E_The use of a far pointer isn't allowed there
  1186. % Free Pascal doesn't support far pointers, so you cannot take the address of
  1187. % an expression which has a far reference as a result. The \var{mem} construct
  1188. % has a far reference as a result, so the following code will produce this
  1189. % error:
  1190. % \begin{verbatim}
  1191. % var p : pointer;
  1192. % ...
  1193. % p:=@mem[a000:000];
  1194. % \end{verbatim}
  1195. cg_e_var_must_be_reference=E_illegal call by reference parameters
  1196. % You are trying to pass a constant or an expression to a procedure that
  1197. % requires a \var{var} parameter. Only variables can be passed as a \var{var}
  1198. % parameter.
  1199. cg_e_dont_call_exported_direct=E_EXPORT declared functions can't be called
  1200. % No longer in use.
  1201. cg_w_member_cd_call_from_method=W_Possible illegal call of constructor or destructor (doesn't match to this context)
  1202. % No longer in use.
  1203. cg_n_inefficient_code=N_Inefficient code
  1204. % You construction seems dubious to the compiler.
  1205. cg_w_unreachable_code=W_unreachable code
  1206. % You specified a loop which will never be executed. Example:
  1207. % \begin{verbatim}
  1208. % while false do
  1209. % begin
  1210. % {.. code ...}
  1211. % end;
  1212. % \end{verbatim}
  1213. cg_e_stackframe_with_esp=E_procedure call with stackframe ESP/SP
  1214. % The compiler encountered a procedure or function call inside a
  1215. % procedure that uses a \var{ESP/SP} stackframe. Normally, when a call is
  1216. % done the procedure needs a \var{EBP} stackframe.
  1217. cg_e_cant_call_abstract_method=E_Abstract methods can't be called directly
  1218. % You cannot call an abstract method directy, instead you must call a
  1219. % overriding child method, because an abstract method isn't implemented.
  1220. cg_f_internal_error_in_getfloatreg=F_Internal Error in getfloatreg(), allocation failure
  1221. % An internal error occurred in the compiler; If you encounter such an error,
  1222. % please contact the developers and try to provide an exact description of
  1223. % the circumstances in which the error occurs.
  1224. cg_f_unknown_float_type=F_Unknown float type
  1225. % The compiler cannot determine the kind of float that occurs in an expression.
  1226. cg_f_secondvecn_base_defined_twice=F_SecondVecn() base defined twice
  1227. % An internal error occurred in the compiler; If you encounter such an error,
  1228. % please contact the developers and try to provide an exact description of
  1229. % the circumstances in which the error occurs.
  1230. cg_f_extended_cg68k_not_supported=F_Extended cg68k not supported
  1231. % The var{extended} type is not supported on the m68k platform.
  1232. cg_f_32bit_not_supported_in_68000=F_32-bit unsigned not supported in MC68000 mode
  1233. % The cardinal is not supported on the m68k platform.
  1234. cg_f_internal_error_in_secondinline=F_Internal Error in secondinline()
  1235. % An internal error occurred in the compiler; If you encounter such an error,
  1236. % please contact the developers and try to provide an exact description of
  1237. % the circumstances in which the error occurs.
  1238. cg_d_register_weight=D_Register $1 weight $2 $3
  1239. % Debugging message. Shown when the compiler considers a variable for
  1240. % keeping in the registers.
  1241. cg_e_stacklimit_in_local_routine=E_Stack limit excedeed in local routine
  1242. % Your code requires a too big stack. Some operating systems pose limits
  1243. % on the stack size. You should use less variables or try ro put large
  1244. % variables on the heap.
  1245. cg_d_stackframe_omited=D_Stack frame is omitted
  1246. % Some procedure/functions do not need a complete stack-frame, so it is omitted.
  1247. % This message will be displayed when the {-vd} switch is used.
  1248. cg_w_64bit_range_check_not_supported=W_Range check for 64 bit integers is not supported on this target
  1249. % 64 bit range check is not yet implemented for 32 bit processors.
  1250. cg_e_unable_inline_object_methods=E_Object or class methods can't be inline.
  1251. % You cannot have inlined object methods.
  1252. cg_e_unable_inline_procvar=E_Procvar calls can't be inline.
  1253. % A procedure with a procedural variable call cannot be inlined.
  1254. cg_e_no_code_for_inline_stored=E_No code for inline procedure stored
  1255. % The compiler couldn't store code for the inline procedure.
  1256. cg_e_no_call_to_interrupt=E_Direct call of interrupt procedure $1 is not possible
  1257. % You can not call an interrupt procedure directly from FPC code
  1258. cg_e_can_access_element_zero=E_Element zero of an ansi/wide- or longstring can't be accessed, use (set)length instead
  1259. % You should use \var{setlength} to set the length of an ansi/wide/longstring
  1260. % and \var{length} to get the length of such kinf of string
  1261. cg_e_include_not_implemented=E_Include and exclude not implemented in this case
  1262. % \var{include} and \var{exclude} are only partially
  1263. % implemented for \var{i386} processors
  1264. % and not at all for \var{m68k} processors.
  1265. cg_e_cannot_call_cons_dest_inside_with=E_Constructors or destructors can not be called inside a 'with' clause
  1266. % Inside a \var{With} clause you cannot call a constructor or destructor for the
  1267. % object you have in the \var{with} clause.
  1268. cg_e_cannot_call_message_direct=E_Cannot call message handler method directly
  1269. % A message method handler method can't be called directly if it contains an
  1270. % explicit self argument
  1271. % \end{description}
  1272. # EndOfTeX
  1273. #
  1274. # Assembler reader
  1275. #
  1276. cg_e_goto_inout_of_exception_block=E_Jump in or outside of an exception block
  1277. % It isn't allowed to jump in or outside of an exception block like \var{try..finally..end;}:
  1278. % \begin{verbatim}
  1279. % label 1;
  1280. %
  1281. % ...
  1282. %
  1283. % try
  1284. % if not(final) then
  1285. % goto 1; // this line will cause an error
  1286. % finally
  1287. % ...
  1288. % end;
  1289. % 1:
  1290. % ...
  1291. % \end{verbatim}
  1292. % \end{description}
  1293. cg_e_control_flow_outside_finally=E_Control flow statements aren't allowed in a finally block
  1294. % It isn't allowed to use the control flow statements \var{break},
  1295. % \var{continue} and \var{exit}
  1296. % inside a finally statement. The following example shows the problem:
  1297. % \begin{verbatim}
  1298. % ...
  1299. % try
  1300. % p;
  1301. % finally
  1302. % ...
  1303. % exit; // This exit ISN'T allowed
  1304. % end;
  1305. % ...
  1306. %
  1307. % \end{verbatim}
  1308. % If the procedure \var{p} raises an exception the finally block is
  1309. % executed. If the execution reaches the exit, it's unclear what to do:
  1310. % exiting the procedure or searching for another exception handler
  1311. # EndOfTeX
  1312. asmr_d_start_reading=D_Starting $1 styled assembler parsing
  1313. % This informs you that an assembler block is being parsed
  1314. asmr_d_finish_reading=D_Finished $1 styled assembler parsing
  1315. % This informs you that an assembler block has finished.
  1316. asmr_e_none_label_contain_at=E_Non-label pattern contains @
  1317. % A identifier which isn't a label can't contain a @.
  1318. asmr_w_override_op_not_supported=W_Override operator not supported
  1319. % The Override operator is not supported
  1320. asmr_e_building_record_offset=E_Error building record offset
  1321. % There has an error occured while building the offset of a record/object
  1322. % structure, this can happend when there is no field specified at all or
  1323. % an unknown field identifier is used.
  1324. asmr_e_offset_without_identifier=E_OFFSET used without identifier
  1325. % You can only use OFFSET with an identifier. Other syntaxes aren't
  1326. % supported
  1327. asmr_e_type_without_identifier=E_TYPE utilis‚ sans identificateur
  1328. % You can only use TYPE with an identifier. Other syntaxes aren't
  1329. % supported
  1330. asmr_e_no_local_or_para_allowed=E_Cannot use local variable or parameters here
  1331. % You can't use a local variable or parameter here, mostly because the
  1332. % addressing of locals and parameters is done using the %ebp register so the
  1333. % address can't be get directly.
  1334. asmr_e_need_offset=E_need to use OFFSET here
  1335. % You need to use OFFSET <id> here to get the address of the identifier.
  1336. asmr_e_cant_have_multiple_relocatable_symbols=E_Cannot use multiple relocatable symbols
  1337. % You can't have more than one relocatable symbol (variable/typed constant)
  1338. % in one argument.
  1339. asmr_e_only_add_relocatable_symbol=E_Relocatable symbol can only be added
  1340. % Relocatable symbols (variable/typed constant) can't be used with other
  1341. % operators. Only addition is allowed.
  1342. asmr_e_invalid_constant_expression=E_Invalid constant expression
  1343. % There is an error in the constant expression.
  1344. asmr_e_relocatable_symbol_not_allowed=E_Relocatable symbol is not allowed
  1345. % You can't use a relocatable symbol (variable/typed constant) here.
  1346. asmr_e_invalid_reference_syntax=E_Invalid reference syntax
  1347. % There is an error in the reference.
  1348. asmr_e_local_para_unreachable=E_Impossible d'atteindre $1 depuis ce code
  1349. % You can not read directly the value of local or para
  1350. % of a higher level in assembler code (except for
  1351. % local assembler code without parameter nor locals).
  1352. asmr_e_local_label_not_allowed_as_ref=E_Local symboles/labels ne sont pas autoris‚s
  1353. % You can't use local symbols/labels as references
  1354. asmr_e_wrong_base_index=E_Invalid base and index register usage
  1355. % There is an error with the base and index register
  1356. asmr_w_possible_object_field_bug=W_Erreur possible dans l'utilisation d'un champ d'un object
  1357. % Fields of objects or classes can be reached directly in normal or objfpc
  1358. % modes but TP and Delphi modes treat the field name as a simple offset.
  1359. asmr_e_wrong_scale_factor=E_Wrong scale factor specified
  1360. % The scale factor given is wrong, only 1,2,4 and 8 are allowed
  1361. asmr_e_multiple_index=E_Multiple index register usage
  1362. % You are trying to use more than one index register
  1363. asmr_e_invalid_operand_type=E_Invalid operand type
  1364. % The operand type doesn't match with the opcode used
  1365. asmr_e_invalid_string_as_opcode_operand=E_Invalid string as opcode operand: $1
  1366. % The string specified as operand is not correct with this opcode
  1367. asmr_w_CODE_and_DATA_not_supported=W_@CODE and @DATA not supported
  1368. % @CODE and @DATA are unsupported and are ignored.
  1369. asmr_e_null_label_ref_not_allowed=E_Null label references are not allowed
  1370. asmr_e_ev_zero_divide=F_Divide by zero in asm evaluator
  1371. asmr_e_ev_stack_overflow=F_Evaluator stack overflow
  1372. asmr_e_ev_stack_underflow=F_Evaluator stack underflow
  1373. asmr_e_ev_invalid_number=F_Invalid numeric format in asm evaluator
  1374. asmr_e_ev_invalid_op=F_Invalid Operator in asm evaluator
  1375. asmr_e_escape_seq_ignored=E_escape sequence ignored: $1
  1376. asmr_e_invalid_symbol_ref=E_Invalid symbol reference
  1377. asmr_w_fwait_emu_prob=W_Fwait can cause emulation problems with emu387
  1378. asmr_w_calling_overload_func=W_Calling an overload function in assembler
  1379. asmr_e_unsupported_symbol_type=E_Unsupported symbol type for operand
  1380. asmr_e_constant_out_of_bounds=E_Constant value out of bounds
  1381. asmr_e_error_converting_decimal=E_Error converting decimal $1
  1382. asmr_e_error_converting_octal=E_Error converting octal $1
  1383. asmr_e_error_converting_binary=E_Error converting binary $1
  1384. asmr_e_error_converting_hexadecimal=E_Error converting hexadecimal $1
  1385. asmr_h_direct_global_to_mangled=H_$1 translated to $2
  1386. asmr_w_direct_global_is_overloaded_func=W_$1 is associated to an overloaded function
  1387. asmr_e_cannot_use_SELF_outside_a_method=E_Cannot use SELF outside a method
  1388. asmr_e_cannot_use_OLDEBP_outside_nested_procedure=E_Cannot use OLDEBP outside a nested procedure
  1389. asmr_e_void_function=W_Functions with void return value can't return any value in asm code
  1390. asmr_e_SEG_not_supported=E_SEG not supported
  1391. asmr_e_size_suffix_and_dest_dont_match=E_Size suffix and destination or source size do not match
  1392. asmr_w_size_suffix_and_dest_dont_match=W_Size suffix and destination or source size do not match
  1393. asmr_e_syntax_error=E_Assembler syntax error
  1394. asmr_e_invalid_opcode_and_operand=E_Invalid combination of opcode and operands
  1395. asmr_e_syn_operand=E_Assemler syntax error in operand
  1396. asmr_e_syn_constant=E_Assemler syntax error in constant
  1397. asmr_e_invalid_string_expression=E_Invalid String expression
  1398. asmr_w_const32bit_for_address=32bit constant created for address
  1399. asmr_e_unknown_opcode=E_Instruction non reconnue $1
  1400. asmr_e_invalid_or_missing_opcode=E_Invalid or missing opcode
  1401. asmr_e_invalid_prefix_and_opcode=E_Invalid combination of prefix and opcode: $1
  1402. asmr_e_invalid_override_and_opcode=E_Invalid combination of override and opcode: $1
  1403. asmr_e_too_many_operands=E_Too many operands on line
  1404. asmr_w_near_ignored=W_NEAR ignored
  1405. asmr_w_far_ignored=W_FAR ignored
  1406. asmr_e_dup_local_sym=E_Duplicate local symbol $1
  1407. asmr_e_unknown_local_sym=E_Undefined local symbol $1
  1408. asmr_e_unknown_label_identifier=E_Unknown label identifier $1
  1409. asmr_e_invalid_fpu_register=E_Invalid floating point register name
  1410. asmr_e_nor_not_supported=E_NOR not supported
  1411. asmr_w_modulo_not_supported=W_Modulo not supported
  1412. asmr_e_invalid_float_const=E_Invalid floating point constant $1
  1413. asmr_e_invalid_float_expr=E_Invalid floating point expression
  1414. asmr_e_wrong_sym_type=E_Wrong symbol type
  1415. asmr_e_cannot_index_relative_var=E_Cannot index a local var or parameter with a register
  1416. asmr_e_invalid_seg_override=E_Invalid segment override expression
  1417. asmr_w_id_supposed_external=W_Identifier $1 supposed external
  1418. asmr_e_string_not_allowed_as_const=E_Strings not allowed as constants
  1419. asmr_e_no_var_type_specified=No type of variable specified
  1420. asmr_w_assembler_code_not_returned_to_text=E_assembler code not returned to text section
  1421. asmr_e_not_directive_or_local_symbol=E_Not a directive or local symbol $1
  1422. asmr_w_using_defined_as_local=E_Using a defined name as a local label
  1423. #
  1424. # Assembler/binary writers
  1425. #
  1426. asmr_e_dollar_without_identifier=E_Dollar utilis‚ sans identificateur
  1427. asmr_w_32bit_const_for_address=W_32bit constante cr‚‚e pour une addresse
  1428. asmr_n_align_is_target_specific=N_.align d‚pend de la cible, utilisez .balign ou .p2align
  1429. asmr_e_cannot_access_field_directly_for_parameters=E_Impossible d'acc‚der directement aux champs pour des paramŠtres
  1430. % You should load the parameter first into a register and then access the
  1431. % fields using that register.
  1432. asmr_e_cannot_access_object_field_directly=E_Impossible d'acc‚der aux champs d'objectsou de classes directement
  1433. % You should load the self pointer first into a register and then access the
  1434. % fields using the register as base. By default the self pointer is available
  1435. % in the esi register on i386.
  1436. #
  1437. # Assembler/binary writers
  1438. #
  1439. asmw_f_too_many_asm_files=F_Too many assembler files
  1440. asmw_f_assembler_output_not_supported=F_Selected assembler output not supported
  1441. asmw_f_comp_not_supported=F_Comp not supported
  1442. asmw_f_direct_not_supported=F_Direct not support for binary writers
  1443. asmw_e_alloc_data_only_in_bss=E_Allocating of data is only allowed in bss section
  1444. asmw_f_no_binary_writer_selected=F_No binary writer selected
  1445. asmw_e_opcode_not_in_table=E_Asm: Opcode $1 not in table
  1446. asmw_e_invalid_opcode_and_operands=E_Asm: $1 invalid combination of opcode and operands
  1447. asmw_e_16bit_not_supported=E_Asm: 16 Bit references not supported
  1448. asmw_e_invalid_effective_address=E_Asm: Invalid effective address
  1449. asmw_e_immediate_or_reference_expected=E_Asm: Immediate or reference expected
  1450. asmw_e_value_exceeds_bounds=E_Asm: $1 value exceeds bounds $2
  1451. asmw_e_short_jmp_out_of_range=E_Asm: Short jump is out of range $1
  1452. #
  1453. # Executing linker/assembler
  1454. #
  1455. asmw_e_undefined_label=E_Asm: Label $1 non d‚fini
  1456. #
  1457. # Executing linker/assembler
  1458. #
  1459. # BeginOfTeX
  1460. %
  1461. % \section{Errors of assembling/linking stage}
  1462. % This section lists errors that occur when the compiler is processing the
  1463. % command line or handling the configuration files.
  1464. % \begin{description}
  1465. exec_w_source_os_redefined=W_Source operating system redefined
  1466. exec_i_assembling_pipe=I_Assembling (pipe) $1
  1467. exec_d_cant_create_asmfile=E_Can't create assember file $1
  1468. % The mentioned file can't be create. Check if you've
  1469. % permission to create this file
  1470. exec_e_cant_create_objectfile=E_Impossible de cr‚er le fichier object : $1
  1471. % The mentioned file can't be create. Check if you've
  1472. % permission to create this file
  1473. exec_e_cant_create_archivefile=E_Impossible de cr‚er le fichier archive : $1
  1474. % The mentioned file can't be create. Check if you've
  1475. % permission to create this file
  1476. exec_w_assembler_not_found=W_Assembler $1 not found, switching to external assembling
  1477. exec_t_using_assembler=T_Using assembler: $1
  1478. exec_w_error_while_assembling=W_Error while assembling exitcode $1
  1479. exec_w_cant_call_assembler=W_Can't call the assembler, error $1 switching to external assembling
  1480. exec_i_assembling=I_Assembling $1
  1481. exec_i_assembling_smart=I_Assemblage smartlink $1
  1482. exec_w_objfile_not_found=W_Object $1 not found, Linking may fail !
  1483. exec_w_libfile_not_found=W_Library $1 not found, Linking may fail !
  1484. exec_w_error_while_linking=W_Error while linking
  1485. exec_w_cant_call_linker=W_Can't call the linker, switching to external linking
  1486. exec_i_linking=I_Linking $1
  1487. exec_w_util_not_found=W_Utilitaire $1 non trouv‚, force la liaison externe
  1488. exec_t_using_util=T_Utilitaire $1 trouv‚
  1489. exec_e_exe_not_supported=E_Cr‚ation d'executables impossible
  1490. exec_e_dll_not_supported=E_Dynamic Libraries not supported
  1491. exec_i_closing_script=I_Closing script $1
  1492. exec_w_res_not_found=W_resource compiler not found, switching to external mode
  1493. exec_i_compilingresource=I_Compiling resource $1
  1494. #
  1495. # Executable information
  1496. #
  1497. execinfo_f_cant_process_executable=F_Can't post process executable $1
  1498. execinfo_f_cant_open_executable=F_Can't open executable $1
  1499. execinfo_x_codesize=X_Size of Code: $1 bytes
  1500. execinfo_x_initdatasize=X_Size of initialized data: $1 bytes
  1501. execinfo_x_uninitdatasize=X_Size of uninitialized data: $1 bytes
  1502. execinfo_x_stackreserve=X_Stack space reserved: $1 bytes
  1503. execinfo_x_stackcommit=X_Stack space commited: $1 bytes
  1504. # Unit loading
  1505. #
  1506. # BeginOfTeX
  1507. % \section{Unit loading messages.}
  1508. % This section lists all messages that can occur when the compiler is
  1509. % loading a unit from disk into memory. Many of these mesages are
  1510. % informational messages.
  1511. % \begin{description}
  1512. unit_t_unitsearch=T_Unitsearch: $1
  1513. % When you use the \var{-vt}, the compiler tells you where it tries to find
  1514. % unit files.
  1515. unit_t_ppu_loading=T_PPU Loading $1
  1516. % When the \var{-vt} switch is used, the compiler tells you
  1517. % what units it loads.
  1518. unit_u_ppu_name=U_PPU Name: $1
  1519. % When you use the \var{-vu} flag, the unit name is shown.
  1520. unit_u_ppu_flags=U_PPU Flags: $1
  1521. % When you use the \var{-vu} flag, the unit flags are shown.
  1522. unit_u_ppu_crc=U_PPU Crc: $1
  1523. % When you use the \var{-vu} flag, the unit CRC check is shown.
  1524. unit_u_ppu_time=U_PPU Time: $1
  1525. % When you use the \var{-vu} flag, the unit time is shown.
  1526. unit_u_ppu_file_too_short=U_PPU File too short
  1527. % When you use the \var{-vu} flag, the unit time is shown.
  1528. unit_u_ppu_invalid_header=U_PPU Invalid Header (no PPU at the begin)
  1529. % A unit file contains as the first three bytes the ascii codes of \var{PPU}
  1530. unit_u_ppu_invalid_version=U_PPU Invalid Version $1
  1531. % This unit file was compiled with a different version of the compiler, and
  1532. % cannot be read.
  1533. unit_u_ppu_invalid_processor=U_PPU is compiled for an other processor
  1534. % This unit file was compiled for a different processor type, and
  1535. % cannot be read
  1536. unit_u_ppu_invalid_target=U_PPU is compiled for an other target
  1537. % This unit file was compiled for a different processor type, and
  1538. % cannot be read
  1539. unit_u_ppu_source=U_PPU Source: $1
  1540. % When you use the \var{-vu} flag, the unit CRC check is shown.
  1541. unit_u_ppu_write=U_Writing $1
  1542. % When you specify the \var{-vu} switch, the compiler will tell you where it
  1543. % writes the unit file.
  1544. unit_f_ppu_cannot_write=F_Can't Write PPU-File
  1545. % An err
  1546. unit_f_ppu_read_error=F_reading PPU-File
  1547. % Unexpected end of file
  1548. unit_f_ppu_read_unexpected_end=F_unexpected end of PPU-File
  1549. % This means that the unit file was corrupted, and contains invalid
  1550. % information. Recompilation will be necessary.
  1551. unit_f_ppu_invalid_entry=F_Invalid PPU-File entry: $1
  1552. % The unit the compiler is trying to read is corrupted, or generated with a
  1553. % newer version of the compiler.
  1554. unit_f_ppu_dbx_count_problem=F_PPU Dbx count problem
  1555. % There is an inconsistency in the debugging information of the unit.
  1556. unit_e_illegal_unit_name=E_Illegal unit name: $1
  1557. % The name of the unit doesn't match the file name.
  1558. unit_f_too_much_units=F_Too much units
  1559. % \fpc has a limit of 1024 units in a program. You can change this behavior
  1560. % by changing the \var{maxunits} constant in the \file{files.pas} file of the
  1561. % compiler, and recompiling the compiler.
  1562. unit_f_circular_unit_reference=F_Circular unit reference between $1 and $2
  1563. % Two units are using each other in the interface part. This is only allowed
  1564. % in the \var{implementation} part. At least one unit must contain the other one
  1565. % in the \var{implementation} section.
  1566. unit_f_cant_compile_unit=F_Can't compile unit $1, no sources available
  1567. % A unit was found that needs to be recompiled, but no sources are
  1568. % available.
  1569. unit_f_cant_find_ppu=F_Impossible de trouver l'unit‚ $1
  1570. % You tried to use a unit of which the PPU file isn't found by the
  1571. % compiler. Check your config files for the unit pathes
  1572. unit_w_unit_name_error=W_Unit‚ $1 non trouv‚ mais $2 existe
  1573. unit_f_unit_name_error=F_Unit‚ $1 cherch‚ mais $2 trouv‚
  1574. % Dos truncation of 8 letters for unit PPU files
  1575. % may lead to problems when unit name is longer than 8 letters.
  1576. unit_w_switch_us_missed=W_Compiling the system unit requires the -Us switch
  1577. % When recompiling the system unit (it needs special treatment), the
  1578. % \var{-Us} must be specified.
  1579. unit_f_errors_in_unit=F_There were $1 errors compiling module, stopping
  1580. % When the compiler encounters a fatal error or too many errors in a module
  1581. % then it stops with this message.
  1582. unit_u_load_unit=U_Load from $1 ($2) unit $3
  1583. % When you use the \var{-vu} flag, which unit is loaded from which unit is
  1584. % shown.
  1585. unit_u_recompile_crc_change=U_Recompiling $1, checksum changed for $2
  1586. unit_u_recompile_source_found_alone=U_Recompiling $1, source found only
  1587. % When you use the \var{-vu} flag, these messages tell you why the current
  1588. % unit is recompiled.
  1589. unit_u_recompile_staticlib_is_older=U_Recompiling unit, static lib is older than ppufile
  1590. % When you use the \var{-vu} flag, the compiler warns if the static library
  1591. % of the unit are older than the unit file itself.
  1592. unit_u_recompile_sharedlib_is_older=U_Recompiling unit, shared lib is older than ppufile
  1593. % When you use the \var{-vu} flag, the compiler warns if the shared library
  1594. % of the unit are older than the unit file itself.
  1595. unit_u_recompile_obj_and_asm_older=U_Recompiling unit, obj and asm are older than ppufile
  1596. % When you use the \var{-vu} flag, the compiler warns if the assembler of
  1597. % object file of the unit are older than the unit file itself.
  1598. unit_u_recompile_obj_older_than_asm=U_Recompiling unit, obj is older than asm
  1599. % When you use the \var{-vu} flag, the compiler warns if the assembler
  1600. % file of the unit is older than the object file of the unit.
  1601. unit_u_start_parse_interface=U_Parsing interface of $1
  1602. % When you use the \var{-vu} flag, the compiler warns that it starts
  1603. % parsing the interface part of the unit
  1604. unit_u_start_parse_implementation=U_Parsing implementation of $1
  1605. % When you use the \var{-vu} flag, the compiler warns that it starts
  1606. % parsing the implementation part of the unit
  1607. unit_u_second_load_unit=U_Second load for unit $1
  1608. % When you use the \var{-vu} flag, the compiler warns that it starts
  1609. % recompiling a unit for the second time. This can happend with interdepend
  1610. % units.
  1611. unit_u_check_time=U_PPU Check file $1 time $2
  1612. % When you use the \var{-vu} flag, the compiler show the filename and
  1613. % date and time of the file which a recompile depends on
  1614. % \end{description}
  1615. # EndOfTeX
  1616. #
  1617. # Options
  1618. #
  1619. option_usage=$1 [options] <inputfile> [options]
  1620. # BeginOfTeX
  1621. %
  1622. % \section{Command-line handling errors}
  1623. % This section lists errors that occur when the compiler is processing the
  1624. % command line or handling the configuration files.
  1625. % \begin{description}
  1626. option_only_one_source_support=W_Only one source file supported
  1627. % You can specify only one source file on the command line. The first
  1628. % one will be compiled, others will be ignored. This may indicate that
  1629. % you forgot a \var{'-'} sign.
  1630. option_def_only_for_os2=W_DEF file can be created only for OS/2
  1631. % This option can only be specified when you're compiling for OS/2
  1632. option_no_nested_response_file=E_nested response files are not supported
  1633. % you cannot nest response files with the \var {@file} command-line option.
  1634. option_no_source_found=F_No source file name in command line
  1635. % The compiler expects a source file name on the command line.
  1636. option_no_option_found=N_Aucune option trouv‚e dans le fichier de configuration $1
  1637. % The compiler didn't find any option in that config file.
  1638. option_illegal_para=E_Illegal parameter: $1
  1639. % You specified an unknown option.
  1640. option_help_pages_para=H_-? writes help pages
  1641. % When an unknown option is given, this message is diplayed.
  1642. option_too_many_cfg_files=F_Too many config files nested
  1643. % You can only nest up to 16 config files.
  1644. option_unable_open_file=F_Unable to open file $1
  1645. % The option file cannot be found.
  1646. option_reading_further_from=N_Reading further options from $1
  1647. % Displayed when you have notes turned on, and the compiler switches
  1648. % to another options file.
  1649. option_target_is_already_set=W_Target is already set to: $1
  1650. % Displayed if more than one \var{-T} option is specified.
  1651. option_no_shared_lib_under_dos=W_Shared libs not supported on DOS platform, reverting to static
  1652. % If you specify \var{-CD} for the \dos platform, this message is displayed.
  1653. % The compiler supports only static libraries under \dos
  1654. option_too_many_ifdef=F_too many IF(N)DEFs
  1655. % the \var{\#IF(N)DEF} statements in the options file are not balanced with
  1656. % the \var{\#ENDIF} statements.
  1657. option_too_many_endif=F_too many ENDIFs
  1658. % the \var{\#IF(N)DEF} statements in the options file are not balanced with
  1659. % the \var{\#ENDIF} statements.
  1660. option_too_less_endif=F_open conditional at the end of the file
  1661. % the \var{\#IF(N)DEF} statements in the options file are not balanced with
  1662. % the \var{\#ENDIF} statements.
  1663. option_no_debug_support=W_Debug information generation is not supported by this executable
  1664. % It is possible to have a compiler executable that doesn't support
  1665. % the generation of debugging info. If you use such an executable with the
  1666. % \var{-g} switch, this warning will be displayed.
  1667. option_no_debug_support_recompile_fpc=H_Try recompiling with -dGDB
  1668. % It is possible to have a compiler executable that doesn't support
  1669. % the generation of debugging info. If you use such an executable with the
  1670. % \var{-g} switch, this warning will be displayed.
  1671. option_obsolete_switch=W_You are using the obsolete switch $1
  1672. % this warns you when you use a switch that is not needed/supported anymore.
  1673. % It is recommended that you remove the switch to overcome problems in the
  1674. % future, when the switch meaning may change.
  1675. option_obsolete_switch_use_new=W_You are using the obsolete switch $1, please use $2
  1676. % this warns you when you use a switch that is not supported anymore. You
  1677. % must now use the second switch instead.
  1678. % It is recommended that you change the switch to overcome problems in the
  1679. % future, when the switch meaning may change.
  1680. %
  1681. # EndOfTeX
  1682. #
  1683. # Logo (option -l)
  1684. #
  1685. option_switch_bin_to_src_assembler=N_Switching assembler to default source writing assembler
  1686. % this notifies you that the assembler has been changed because you used the
  1687. % -a switch which can't be used with a binary assembler writer.
  1688. %\end{description}
  1689. # EndOfTeX
  1690. #
  1691. # Logo (option -l)
  1692. #
  1693. option_logo_start=Compilatuer Free Pascal version $FPCVER [$FPCDATE] pour $FPCTARGET
  1694. option_logo_end=Copyright (c) 1998-2000 by Florian Klaempfl
  1695. #
  1696. # Info (option -i)
  1697. #
  1698. option_info_start=Compilatuer Free Pascal version $FPCVER
  1699. option_info1=<lf>
  1700. option_info2=Date du compilateur : $FPCDATE
  1701. option_info3=Cible du compilateur : $FPCTARGET
  1702. # the next lines are NOT translated on purpose !!!
  1703. option_info4=<lf>
  1704. option_info5=This program comes under the GNU General Public Licence
  1705. option_info6=For more information read COPYING.FPC
  1706. option_info7=<lf>
  1707. option_info8=Report bugs,suggestions etc to:
  1708. option_info_end= [email protected]
  1709. #
  1710. # Help pages (option -? and -h)
  1711. #
  1712. # note: the ordering of the enum numbering doens't matter
  1713. #
  1714. ol_begin=**0*_mettre + aprŠs un bool‚en pour activer l'option, - pour la d‚sactiver
  1715. ol001=**1a_conserve les fichiers assembleurs cr‚‚s pendant la compilation
  1716. ol002=**2al_liste le code source dans les fichiers assembleur
  1717. ol003=**2ar_liste les allocations de registres dans les fichiers assembleur
  1718. ol004=**2at_liste les allocations de donn‚es temporaire dans la pile
  1719. ol005=**1b_g‚nŠre les informations pour le browser
  1720. ol006=**2bl_g‚nŠre les informations locales ‚galement
  1721. ol007=**1B_recompile toutes les unit‚s
  1722. ol008=**1C<x>_options de g‚n‚ration de code :
  1723. ol009=3*2CD_cr‚erune librairie dynamique
  1724. ol010=**2Ch<n>_<n> taille du tas en bytes (entre 1023 et 67107840)
  1725. ol011=**2Ci_IO-checking
  1726. ol012=**2Cn_pas de linking
  1727. ol013=**2Co_g‚nŠre des tests d'overflow pour les op‚rations sur les entiers
  1728. ol014=**2Cr_Controle d'intervalles
  1729. ol015=**2Cs<n>_sp‚cifie <n> comme taille de la pile
  1730. ol016=**2Ct_test de d‚bordement de pile
  1731. ol017=3*2CS_cr‚er une librairie statique
  1732. ol018=3*2Cx_utiliser le smartlinking
  1733. ol019=**1d<x>_d‚finit le symbole <x>
  1734. ol020=*O1D_g‚nŠre un fichier DEF
  1735. ol021=*O2Dd<x>_assigne la description … <x>
  1736. ol022=*O2Dw_application en mode prot‚g‚
  1737. ol023=**1e<x>_d‚finit le chemin vers l'ex‚cutable
  1738. ol024=**1E_comme -Cn
  1739. ol025=**1F<x>_d‚finit des chemins et noms de fichiers :
  1740. ol026=**2FD<x>_d‚finit le r‚pertoire o— chercher les utilitaires de compilation
  1741. ol027=**2Fe<x>_redirige les erreurs vers le fichier <x>
  1742. ol028=**2FE<x>_r‚pertoire pour les exe/unit‚s : <x>
  1743. ol029=**2Fi<x>_ajoute <x> … la liste des r‚pertoires pour fichiers inclus
  1744. ol030=**2Fl<x>_ajoute <x> … la liste des r‚pertoires pour librairies
  1745. ol031=*L2FL<x>_utilises <x> comme lieur dynamique
  1746. ol032=**2Fo<x>_ajoute <x> … la liste des r‚pertoires pour fichiers objets
  1747. ol033=**2Fr<x>_charge le fichier erreur <x>
  1748. ol034=**2Fu<x>_ajoute <x> … la liste des r‚pertoires pour unit‚s
  1749. ol035=**2FU<x>_d‚finit le r‚pertoire d'‚criture des unit‚s … <x>, en d‚pit de -FE
  1750. ol036=*g1g<x>_g‚nŠre des informations de d‚bogage :
  1751. ol037=*g2gg_utilise gsym
  1752. ol038=*g2gd_utilise dbx
  1753. ol039=*g2gh_use l'unit‚ de tracage du tas
  1754. ol040=*g2gc_generate checks for pointers
  1755. ol041=**1i_information
  1756. ol042=**2iD_donne la date du compilateur
  1757. ol043=**2iV_donne la version du compilateur
  1758. ol044=**2iSO_donne l'OS du compilateur
  1759. ol045=**2iSP_donne le processeur du compilateur
  1760. ol046=**2iTO_donne l'OS cible
  1761. ol047=**2iTP_donne le processeur cible
  1762. ol048=**1I<x>_ajoute <x> … la liste des r‚pertoires pour fichiers inclus
  1763. ol049=**1k<x>_transmet <x> au linker
  1764. ol050=**1l_‚crit le logo
  1765. ol051=**1n_ne pas lire le fichier de configuration par d‚faut
  1766. ol052=**1o<x>_change le nom de l'executable en <x>
  1767. ol053=**1pg_g‚nŠre du code pour profiler avec gprof
  1768. ol054=*L1P_utilise des pipes au lieu de cr‚er des fichiers temporaires
  1769. ol055=**1S<x>_options de syntaxe :
  1770. ol056=**2S2_autorise quelques extensions Delphi 2
  1771. ol057=**2Sc_autorise les operateurs type C (*=,+=,/= et -=)
  1772. ol058=**2Sd_essaye d'ˆtre compatible avec Delphi
  1773. ol059=**2Se_stoppe la compilation … la premiŠre erreur
  1774. ol060=**2Sg_autorise LABEL et GOTO
  1775. ol061=**2Sh_Utilise les ansistrings
  1776. ol062=**2Si_supporte les INLINE type C++
  1777. ol063=**2Sm_support des macros comme C (global)
  1778. ol064=**2So_essaye d'ˆtre compatible avec TP/BP 7.0
  1779. ol065=**2Sp_essaye d'ˆtre compatible avec GPC
  1780. ol066=**2Ss_les constructeurs doivent s'appeler init (et les destructeurs done)
  1781. ol067=**2St_autorise "static" dans les objects
  1782. ol068=**1s_n'appelle pas l'assembleur ni le linker
  1783. ol069=**1u<x>_rend le symbole <x> non d‚fini
  1784. ol070=**1U_options d'unit‚s :
  1785. ol071=**2Un_ne pas v‚rifier le nom de l'unit‚
  1786. ol072=**2Us_compiler en temps qu'unit‚ systŠme
  1787. ol073=**1v<x>_donne des informations. <x> est une combination des lettres suivantes :
  1788. ol074=**2*_e : montre les erreurs (d‚faut) d : informations de d‚boggage
  1789. ol075=**2*_w : montre les avertissements u : montre les info sur les unit‚s
  1790. ol076=**2*_n : montre les notes t : montre les fichiers essay‚s/utilis‚s
  1791. ol077=**2*_h : montre les suggestions m : montre les macros d‚finies
  1792. ol078=**2*_i : montre des infos g‚n‚rales p : montre les proc‚dures compil‚es
  1793. ol079=**2*_l : montre les num‚ros de lignes c : montre les conditionniels
  1794. ol080=**2*_a : montre tout 0 : ne montre rien (sauf les erreurs)
  1795. ol081=**2*_b : montre toutes les proc‚dures r : mode compatibilit‚ Rhide/GCC
  1796. ol082=**2*_ quand une erreur survient x : infos Executable (Win32 seulement)
  1797. ol083=**2*_
  1798. ol084=**1X_options pour executable :
  1799. ol085=*L2Xc_lien avec librairie C
  1800. ol086=**2XD_lien avec la librarie dynamique (d‚finit FPC_LINK_DYNAMIC)
  1801. ol087=**2Xs_enlˆve tous les symboles de l'executable
  1802. ol088=**2XS_lien avec les librairies statiques (d‚finit FPC_LINK_STATIC)
  1803. ol089=**0*_options sp‚cifiques au processeur :
  1804. ol090=3*1A<x>_format de sortie :
  1805. ol091=3*2Aas_fichier objet g‚n‚r‚ par GNU AS
  1806. ol092=3*2Aasaout_fichier objet g‚n‚r‚ par GNU AS pour aout (Go32v1)
  1807. ol093=3*2Anasmcoff_fichier COFF (Go32v2) avec Nasm
  1808. ol094=3*2Anasmelf_fichier ELF32 (Linux) avec Nasm
  1809. ol095=3*2Anasmobj_fichier OBJ avec Nasm
  1810. ol096=3*2Amasm_fichier OBJ avec Masm (Mircosoft)
  1811. ol097=3*2Atasm_fichier OBJ avec Tasm (Borland)
  1812. ol098=3*2Acoff_coff (Go32v2) using internal writer
  1813. ol099=3*2Apecoff_pecoff (Win32) using internal writer
  1814. ol100=3*1R<x>_type lecture assembleur :
  1815. ol101=3*2Ratt_lit l'assembleur AT&T
  1816. ol102=3*2Rintel_lit l'assembleur Intel
  1817. ol103=3*2Rdirect_copie le texte assembleur directement dans le fichier assembleur
  1818. ol104=3*1O<x>_optimisations :
  1819. ol105=3*2Og_g‚nŠre du code compact
  1820. ol106=3*2OG_g‚nŠre du code rapide (defaut)
  1821. ol107=3*2Or_garde certaines variables dans des registres (toujours BUGGY!!!)
  1822. ol108=3*2Ou_autorise les optimisations incertaines (voir docs)
  1823. ol109=3*2O1_optimisations niveau 1 (optimisations rapides)
  1824. ol110=3*2O2_optimisations niveau 2 (-O1 + optimisations plus lentes)
  1825. ol111=3*2O3_optimisations niveau 3 (comme -O2u)
  1826. ol112=3*2Op<x>_processeur cible :
  1827. ol113=3*3Op1_d‚finit 386/486 comme processeur cible
  1828. ol114=3*3Op2_d‚finit Pentium/PentiumMMX (tm) comme processeur cycle
  1829. ol115=3*3Op3_d‚finit PPro/PII/c6x86/K6 (tm) comme processeur cycle
  1830. ol116=3*1T<x>_systŠme d'explioitation cible :
  1831. ol117=3*2TGO32V1_version 1 de l'extension DOS de DJ Delorie
  1832. ol118=3*2TGO32V2_version 2 de l'extension DOS de DJ Delorie
  1833. ol119=3*2TLINUX_Linux
  1834. ol120=3*2TOS2_OS/2 2.x
  1835. ol121=3*2TWin32_Windows 32 Bits
  1836. ol122=6*1A<x>_output format
  1837. ol123=6*2Aas_Unix o-file using GNU AS
  1838. ol124=6*2Agas_GNU Motorola assembler
  1839. ol125=6*2Amit_MIT Syntax (old GAS)
  1840. ol126=6*2Amot_Standard Motorola assembler
  1841. ol127=6*1O_optimizations:
  1842. ol128=6*2Oa_turn on the optimizer
  1843. ol129=6*2Og_generate smaller code
  1844. ol130=6*2OG_generate faster code (default)
  1845. ol131=6*2Ox_optimize maximum (still BUGGY!!!)
  1846. ol132=6*2O2_set target processor to a MC68020+
  1847. ol133=6*1R<x>_styles d'assembleur :
  1848. ol134=6*2RMOT_lire l'assembleur type motorola
  1849. ol135=6*1T<x>_SystŠme d'exploitation cible :
  1850. ol136=6*2TAMIGA_Commodore Amiga
  1851. ol137=6*2TATARI_Atari ST/STe/TT
  1852. ol138=6*2TMACOS_Macintosh m68k
  1853. ol139=6*2TLINUX_Linux-68k
  1854. ol140=**1*_
  1855. ol141=**1?_affiche cette aide
  1856. ol142=6*1R<x>_version de l'assembleur lu
  1857. ol143=6*2RMOT_read motorola style assembler
  1858. ol144=6*1T<x>_Target operating system:
  1859. ol145=6*2TAMIGA_Commodore Amiga
  1860. ol146=6*2TATARI_Atari ST/STe/TT
  1861. ol147=6*2TMACOS_Macintosh m68k
  1862. ol148=6*2TLINUX_Linux-68k
  1863. ol149=**1*_
  1864. ol150=**1?_shows this help
  1865. ol_end=**1h_affiche cette aide sans attente
  1866. #
  1867. # The End...
  1868. #