errorrw.msg 116 KB

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