errorid.msg 243 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870
  1. %%% Reordering of errorid.msg respective to errore.msg
  2. %%% Contains all comments from errorid.msg
  3. # $Id: errorid.msg,v 1.124 2007/09/20 02:52:50 zaenal Exp $
  4. # This file is part of the Free Pascal Compiler
  5. # Copyright (c) 1999-2018 by the Free Pascal Development team
  6. #
  7. # Indonesian Language File for Free Pascal
  8. # Contributed by Zaenal Mutaqin <ade999 at gmail.com>
  9. #
  10. # See the file COPYING.v2, included in this distribution,
  11. # for details about the copyright.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. # CodePage 20127
  18. #
  19. # The constants are build in the following order:
  20. # <part>_<type>_<txtidentifier>
  21. #
  22. # <part> is the part of the compiler the message is used
  23. # asmr_ assembler parsing
  24. # asmw_ assembler writing/binary writers
  25. # unit_ unit handling
  26. # scan_ scanner
  27. # parser_ parser
  28. # type_ type checking
  29. # general_ general info
  30. # exec_ calls to assembler, linker, binder
  31. #
  32. # <type> the type of the message it should normally used for
  33. # f_ fatal error
  34. # e_ error
  35. # w_ warning
  36. # n_ note
  37. # h_ hint
  38. # i_ info
  39. # l_ add linenumber
  40. # u_ used
  41. # t_ tried
  42. # c_ conditional
  43. # d_ debug message
  44. # x_ executable informations
  45. #
  46. #
  47. # Umum
  48. #
  49. # 01023 is the last used one
  50. #
  51. # BeginOfTeX
  52. % \section{Pesan kompilator umum}
  53. % Seksi ini memberikanpesan kompilator yang tidak fatal, tapi
  54. % menampilkan informasi berguna. Jumlah pesan itu dapat dikontrol
  55. % dengan berbagai saklar tingkat tampilan \var{-v}.
  56. % \begin{description}
  57. general_t_compilername=01000_T_Kompilator: $1
  58. % Saat saklar \var{-vt} dipakai, baris ini memberitahu anda kompilator apa
  59. % yang dipakai.
  60. general_d_sourceos=01001_D_OS Kompilator: $1
  61. % Saat saklar \var{-vd} dipakai, baris ini memberitahu anda apa sistem operasi
  62. % sumbernya.
  63. general_i_targetos=01002_I_OS Target: $1
  64. % Saat saklar \var{-vd} dipakai, baris ini memberitahu anda apa sistem operasi
  65. % targetnya.
  66. general_t_exepath=01003_T_Menggunakan path executable: $1
  67. % Saat saklar \var{-vt} dipakai, baris ini memberitahu anda ke mana kompilator
  68. % mencari binernya.
  69. general_t_unitpath=01004_T_Menggunakan path unit: $1
  70. % Saat saklar \var{-vt} dipakai, baris ini memberitahu anda ke mana kompilator
  71. % mencari unit terkompilasinya. Anda bisa menyetel path ini dengan \var{-Fu}
  72. general_t_includepath=01005_T_Menggunakan path include: $1
  73. % Saat saklar \var{-vt} dipakai, baris ini memberitahu anda ke mana kompilator
  74. % mencari file include-nya (file dipakai dalam pernyataan \var{\{\$I xxx\}}).
  75. % Anda dapat menyetel path ini dengan opsi \var{-I}.
  76. general_t_librarypath=01006_T_Menggunakan path librari: $1
  77. % Saat saklar \var{-vt} dipakai, baris ini memberitahu anda ke mana kompilator
  78. % mencari librari. Anda dapat menyetel path ini dengan opsi \var{-Fl}.
  79. general_t_objectpath=01007_T_Menggunakan path obyek: $1
  80. % Saat saklar \var{-vt} dipakai, baris ini memberitahu anda ke mana kompilator
  81. % mencari file obyek yang anda link (file dipakai dalam pernyataan \var{\{\$L xxx\}}).
  82. % Anda dapat menyetel path ini dengan opsi \var{-Fo}.
  83. general_i_abslines_compiled=01008_I_$1 baris dikompilasi, $2 det$3
  84. % Saat saklar \var{-vi} dipakai, kompilator melaporkan jumlah baris yang
  85. % dikompilasi, dan waktu yang diperlukan untuk mengompilasinya (waktu nyata,
  86. % bukan waktu program).
  87. general_f_no_memory_left=01009_F_Memori tidak tersisa
  88. % Kompilator kekurangan memori untuk mengkompilasi program anda. Ada beberapa
  89. % beberapa obat untuk hal ini:
  90. % \begin{itemize}
  91. % \item Jika anda menggunakan opsi pembangunan kompilator, coba mengompilasi
  92. % unit-unit berbeda secara manual.
  93. % \item Jika anda mengompilasi program besar, pisahkan dalam units, dan
  94. % kompilasi ini secara terpisah.
  95. % \item Jika kedua item sebelumnya tidak bekerja, rekompilasi kompilator dengan
  96. % heap lebih besar (anda dapat memakai opsi \var{-Ch} untuk ini, \lihat o{Ch})
  97. % \end{itemize}
  98. general_i_writingresourcefile=01010_I_Menulis file Tabel String Resource: $1
  99. % Pesan ini ditampilkan saat kompilator menuliskan file Resource String Table
  100. % yang berisi semua string sumber untuk sebuah program.
  101. general_e_errorwritingresourcefile=01011_E_Menulis file Tabel String Resource: $1
  102. % Pesan ini ditampilkan saat kompilator menemukan kesalahaan ketika menulis
  103. % file Resource String Table
  104. general_i_fatal=01012_I_Fatal:
  105. % Prefiks untuk Kesalahan Fatal
  106. general_i_error=01013_I_Kesalahan:
  107. % Prefiks untuk Kesalahan
  108. general_i_warning=01014_I_Peringatan:
  109. % Prefiks untuk Peringatan
  110. general_i_note=01015_I_Catatan:
  111. % Prefiks untuk Catatan
  112. general_i_hint=01016_I_Petunjuk:
  113. % Prefiks untuk Petunjuk
  114. general_e_path_does_not_exist=01017_E_Path "$1" tidak ada
  115. % Path yang ditetapkan tidak ada.
  116. general_f_compilation_aborted=01018_F_Kompilasi dibatalkan
  117. % Kompilasi sudah dibatalkan.
  118. general_text_bytes_code=01019_byte kode
  119. % The size of the generated executable code, in bytes.
  120. general_text_bytes_data=01020_byte data
  121. % The size of the generated program data, in bytes.
  122. general_i_number_of_warnings=01021_I_$1 peringatan diterbitkan
  123. % Jumlah peringatan yang diterbitkan selama kompilasi.
  124. general_i_number_of_hints=01022_I_$1 petunjuk diterbitkan
  125. % Jumlah petunjuk yang diterbitkan selama kompilasi.
  126. general_i_number_of_notes=01023_I_$1 catatan diterbitkan
  127. % Jumlah catatan yang diterbitkan selama kompilasi.
  128. % \end{description}
  129. #
  130. # Scanner
  131. #
  132. # 02084 is the last used one
  133. #
  134. % \section{Pesan pemindai.}
  135. % Seksi ini mendaftarkan pesan-pesan yang dikeluarkan pemindai. Pemindai
  136. % memelihara struktur leksikal atas file pascal, misalnya ia mencoba menemukan
  137. % kata-kata terpakai, string, dll. Ia juga memelihara direktif dan penanganan
  138. % kompilasi kondisional.
  139. % \begin{description}
  140. general_f_ioerror=01024_F_I/O error: $1
  141. % During compilation an I/O error happened which allows no further compilation.
  142. general_f_oserror=01025_F_Operating system error: $1
  143. % During compilation an operating system error happened which allows no further compilation.
  144. % \end{description}
  145. #
  146. # Scanner
  147. #
  148. # 02098 is the last used one
  149. #
  150. % \section{Scanner messages.}
  151. % This section lists the messages that the scanner emits. The scanner takes
  152. % care of the lexical structure of the pascal file, i.e. it tries to find
  153. % reserved words, strings, etc. It also takes care of directives and
  154. % conditional compilation handling.
  155. % \begin{description}
  156. scan_f_end_of_file=02000_F_Akhir file tidak diharapkan
  157. % Ini biasanya terjadi dalam salah satu kasus berikut :
  158. % \begin{itemize}
  159. % \item File sumber berakhir sebelum pernyataan \var{end.} final. Ini
  160. % terjadi umumnya saat pernyataan \var{begin} dan \var{end} tidak
  161. % seimbang;
  162. % \item File include berakhir ditengah-tengah sebuah pernyataan.
  163. % \item Sebuah komentar tidak ditutup
  164. % \end{itemize}
  165. scan_f_string_exceeds_line=02001_F_String melebihi baris
  166. % Kekurangan penutup ' dalam sebuah string, maka ia melibatkan
  167. % multipel baris.
  168. scan_f_illegal_char=02002_F_Karakter tidak benar "$1" ($2)
  169. % Sebuah karakter yang ditemukan tidak benar dalam file input.
  170. scan_f_syn_expected=02003_F_Sintaks salah, "$1" diharapkan tetapi "$2" ditemukan
  171. % Ini menunjukan bahwa kompilator mengharapkan token yang berbeda daripada
  172. % yang anda ketikan. Ini bisa terjadi hampir di manapun anda membuat sebuah
  173. % kesalahan terhadap bahasa pascal.
  174. scan_t_start_include_file=02004_TL_Mulai membaca file include $1
  175. % Ketika anda menyediakan saklar \var{-vt}, kompilator memberitahu anda
  176. % kapan ia mulai membaca sebuah file yang disertakan.
  177. scan_w_comment_level=02005_W_Tingkat komentar $1 ditemukan
  178. % Saat saklar \var{-vw} dipakai, maka kompilator memperingatkan anda bila
  179. % ia menemukan komentar berulang. Komentar berulang tidak dibolehkan dalam
  180. % Turbo Pascal dan mungkin menjadi sumber kesalahan.
  181. scan_n_ignored_switch=02008_N_Saklar kompilator "$1" diabaikan
  182. % Dengan \var{-vn} hidup, kompilator memperingatkan bila ia mengabaikan saklar
  183. scan_w_illegal_switch=02009_W_Saklar kompilator "$1" tidak benar
  184. % Anda menyertakan saklar kompilator (misalnya \var{\{\$... \}}) yang tidak
  185. % dikenal oleh kompilator
  186. scan_w_switch_is_global=02010_W_Saklar global kompilator salah tempat
  187. % Saklar kompilator salah menempatkan, anda harus ditempatkan di awal
  188. % unit atau program.
  189. scan_e_illegal_char_const=02011_E_Konstan char tidak benar
  190. % Ini terjadi saat anda menetapkan karakter dengan kode ASCII-nya, seperti
  191. % dalam \var{\#96}, tapi angka baik tidak benar ataupun di luar jangkauan.
  192. scan_f_cannot_open_input=02012_F_Tidak bisa membuka file "$1"
  193. % \fpc todal dapat menemukan program atau file sumber unit yang anda tetapkan
  194. % pada baris perintah.
  195. scan_f_cannot_open_includefile=02013_F_Tidak bisa membuka file include "$1"
  196. % \fpc tidak bisa menemukan file sumber yang anda tetapkan dalam pernyataan
  197. % \var{\{\$include ..\}}.
  198. scan_e_illegal_pack_records=02015_E_Pembeda penjajaran record "$1"
  199. % Anda menetapkan \var{\{\$PACKRECORDS n\} } atau \var{\{\$ALIGN n\} }
  200. % dengan nilai tidak benar untuk \var{n}. Penjajaran yang benar untuk \$PACKRECORDS adalah 1, 2, 4, 8, 16, 32, C,
  201. % NORMAL, DEFAULT, dan penjajaran yang benar untuk \$ALIGN adalah 1, 2, 4, 8, 16, 32, ON,
  202. % OFF. Di bawah mode MacPas \$ALIGN juga mendukung MAC68K, POWER dan RESET.
  203. scan_e_illegal_pack_enum=02016_E_Pembeda besar-minimum enum "$1" tidak benar
  204. % Anda menetapkan \var{\{\$PACKENUM n\}} dengan nilai yang tidak benar untuk
  205. % \var{n}. Hanya 1,2,4, NORMAL atau DEFAULT yang benar di sini.
  206. scan_e_endif_expected=02017_E_$ENDIF diharapkan untuk $1 $2 didefinisikan dalam $3 baris $4
  207. % Pernyataan kompilasi kondisional anda tidak seimbang.
  208. scan_e_preproc_syntax_error=02018_E_Sintaks salah saat mengurai ekspresi kompilasi kondisional
  209. % Ini adalah kesalahan dalam ekspresi mengikuti direktori kompilator \var{\{\$if ..\}},
  210. % $ifc atau $setc.
  211. scan_e_error_in_preproc_expr=02019_E_Mengevaluasi ekspresi kompilasi kondisional
  212. % Ini adalah kesalahan dalam ekspresi mengikuti direktori kompilator \var{\{\$if ..\}},
  213. % $ifc atau $setc.
  214. scan_w_macro_cut_after_255_chars=02020_W_Panjang isi makro dibatasi 255 karakter
  215. % Isi dari makro tidak bisa lebih panjang dari 255 karakter.
  216. scan_e_endif_without_if=02021_E_ENDIF tanpa IF(N)DEF
  217. % Pernyataan \var{\{\$IFDEF ..\}} dan {\{\$ENDIF\}} anda tidak seimbang.
  218. scan_f_user_defined=02022_F_Didefinisikan pengguna: $1
  219. % Yang didefinisikan pengguna terjadi kesalahan fatal. Lihat juga \progref
  220. scan_e_user_defined=02023_E_Didefinisikan pengguna: $1
  221. % Kesalahanyang didefinisikan pengguna terjadi. Lihat juga \progref
  222. scan_w_user_defined=02024_W_Didefinisikan pengguna: $1
  223. % Peringtan yang didefinisikan pengguna ditemukan. Lihat juga \progref
  224. scan_n_user_defined=02025_N_Didefinisikan pengguna: $1
  225. % Catatan yang didefinisikan pengguna ditemukan. Lihat juga \progref
  226. scan_h_user_defined=02026_H_Didefinisikan pengguna: $1
  227. % Petunjuk yang didefinisikan pengguna ditemukan. Lihat juga \progref
  228. scan_i_user_defined=02027_I_Didefinisikan pengguna: $1
  229. % Informasi yang didefinisikan pengguna ditemukan. Lihat juga \progref
  230. scan_e_keyword_cant_be_a_macro=02028_E_Kata kunci didefiniskan ulang sebagai makro tidak berpengaruh
  231. % Anda tidak dapat mendefinisikan kata kunci dengan makro.
  232. scan_f_macro_buffer_overflow=02029_F_Bufer makro berlebihan saat membaca atau melebarkan makro
  233. % Makro anda atau hasilnya terlalu panjang bagi kompilator.
  234. scan_w_macro_too_deep=02030_W_Pelebaran makro melebihi kedalaman 16.
  235. % Ketika melebarkan sebuah makro, makro diulang sampai tingkat 16.
  236. % Kompilator tidak akan melebarkannya lagi, karena ini berupa tanda bahwa
  237. % rekursi yang digunakan.
  238. scan_w_wrong_styled_switch=02031_W_Saklar kompilator tidak didukung dalam gaya komentar //
  239. % Saklar kompilator harus dalam komentar gaya pascal normal.
  240. scan_d_handling_switch=02032_DL_Penanganan saklar "$1"
  241. % Ketika anda menyetel info debugging pada (\var{-vd}) kompilator memberitahu
  242. % anda saatia mengevaluasi pernyataan kompilasi kondisional.
  243. scan_c_endif_found=02033_CL_ENDIF $1 ditemukan
  244. % Ketika anda menghidupkan pesan kondisional (\var{-vc}), kompilator memberitahu
  245. % anda di aman ia menemukanpernyataan kondisional.
  246. scan_c_ifdef_found=02034_CL_IFDEF $1 ditemukan, $2
  247. % Ketika anda menghidupkan pesan kondisioinal (\var{-vc}), kompilator memberitahu
  248. % anda di mana ia menemukan pernyataan kondisional.
  249. scan_c_ifopt_found=02035_CL_IFOPT $1 ditemukan, $2
  250. % Ketika anda menghidupkan pesan kondisioinal (\var{-vc}), kompilator memberitahu
  251. % anda di mana ia menemukan pernyataan kondisional.
  252. scan_c_if_found=02036_CL_IF $1 ditemukan, $2
  253. % Ketika anda menghidupkan pesan kondisioinal (\var{-vc}), kompilator memberitahu
  254. % anda di mana ia menemukan pernyataan kondisional.
  255. scan_c_ifndef_found=02037_CL_IFNDEF $1 ditemukan, $2
  256. % Ketika anda menghidupkan pesan kondisioinal (\var{-vc}), kompilator memberitahu
  257. % anda di mana ia menemukan pernyataan kondisional.
  258. scan_c_else_found=02038_CL_ELSE $1 ditemukan, $2
  259. % Ketika anda menghidupkan pesan kondisioinal (\var{-vc}), kompilator memberitahu
  260. % anda di mana ia menemukan pernyataan kondisional.
  261. scan_c_skipping_until=02039_CL_Melewati sampai...
  262. % Ketika anda menghidupkan pesan kondisioinal (\var{-vc}), kompilator memberitahu
  263. % anda di mana ia menemukan pernyataan kondisional, dan apakah ia melewati atau
  264. % mengompilasi bagiannya.
  265. scan_i_press_enter=02040_I_Tekan <return> untuk melanjutkan
  266. % Saat saklar \var{-vi} dipakai, kompilator berhenti mengompilasi dan menunggu
  267. % tombol \var{Enter} ditekan bila ia menemukan direktif
  268. % \var{\{\$STOP\}}.
  269. scan_w_unsupported_switch=02041_W_Saklar "$1" tidak didukung
  270. % Saat peringatan dihidupkan (\var{-vw}) kompilator memperingatkan anda tentang
  271. % saklar yang tidak didukung. Ini berarti bahwa saklar yang dipakai dalam Delphi
  272. % atau Turbo Pascal, tetapi tidak dalam \fpc
  273. scan_w_illegal_directive=02042_W_Direktif kompilator "$1" tidak benar
  274. % Saat peringatan dihidupkan (\var{-vw}) kompilator memperingatkan anda tentang
  275. % saklar yang tidak dikenal. Untuk daftar saklar yang dikenal, \progref
  276. scan_t_back_in=02043_TL_Kembali dalam $1
  277. % Saat anda memakai (\var{-vt}) kompilator memberitahu anda kapan ia selesai
  278. % membaca sebuah file include.
  279. scan_w_unsupported_app_type=02044_W_Tipe aplikasi tidak didukung: "$1"
  280. % Anda mendapat peringatan ini, jika anda menetapkan tipe aplikasi tidak dikenal
  281. % dengan direktif \var{\{\$APPTYPE\}}
  282. scan_w_app_type_not_support=02045_W_APPTYPE tidak didukung oleh OS target
  283. % Direktif \var{\{\$APPTYPE\}} hanya didukung oleh sistem operasi tertentu.
  284. scan_w_description_not_support=02046_W_DESCRIPTION tidak didukung oleh OS target
  285. % Direktif \var{\{\$DESCRIPTION\}} tidak didukung pada OS target ini
  286. scan_n_version_not_support=02047_N_VERSION tidak didukung oleh OS target
  287. % Direktif \var{\{\$VERSION\}} tidak didukung pada OS target ini
  288. scan_n_only_exe_version=02048_N_VERSION hanya untuk EXE atau DLL
  289. % Direktif \var{\{\$VERSION\}} hanya dipakai untuk executable atau sumber DLL.
  290. scan_w_wrong_version_ignored=02049_W_Format salah untuk direktif VERSION "$1"
  291. % Format direktif \var{\{\$VERSION\}} adalah versiutama.versiminor
  292. % di mana versiutama dan versiminor adalah word.
  293. scan_e_illegal_asmmode_specifier=02050_E_Gaya assembler yang ditetapkan "$1" tidak benar
  294. % Ketika anda menetapkan mode assembler dengan \var{\{\$ASMMODE xxx\}}
  295. % kompilator tidak mengenal mode yang anda tetapkan.
  296. scan_w_no_asm_reader_switch_inside_asm=02051_W_Saklar pembaca ASM tidak mungkin di dalam pernyataan asm, "$1" hanya efektif untuk next
  297. % Tidak mungkin untuk beralih dari satu pembaca assembler ke yang lainnya
  298. % di dalam blok assembler. Pembaca baru hanya akan dipakai untuk pernyataan
  299. % assembler next saja.
  300. scan_e_wrong_switch_toggle=02052_E_Saklar toggle salah, gunakan ON/OFF atau +/-
  301. % Anda perlu menggunakan ON atau OFF atau + atau - untuk menghidup matikan saklar
  302. scan_e_resourcefiles_not_supported=02053_E_File resource tidak didukung untuk target ini
  303. % Target yang anda kompilasi tidak mendukung file resource.
  304. scan_w_include_env_not_found=02054_W_Lingkungan include "$1" tidak ditemukan dalam lingkungan
  305. % Variabel lingkungan yang disertakan tidak ditemukan dalam lingkungan, sebaliknya
  306. % ia akan diganti dengan string kosong.
  307. scan_e_invalid_maxfpureg_value=02055_E_Nilai batas register FPU tidak benar
  308. % Nilai yang benar untuk direktif ini adalah 0..8 dan NORMAL/DEFAULT
  309. scan_w_only_one_resourcefile_supported=02056_W_Hanya satu file resource didukung untuk target ini
  310. % Target yang anda kompilasi hanya mendukung satu file resource.
  311. % File resource pertama yang ditemukan akan dipakai, yuang lain diabaikan.
  312. scan_w_macro_support_turned_off=02057_W_Dukungan makro telah dimatikan
  313. % Deklarasi makro ditemukan, tapi dukungan makro sudah dimatikan,
  314. % maka deklarasi akan diabaikan. Untuk menghidupkan dukungan makro, kompilasi dengan
  315. % -Sm pada baris perintah atau tambah \{\$MACRO ON\} dalam sumber file
  316. scan_e_invalid_interface_type=02058_E_Tipe antarmuka yang ditetapkan tidak benar. Yang benar COM, CORBA atau DEFAULT.
  317. % Tipe antarmuka yang ditetapkan tidak didukung
  318. scan_w_appid_not_support=02059_W_APPID hanya didukung pada PalmOS
  319. % Direktif \var{\{\$APPID\}} hanya didukung jika target PalmOS.
  320. scan_w_appname_not_support=02060_W_APPNAME hanya didukung oleh PalmOS
  321. % Direktif \var{\{\$APPNAME\}} hanya didukung oleh target PalmOS.
  322. scan_e_string_exceeds_255_chars=02061_E_Konstan string tidak boleh lebih panjang dari 255 karakter
  323. % Konstan string tunggal dapat berisi paling banyak 255 karakter. Coba untuk
  324. % memisahkan string dalam bagian multipel lebih kecil dan tambah dengan operator +.
  325. scan_f_include_deep_ten=02062_F_Menyertakan file include melebihi kedalaman 16.
  326. % Ketika menyertakan file include, file sudah diulang ke tingkat 16.
  327. % Kompilator tidak akan melebarkannya lagi, karena ini sebagai tanda bahwa
  328. % rekursi yang dipakai.
  329. scan_e_too_many_push=02063_F_Terlalu banyak tingkat PUSH
  330. % Maksimum 20 tingkat dibolehkan. Kesalahan ini hanya terjadi dalam mode MacPas.
  331. scan_e_too_many_pop=02064_E_POP tanpa didahului PUSH
  332. % Kesalahan ini hanya terjadi dalam mode MacPas.
  333. scan_e_error_macro_lacks_value=02065_E_Makro atau variabel waktu kompilasi "$1" tidak memiliki nilai
  334. % Ekspresi waktu kompilasi kondisional tidak bisa dievaluasi.
  335. scan_e_wrong_switch_toggle_default=02066_E_Saklar toggle salah, gunakan ON/OFF/DEFAULT atau +/-/*
  336. % Anda perlu menggunakan ON atau OFF atau DEFAULT atau + atau - atau * untuk men-toggle saklar
  337. scan_e_mode_switch_not_allowed=02067_E_Saklar mode "$1" tidak diijinkan di sini
  338. % Saklar mode sudah ditemukan, atau dalam hal opsi -Mmacpas,
  339. % saklar mode terjadi setelah UNIT.
  340. scan_e_error_macro_undefined=02068_E_Variabel waktu kompilasi atau makro "$1" tidak didefinisikan.
  341. % Ekspresi waktu kompilasi kondisional tidak bisa dievaluasi. Hanya dalam mode MacPas.
  342. scan_e_utf8_bigger_than_65535=02069_E_Kode UTF-8 lebih besar dari 65535 ditemukan
  343. % \fpc menangani string utf-8 secara internal sebagai widestring misalnya kode karakter dibatasi ke 65535
  344. scan_e_utf8_malformed=02070_E_String UTF-8 salah bentuk
  345. % String yang diberikan bukan string UTF-8 yang benar
  346. scan_c_switching_to_utf8=02071_C_Tanda UTF-8 ditemukan, menggunakan enkode UTF-8
  347. % Kompilator menemukan tanda enkode UTF-8 (\$ef, \$bb, \$bf) di awal file,
  348. % maka ia menganggapnya sebagai file UTF-8
  349. scan_e_compile_time_typeerror=02072_E_Ekspresi waktu kompilasi: Diinginkan $1 tapi didapat $2 pada $3
  350. % Pemeriksaan tipe pada ekspresi waktu kompilasi gagal.
  351. scan_n_app_type_not_support=02073_N_APPTYPE tidak didukung oleh OS target
  352. % Direktif \var{\{\$APPTYPE\}} hanya didukung oleh sistem operasi tertentu.
  353. scan_e_illegal_optimization_specifier=02074_E_Optimasi yang ditetapkan "$1" tidak benar
  354. % Ketika anda menetapkan optimasi dengan \var{\{\$OPTIMIZATION xxx\}}
  355. % kompilator tidak mengenali optimasi yang anda tetapkan.
  356. scan_w_setpeflags_not_support=02075_W_SETPEFLAGS tidak didukung oleh OS target
  357. % Direktif \var{\{\$SETPEFLAGS\}} tidak didukung oleh OS target
  358. scan_w_imagebase_not_support=02076_W_IMAGEBASE tidak dudkung oleh OS target
  359. % Direktif \var{\{\$IMAGEBASE\}} tidak dudkung oleh OS target
  360. scan_w_minstacksize_not_support=02077_W_MINSTACKSIZE tidak dudkung oleh OS target
  361. % Direktif \var{\{\$MINSTACKSIZE\}} tidak dudkung oleh OS target
  362. scan_w_maxstacksize_not_support=02078_W_MAXSTACKSIZE tidak dudkung oleh OS target
  363. % Direktif \var{\{\$MAXSTACKSIZE\}} tidak dudkung oleh OS target
  364. scanner_e_illegal_warn_state=02079_E_Kondisi direktif $WARN tidak benar
  365. % Hanya ON dan OFF bisa dipakai sebagai kondisi dengan direktif kompilator \$warn
  366. scan_e_only_packset=02080_E_Nilai set packing tidak benar
  367. % Hanya 0, 1, 2, 4, 8, DEFAULT dan NORMAL diijinkan sebagai parameter packset
  368. scan_w_pic_ignored=02081_W_Direktif PIC atau saklar diabaikan
  369. % Beberapa target seperti windows tidak mendukung PIC maka direktif PIC dan
  370. % saklar diabaikan.
  371. scan_w_unsupported_switch_by_target=02082_W_Saklar "$1" tidak didukung oleh target yang dipilih saat ini
  372. % Beberapa saklar kompilator seperti \$E tidak didukung oleh semua target.
  373. scan_w_frameworks_darwin_only=02084_W_Opsi terkait-framework hanya didukung oleh Darwin/Mac OS X
  374. % Frameworks bukan konsep yang dikenal, atau setidaknya didukung oleh FPC, pada sistem operasi selain Darwin/Mac OS X.
  375. scan_e_illegal_minfpconstprec=02085_E_Konstan presisi pecahan minimal "$1" tidak benar
  376. % Presisi minimal yang benar untuk konstan floating point adalah standar, 32 dan 64, yang berarti masing-masing presisi minimal (biasanya 32 bit), 32 bit dan 64 bit.
  377. % \end{description}
  378. #
  379. # Parser
  380. #
  381. # 03235 is the last used one
  382. #
  383. % \section{Pesan pengurai}
  384. % Seksi ini mendaftarkan semua pesan pengurai. Pengurai memelihara semantik
  385. % atas bahasa anda, misalnya ia menentukan apakah konstruksi pascal anda
  386. % sudah benar atau tidak.
  387. % \begin{description}
  388. scan_w_multiple_main_name_overrides=02086_W_Overriding name of "main" procedure multiple times, was previously set to "$1"
  389. % The name for the main entry procedure is specified more than once. Only the last
  390. % name will be used.
  391. scanner_w_illegal_warn_identifier=02087_W_Illegal identifier "$1" for $WARN directive
  392. % Identifier is not known by a \var{\{\$WARN\}} compiler directive.
  393. scanner_e_illegal_alignment_directive=02088_E_Illegal alignment directive
  394. % The alignment directive is not valid. Either the alignment type is not known or the alignment
  395. % value is not a power of two.
  396. scanner_f_illegal_utf8_bom=02089_F_It is not possible to include a file that starts with an UTF-8 BOM in a module that uses a different code page
  397. % All source code that is part of a single compilation entity (program, library, unit) must be encoded
  398. % in the same code page
  399. scanner_w_directive_ignored_on_target=02090_W_Directive "$1" is ignored for the current target platform
  400. % Some directives are ignored for certain targets, such as changing the
  401. % packrecords and packenum settings on managed platforms.
  402. scan_w_unavailable_system_codepage=02091_W_Current system codepage "$1" is not available for the compiler. Switching default codepage back to "$2".
  403. % The current system codepage is not known by the compiler.
  404. % The compiler is compiled with support for several codepages built-in.
  405. % The codepage of the operation system is not in that list. You will need to recompile
  406. % the compiler with support for this codepage.
  407. scan_w_setpeoptflags_not_support=02092_W_SETPEOPTFLAGS is not supported by the target OS
  408. % The \var{\{\$SETPEOPTFLAGS\}} directive is not supported by the target OS.
  409. scan_e_illegal_peflag=02093_E_Illegal argument for SETPEFLAGS
  410. % The given argument for SETPEFLAGS is neither a correct named value nor an
  411. % ordinal value
  412. scan_e_illegal_peoptflag=02094_E_Illegal argument for SETPEOPTFLAGS
  413. % The given argument for SETPEOPTFLAGS is neither a correct named value nor an
  414. % ordinal value
  415. scan_e_unsupported_switch=02095_E_Directive $1 is not supported on this target
  416. % Not all compiler directives are supported on all targets.
  417. scan_w_invalid_stacksize=02096_W_The specified stack size is not within the valid range for the platform. Setting the stack size ignored.
  418. % The valid range for the stack size is 1024 - 67107839 on 32-bit and 64-bit
  419. % platforms and 1024 - 65520 on 16-bit platforms. Additionally, for Turbo Pascal 7
  420. % compatibility reasons, specifying a stack size of 65521 on 16-bit platforms
  421. % actually sets the stack size to 65520.
  422. scan_w_heapmax_lessthan_heapmin=02097_W_The specified HeapMax value is smaller than the HeapMin value. Setting HeapMax ignored.
  423. % The HeapMax value (if specified) must be greater than or equal to the HeapMin
  424. % value. Otherwise, the HeapMax value is ignored.
  425. scan_e_illegal_hugepointernormalization=02098_E_Illegal argument for HUGEPOINTERNORMALIZATION
  426. % The only allowed values for HUGEPOINTERNORMALIZATION are BORLANDC, MICROSOFTC
  427. % and WATCOMC.
  428. % \end{description}
  429. #
  430. # Parser
  431. #
  432. # 03339 is the last used one
  433. #
  434. % \section{Parser messages}
  435. % This section lists all parser messages. The parser takes care of the
  436. % semantics of you language, i.e. it determines if your Pascal constructs
  437. % are correct.
  438. % \begin{description}
  439. parser_e_syntax_error=03000_E_Pengurai - Sintaks Salah
  440. % Kesalahan terhadap bahasa Turbo Pascal ditemukan. Ini terjadi biasanya
  441. % saat karakter tidak benar ditemukan dalam file sumber.
  442. parser_e_dont_nest_interrupt=03004_E_Prosedur INTERRUPT tidak bisa diulang
  443. % Prosedur \var{INTERRUPT} harus global.
  444. parser_w_proc_directive_ignored=03005_W_Tipe prosedur "$1" diabaikan
  445. % Direktif procedure yang dietapkan diabaikan oleh program FPC.
  446. parser_e_no_overload_for_all_procs=03006_E_Tidak semua deklarasi "$1" dideklarasikan dengan OVERLOAD
  447. % Ketika anda ingin menggunakan direktif \var{OVERLOAD}, maka semua
  448. % deklarasi perlu menetapkan \var{OVERLOAD}.
  449. parser_e_export_name_double=03008_E_Duplikasi nama fungsi yang diekspor "$1"
  450. % Nama-nama fungsi yang diekspor di dalam DLL tertentu semuanya harus berbeda
  451. parser_e_export_ordinal_double=03009_E_Duplikasi indeks fungsi yang diekspor $1
  452. % Indeks fungsi yang diekspor di dalam DLL tertentu semuanya harus berbeda
  453. parser_e_export_invalid_index=03010_E_Indeks untuk fungsi yang diekspor tidak benar
  454. % Indeks fungsi DLL harus dalam jangkauan \var{1..\$FFFF}
  455. parser_w_parser_reloc_no_debug=03011_W_DLL yang bisa direlokasi atau info debug executable $1 tidak bekerja, dimatikan.
  456. % It is currently not possible to include debug information in a relocatable DLL.
  457. parser_w_parser_win32_debug_needs_WN=03012_W_Untuk membolehkan men-debug pada kode win32 anda perlu mematikan relokasi dengan opsi -WN
  458. % Info stab salah untuk DLL atau EXE yang bisa direlokasi, gunakan -WN
  459. % jika anda ingin men-debug win32 executable.
  460. parser_e_constructorname_must_be_init=03013_E_Nama konstruktor harus INIT
  461. % Anda mendeklarasikan konstruktor obyek dengan nama yang bukan \var{init}, dan
  462. % saklar \var{-Ss} dipakai. Lihat saklar \var{-Ss} (\seeo{Ss}).
  463. parser_e_destructorname_must_be_done=03014_E_Nama destruktor harus DONE
  464. % Anda mendeklarasikan destruktor obyek yang bukan \var{done}, dan saklar
  465. % \var{-Ss} dipakai. Lihat saklar \var{-Ss} (\seeo{Ss}).
  466. parser_e_proc_inline_not_supported=03016_E_Tipe prosedur INLINE tidak didukung
  467. % Anda mencoba untuk mengompilasi program dengan gaya inline C++, dan lupa
  468. % menetapkan opsi \var{-Si} (\seeo{Si}). Standarnya kompilator tidak mendukung
  469. % gaya inline C++.
  470. parser_w_constructor_should_be_public=03018_W_Konstruktor harus public
  471. % Konstruktor harus dalam bagian 'public' pada sebuah deklarasi obyek (class).
  472. parser_w_destructor_should_be_public=03019_W_Destruktor harus public
  473. % Destruktor harus dalam bagian 'public' pada sebuah deklarasi obyek (class).
  474. parser_n_only_one_destructor=03020_N_Class harus memiliki hanya satu destruktor
  475. % Anda dapat mendeklarasikan hanya satu destruktor untuk sebuah kelas.
  476. parser_e_no_local_objects=03021_E_Definisi kelas lokal tidak dibolehkan
  477. % Kelas harus didefinisikan secara global. Tidak bisa didefinisikan di dalam
  478. % sebuah procedure atau function
  479. parser_f_no_anonym_objects=03022_F_Definisi kelas anonim tidak dibolehkan
  480. % Deklarasi obyek (class) tidak benar ditemukan, misalnya obyek atau kelas
  481. % tanpa metode yang tidak berasal dari obyek atau kelas
  482. % Sebagai contoh:
  483. % \begin{verbatim}
  484. % Type o = object
  485. % a : longint;
  486. % end;
  487. % \end{verbatim}
  488. % akan memicu kesalahan ini.
  489. parser_n_object_has_no_vmt=03023_N_Obyek "$1" tidak memiliki VMT
  490. % Ini adalah sebuah catatan yang menunjukan bahwa obyek yang dideklarasikan
  491. % tidak memiliki tabel metode virtual.
  492. parser_e_illegal_parameter_list=03024_E_Daftar parameter tidak benar
  493. % Anda memanggil sebuah fungsi dengan parameter yang tipenya berbeda dengan
  494. % yang parameternya dideklarasikan pada fungsi.
  495. parser_e_wrong_parameter_size=03026_E_Jumlah parameter salah yang ditetapkan untuk memanggil "$1"
  496. % Ada kesalahan dalam daftar parameter pada fungsi atau prosedur,
  497. % jumlah parameter tidak benar.
  498. parser_e_overloaded_no_procedure=03027_E_pembeda yang di-overload "$1" bukan sebuah fungsi
  499. % Kompilator menemukan simbol dengan nama sama seperti fungsi yang di-overload,
  500. % tapi ia bukan sebuah fungsi yang bisa di-overload.
  501. parser_e_overloaded_have_same_parameters=03028_E_fungsi yang di-overload memiliki daftar parameter sama
  502. % Anda mendeklarasikan fungsi yang di-overload, tapi dengan daftar parameter yang sama.
  503. % Fungsi yang di-overload harus memiliki setidaknya 1 parameter berbeda dalam
  504. % deklarasinya.
  505. parser_e_header_dont_match_forward=03029_E_Header fungsi tidak sama dengan deklarasi "$1" sebelumnya
  506. % Anda mendeklarasikan sebuah fungsi dengan parameter yang sama tetapi
  507. % tipe hasil atau pengubah fungsi berbeda.
  508. parser_e_header_different_var_names=03030_E_header fungsi "$1" tidak sama yang didepan : nama var berubah $2 => $3
  509. % Anda mendeklarasikan fungsi dalam bagian \var{interface}, atau dengan direktif
  510. % \var{forward}, tapi mendefinisikannya dengan daftar parameter yang berbeda.
  511. parser_n_duplicate_enum=03031_N_Nilai dalam tipe enumerasi harus membesar
  512. % \fpc membolehkan konstruksi enumeration seperti dalam C. Contoh berikut
  513. % mendeklarasikan dua deklarasi:
  514. % \begin{verbatim}
  515. % type a = (A_A,A_B,A_E:=6,A_UAS:=200);
  516. % type a = (A_A,A_B,A_E:=6,A_UAS:=4);
  517. % \end{verbatim}
  518. % Deklarasi kedua akan menghasilkan kesalahan. \var{A\_UAS} perlu mempunyai
  519. % nilai lebih tinggi daripada \var{A\_E}, misalnya minimal 7.
  520. parser_e_no_with_for_variable_in_other_segments=03033_E_With tidak bisa dipakai untuk variabel dalam segmen berbeda
  521. % With menyimpan variabel secara lokal pada stack, tapi ini tidak mungkin
  522. % jika variabel dimiliki oleh segmen lain.
  523. parser_e_too_much_lexlevel=03034_E_pengulangan fungsi > 31
  524. % Anda dapat mengulang definisi function hanya 31 kali.
  525. parser_e_range_check_error=03035_E_kesalahan pemeriksaan jangkauan saat mengevaluasi konstan
  526. % Konstan di luar dari jangkauan yang dibolehkan.
  527. parser_w_range_check_error=03036_W_kesalahan pemeriksaan jangkauan saat mengevaluasi konstan
  528. % Konstan di luar dari jangkauan yang dibolehkan.
  529. parser_e_double_caselabel=03037_E_duplikasi label case
  530. % Anda menetapkan label yang sama 2 kali dalam pernyataan \var{case}.
  531. parser_e_case_lower_less_than_upper_bound=03038_E_Batas atas jangkauan case kurang dari batas bawah
  532. % Batas atas dari label \var{case} kurang dari batas lebih bawah dan ini
  533. % sia-sia
  534. parser_e_type_const_not_possible=03039_E_Tipe konstan pada kelas atau interfaces tidak dibolehkan
  535. % Anda tidak bisa mendeklarasikan konstan dari tipe class atau object.
  536. parser_e_no_overloaded_procvars=03040_E_variabel fungsi pada fungsi yang di-overload tidak dibolehkan
  537. % Anda mencoba untuk menempatkan fungsi yang di-overload ke variabel prosedural.
  538. % Ini tidak dibolehkan
  539. parser_e_invalid_string_size=03041_E_panjang string harus berupa nilai dari 1 sampai 255
  540. % Panjang shortstring dalam Pascal dibatasi 255 karakter. Anda mencoba untuk
  541. % mendeklarasikan string dengan panjang lebih rendah dari 1 atau lebih besar dari 255
  542. parser_w_use_extended_syntax_for_objects=03042_W_gunakan sintaks diperluas NEW dan DISPOSE untuk turunan obyek
  543. % Jika anda mempunyai pointer \var{a} ke tipe kelas, maka pernyataan
  544. % \var{new(a)} tidak akan menginisialisasi kelas (misalnya konstruktor tidak
  545. % dipanggil), meskipun ruang akan dialokasikan. Anda harus menerbitkan pernyataan
  546. % \var{new(a,init)}. Ini akan mengalokasikan ruang, dan memanggil konstruktor
  547. % obyek
  548. parser_w_no_new_dispose_on_void_pointers=03043_W_Menggunakan NEW atau DISPOSE untuk pointer untyped sia-sia
  549. parser_e_no_new_dispose_on_void_pointers=03044_E_Menggunakan NEW atau DISPOSE tidak mungkin untuk pointer untyped
  550. % Anda tidak bisa menggunakan \var{new(p)} atau \var{dispose(p)} jika \var{p} adalah pointer untyped
  551. % karena tidak ada ukuran yang terkait dengan pointer untyped.
  552. % Diterima untuk kompatibilitas dalam mode \var{tp} dan \var{delphi}.
  553. parser_e_class_id_expected=03045_E_pengenal kelas diharapkan
  554. % Ini terjadi saat kompilator memindai deklarasi procedure yang berisi
  555. % sebuah titik,
  556. % misalnya, metode obyek atau kelas, tapi tipe di depan titik bukan
  557. % tipe yang dikenal.
  558. parser_e_no_type_not_allowed_here=03046_E_pengenal type tidak dibolehkan di sini
  559. % Anda tidak bisa menggunakan sebuah type di dalam ekspresi.
  560. parser_e_methode_id_expected=03047_E_pengenal metode diharapkan
  561. % Pengenal ini bukan sebuah metode.
  562. % Ini terjadi saat kompilator memindai deklarasi sebuah procedure yang berisi
  563. % sebuah titik, misalnya nama obyek atau kelas, tapi nama prosedure bukan
  564. % prosedur dari tipe ini.
  565. parser_e_header_dont_match_any_member=03048_E_header fungsi tidak ada yang menyamai metode pada kelas "$1"
  566. % Pengenal ini bukan sebuah metode.
  567. % Ini terjadi saat kompilator memindai deklarasi prosedur yang berisi sebuah
  568. % titik, misalnya nama obyek atau kelas, tapi nama prosedure bukan
  569. % prosedur dari tipe ini.
  570. parser_d_procedure_start=03049_DL_procedure/function $1
  571. % Ketika menggunakan saklar \var{-vd}, kompilator memberitahu anda saat ia mulai
  572. % memproses sebuah implementasi procedure atau function.
  573. parser_e_error_in_real=03050_E_Konstan floating point tidak benar
  574. % Kompilator mengharapkan ekspresi floating point, dan mendapatkan yang lain.
  575. parser_e_fail_only_in_constructor=03051_E_FAIL hanya dapat dipakai dalam konstruktor
  576. % Anda menggunakan kata kunci \var{fail} di luar metode konstruktor.
  577. parser_e_no_paras_for_destructor=03052_E_Destruktor tidak bisa mempunyai parameter
  578. % Anda mendeklarasikan sebuah destruktor dengan daftar parameter. Metode destruktor
  579. % tidak bisa memiliki parameter.
  580. parser_e_only_class_members_via_class_ref=03053_E_Only class methods, class properties and class variables can be referred with class references
  581. % This error occurs in a situation like the following:
  582. % \begin{verbatim}
  583. % Type :
  584. % Tclass = Class of Tobject;
  585. %
  586. % Var C : TClass;
  587. %
  588. % begin
  589. % ...
  590. % C.free
  591. % \end{verbatim}
  592. % \var{Free} is not a class method and hence cannot be called with a class
  593. % reference.
  594. parser_e_only_class_members=03054_E_Only class methods, class properties and class variables can be accessed in class methods
  595. % This is related to the previous error. You cannot call a method of an object
  596. % from inside a class method. The following code would produce this error:
  597. % \begin{verbatim}
  598. % class procedure tobject.x;
  599. %
  600. % begin
  601. % free
  602. % \end{verbatim}
  603. % Because free is a normal method of a class it cannot be called from a class
  604. % method.
  605. parser_e_case_mismatch=03055_E_Tipe konstan dan CASE tidak sama
  606. % Salah satu label tidak memiliki tipe yang sama seperti variabel case.
  607. parser_e_illegal_symbol_exported=03056_E_Simbol tidak bisa diekspor dari sebuah librari
  608. % Anda hanya bisa mengekspor prosedur dan fungsi saat anda menulis sebuah librari. Anda
  609. % tidak bisa mengekspor variabel atau konstan.
  610. parser_w_should_use_override=03057_W_Metode yang diturunkan tidak terlihat oleh "$1"
  611. % Metode yang dideklarasikan \v ar{virtual} dalam kelas leluhur, harus diganti
  612. % dalam kelas turunannya dengan direktif \var{override}. Jika anda tidak
  613. % menetapkan direktif \var{override}, anda akan menyembunyikan metode leluhur;
  614. % anda tidak akan menggantinya.
  615. parser_e_nothing_to_be_overridden=03058_E_Tidak ada metode dalam kelas leluhur untuk diganti: "$1"
  616. % Anda mencoba untuk \var{override} sebuah metode virtual pada kelas leluhur yang tidak
  617. % ada.
  618. parser_e_no_procedure_to_access_property=03059_E_Tidak ada anggota yang disediakan untuk mengakses properti
  619. % Anda tidak menetapkan direktif \var{read} untuk sebuah properti.
  620. parser_w_stored_not_implemented=03060_W_Direktif properti tersimpan belum diimplementasikan
  621. % Direktif \var{stored} belum diimplementasikan
  622. parser_e_ill_property_access_sym=03061_E_Simbol tidak benar untuk akses properti
  623. % Ada kesalahan dalam direktif \var{read} atau \var{write} untuk sebuah properti
  624. % array. Ketika anda mendeklarasikan sebuah properti array, anda hanya bisa
  625. % mengaksesnya dengan prosedur atau fungsi. Kode berikut akan membuat kesalahan
  626. % \begin{verbatim}
  627. % tmyobject = class
  628. % i : integer;
  629. % property x [i : integer]: integer read I write i;
  630. % \end{verbatim}
  631. %
  632. parser_e_cant_access_protected_member=03062_E_Tidak bisa mengakses field protected pada obyek di sini
  633. % Field yang dideklarasikan dalam seksi \var{protected} pada deklarasi obyek
  634. % atau kelas tidak bisa diakses dari luar modul di mana obyek itu
  635. % didefinisikan, atau di luar metode obyek turunannya.
  636. parser_e_cant_access_private_member=03063_E_Tidak bisa mengakses field private pada obyek di sini
  637. % Field yang dideklarasikan dalam seksi \var{private} pada deklarasi obyek
  638. % atau kelas tidak bisa diakses dari luar modul di mana obyek itu
  639. % didefinisikan, atau di luar metode obyek turunannya.
  640. parser_e_overridden_methods_not_same_ret=03066_E_Metode yang diganti harus mengembalikan tipe: "$2" diganti oleh "$1" yang menghasilkan tipe lain
  641. % Jika anda mendeklarasikan metode pengganti dalam definisi kelas, keduanya harus
  642. % memiliki tipe hasil yang sama.
  643. parser_e_dont_nest_export=03067_E_Fungsi yang dideklarasikan EXPORT tidak bisa diulang
  644. % Anda tidak bisa mendeklarasikan sebuah fungsi atau prosedur di dalam function atau
  645. % procedure yang sudah dideklarasikan sebagai prosedur ekspor.
  646. parser_e_methods_dont_be_export=03068_E_Method tidak bisa DIEKSPOR
  647. % Anda tidak bisa mendeklarasikan procedure yang metode obyeknya bisa
  648. % di-\var{export}.
  649. parser_e_call_by_ref_without_typeconv=03069_E_Panggilan dengan var untuk arg no. $1 harus sama persis: Didapat "$2" diharapkan "$3"
  650. % Ketika memanggil fungsi yang dideklarasikan dengan parameter \var{var}, variabel
  651. % dalam pemanggil fungsi harus tipe yang persis sama. Tidak ada konversi tipe
  652. % otomatis.
  653. parser_e_no_super_class=03070_E_Kelas bukan kelas leluhur dari kelas saat ini
  654. % Ketika memanggil metode turunan, anda mencoba untuk memanggil metode kelas
  655. % tidak berkaitan. Anda hanya dapat memanggil metode turunan dari kelas leluhurnya.
  656. parser_e_self_not_in_method=03071_E_SELF hanya dibolehkan dalam metode
  657. % Anda mencoba menggunakan parameter \var{self} di luar metode obyek.
  658. % Hanya metode yang dioper parameter \var{self}.
  659. parser_e_generic_methods_only_in_methods=03072_E_Metode hanya bisa dalam metode lain memanggil secara langsung dengan pengenal tipe kelas
  660. % Konstruksi seperti \var{sometype.somemethod} hanya dibolehkan dalam sebuah metode.
  661. parser_e_illegal_colon_qualifier=03073_E_Penggunaan ':' tidak benar
  662. % Ada menggunakan format \var{:} (titik dua) 2 kali pada ekspresi yang
  663. % bukan ekspresi real.
  664. parser_e_illegal_set_expr=03074_E_Kesalahan pemeriksaan jangkauan dalam set konstruktor atau duplikasi set elemen
  665. % Deklarasi dari sebuah set berisi kesalahan. Baik salah satu elemen di luar
  666. % jangkauan dari set type, atau dua elemen sebenarnya
  667. % sama.
  668. parser_e_pointer_to_class_expected=03075_E_Pointer pada obyek diharapkan
  669. % Anda menetapkan tipe yang tidak benar dalam pernyataan \var{new}.
  670. % Sintaks diperluas dari \var{new} memerlukan obyek sebagai parameter.
  671. parser_e_expr_have_to_be_constructor_call=03076_E_Ekspresi harus panggilan konstruktor
  672. % Ketika menggunakan sintaks diperluas \var{new}, anda harus menetapkan metode
  673. % konstruktor dari obyek yang sedang anda coba buat. Prosedur yang anda tetapkan
  674. % bukan sebuah konstruktor.
  675. parser_e_expr_have_to_be_destructor_call=03077_E_Ekspresi harus panggilan destruktor
  676. % Ketika menggunakan sintaks diperluas \var{dispose}, anda harus menetapkan
  677. % metode destructor dari obyek yang sedang anda coba dispose.
  678. % Prosedure yang anda tetapkan bukan sebuah destruktor.
  679. parser_e_invalid_record_const=03078_E_Urutan elemen record tidak benar
  680. % Ketika mendeklarasikan konstan record, anda menetapkan field dalam urutan
  681. % yang salah.
  682. parser_e_false_with_expr=03079_E_Tipe ekspresi harus tipe kelas atau record
  683. % Pernyataan \var{with} memerlukan argumen yang tipenya adalah \var{record}
  684. % atau \var{class}. Anda mencoba menggunakan \var{with} pada ekspresi yang
  685. % bukan tipe ini.
  686. parser_e_void_function=03080_E_Prosedur tidak mengembalikan nilai
  687. % Dalam \fpc, anda dapat menetapkan nilai balik untuk sebuah fungsi saat
  688. % memakai pernyataan \var{exit}. Kesalahan ini terjadi ketika anda mencoba untuk
  689. % melakukan ini dengan prosedur. Prosedure tidak bisa mengembalikan nilai.
  690. parser_e_only_methods_allowed=03081_E_konstruktor, destruktor dan class operator harus sebuah metode
  691. % Anda mendeklarasikan sebuah procedure sebagai destruktor, konstructor atau class operator, ketika
  692. % prosedure bukan metode kelas.
  693. parser_e_operator_not_overloaded=03082_E_Operator tidak di-overload
  694. % Anda mencoba untuk menggunakan operator yang di-overload saat ia bukan tipe
  695. % untuk di-overload.
  696. parser_e_no_such_assignment=03083_E_Tidak mungkin untuk meng-overload penempatan tipe yang sama
  697. % Anda tidak bisa meng-overload penempatan tipe yang dianggap oleh
  698. % kompilator sebagai sama.
  699. parser_e_overload_impossible=03084_E_Overload operator tidak mungkin
  700. % Kombinasi operator, argumen dan tipe balik tidak
  701. % kompatibel.
  702. parser_e_no_reraise_possible=03085_E_Re-raise tidak mungkin di sini
  703. % Anda mencoba untuk memunculkan eksepsi yang tidak diperbolehkan. Anda hanya
  704. % dapat memunculkan eksepsi dalam sebuah blok \var{except}.
  705. parser_e_no_new_or_dispose_for_classes=03086_E_Sintaks diperluas pada new atau dispose tidak diijinkan untuk sebuah kelas
  706. % Anda tidak bisa membuat turunan kelas dengan sintaks yang diperluas
  707. % \var{new}. Konstruktor harus dipakai untuk itu. Untuk alasan yang sama, anda
  708. % tidak bisa memanggil \var{dispose} untuk dealokasi turunan kelas, destruktor
  709. % harus dipakai untuk itu.
  710. parser_e_procedure_overloading_is_off=03088_E_Procedure overloading dimatikan
  711. % Ketika menggunakan saklar \var{-So}, procedure overloading dimatikan.
  712. % Turbo Pascal tidak mendukung overload fungsi.
  713. parser_e_overload_operator_failed=03089_E_Tidak mungkinuntuk meng-overload operator ini. Operator yang bisa di-overload terkait (bila ada) adalah: $1
  714. % Anda mencoba untuk meng-overload sebuah operator yang tidak bisa di-overload.
  715. % Operator berikut dapat di-overload :
  716. % \begin{verbatim}
  717. % +, -, *, /, =, >, <, <=, >=, is, as, in, **, :=
  718. % \end{verbatim}
  719. parser_e_comparative_operator_return_boolean=03090_E_Operator komparatif harus mengembalikan nilai boolean
  720. % Ketika meng-overload operator \var{=}, fungsi harus mengembalikan nilai
  721. % boolean.
  722. parser_e_only_virtual_methods_abstract=03091_E_Hanya metode virtual dapat berupa abstak
  723. % Anda mendeklarasikan metode sebagai abstrak, ketika ia tidak dideklarasikan menjadi
  724. % virtual.
  725. parser_f_unsupported_feature=03092_F_Penggunaan fitur yang tidak didukung!
  726. % Anda mencoba untuk memaksa kompilator melakukan sesuatu yang belum bisa dilakukannya.
  727. parser_e_mix_of_classes_and_objects=03093_E_Campuran dari jenis obyek berbeda (class, object, interface, dll) tidak dibolehkan
  728. % Anda tidak dapat menurunkan \var{objects}, \var{classes}, \var{cppclasses} dan \var{interfaces} misalnya
  729. % sebuah kelas tidak memiliki obyek sebagai leluhurnya dan sebaliknya.
  730. parser_w_unknown_proc_directive_ignored=03094_W_Direktif procedure tidak dikenal harus diabaikan: "$1"
  731. % Direktif procedure yang anda tetapkan tidak dikenal.
  732. parser_e_directive_only_one_var=03095_E_$1 can be associated with only one variable
  733. % You cannot specify more than one variable before the \var{absolute}, \var{export}, \var{external},
  734. % \var{weakexternal}, \var{public} and \var{cvar} directives.
  735. % As a result, for example the following construct will provide this error:
  736. % \begin{verbatim}
  737. % Var Z : Longint;
  738. % X,Y : Longint absolute Z;
  739. % \end{verbatim}
  740. parser_e_absolute_only_to_var_or_const=03096_E_absolute hanya bisa dikaitkan dengan var atau const
  741. % Alamat direktif \var{absolute} hanya bisa mengarah ke variabel atau konstan.
  742. % Oleh karena itu, kode berikut akan menghasilkan kesalahan ini:
  743. % \begin{verbatim}
  744. % Procedure X;
  745. %
  746. % var p : longint absolute x;
  747. % \end{verbatim}
  748. %
  749. parser_e_initialized_only_one_var=03097_E_Hanya satu variabel dapat diinisialisasi
  750. % Anda tidak dapat menetapkan lebih dari satu variabel dengan nilai awal
  751. % dalam mode Delphi.
  752. parser_e_abstract_no_definition=03098_E_Metode abstract tidak boleh memiliki definisi apapun (dengan badan fungsi)
  753. % Metode abstract hanya bisa dideklarasikan, anda tidak bisa mengimplementasikannya. Ia
  754. % harus diganti dengan kelas turunannya.
  755. parser_e_overloaded_must_be_all_global=03099_E_Fungsi yang di-overload ini tidak boleh lokal (harus diekspor)
  756. % Anda mendefinisikan fungsi yang di-overload dalam bagian implementation pada sebuah
  757. % unit, tapi tidak ada deklarasi terkait dalam bagian interface dari unit itu.
  758. parser_w_virtual_without_constructor=03100_W_Metode virtual dipakai tanpa sebuah constructor dalam "$1"
  759. % Jika anda mendeklarasikan obyek atau kelas yang berisi metode virtual, anda perlu
  760. % mempunyai constructor dan destructor untuk menginisialisasinya. Kompilator
  761. % menemukan obyek atau kelas dengan metode virtual yang tidak memiliki pasangan
  762. % constructor/destructor.
  763. parser_c_macro_defined=03101_CL_Makro didefinisikan: $1
  764. % Ketika \var{-vc} dipakai, kompilator memberitahu anda saat ia mendefinisikan makro.
  765. parser_c_macro_undefined=03102_CL_Makro tidak didefinisikan: $1
  766. % Ketika \var{-vc} dipakai, kompilator memberitahu anda saat ia tidak mendefinisikan makro.
  767. parser_c_macro_set_to=03103_CL_Makro $1 disetel ke $2
  768. % Ketika \var{-vc} dipakai, kompilator memberitahu anda nilai apa yang didapat makro.
  769. parser_i_compiling=03104_I_Mengompilasi $1
  770. % Ketika anda menghidupkan pesan informasi (\var{-vi}), kompilator memebritahu
  771. % anda unit apa yang sedang dikompilasi.
  772. parser_u_parsing_interface=03105_UL_Menguraikan interface dari unit $1
  773. % Ini memberitahu anda bahwa pembacaan interface dari unit saat ini
  774. % dimulai
  775. parser_u_parsing_implementation=03106_UL_Menguraikan implementation dari $1
  776. % Ini memberitahu anda bahwa pembacaan implementation dari unit saat ini,
  777. % librari atau program dimulai
  778. parser_d_compiling_second_time=03107_DL_Mengompilasi $1 untuk kedua kalinya
  779. % Ketika anda meminta pesan debug (\var{-vd}) kompilator memberitahu anda unit
  780. % apa yang dikompilasi untuk kedua kalinya.
  781. parser_e_no_property_found_to_override=03109_E_Tidak ada properti yang ditemukan untuk diganti
  782. % Anda ingin mengganti sebuah properti dari kelas leluhur, saat ia ada,
  783. % kenyataannya, tidak ada properti seperti itu dalam kelas leluhur.
  784. parser_e_only_one_default_property=03110_E_Hanya sati properti default yang dibolehkan
  785. % Anda menetapkan properti sebagai \var{Default}, tapi kelas sudah mempunyai
  786. % properti default, dan kelas hanya dapat memiliki satu properti default.
  787. parser_e_property_need_paras=03111_E_Properti default harus berupa properti array
  788. % Hanya properti array dari kelas dapat dibuat menjadi properti \var{default}.
  789. parser_e_constructor_cannot_be_not_virtual=03112_E_Konstruktor virtual hanya didukung dalam model obyek kelas
  790. % Anda tidak bisa memiliki konstruktor virtual dalam obyek. Anda hanya memilikinya
  791. % dalam kelas.
  792. parser_e_no_default_property_available=03113_E_Tidak ada properti default yang tersedia
  793. % Anda mencoba mengakses properti default pada sebuah kelas, tapi kelas ini
  794. % atau salah satu leluhurnya) tidak mempunyai properti default.
  795. parser_e_cant_have_published=03114_E_Kelas tidak mempunyai seksi published, pakai saklar {$M+}
  796. % Jika anda ingin seksi \var{published} dalam sebuah definisi class, anda harus
  797. % menggunakan saklar \var{\{\$M+\}}, yang menghidupkan pembuatan informasi
  798. % type.
  799. parser_e_forward_declaration_must_be_resolved=03115_E_Deklarasi forward dari kelas "$1" harus dipecahkan di sini untuk menggunakan kelas sebagai leluhur
  800. % Agar bisa menggunakan obyek sebagai obyek leluhur, ia harus didefinisikan
  801. % lebih dahulu. Kesalahan ini terjadi dalam situasi berikut:
  802. % \begin{verbatim}
  803. % Type ParentClas = Class;
  804. % ChildClass = Class(ParentClass)
  805. % ...
  806. % end;
  807. % \end{verbatim}
  808. % Di mana \var{ParentClass} dideklarasikan tapi tidak didefinisikan.
  809. parser_e_no_local_operator=03116_E_Operator lokal tidak didukung
  810. % Anda tidak bisa meng-overload secara lokal, misalnya di dalam definisi
  811. % prosedur atau fungsi.
  812. parser_e_proc_dir_not_allowed_in_interface=03117_E_Direktif procedure "$1" tidak dibolehkan dalam seksi interface
  813. % Direktif prosedur ini tidak dibolehkan dalam seksi \var{interface} dari
  814. % sebuah unit. Anda hnya bisa menggunakannya dalam seksi \var{implementation}.
  815. parser_e_proc_dir_not_allowed_in_implementation=03118_E_Direktif procedure "$1" tidak dibolehkan dalam seksi implementation
  816. % Direktif prosedur ini tidak didefinisikan dalam seksi \var{implementation} pada
  817. % sebuah unit. Anda hanya bisa menggunakannya dalam seksi \var{interface}.
  818. parser_e_proc_dir_not_allowed_in_procvar=03119_E_Direktif prosedur "$1" tidak dibolehkan dalam deklarasi procvar
  819. % Direktif prosedur ini tidak bisa berupa bagian dari deklarasi tipe prosedural
  820. % atau fungsi.
  821. parser_e_function_already_declared_public_forward=03120_E_Fungsi sudah dideklarasikan Public/Forward "$1"
  822. % Anda akan mendapat kesalahan ini jika fungsi didefiniskan sebagai \var{forward} dua kali.
  823. % Atau sekali dalam seksi \var{interface}, dan sekali sebagai deklarasi
  824. % \var{forward} dalam seksi \var{implmentation}.
  825. parser_e_not_external_and_export=03121_E_Tidak bisa menggunakan EXPORT dan EXTERNAL
  826. % Dua prosedur ini adalah mutual eksklusif
  827. parser_h_not_supported_for_inline=03123_H_"$1" belum didukung di dalam inline procedure/function
  828. % Inline procedures tidak mendukung deklarasi ini.
  829. parser_h_inlining_disabled=03124_H_Inlining dimatikan
  830. % Inlining dari prosedur dimatikan.
  831. parser_i_writing_browser_log=03125_I_Menulis log Browser $1
  832. % Ketika pesan informasi hidup, kompilator memperingatkan anda saat ia
  833. % menulis log browser (dibuat dengan saklar \var{\{\$Y+ \}}).
  834. parser_h_maybe_deref_caret_missing=03126_H_mungkin dereferensi pointer hilang
  835. % Kompilator berpikir bahwa pointer mungkin memerlukan dereferensi.
  836. parser_f_assembler_reader_not_supported=03127_F_Pembaca assembler yang dipilih tidak didukung
  837. % Pembaca assembler yang dipilih (dengan \var{\{\$ASMMODE xxx\}} tidak
  838. % didukung. Kompilator dapat dikompilasi dengan atau tanpa dukungan pembaca
  839. % assembler tertentu.
  840. parser_e_proc_dir_conflict=03128_E_Direktif prosedur "$1" konflik dengan direktif lain
  841. % Anda menetapkan direktif prosedur yang konflik dengan direktif lainnya.
  842. % Sebagai contoh \var{cdecl} dan \var{pascal} adalah mutual eksklusif.
  843. parser_e_call_convention_dont_match_forward=03129_E_Konvensi pemanggilan forward tidak sama
  844. % Kesalahan ini terjadi ketika anda mendeklarasikan fungsi atau prosedur dengan
  845. % misalnya \var{cdecl;} tapi mengabaikan direktif ini dalam implementasi, atau
  846. % sebaliknya. Konvensi pemanggilan adalah bagian dari deklarasi fungsi, dan
  847. % harus diulang dalam definisi fungsi.
  848. parser_e_property_cant_have_a_default_value=03131_E_Properti tidak bisa memiliki nilai default
  849. % Set properti atau properti berindeks tidak bisa mempunyai nilai default.
  850. parser_e_property_default_value_must_const=03132_E_Nilai default pada properti harus konstan
  851. % Nilai dari properti yang dideklarasikan \var{default} harus dikenal waktu
  852. % dikompilasi. nilai yang anda tetapkan hanya dikenal saat run time. Ini terjadi
  853. % misalnya jika anda menetapkan sebuah nama variabel sebagai nilai default.
  854. parser_e_cant_publish_that=03133_E_Simbol tidak bisa dipublikasi, hanya bisa sebuah kelas
  855. % Hanya variabel tipe kelas yang bisa berada dalam seksi \var{published} pada
  856. % sebuah kelas jika ia tidak dideklarasikan sebagai sebuah properti.
  857. parser_e_cant_publish_that_property=03134_E_Jenis properti ini tidak bisa dipublikasi
  858. % Properti dalam seksi \var{published} tidak bisa berupa properti array.
  859. % ia harus dipindahkan ke seksi public. Properti dalam seksi \var{published}
  860. % harus berupa tipe ordinal, tipe real, string atau set.
  861. parser_e_empty_import_name=03136_E_Nama import diperlukan
  862. % Beberapa target memerlukan nama untuk prosedur yang diimpor atau pembeda \var{cdecl}
  863. parser_e_division_by_zero=03138_E_Pembagian dengan nol
  864. % Ada pembagian dengan nol yang ditemukan
  865. parser_e_invalid_float_operation=03139_E_Operasi floating point tidak benar
  866. % Operasi pada dua nilai tipe real menhasilkan overflow atau pembagian dengan
  867. % nol.
  868. parser_e_array_lower_less_than_upper_bound=03140_E_Batas atas jangkauan kurang dari batas lebih rendah
  869. % Batas lebih atas pada deklarasi array kurang dari batas lebih rendah dan ini
  870. % mungkin
  871. parser_w_string_too_long=03141_W_string "$1" lebih panjang dari "$2"
  872. % Ukuran konstan string lebih besar dari ukuran yang anda tetapkan dalam
  873. % definisi tipe string
  874. parser_e_string_larger_array=03142_E_panjang string lebih besar dari panjang array of char
  875. % Ukuran konstan string lebih besar dari ukuran yang anda tetapkan dalam
  876. % definisi array[x..y] of char
  877. parser_e_ill_msg_expr=03143_E_Ekspresi tidak benar setelah direktif pesan
  878. % \fpc hanya mendukung nilai integer atau string sebagai konstan pesan
  879. parser_e_ill_msg_param=03144_E_Pengendali pesan hanya dapat mengambil satu panggilan dengan parameter ref.
  880. % Metode yang dideklarasikan dengan direktif-\var{message} sebagai pengendali
  881. % pesan hanya mengambil satu parameter yang harus dideklarasikan sebagai
  882. % panggilan dengan referensi. Parameter dideklarasikan sebagai panggilan dengan
  883. % referensi menggunakan direktif-\var{var}
  884. parser_e_duplicate_message_label=03145_E_Duplikasi label pesan: "$1"
  885. % Label untuk sebuah pesan dipakai dua kali dalam satu object/class
  886. parser_e_self_in_non_message_handler=03146_E_Self hanya bisa berupa parameter eksplisit dalam metode yang merupakan pengendali pesan
  887. % Parameter self hanya dapat dioper secara eksplisit ke metode yang
  888. % dideklarasikan sebagai pengendali pesan.
  889. parser_e_threadvars_only_sg=03147_E_Threadvars hanya bisa berupa static atau global
  890. % Threadvars harus berupa static atau global, anda tidak bisa mendeklarasikan
  891. % lokal thread ke prosedur. Variabel lokal selalu lokal bagi thread, karena
  892. % setiap thread memiliki stack-nya sendiri dan variabel lokal disimpan pada
  893. % stack
  894. parser_f_direct_assembler_not_allowed=03148_F_Assembler langsung tidak didukung untuk format output biner
  895. % Anda tidak dapat menggunakan assembler langsung saat menggunakan penulis biner,
  896. % pilih format output lain atau gunakan pembaca assembler lain
  897. parser_w_no_objpas_use_mode=03149_W_Jangan ambil unit OBJPAS secara manual, sebaliknya gunakan \{\$mode objfpc\} atau \{\$mode delphi\}
  898. % Anda mencoba untuk mengambil unit ObjPas secara manual dari kausul uses. Ini
  899. % bukan ide yang baik. Gunakan direktif \var{\{\$mode objfpc\}} atau
  900. % \var{\{\$mode delphi\}}
  901. % yang mengambil unit secara otomatis
  902. parser_e_no_object_override=03150_E_OVERRIDE tidak bisa dipakai dalam obyek
  903. % Override tidak didukung untuk obyek, sebaliknya gunakan \var{virtual} untuk
  904. % mengganti metode obyek leluhur
  905. parser_e_cant_use_inittable_here=03151_E_Tipe data yang memerlukan initialization/finalization tidak bisa dipakai dalam variant record
  906. % Beberapa tipe data (misalnya \var{ansistring}) memerlukan kode initialization/finalization
  907. % yang secara implisit dibuat oleh kompilator. Tipe data sepert itu tidak
  908. % bisa dipakai dalam bagian varian pada sebuah record.
  909. parser_e_resourcestring_only_sg=03152_E_Resourcestring hanya berupa static atau global
  910. % Resourcestring tidak bisa dideklarasikan lokal, hanya global atau menggunakan
  911. % direktif static.
  912. parser_e_exit_with_argument_not__possible=03153_E_Exit dengan argumen tidak bisa dipakai di sini
  913. % Pernyataan exit dengan sebuah argumen untuk nilai balik tidak bisa dipakai
  914. % di sini, ini terjadi misalnya dalam blok \var{try..except} atau \var{try..finally}
  915. parser_e_stored_property_must_be_boolean=03154_E_Tipe penyimpanan simbol harus boolean
  916. % Jika anda menetapkan penyimpanan simbol dalam deklarasi properti, ia harus
  917. % berupa tipe boolean
  918. parser_e_ill_property_storage_sym=03155_E_Simbol ini tidak diijinkan sebagai penyimpanan simbol
  919. % Anda tidak bisa menggunakan tipe ini pada simbol sebagai pembeda penyimpanan
  920. % dalam deklarasi properti. Anda hanya bia menggunakan metode dengan tipe hasil
  921. % boolean, field kelas boolean atau konstan boolean
  922. parser_e_only_publishable_classes_can_be_published=03156_E_Hanya kelas yang dikompilasi dalam mode $M+ yang bisa dipublikasikan
  923. % Dalam seksi published dari kelas hanya bisa berupa kelas sebagai field yang dipakai
  924. % dikompilasi dalam \var{\{\$M+\}} atau yang diturunkan dari kelas seperti itu.
  925. % Normalnya kelas demikian harus dideklarasikan dari TPersitent
  926. parser_e_proc_directive_expected=03157_E_Direktif prosedur diharapkan
  927. % Kesalahan ini dipicu ketika anda mempunyai direktif \var{\{\$Calling\}} tanpa
  928. % konvensi pemanggilan yang ditetapkan.
  929. % Ia juga terjadi saat mendeklarasikan prosedur dalam blok const dan anda
  930. % menggunakan sebuah ; setelah deklarasi procedure yang harus diikuti oleh
  931. % sebuah direktif procedure.
  932. % Deklarasi yang benar adalah:
  933. % \begin{verbatim}
  934. % const
  935. % p : procedure;stdcall=nil;
  936. % p : procedure stdcall=nil;
  937. % \end{verbatim}
  938. parser_e_invalid_property_index_value=03158_E_Nilai indeks properti harus tipe ordinal
  939. % Nilai yang anda pakai untuk mengindeks properti harus berupa tipe ordinal,
  940. % sebagai contoh tipe integer atau dienumerasi.
  941. parser_e_procname_to_short_for_export=03159_E_Nama prosedur terlalu pendek untuk diekspor
  942. % Panjang nama procedure/function harus setidaknya 2 karakter. Ini dikarenakan
  943. % bug dalam dlltool yang tidak menguraikan file .def dengan benar
  944. % dengan panjang nama 1.
  945. parser_e_dlltool_unit_var_problem=03160_E_Tidak ada entri DEFFILE dapat dibuat untuk unit global vars
  946. parser_e_dlltool_unit_var_problem2=03161_E_Kompilasi tanpa opsi -WD
  947. % Anda perlu mengompilasi file ini tanpa saklar -WD pada baris
  948. % perintah
  949. parser_f_need_objfpc_or_delphi_mode=03162_F_Anda perlu ObjFpc (-S2) atau mode Delphi (-Sd) untuk mengompilasi modul ini
  950. % Anda perlu menggunakan \{\$mode objfpc\} atau \{\$mode delphi\} untuk
  951. % mengompilasi file ini. Atau gunakan saklar commandline yang sama -S2 atau -Sd.
  952. parser_e_no_export_with_index_for_target=03163_E_Tidak bisa mengekspor dengan indeks di bawah $1
  953. % Mengekspor fungsi atau prosedur dengan indeks yang ditetapkan tidak didukung
  954. % pada target ini.
  955. parser_e_no_export_of_variables_for_target=03164_E_Mengekspor variabel tidak didukung di bawah $1
  956. % Mengekspor variabel tidak didukung pada target ini.
  957. parser_e_improper_guid_syntax=03165_E_Sintaks GUID tidak benar
  958. % Indikasi GUID tidak memiliki sintaks yang benar. Ia seharusnya dalam bentuk
  959. % \begin{verbatim}
  960. % {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
  961. % \end{verbatim}
  962. % Di mana setiap \var{X} mewakili digit heksadesimal.
  963. parser_w_interface_mapping_notfound=03168_W_Prosedur bernama "$1" tidak meemukan yang sesuai untuk mengimplementasikan $2.$3
  964. % Kompilator tidak bisa menemukan prosedur yang cocok yang mengimplementasikan metode
  965. % yang diberikan pada interface. Prosedur dengan nama sama ditemukan, tapi argumen tidak sama.
  966. parser_e_interface_id_expected=03169_E_pengenal interface diharapkan
  967. % Ini terjadi ketika kompilator memindai deklarasi \var{class} yang berisi
  968. % \var{interface} nama fungsi memetakan kode seperti ini:
  969. % \begin{verbatim}
  970. % type
  971. % TMyObject = class(TObject, IDispatch)
  972. % function IUnknown.QueryInterface=MyQueryInterface;
  973. % ....
  974. % \end{verbatim}
  975. % dan \var{interface} sebelum titik tidak didaftarkan dalam daftar turunan.
  976. parser_e_type_cant_be_used_in_array_index=03170_E_Tipe "$1" tidak bisa dipakai sebagai tipe indeks array
  977. % Tipe seperti \var{qword} atau \var{int64} tidak dibolehkan sebagai tipe indeks array
  978. parser_e_no_con_des_in_interfaces=03171_E_Con- dan destruktor tidak dibolehkan dalam interface
  979. % Deklarasi konstruktor dan destruktor tidak dibolehkan dalam interface
  980. % Dalam banyak kasus metode \var{QueryInterface} pada \var{IUnknown} dapat
  981. % dipakai untuk membuat interface baru.
  982. parser_e_no_access_specifier_in_interfaces=03172_E_Pembeda akses tidak bisa dipakai dalam INTERFACE
  983. % Pembeda akses \var{public}, \var{private}, \var{protected} dan
  984. % \var{pusblished} tidak bisa dipakai dalam interfaces karena semua metode
  985. % pada interfaces harus public.
  986. parser_e_no_vars_in_interfaces=03173_E_Interface tidak bisa berisi field
  987. % Deklarasi field tidak dibolehkan dalam interface. Interface hanya dapat
  988. % berisi metode
  989. parser_e_no_local_proc_external=03174_E_Tidak bisa mendeklarasikan prosedur lokal sebagai EXTERNAL
  990. % Mendeklarasikan prosedur lokal sebagai external tidak mungkin. Prosedur lokal
  991. % mendapat parameter tersembunyi yang akan menjadi peluang kesalahan sangat tinggi
  992. parser_w_skipped_fields_before=03175_W_Beberapa field datang sebelum "$1" diinisialisasi
  993. % Dalam mode Delphi, tidak semua field dari record tipe konstan harus
  994. % diinisialisasi, tapi kompilator memperingatkan anda saat ia mendeteksi situasi itu.
  995. parser_e_skipped_fields_before=03176_E_Beberapa field datang sebelum "$1" diinisialisasi
  996. % Dalam semua mode sintaks kecuali mode Delphi, anda tidak bisa meninggalkan
  997. % beberapa field tidak diinisialisasi di tengah konstan tipe record
  998. parser_w_skipped_fields_after=03177_W_Beberapa field datang setelah "$1" tidak diinisialisasi
  999. % Anda dapat meninggalkan beberapa fields di akhir konstan tipe record tidak
  1000. % diinisialisasi (kompilator akan menginisialisasinya ke nol secara otomatis).
  1001. % Ini dapat menjadi penyebab masalah yang kentara.
  1002. parser_e_varargs_need_cdecl_and_external=03178_E_Direktif VarArgs (atau '...' dalam MacPas) tanpa CDecl/CPPDecl/MWPascal dan External
  1003. % Direktif varargs (atau parameter varargs ``...'' dalam mode MacPas) hanya bisa
  1004. % dipakai dengan prosedur atau fungsi yang dideklarasikan dengan \var{external} dan salah satu
  1005. % dari \var{cdecl}, \var{cppdecl} dan \var{mwpascal}. Fungsionalitas ini hanya
  1006. % didukung untuk menyediakan interface kompatibel terhadap fungsi C seperti printf.
  1007. parser_e_self_call_by_value=03179_E_Self harus berupa parameter normal (dipanggil-dengan-nilai)
  1008. % Anda tidak bisa mendeklarasikan self sebagai parameter const atau var, ia harus
  1009. % selalu berupa parameter dipanggil-dengan-nilai
  1010. parser_e_interface_has_no_guid=03180_E_Interface "$1" tidak mempunyai identifikasi interface
  1011. % Ketika anda ingin menempatkan interface ke konstan, maka interface harus
  1012. % sudah menyetel nilai GUID.
  1013. parser_e_illegal_field_or_method=03181_E_Field class atau pengenal metode "$1" tidak dikenal
  1014. % Properti harus merujuk ke sebuah field atau metode dalam kelas yang sama.
  1015. parser_w_proc_overriding_calling=03182_W_Mengganti konvensi pemanggilan "$1" dengan "$2"
  1016. % Ada dua direktif dalam deklarasi prosedur yang menetapkan konvensi
  1017. % pemanggilan. Hanya direktif terakhir yang akan dipakai
  1018. parser_e_no_procvarobj_const=03183_E_Tipe konstan dari tipe "procedure of object" hanya dapat diinisialisasi dengan NIL
  1019. % Anda tidak bisa menempatkan alamat sebuah metode ke tipe konstan yang
  1020. % memiliki tipe 'procedure of object', karena konstan memerlukan dua alamat:
  1021. % yang metodenya (dikenal saat waktu kompilasi) dan yang obyeknya atau turunan
  1022. % beroperasi pada kelasnya (yang tidak dapat dikenal saat waktu kompilasi).
  1023. parser_e_default_value_only_one_para=03184_E_Nilai default hanya bisa ditempatkan ke satu parameter
  1024. % Tidak mungkin untuk menetapkan nilai default untuk beberapa parameters sekaligus.
  1025. % Yang berikut adalah tidak benar:
  1026. % \begin{verbatim}
  1027. % Procedure MyProcedure (A,B : Integer = 0);
  1028. % \end{verbatim}
  1029. % Lebih baik, deklarasikan sebagai
  1030. % \begin{verbatim}
  1031. % Procedure MyProcedure (A : Integer = 0; B : Integer = 0);
  1032. % \end{verbatim}
  1033. parser_e_default_value_expected_for_para=03185_E_Parameter default diperlukan untuk "$1"
  1034. % Parameter yang ditetapkan memerlukan nilai default.
  1035. parser_w_unsupported_feature=03186_W_Penggunaan fitur yang tidak didukung!
  1036. % Anda mencoba untuk memaksa kompilator melakukan yang belum bisa dilakukannya.
  1037. parser_h_c_arrays_are_references=03187_H_Array C dikirimkan dengan referensi
  1038. % Setiap array yang dikirimkan ke fungsi C dioper dengan pointer
  1039. % (misalnya dengan referensi).
  1040. parser_e_C_array_of_const_must_be_last=03188_E_Array of const pada C harus argumen terakhir
  1041. % Anda tidak bisa menambah argumen lain setelah \var{array of const} untuk
  1042. % fungsi \var{cdecl}, karena ukuran yang disimpan pada stack untuk argumen ini
  1043. % tidak diketahui.
  1044. parser_h_type_redef=03189_H_Redefinisi tipe "$1"
  1045. % Ini adalah indikator yang sebelumnya tipe dideklarasikan sedang didefinisikan
  1046. % ulang sebagai yang lain. Ini bisa menjadi atau tidak penyebab dari
  1047. % kesalahan.
  1048. parser_w_cdecl_has_no_high=03190_W_fungsi cdecl yang dideklarasikan tidak memiliki parameter tinggi
  1049. % Fungsi yang dideklarasikan dengan pengubah cdecl tidak mengirimkan parameter ekstra implisit.
  1050. parser_w_cdecl_no_openstring=03191_W_fungsi cdecl yang dideklarasikan tidak mendukung string terbuka
  1051. % Openstring tidak didukung untuk fungsi yang dideklarasikan cdecl.
  1052. parser_e_initialized_not_for_threadvar=03192_E_Tidak bisa menginisialisasi variabel yang dideklarasikan sebagai threadvar
  1053. % Variabel yang dideklarasikan sebagai threadvar tidak bisa diinisialisasi dengan
  1054. % nilai default. Variabel akan selalu diisi dengan nol di awal thread baru.
  1055. parser_e_msg_only_for_classes=03193_E_Direktif message hanya dibolehkan dalam Kelas
  1056. % Direktif pesan hanya didukung untuk tipe Class.
  1057. parser_e_procedure_or_function_expected=03194_E_Procedure atau Function diharapkan
  1058. % Metode kelas hanya bisa ditetapkan untuk prosedur dan fungsi.
  1059. parser_e_illegal_calling_convention=03195_W_Direktif konvensi pemanggilan diabaikan: "$1"
  1060. % Beberapa konvensi pemanggilan hanya didukung oleh CPU tertentu. Misalnya dukungan banyak non-i386 port
  1061. % hanya konvensi pemanggilan standar ABI pada CPU.
  1062. parser_e_no_object_reintroduce=03196_E_REINTRODUCE tidak bisa dipakai dalam obyek
  1063. % \var{reintroduce} tidak didukung untuk obyek.
  1064. parser_e_paraloc_only_one_para=03197_E_Setiap argumen harus memiliki lokasi sendiri
  1065. % Jika lokasi untuk argumen ditetapkan secara eksplisit karena ia diperlukan oleh
  1066. % beberapa konvensi syscall, setiap argumen harus memiliki lokasinya sendiri, hal
  1067. % seperti \var{procedure p(i,j : longint 'r1');} tidak diijinkan
  1068. parser_e_paraloc_all_paras=03198_E_Setiap argumen harus memiliki lokasi eksplisit
  1069. % Jika satu argumen mempunyai lokasi argumen eksplisit, semua argument pada
  1070. % prosedur harus memilikinya.
  1071. parser_e_illegal_explicit_paraloc=03199_E_Lokasi argumen tidak dikenal
  1072. % Lokasi yang ditetapkan untuk argumen tidak dikenal oleh kompilator
  1073. parser_e_32bitint_or_pointer_variable_expected=03200_E_32 Bit-Integer atau variabel pointer diharapkan
  1074. % Libbase untuk MorphOS/AmigaOS hanya dapat diberikan sebagai \var{longint}, \var{dword} atau variabel pointer.
  1075. parser_e_goto_outside_proc=03201_E_Pernyataan goto tidak dibolehkan diantara prosedure yang berbeda
  1076. % Tidak diperkenankan menggunakan pernyataan \var{goto} mereferensi label di luar
  1077. % prosedur saat ini. Contoh berikut menampilkan masalah ini:
  1078. % \begin{verbatim}
  1079. % ...
  1080. % procedure p1;
  1081. % label
  1082. % l1;
  1083. %
  1084. % procedure p2;
  1085. % begin
  1086. % goto l1; // Goto ini TIDAK diijinkan
  1087. % end;
  1088. %
  1089. % begin
  1090. % p2
  1091. % l1:
  1092. % end;
  1093. % ...
  1094. %
  1095. % \end{verbatim}
  1096. parser_f_too_complex_proc=03202_F_Prosedur terlalu kompleks, memerlukan terlalu banyak register
  1097. % Badan prosedur anda terlalu panjang bagi kompilator. Anda harus memisahkan
  1098. % prosedur ke dalam multipel prosedure lebih kecil.
  1099. parser_e_illegal_expression=03203_E_Ekspresi tidak benar
  1100. % Ini dapat terjadi di bawah banyak keadaan. Terutama saat mencoba untuk
  1101. % mengevaluasi ekspresi konstan.
  1102. parser_e_invalid_integer=03204_E_Ekspresi integer tidak benar
  1103. % Anda membuat ekspresi yang bukan integer, dan kompilator mengharapkan hasilnya
  1104. % adalah integer.
  1105. parser_e_invalid_qualifier=03205_E_Kualifier tidak benar
  1106. % Salah satu dari yang berikut terjadi :
  1107. % \begin{itemize}
  1108. % \item Anda mencoba untuk mengakses field variabel yang bukan sebuah record.
  1109. % \item Anda mengindeks variabel yang bukan sebuah array.
  1110. % \item Anda medereferensi variabel yang bukan sebuah pointer.
  1111. % \end{itemize}
  1112. parser_e_upper_lower_than_lower=03206_E_Batas tinggi jakauan < batas rendah jangkauan
  1113. % You are declaring a subrange, and the lower limit is higher than the high
  1114. % limit of the range.
  1115. parser_e_macpas_exit_wrong_param=03207_E_Parameter Exit harus berupa nama prosedur yang dipakai
  1116. % Exit non lokal tidak dibolehkan. Kesalahan ini hanya terjadi dalam mode MacPas.
  1117. parser_e_illegal_assignment_to_count_var=03208_E_Penempatan ke variabel for-loop "$1" tidak benar
  1118. % Tipe variabel \var{for} loop harus berupa tipe ordinal.
  1119. % Variabel loop tidak bisa real atau string. Anda juga tidak bisa menempatkan
  1120. % nilai ke variabel loop di dalam loop (kecuali dalam mode Delphi dan TP).
  1121. % Sebaliknya gunakan while atau repeat loop jika anda perlu melakukan sesuatu
  1122. % seperti itu, karena konstruksinya dibangun untuk itu.
  1123. parser_e_no_local_var_external=03209_E_Tidak bisa mendeklarasikan variabel lokal sebagai EXTERNAL
  1124. % Mendeklarasikan variabel lokal sebagai external tidak dibolehkan. Hanya
  1125. % variabel global dapat mereferensi ke variabel external.
  1126. parser_e_proc_already_external=03210_E_Procedure sudah dideklarasikan EXTERNAL
  1127. % Prosedur sudah dideklarasikan dengan direktif EXTERNAL dalam interface atau
  1128. % deklarasi forward.
  1129. parser_w_implicit_uses_of_variants_unit=03211_W_Penggunaan implisit unit Variants
  1130. % Tipe Variant dipakai dalam unit tanpa menggunakan unit Variants. Kompilator
  1131. % telah menambahkan secara implisit unit Variants ke akhir daftar uses. Untuk
  1132. % menghapus peringatan ini, unit Variants perlu ditambahkan ke pernyataan uses.
  1133. parser_e_no_static_method_in_interfaces=03212_E_Kelas dan metode statis tidak bisa dipakai dalam INTERFACE
  1134. % Pembeda \var{class} dan direktif \var{static} tidak bisa dipakai dalam interface
  1135. % karena semua metode interface harus public.
  1136. parser_e_arithmetic_operation_overflow=03213_E_Overflow dalam operasi aritmatika
  1137. % Operasi pada dua nilai integer menghasilkan overflow
  1138. parser_e_protected_or_private_expected=03214_E_Protected atau private diharapkan
  1139. % \var{strict} hanya bisa dipakai bersama dengan \var{protected} atau \var{private}.
  1140. parser_e_illegal_slice=03215_E_SLICE tidak bisa dipakai di luar daftar parameter
  1141. % \var{slice} hanya bisa dipakai untuk argumen yang menerima parameter array terbuka
  1142. parser_e_dispinterface_cant_have_parent=03216_E_DISPINTERFACE tidak bisa mempunyai kelas leluhur
  1143. % DISPINMTERFACE adalah tipe khusus interface yang tidak memiliki kelas leluhur
  1144. parser_e_dispinterface_needs_a_guid=03217_E_DISPINTERFACE memerlukan sebuah guid
  1145. % DISPINMTERFACE selalu memerlukan identifikasi interface
  1146. parser_w_overridden_methods_not_same_ret=03218_W_Metode yang diganti harus tipe balik terkait. Kode ini mungkin rusak, ia tergantung pada bug pengurai Delphi ("$2" diganti dengan "$1" yang mempunyai tipe balik lain)
  1147. % Jika anda mendeklarasikan metode pengganti dalam definisi kelas, ia harus
  1148. % mempunyai tipe balik yang sama. Beberapa versi Delphi membolehkan anda untuk
  1149. % mengubah tipe balik pada metode interface, dan bahkan mengubah prosedur menjadi
  1150. % fungsi, tapi kode hasil bisa rusak tergantung pada tipe yang dipakai dan
  1151. % cara metode dipanggil.
  1152. parser_e_dispid_must_be_ord_const=03219_E_Dispatch ID harus konstan ordinal
  1153. % The \var{dispid} keyword must be followed by an ordinal constant (the dispid index).
  1154. parser_e_array_range_out_of_bounds=03220_E_Jangkauan array terlalu besar
  1155. % Meskipun ukuran tergantung elemennya, array tidak bisa memiliki lebih dari
  1156. % high(ptrint) elemen. Sebagai tambahan, tipe jangkauan harus sub jangkauan
  1157. % dari ptrint.
  1158. parser_e_packed_element_no_var_addr=03221_E_Alamat tidak bisa diambil dari elemen packed array dan field record
  1159. % Jika anda mendeklarasikan array atau record sebagai \var{packed} dalam mode Mac Pascal
  1160. % (atau sebagai \var{packed} dalam setiap mode dengan \var{\{\$bitpacking on\}}),
  1161. % ia akan di-packed di tingkat bit. Ini berarti ia menjadi tidak mungkin untuk
  1162. % mengambil alamat dari elemen individual array atau field record. Ini hanya
  1163. % kekecualian pada aturan ini bila elemen packed array yang ukuran pemadatannya
  1164. % adalah multpele dari 8 bit.
  1165. parser_e_packed_dynamic_open_array=03222_E_Array dinamis tidak bisa dipadatkan
  1166. % Hanya array reguler (dan mungkin ke depan juga yang terbuka) dapat dipadatkan
  1167. parser_e_packed_element_no_loop=03223_E_Bit elemen packed array dan field record tidak bisa dipakai sebagai variabel loop
  1168. % Jika anda mendeklarasikan array atau record sebagai \var{packed} dalam mode Mac Pascal (atau sebagai \var{packed} dalam setiap mode \var{\{\$bitpacking on\}}),
  1169. % ia akan dipadatkan di tingkat bit. Untuk alasan performansi, ia tidak bisa
  1170. % dipakai sebagai variabel loop.
  1171. parser_e_type_var_const_only_in_records_and_classes=03224_E_VAR, TYPE and CONST are allowed only in records, objects and classes
  1172. % The usage of VAR, TYPE and CONST to declare new types inside an object is allowed only inside
  1173. % records, objects and classes.
  1174. parser_e_cant_create_generics_of_this_type=03225_E_Tipe ini tidak bisa generik
  1175. % Hanya Class, Object, Interface dan Record dibolehkan untuk dipakai sebagai generik
  1176. parser_w_no_lineinfo_use_switch=03226_W_Jangan ambil unit LINEINFO secara manual, sebaliknya gunakan saklar kompilator -gl
  1177. % Jangan menggunakan unit LINEINFO secara langsung, gunakan saklar \var{-gl}
  1178. % yang secara otomatis menambahkan unit untuk membaca tipe informasi debug.
  1179. parser_e_no_funcret_specified=03227_E_Tidak ada tipe hasil fungsi yang ditetapkan untuk "$1"
  1180. % Pertama kali anda mendeklarasikan fungsi anda harus mendeklarasikannya dengan lengkap,
  1181. % termasuk seluruh parameter dan tipe hasil.
  1182. parser_e_special_onlygenerics=03228_E_Specialization hanya didukung untuk tipe generik
  1183. % Tipe yang bukan generik tidak bisa di spesialisasi
  1184. parser_e_no_generics_as_params=03229_E_Generik tidak bisa dipakai sebagai parameter saat menspesialisasi generik
  1185. % Ketika menspesialisasi generik, hanya tipe non-generik yang dapat dipakai sebagai parameter.
  1186. parser_e_type_object_constants=03230_E_Konstan obyek yang berisi VMT tidak dibolehkan
  1187. % Jika sebuah obyek memerlukan VMT baik karena ia berisi konstruktor ataupun metode virtual,
  1188. % tidak diijinkan untuk membuat konstan darinya. Dalam mode TP dan Delphi ini
  1189. % dibolehkan untuk alasan kompatibilitas.
  1190. parser_e_label_outside_proc=03231_E_Mengambil alamat label yang didefinisikan di luar lingkup saat ini tidak dibolehkan
  1191. % Tidak diperbolehkan untuk mengambil alamat label di luar prosedur
  1192. % saat ini.
  1193. parser_e_initialized_not_for_external=03233_E_Tidak bisa menginisialisasi variabel yang dideklarasikan sebagai external
  1194. % Variabel yang dideklarasikan sebagai external tidak bisa diinisialisasi dengan nilai default.
  1195. parser_e_illegal_function_result=03234_E_Tipe hasil fungsi tidak benar
  1196. % Beberapa tipe seperti tipe file tidak bisa dipakai sebagai hasil fungsi.
  1197. parser_e_no_common_type=03235_E_Tidak ada tipe umum yang mungkin antara "$1" dan "$2"
  1198. % Untuk melakukan operasi diantara integer, kompilator mengubah kedua operand
  1199. % ke tipe umum, yang terlihat tipe tidak benar. Untuk menentukan tipe umum
  1200. % dari operand, kompilator mengambil minimum dari nilai minimal kedua tipe,
  1201. % dan maksimum dari maksimal nilai kedua tipe. Tipe umum adalah
  1202. % minimum..maksimum.
  1203. parser_e_no_generics_as_types=03236_E_Generik tanpa spesialisasi tidak bisa dipakai sebagai tipe untuk variabel
  1204. % Generik harus selalu dispesialisasi sebelum dipakai sebagai tipe variabel
  1205. % \end{description}
  1206. #
  1207. # Pemeriksaan Tipe
  1208. #
  1209. # 04082 is the last used one
  1210. #
  1211. % \section{Kesalahan pemeriksaan tipe}
  1212. % Seksi ini mendaftarkan semua kesalahan yang terjadi saat pemeriksaan tipe
  1213. % dilakukan.
  1214. % \begin{description}
  1215. parser_w_register_list_ignored=03237_W_Register list is ignored for pure assembler routines
  1216. % When using pure assembler routines, the list with modified registers is ignored.
  1217. parser_e_implements_must_be_class_or_interface=03238_E_Implements property must have class or interface type
  1218. % A property which implements an interface must be of type class or interface.
  1219. parser_e_implements_must_have_correct_type=03239_E_Implements-property must implement interface of correct type, found "$1" expected "$2"
  1220. % A property which implements an interface actually implements a different interface.
  1221. parser_e_implements_must_read_specifier=03240_E_Implements-property must have read specifier
  1222. % A property which implements an interface must have at least a read specifier.
  1223. parser_e_implements_must_not_have_write_specifier=03241_E_Implements-property must not have write-specifier
  1224. % A property which implements an interface may not have a write specifier.
  1225. parser_e_implements_must_not_have_stored_specifier=03242_E_Implements-property must not have stored-specifier
  1226. % A property which implements an interface may not have a stored specifier.
  1227. parser_e_implements_uses_non_implemented_interface=03243_E_Implements-property used on unimplemented interface: "$1"
  1228. % The interface which is implemented by a property is not an interface implemented by the class.
  1229. parser_e_unsupported_real=03244_E_Floating point not supported for this target
  1230. % The compiler parsed a floating point expression, but it is not supported.
  1231. parser_e_class_doesnt_implement_interface=03245_E_Class "$1" does not implement interface "$2"
  1232. % The delegated interface is not implemented by the class given in the implements clause.
  1233. parser_e_class_implements_must_be_interface=03246_E_Type used by implements must be an interface
  1234. % The \var{implements} keyword must be followed by an interface type.
  1235. parser_e_cant_export_var_different_name=03247_E_Variables cannot be exported with a different name on this target, add the name to the declaration using the "export" directive (variable name: $1, declared export name: $2)
  1236. % On most targets it is not possible to change the name under which a variable
  1237. % is exported inside the \var{exports} statement of a library.
  1238. % In that case, you have to specify the export name at the point where the
  1239. % variable is declared, using the \var{export} and \var{alias} directives.
  1240. parser_e_weak_external_not_supported=03248_E_Weak external symbols are not supported for the current target
  1241. % A "weak external" symbol is a symbol which may or may not exist at (either static
  1242. % or dynamic) link time. This concept may not be available (or implemented yet)
  1243. % on the current cpu/OS target.
  1244. parser_e_forward_mismatch=03249_E_Forward type definition does not match
  1245. % Classes and interfaces being defined forward must have the same type
  1246. % when being implemented. A forward interface cannot be changed into a class.
  1247. parser_n_ignore_lower_visibility=03250_N_Virtual method "$1" has a lower visibility ($2) than parent class $3 ($4)
  1248. % The virtual method overrides an method that is declared with a higher visibility. This might give
  1249. % unexpected results. E.g., in case the new visibility is private then a call to ``inherited'' in a
  1250. % new child class will call the higher-visible method in a parent class and ignores the private method.
  1251. parser_e_field_not_allowed_here=03251_E_Fields cannot appear after a method or property definition, start a new visibility section first
  1252. % Once a method or property has been defined in a class or object, you cannot define any fields afterwards
  1253. % without starting a new visibility section (such as \var{public}, \var{private}, etc.). The reason is
  1254. % that otherwise the source code can appear ambiguous to the compiler, since it is possible to use modifiers
  1255. % such as \var{default} and \var{register} also as field names.
  1256. parser_e_no_local_para_def=03252_E_Parameters or result types cannot contain local type definitions. Use a separate type definition in a type block.
  1257. % In Pascal, types are not considered to be identical simply because they are semantically equivalent.
  1258. % Two variables or parameters are only considered to be of the same type if they refer to the
  1259. % same type definition.
  1260. % As a result, it is not allowed to define new types inside parameter lists, because then it is impossible to
  1261. % refer to the same type definition in the procedure headers of the interface and implementation of a unit
  1262. % (both procedure headers would define a separate type). Keep in mind that expressions such as
  1263. % ``file of byte'' or ``string[50]'' also define a new type.
  1264. parser_e_abstract_and_sealed_conflict=03253_E_ABSTRACT and SEALED conflict
  1265. % ABSTRACT and SEALED cannot be used together in one declaration
  1266. parser_e_sealed_descendant=03254_E_Cannot create a descendant of the sealed class "$1"
  1267. % Sealed means that class cannot be derived by another class.
  1268. parser_e_sealed_class_cannot_have_abstract_methods=03255_E_SEALED class cannot have an ABSTRACT method
  1269. % Sealed means that class cannot be derived. Therefore no one class is able to override an abstract method in a sealed class.
  1270. parser_e_only_virtual_methods_final=03256_E_Only virtual methods can be final
  1271. % You are declaring a method as final, when it is not declared to be
  1272. % virtual.
  1273. parser_e_final_can_no_be_overridden=03257_E_Final method cannot be overridden: "$1"
  1274. % You are trying to \var{override} a virtual method of a parent class that does
  1275. % not exist.
  1276. parser_e_multiple_messages=03258_E_Only one message can be used per method.
  1277. % It is not possible to associate multiple messages with a single method.
  1278. parser_e_invalid_enumerator_identifier=03259_E_Invalid enumerator identifier: "$1"
  1279. % Only "MoveNext" and "Current" enumerator identifiers are supported.
  1280. parser_e_enumerator_identifier_required=03260_E_Enumerator identifier required
  1281. % "MoveNext" or "Current" identifier must follow the \var{enumerator} modifier.
  1282. parser_e_enumerator_movenext_is_not_valid=03261_E_Enumerator MoveNext pattern method is not valid. Method must be a function with the Boolean return type and no required arguments.
  1283. % "MoveNext" enumerator pattern method must be a function with Boolean return type and no required arguments
  1284. parser_e_enumerator_current_is_not_valid=03262_E_Enumerator Current pattern property is not valid. Property must have a getter.
  1285. % "Current" enumerator pattern property must have a getter
  1286. parser_e_only_one_enumerator_movenext=03263_E_Only one enumerator MoveNext method is allowed per class/object
  1287. % Class or Object can have only one enumerator MoveNext declaration.
  1288. parser_e_only_one_enumerator_current=03264_E_Only one enumerator Current property is allowed per class/object
  1289. % Class or Object can have only one enumerator Current declaration.
  1290. parser_e_for_in_loop_cannot_be_used_for_the_type=03265_E_For in loop cannot be used for the type "$1"
  1291. % For in loop can be used not for all types. For example it cannot be used for the enumerations with jumps.
  1292. parser_e_objc_requires_msgstr=03266_E_Objective-C messages require their Objective-C selector name to be specified using the "message" directive.
  1293. % Objective-C messages require their Objective-C name (selector name) to be specified using the \var{message `someName:'} procedure directive.
  1294. % While bindings to other languages automatically generate such names based on the identifier you use (by replacing
  1295. % all underscores with colons), this is unsafe since nothing prevents an Objective-C method name to contain actual
  1296. % colons.
  1297. parser_e_objc_no_constructor_destructor=03267_E_Objective-C does not have formal constructors nor destructors. Use the alloc, initXXX and dealloc messages.
  1298. % The Objective-C language does not have any constructors or destructors. While there are some messages with a similar
  1299. % purpose (such as \var{init} and \var{dealloc}), these cannot be identified using automatic parsers and do not
  1300. % guarantee anything like Pascal constructors/destructors (e.g., you have to take care of only calling ``designated''
  1301. % inherited ``constructors''). For these reasons, we have opted to follow the standard Objective-C patterns for
  1302. % instance creation/destruction.
  1303. parser_e_message_string_too_long=03268_E_Message name is too long (max. 255 characters)
  1304. % Due to compiler implementation reasons, message names are currently limited to 255 characters.
  1305. parser_e_objc_message_name_too_long=03269_E_Objective-C message symbol name for "$1" is too long
  1306. % Due to compiler implementation reasons, mangled message names (i.e., the symbol names used in the assembler
  1307. % code) are currently limited to 255 characters.
  1308. parser_h_no_objc_parent=03270_H_Defining a new Objective-C root class. To derive from another root class (e.g., NSObject), specify it as the parent class.
  1309. % If no parent class is specified for an Object Pascal class, then it automatically derives from TObject.
  1310. % Objective-C classes however do not automatically derive from NSObject, because one can have multiple
  1311. % root classes in Objective-C. For example, in the Cocoa framework both NSObject and NSProxy are root classes.
  1312. % Therefore, you have to explicitly define a parent class (such as NSObject) if you want to derive your
  1313. % Objective-C class from it.
  1314. parser_e_no_objc_published=03271_E_Objective-C classes cannot have published sections.
  1315. % In Object Pascal, ``published'' determines whether or not RTTI is generated. Since the Objective-C runtime always needs
  1316. % RTTI for everything, this specified does not make sense for Objective-C classes.
  1317. parser_f_need_objc=03272_F_This module requires an Objective-C mode switch to be compiled
  1318. % This error indicates the use of Objective-C language features without an Objective-C mode switch
  1319. % active. Enable one via the -M command line switch, or the {\$modeswitch x} directive.
  1320. parser_e_must_use_override=03273_E_Inherited methods can only be overridden in Objective-C and Java, add "override" (inherited method defined in $1)
  1321. parser_h_should_use_override=03274_H_Inherited methods can only be overridden in Objective-C and Java, add "override" (inherited method defined in $1).
  1322. % It is not possible to \var{reintroduce} methods in Objective-C or Java like in Object Pascal. Methods with the same
  1323. % name always map to the same virtual method entry. In order to make this clear in the source code,
  1324. % the compiler always requires the \var{override} directive to be specified when implementing overriding
  1325. % Objective-C or Java methods in Pascal. If the implementation is external, this rule is relaxed because Objective-C and Java
  1326. % do not have any \var{override}-style keyword (since it's the default and only behaviour in these languages),
  1327. % which makes it hard for automated header conversion tools to include it everywhere.
  1328. % The type in which the inherited method is defined is explicitly mentioned, because this may either
  1329. % be an objcclass or an objccategory in case of Objective-C.
  1330. parser_e_objc_message_name_changed=03275_E_Message name "$1" in inherited class is different from message name "$2" in current class.
  1331. % An overriding Objective-C method cannot have a different message name than an inherited method. The reason
  1332. % is that these message names uniquely define the message to the Objective-C runtime, which means that
  1333. % giving them a different message name breaks the ``override'' semantics.
  1334. parser_e_unique_unsupported=03276_E_It is not yet possible to make unique copies of Objective-C or Java types
  1335. % Duplicating an Objective-C or Java type using \var{type x = type y;} is not yet supported. You may be able to
  1336. % obtain the desired effect using \var{type x = objcclass(y) end;} resp.{} \var{type x = class(y) end;} instead.
  1337. parser_e_no_category_as_types=03277_E_Objective-C categories and Object Pascal class helpers cannot be used as types
  1338. % It is not possible to declare a variable as an instance of an Objective-C
  1339. % category or an Object Pascal class helper. A category/class helper adds
  1340. % methods to the scope of an existing class, but does not define a type by
  1341. % itself. An exception of this rule is when inheriting an Object Pascal class
  1342. % helper from another class helper.
  1343. parser_e_no_category_override=03278_E_Categories do not override, but replace methods. Use "reintroduce" instead.
  1344. parser_e_must_use_reintroduce_objc=03279_E_Replaced methods can only be reintroduced in Objective-C, add "reintroduce" (replaced method defined in $1).
  1345. parser_h_should_use_reintroduce_objc=03280_H_Replaced methods can only be reintroduced in Objective-C, add "reintroduce" (replaced method defined in $1).
  1346. % A category replaces an existing method in an Objective-C class, rather than that it overrides it.
  1347. % Calling an inherited method from an category method will call that method in
  1348. % the extended class' parent, not in the extended class itself. The
  1349. % replaced method in the original class is basically lost, and can no longer be
  1350. % called or referred to. This behaviour corresponds somewhat more closely to
  1351. % \var{reintroduce} than to \var{override} (although in case of \var{reintroduce}
  1352. % in Object Pascal, hidden methods are still reachable via inherited).
  1353. % The type in which the inherited method is defined is explicitly mentioned, because this may either
  1354. % be an objcclass or an objccategory.
  1355. parser_e_implements_getter_not_default_cc=03281_E_Getter for implements interface must use the target's default calling convention.
  1356. % Interface getters are called via a helper in the run time library, and hence
  1357. % have to use the default calling convention for the target (\var{register} on
  1358. % i386 and x86\_64, \var{stdcall} on other architectures).
  1359. parser_e_no_refcounted_typed_file=03282_E_Typed files cannot contain reference-counted types.
  1360. % The data in a typed file cannot be of a reference counted type (such as
  1361. % \var{ansistring} or a record containing a field that is reference counted).
  1362. parser_e_operator_not_overloaded_2=03283_E_Operator is not overloaded: $2 "$1"
  1363. % You are trying to use an overloaded operator when it is not overloaded for
  1364. % this type.
  1365. parser_e_operator_not_overloaded_3=03284_E_Operator is not overloaded: "$1" $2 "$3"
  1366. % You are trying to use an overloaded operator when it is not overloaded for
  1367. % this type.
  1368. parser_e_more_array_elements_expected=03285_E_Expected another $1 array elements
  1369. % When declaring a typed constant array, you provided to few elements to initialize the array
  1370. parser_e_string_const_too_long=03286_E_String constant too long while ansistrings are disabled
  1371. % Only when a piece of code is compiled with ansistrings enabled (\var{\{\$H+\}}), string constants
  1372. % longer than 255 characters are allowed.
  1373. parser_e_invalid_univ_para=03287_E_Type cannot be used as univ parameter because its size is unknown at compile time: "$1"
  1374. % \var{univ} parameters are compatible with all values of the same size, but this
  1375. % cannot be checked in case a parameter's size is unknown at compile time.
  1376. parser_e_only_one_class_constructor_allowed=03288_E_Only one class constructor can be declared in class: "$1"
  1377. % You are trying to declare more than one class constructor but only one class constructor can be declared.
  1378. parser_e_only_one_class_destructor_allowed=03289_E_Only one class destructor can be declared in class: "$1"
  1379. % You are trying to declare more than one class destructor but only one class destructor can be declared.
  1380. parser_e_no_paras_for_class_constructor=03290_E_Class constructors cannot have parameters
  1381. % You are declaring a class constructor with a parameter list. Class constructor methods
  1382. % cannot have parameters.
  1383. parser_e_no_paras_for_class_destructor=03291_E_Class destructors cannot have parameters
  1384. % You are declaring a class destructor with a parameter list. Class destructor methods
  1385. % cannot have parameters.
  1386. parser_f_modeswitch_objc_required=03292_F_This construct requires the \{\$modeswitch objectivec1\} mode switch to be active
  1387. % Objective-Pascal constructs are not supported when \{\$modeswitch ObjectiveC1\}
  1388. % is not active.
  1389. parser_e_widestring_to_ansi_compile_time=03293_E_Unicodechar/string constants cannot be converted to ansi/shortstring at compile-time
  1390. % It is not possible to use unicodechar and unicodestring constants in
  1391. % constant expressions that have to be converted into an ansistring or shortstring
  1392. % at compile time, for example inside typed constants. The reason is that the
  1393. % compiler cannot know what the actual ansi encoding will be at run time.
  1394. parser_e_objc_enumerator_2_0=03294_E_For-in Objective-Pascal loops require \{\$modeswitch ObjectiveC2\} to be active
  1395. % Objective-C ``fast enumeration'' support was added in Objective-C 2.0, and
  1396. % hence the appropriate modeswitch has to be activated to expose this feature.
  1397. % Note that Objective-C 2.0 programs require Mac OS X 10.5 or later.
  1398. parser_e_objc_missing_enumeration_defs=03295_E_The compiler cannot find the NSFastEnumerationProtocol or NSFastEnumerationState type in the CocoaAll unit
  1399. % Objective-C for-in loops (fast enumeration) require that the compiler can
  1400. % find a unit called CocoaAll that contains definitions for the
  1401. % NSFastEnumerationProtocol and NSFastEnumerationState types. If you get this
  1402. % error, most likely the compiler is finding and loading an alternate CocoaAll
  1403. % unit.
  1404. parser_e_no_procvarnested_const=03296_E_Typed constants of the type 'procedure is nested' can only be initialized with NIL and global procedures/functions
  1405. % A nested procedural variable consists of two components: the address of the
  1406. % procedure/function to call (which is always known at compile time), and also
  1407. % a parent frame pointer (which is never known at compile time) in case the
  1408. % procedural variable contains a reference to a nested procedure/function.
  1409. % Therefore such typed constants can only be initialized with global
  1410. % functions/procedures since these do not require a parent frame pointer.
  1411. parser_f_no_generic_inside_generic=03297_F_Declaration of generic class inside another generic class is not allowed
  1412. % At the moment, scanner supports recording of only one token buffer at the time
  1413. % (guarded by internal error 200511173 in tscannerfile.startrecordtokens).
  1414. % Since generics are implemented by recording tokens, it is not possible to
  1415. % have declaration of generic class inside another generic class.
  1416. parser_e_forward_intf_declaration_must_be_resolved=03298_E_Forward declaration "$1" must be resolved before a class can conform to or implement it
  1417. % An Objective-C protocol or Java Interface must be fully defined before classes can conform to it.
  1418. % This error occurs in the following situation (example for Objective-C, but the same goes for Java interfaces):
  1419. % \begin{verbatim}
  1420. % Type MyProtocol = objcprotoocl;
  1421. % ChildClass = Class(NSObject,MyProtocol)
  1422. % ...
  1423. % end;
  1424. % \end{verbatim}
  1425. % where \var{MyProtocol} is declared but not defined.
  1426. parser_e_no_record_published=03299_E_Record types cannot have published sections
  1427. % Published sections can be used only inside classes.
  1428. parser_e_no_destructor_in_records=03300_E_Destructors are not allowed in records or helpers
  1429. % Destructor declarations are not allowed in records or helpers.
  1430. parser_e_class_methods_only_static_in_records=03301_E_Class methods must be static in records
  1431. % Class methods declarations are not allowed in records without static modifier.
  1432. % Records have no inheritance and therefore non static class methods have no sense for them.
  1433. parser_e_no_parameterless_constructor_in_records=03302_E_Parameterless constructors are not allowed in records or record/type helpers
  1434. % Constructor declarations with no arguments are not allowed in records or record/type helpers.
  1435. parser_e_at_least_one_argument_must_be_of_type=03303_E_Either the result or at least one parameter must be of type "$1"
  1436. % It is required that either the result of the routine or at least one of its parameters be of the specified type.
  1437. % For example class operators either take an instance of the structured type in which they are defined, or they return one.
  1438. parser_e_cant_use_type_parameters_here=03304_E_Type parameters may require initialization/finalization - cannot be used in variant records
  1439. % Type parameters may be specialized with types which (e.g. \var{ansistring}) need initialization/finalization
  1440. % code which is implicitly generated by the compiler.
  1441. parser_e_externals_no_section=03305_E_Variables being declared as external cannot be in a custom section
  1442. % A section directive is not valid for variables being declared as external.
  1443. parser_e_section_no_locals=03306_E_Non-static and non-global variables cannot have a section directive
  1444. % A variable placed in a custom section is always statically allocated so it must be either a static or global variable.
  1445. parser_e_not_allowed_in_helper=03307_E_"$1" is not allowed in helper types
  1446. % Some directives and specifiers like "virtual", "dynamic", "override" are not
  1447. % allowed inside helper types in mode ObjFPC (they are ignored in mode Delphi),
  1448. % because they have no meaning within helpers. Also "abstract" isn't allowed in
  1449. % either mode.
  1450. parser_e_no_class_constructor_in_helpers=03308_E_Class constructors are not allowed in helpers
  1451. % Class constructor declarations are not allowed in helpers.
  1452. parser_e_inherited_not_in_record=03309_E_The use of "inherited" is not allowed in a record
  1453. % As records don't support inheritance the use of "inherited" is prohibited for
  1454. % these as well as for record helpers (in mode "Delphi" only).
  1455. parser_e_no_types_in_local_anonymous_records=03310_E_Type declarations are not allowed in local or anonymous records
  1456. % Records with types must be defined globally. Types cannot be defined inside records which are defined in a
  1457. % procedure or function or in anonymous records.
  1458. parser_e_duplicate_implements_clause=03311_E_Duplicate implements clause for interface "$1"
  1459. % A class may delegate an interface using the "implements" clause only to a single property. Delegating it multiple times
  1460. % is a error.
  1461. parser_e_mapping_no_implements=03312_E_Interface "$1" cannot be delegated by "$2", it already has method resolutions
  1462. % Method resolution clause maps a method of an interface to a method of the current class. Therefore the current class
  1463. % has to implement the interface directly. Delegation is not possible.
  1464. parser_e_implements_no_mapping=03313_E_Interface "$1" cannot have method resolutions, "$2" already delegates it
  1465. % Method resolution is only possible for interfaces that are implemented directly, not by delegation.
  1466. parser_e_invalid_codepage=03314_E_Invalid codepage
  1467. % When declaring a string with a given codepage, the range of valid codepages values is limited
  1468. % to 0 to 65535.
  1469. parser_e_final_only_const_var=03315_E_Only fields (var-sections) and constants can be final in object types
  1470. % A final (class) field must be assigned a single value in the (class) constructor, and cannot
  1471. % be overwritten afterwards. A final (typed) constant is read-only.
  1472. parser_e_final_only_external=03316_E_Final fields are currently only supported for external classes
  1473. % Support for final fields in non-external classes requires a full data flow
  1474. % analysis implementation in FPC, which it currently still lacks.
  1475. parser_e_no_typed_const=03317_E_Typed constants are not allowed here, only formal constants are
  1476. % Java interfaces define a namespace in which formal constant can be defined,
  1477. % but since they define no storage it is not possible to define typed constants
  1478. % in them (those are more or less the same as initialised class fields).
  1479. parser_e_java_no_inherited_constructor=03318_E_Constructors are not automatically inherited in the JVM; explicitly add a constructor that calls the inherited one if you need it
  1480. % Java does not automatically add inherited constructors to child classes, so that they can be hidden.
  1481. % For compatibility with external Java code, FPC does the same. If you require access to the same
  1482. % constructors in a child class, define them in the child class and call the inherited one from
  1483. % there.
  1484. parser_d_internal_parser_string=03319_D_Parsing internally generated code: $1
  1485. % The compiler sometimes internally constructs Pascal code that is subsequently
  1486. % injected into the program. These messages display such code, in order to help
  1487. % with debugging errors in them.
  1488. parser_e_feature_unsupported_for_vm=03320_E_This language feature is not supported on managed VM targets
  1489. % Certain language features are not supported on targets that are managed virtual machines.
  1490. parser_e_jvm_invalid_virtual_constructor_call=03321_E_Calling a virtual constructor for the current instance inside another constructor is not possible on the JVM target
  1491. % The JVM does not natively support virtual constructor. Unforunately, we are not aware of a way to
  1492. % emulate them in a way that makes it possible to support calling virtual constructors
  1493. % for the current instance inside another constructor.
  1494. parser_e_method_lower_visibility=03322_E_Overriding method "$1" cannot have a lower visibility ($2) than in parent class $3 ($4)
  1495. % The JVM does not allow lowering the visibility of an overriding method.
  1496. parser_e_nostackframe_without_assembler=03323_E_Procedure/Function declared with call option NOSTACKFRAME but without ASSEMBLER
  1497. % nostackframe call modifier is supposed to be used in conjunction with assembler.
  1498. parser_e_nostackframe_with_locals=03324_E_Procedure/Function declared with call option NOSTACKFRAME but local stack size is $1
  1499. % nostackframe call modifier used without assembler modifier
  1500. % might still generate local stack needs.
  1501. parser_e_cannot_generate_property_getter_setter=03325_E_Cannot generate property getter/setter $1 because its name clashes with existing identifier $2
  1502. % Automatically generated getters/setters cannot have the same name as existing
  1503. % identifiers, because this may change the behaviour of existing code.
  1504. parser_w_overriding_property_getter_setter=03326_W_Automatically generated property getter/setter $1 overrides the same-named getter/setter in class $2
  1505. % Automatically generated property getters/setters on the JVM platform are virtual methods, because
  1506. % the JVM does not support non-virtual methods that can be changed in child classes. This means
  1507. % that if a child class changes an inherited property definition, the behaviour of that property
  1508. % can change compared to native targets since even if a variable is declared as the parent type,
  1509. % by calling the virtual method the getter from the child will be used. This is different from
  1510. % the behaviour on native targets or when not activating automatically generated setters/getters,
  1511. % because in that case only the declared type of a variable influences the property behaviour.
  1512. parser_w_case_difference_auto_property_getter_setter_prefix=03327_W_Case mismatch between declared property getter/setter $1 and automatically constructed name $2, not changing declared name
  1513. % If a property's specified getter/setter already corresponded to the naming convention specified
  1514. % by the automatic getter/setter generation setting except in terms of upper/lowercase, the
  1515. % compiler will print a warning because it cannot necessarily change that other declaration itself
  1516. % not can it add one using the correct case (it could conflict with the original declaration).
  1517. % Manually correct the case of the getter/setter to conform to the desired coding rules.
  1518. % \var{TChild} overrides
  1519. parser_e_no_consts_in_local_anonymous_records=03328_E_Constants declarations are not allowed in local or anonymous records
  1520. % Records with constants must be defined globally. Constants cannot be defined inside records which are defined in a
  1521. % procedure or function or in anonymous records.
  1522. parser_e_no_methods_in_local_anonymous_records=03329_E_Method declarations are not allowed in local or anonymous records
  1523. % Records with methods must be defined globally. Methods cannot be defined inside records which are defined in a
  1524. % procedure or function or in anonymous records.
  1525. parser_e_no_properties_in_local_anonymous_records=03330_E_Property declarations are not allowed in local or anonymous records
  1526. % Records with properties must be defined globally. Properties cannot be defined inside records which are defined in a
  1527. % procedure or function or in anonymous records.
  1528. parser_e_no_class_in_local_anonymous_records=03331_E_Class member declarations are not allowed in local or anonymous records
  1529. % Records with class members must be defined globally. Class members cannot be defined inside records which are defined in a
  1530. % procedure or function or in anonymous records.
  1531. parser_e_not_allowed_in_record=03332_E_Visibility section "$1" not allowed in records
  1532. % The visibility sections \var(protected) and \var(strict protected) are only
  1533. % useful together with inheritance. Since records do not support that they are
  1534. % forbidden.
  1535. parser_e_dir_not_allowed=03333_E_Directive "$1" not allowed here
  1536. % This directive is not allowed in the given context. E.g. "static"
  1537. % is not allowed for instance methods or class operators.
  1538. parser_e_no_assembler_in_generic=03334_E_Assembler blocks not allowed inside generics
  1539. % The use of assembler blocks/routines is not allowed inside generics.
  1540. parser_e_property_only_sgr=03335_E_Properties can be only static, global or inside structured types
  1541. % Properties cannot be declared local, only global, using the static
  1542. % directive or inside structured types.
  1543. parser_e_overloaded_have_same_mangled_name=03336_E_Overloaded routines have the same mangled name
  1544. % Some platforms, such as the JVM platform, encode the parameters in the routine name in
  1545. % a prescribed way, and this encoding may map different Pascal types to the same encoded
  1546. % (a.k.a.\ ``mangled'') name. This error can only be solved by removing or changing the
  1547. % conflicting definitions' parameter declarations or routine names.
  1548. parser_e_default_value_val_const=03337_E_Default values can only be specified for value, const and constref parameters
  1549. % A default parameter value allows you to not specify a value for this parameter
  1550. % when calling the routine, and the compiler will instead pass the specified
  1551. % default (constant) value. As a result, default values can only be specified
  1552. % for parameters that can accept constant values.
  1553. parser_w_ptr_type_ignored=03338_W_Pointer type "$1" ignored
  1554. % The specified pointer type modifier is ignored, because it is not supported on
  1555. % the current platform. This happens, for example, when a far pointer is
  1556. % declared on a non-x86 platform.
  1557. parser_e_global_generic_references_static=03339_E_Global Generic template references static symtable
  1558. % A generic declared in the interface section of a unit must not reference symbols that belong
  1559. % solely to the implementation section of that unit.
  1560. parser_u_already_compiled=03340_UL_Unit $1 has been already compiled meanwhile.
  1561. % This tells you that the recursive reading of the uses clauses triggered already
  1562. % a compilation of the current unit, so the current compilation can be aborted.
  1563. %
  1564. %
  1565. %
  1566. % \end{description}
  1567. %
  1568. # Type Checking
  1569. #
  1570. # 04123 is the last used one
  1571. #
  1572. % \section{Type checking errors}
  1573. % This section lists all errors that can occur when type checking is
  1574. % performed.
  1575. % \begin{description}
  1576. type_e_mismatch=04000_E_Tipe tidak sama
  1577. % Ini terjadi dalam banyak kasus:
  1578. % \begin{itemize}
  1579. % \item Variabel yang anda tempatkan adalah tipe berbeda dari ekspresi dalam
  1580. % penempatan.
  1581. % \item Anda memanggil fungsi atau prosedur dengan parameters yang tidak
  1582. % kompatibel dengan parameter dalam definisi fungsi atau prosedur.
  1583. % \end{itemize}
  1584. type_e_incompatible_types=04001_E_Tipe tidak kompatibel: didapat "$1" diharapkan "$2"
  1585. % Tidak ada konversi yang mungkin diantara kedua tipe
  1586. % Kemungkinan lain adalah bahwa keduanya dideklarasikan dalam deklarasi yang
  1587. % berbeda:
  1588. % \begin{verbatim}
  1589. % Var
  1590. % A1 : Array[1..10] Of Integer;
  1591. % A2 : Array[1..10] Of Integer;
  1592. %
  1593. % Begin
  1594. % A1:=A2; { Pernyataan ini juga menghasilkan kesalahan, ini
  1595. % dikarenakan pemeriksaan tipe ketat pada pascal }
  1596. % End.
  1597. % \end{verbatim}
  1598. type_e_not_equal_types=04002_E_Tipe tidak sama antara "$1" dan "$2"
  1599. % Tipe tidak persis sama
  1600. type_e_type_id_expected=04003_E_Pengenal tipe diharapkan
  1601. % Pengenal bukan sebuah tipe, atau anda lupa menyertakan pengenal tipe.
  1602. type_e_variable_id_expected=04004_E_Pengenal variabel diharapkan
  1603. % Ini terjadi saat anda mengirimkan konstan ke sebuah rutin (seperti \var{Inc} var atau \var{Dec})
  1604. % ketia ia mengharapkan sebuah variabel. Anda juga bisa mengirimkan variabel
  1605. % sebagai argumen ke fungsi ini.
  1606. type_e_integer_expr_expected=04005_E_Ekspresi integer diharapkan, tapi didapat "$1"
  1607. % Kompilator mengharapkan ekspresi tipe integer, tetapi mendapatkan tipe yang
  1608. % berbeda.
  1609. type_e_boolean_expr_expected=04006_E_Ekspresi boolean diharapkan, tapi didapat "$1"
  1610. % Ekspresi harus tipe boolean, ia harus mengembalikan true atau false.
  1611. type_e_ordinal_expr_expected=04007_E_Ekspresi Ordinal diharapkan
  1612. % Ekspresi harus tipe ordinal, misalnya maksimum \var{Longint}.
  1613. % Ini terjadi, misalnya ketika anda menetapkan argumen kedua
  1614. % ke \var{Inc} atau \var{Dec} yang tidak mengevaluasi ke nilai ordinal.
  1615. type_e_pointer_type_expected=04008_E_Tipe pointer diharapkan, tapi didapat "$1"
  1616. % Ekspresi variabel bukan tipe \var{pointer}. Ini terjadi ketika anda
  1617. % mengirimkan variabel yang bukan pointer ke \var{New} atau \var{Dispose}.
  1618. type_e_class_type_expected=04009_E_Tipe class diharapkan, tapi didapat "$1"
  1619. % Ekspresi variabel bukan tipe \var{class}. Ini terjadi biasanya ketika
  1620. % \begin{enumerate}
  1621. % \item Kelas leluhur dalam deklarasi kelas bukan sebuah class.
  1622. % \item Pengendali eksepsi (\var{On}) berisi pengenal tipe yang bukan sebuah
  1623. % class.
  1624. % \end{enumerate}
  1625. type_e_cant_eval_constant_expr=04011_E_Tidak bisa mengevaluasi ekspresi konstan
  1626. % Kesalahan ini bisa terjadi ketika batas array yang anda deklarasikan tidak
  1627. % mengevaluasi konstan ordinal
  1628. type_e_set_element_are_not_comp=04012_E_Set elemen tidak kompatibel
  1629. % Anda mencoba untuk membuat operasi pada dua set, ketika set tipe elemen
  1630. % tidak sama. Tipe basis dari sebuah set harus sama saat mengambil union
  1631. type_e_set_operation_unknown=04013_E_Operasi tidak diimplementasikan untuk set
  1632. % Beberapa operasi biner tidak mendefinisikan untuk set seperti
  1633. % div mod ** (juga >= <= untuk saat ini)
  1634. type_w_convert_real_2_comp=04014_W_Konversi tipe otomatis dari tipe floating ke COMP yang adalah tipe integer
  1635. % Konversi tipe implisit dari tipe real ke \var{comp} ditemukan. Karena
  1636. % \var{comp} adalah tipe integer 64 bit, ini bisa menandakan kesalahan.
  1637. type_h_use_div_for_int=04015_H_Sebaiknya gunakan DIV untuk mendapatkan hasil integer
  1638. % Ketika petunjuk dihidupkan, maka pembagian integer dengan operator '/' akan
  1639. % memunculkan pesan ini, karena hasil kemudian akan berupa tipe real
  1640. type_e_strict_var_string_violation=04016_E_Tipe string tidak sama, karena mode $V+
  1641. % Ketika mengompilasi dalam mode \var{\{\$V+\}}, string yang anda kirimkan sebagai parameter
  1642. % harus tipe yang sama persis seperti parameter yang dideklarasikan pada procedure.
  1643. type_e_succ_and_pred_enums_with_assign_not_possible=04017_E_succ atau pred pada enums dengan penempatan tidak mungkin
  1644. % Ketika anda mendeklarasikan tipe enumerasi yang mempunyai penempatan di dalamnya, seperti pada C,
  1645. % seperti yang berikut:
  1646. % \begin{verbatim}
  1647. % Tenum = (a,b,e:=5);
  1648. % \end{verbatim}
  1649. % anda tidak bisas menggunakan fungsi \var{Succ} atau \var{Pred} padanya.
  1650. type_e_cant_read_write_type=04018_E_Tidak bisa membaca atau menulis variabel dari tipe ini
  1651. % Anda mencoba untuk \var{read} atau \var{write} variabel dari atau ke sebuah
  1652. % file tipe teks, yang tidak mendukung itu. Hanya tipe integer, real, pchar,
  1653. % dan string dapat dibaca dari/ditulis ke file teks. Boolean hanya dapat
  1654. % ditulis ke file teks.
  1655. type_e_no_readln_writeln_for_typed_file=04019_E_Tidak bisa menggunakan readln atau writeln pada file
  1656. % \var{readln} dan \var{writeln} hanya dibolehkan untuk file teks.
  1657. type_e_no_read_write_for_untyped_file=04020_E_Tidak bisa memakai baca atau tulis pada file untyped.
  1658. % \var{read} dan \var{write} hanya dibolehkan untuk file teks atau biner.
  1659. type_e_typeconflict_in_set=04021_E_Tipe konflik diantara set elemen
  1660. % Ada setidaknya satu set elemen yang tipenya salah, misalnya bukan dari
  1661. % tipe set.
  1662. type_w_maybe_wrong_hi_lo=04022_W_lo/hi(dword/qword) mengembalikan upper/lower word/dword
  1663. % \fpc mendukung versi di-overload atas \var{lo/hi} untuk \var{longint/dword/int64/qword}
  1664. % yang mengembalikan lower/upper word/dword pada argumen. TP selalu menggunakan
  1665. % 16 bit \var{lo/hi} yang selalu mengembalikan bit 0..7 untuk \var{lo} dan
  1666. % bit 8..15 untuk \var{hi}. Jika anda menginginkan perilaku TP anda harus
  1667. % type cast argumennya ke \var{word/integer}
  1668. type_e_integer_or_real_expr_expected=04023_E_Ekspresi integer atau real diharapkan
  1669. % Argumen pertama pada \var{str} harus tipe real atau integer.
  1670. type_e_wrong_type_in_array_constructor=04024_E_Tipe "$1" salah dalam konstruktor array
  1671. % Anda mencoba untuk menggunakan tipe dalam konstruktor array yang tidak
  1672. % dibolehkan.
  1673. type_e_wrong_parameter_type=04025_E_Tipe tidak kompatibel untuk arg no. $1: Didapat "$2", diharapkan "$3"
  1674. % Anda mencoba untuk mengirimkan tipe yang salah untuk parameter yang ditetapkan.
  1675. type_e_no_method_and_procedure_not_compatible=04026_E_Metode (variabel) dan Prosedur (variabel) tidak kompatibel
  1676. % Anda tidak bisa menempatkan sebuah metode ke variabel prosedur atau prosedur
  1677. % ke sebuah pointer metode.
  1678. type_e_wrong_math_argument=04027_E_Konstan yang dikirimkan ke fungsi math internal tidak benar
  1679. % Argumen konstan yang dikirimkan ke fungsi ln atau sqrt di luar jangkauan
  1680. % definisi pada fungsi ini.
  1681. type_e_no_addr_of_constant=04028_E_Tidak bisas mengambil alamat dari ekspresi konstan
  1682. % Tidak mungkin untuk mendapatkan alamat ekspresi konstan, karena tidak disimpan
  1683. % dalam memori. Anda dapat mencoba membuat tipe konstan. Kesalahan ini juga bisa
  1684. % ditampilkan jika anda mencoba mengirimkan properti ke parameter var.
  1685. type_e_argument_cant_be_assigned=04029_E_Argumen tidak bisa ditempatkan
  1686. % Hanya ekspresi yang bisa di sisi kiri dari penempatan yang bisa dikirimkan
  1687. % sebagai panggilan dengan referensi argumen.
  1688. % Catatan: Properti hanya bisa dipakai pada sisi kiri dari penempatan,
  1689. % tapi ia tidak bisas digunakan sebagai argumen
  1690. type_e_cannot_local_proc_to_procvar=04030_E_Tidak bisa menempatkan prosedur/fungsi lokal ke variabel prosedur
  1691. % Tidak dibolehkan untuk menempatkan prosedur/fungsi lokal ke sebuah variabel
  1692. % prosedur, karena pemanggilan prosedur/fungsi lokal berbeda. Anda hanya bisa
  1693. % menempatkan prosedur/fungsi lokal ke sebuah pointer.
  1694. type_e_no_assign_to_addr=04031_E_Tidak bisa menempatkan nilai ke alamat
  1695. % Tidak dibolehkan untuk menempatkan nilai ke alamat dari variabel, konstan,
  1696. % prosedur atau fungsi. Anda dapat mencoba mengompilasi dengan -So jika pengenal
  1697. % adalah variabel procedure.
  1698. type_e_no_assign_to_const=04032_E_Tidak bisa menempatkan nilai ke variabel const
  1699. % Tidak dibolehkan untuk menempatkan nilai ke variabel yang dideklarasikan
  1700. % sebagai const. Ini biasanya parameter dideklarasikan sebagai const, untuk
  1701. % membolehkan perubahan nilai buat parameter sebagai parameter nilai atau var.
  1702. type_e_array_required=04033_E_Tipe array diperlukan
  1703. % Jika anda mengakses variabel menggunakan sebuah indeks '[<x>]' maka tipenya
  1704. % harus array. Dalam mode FPC, pointer juga dibolehkan.
  1705. type_e_interface_type_expected=04034_E_tipe interface diharapkan, tapi didapat "$1"
  1706. % Kompilator berharap menemukan nama tipe interface, tapi didapatkan yang lain.
  1707. % Kode berikut akan menimbulkan kesalahan ini:
  1708. % \begin{verbatim}
  1709. % Type
  1710. % TMyStream = Class(TStream,Integer)
  1711. % \end{verbatim}
  1712. type_h_mixed_signed_unsigned=04035_H_Mixing signed expressions and longwords gives a 64bit result
  1713. % If you divide (or calculate the modulus of) a signed expression by a longword (or vice versa),
  1714. % or if you have overflow and/or range checking turned on and use an arithmetic
  1715. % expression (+, -, *, div, mod) in which both signed numbers and longwords appear,
  1716. % then everything has to be evaluated in 64-bit arithmetic which is slower than normal
  1717. % 32-bit arithmetic. You can avoid this by typecasting one operand so it
  1718. % matches the result type of the other one.
  1719. type_w_mixed_signed_unsigned2=04036_W_Mencampur ekspresi bertanda dan cardinal di sini dapat menyebabkan kesalahan pemeriksaan jangkauan
  1720. % Jika anda menggunakan operator biner (and, or, xor) dan salah satu operand
  1721. % adalah longword sementara yang lainnya ekspresi bertanda, maka jika
  1722. % pemeriksaan jangkauan dihidupkan, anda akan mendapatkan kesalahan pemeriksaan
  1723. % jangkauan, karena kedua operand dikonversi ke longword sebelum operasi
  1724. % dilakukan. Anda dapat menghindari ini dengan typecasting satu operand agar
  1725. % sesuai dengan tipe hasil atas yang lain.
  1726. type_e_typecast_wrong_size_for_assignment=04037_E_Typecast mempunyai ukuran berbeda ($1 -> $2) dalam penempatan
  1727. % Type casting ke sebuah tipe dengan ukuran berbeda tidak dibolehkan saat
  1728. % variabel dipakai untuk penempatan.
  1729. type_e_array_index_enums_with_assign_not_possible=04038_E_enum dengan penempatan tidak bisa dipakai sebagai indeks array
  1730. % Ketika anda mendeklarasikan tipe enumerasi yang memiliki penempatan
  1731. % didalamnya, seperti dalam C, sepeprti berikut:
  1732. % \begin{verbatim}
  1733. % Tenum = (a,b,e:=5);
  1734. % \end{verbatim}
  1735. % anda tidak bisa menggunakannya sebagai indeks dari sebuah array.
  1736. type_e_classes_not_related=04039_E_Tipe Class atau Object "$1" dan "$2" tidak berkaitan
  1737. % Ada typecast dari satu kelas atau obyek ke yang lain sementara kelas/obyek itu
  1738. % tidak ada kaitannya. Ini akan menimbulkan kesalahan
  1739. type_w_classes_not_related=04040_W_Tipe kelas "$1" dan "$2" tidak berkaitan
  1740. % Ada typecast dari satu kelas atau obyek ke yang lain sementara kelas/obyek itu
  1741. % tidak ada kaitannya. Ini akan menimbulkan kesalahan
  1742. type_e_class_or_interface_type_expected=04041_E_Tipe Class atau interface diharapkan, tapi didapat "$1"
  1743. % Kompilator mengharapkan nama kelas atau interface, tapi mendapatkan tipe atau pengenal lain.
  1744. type_e_type_is_not_completly_defined=04042_E_Tipe "$1" tidak sepenuhnya didefinisikan
  1745. % Kesalahan ini terjadi saat tipe tidak lengkap: misalnya tipe pointer yang
  1746. % mengarah ke tipe tidak terdefinisi.
  1747. type_w_string_too_long=04043_W_Literal string memiliki lebih banyak karakter daripada panjang short string
  1748. % Ukuran string konstan, yang ditempatkan ke shortstring, lebih panjang daripada
  1749. % ukuran maksimum shortstring
  1750. type_w_comparison_always_false=04044_W_Comparison might be always false due to range of constant and expression
  1751. % There is a comparison between a constant and an expression where the constant is out of the
  1752. % valid range of values of the expression. Because of type promotion, the statement will always evaluate to
  1753. % false. Explicitly typecast the constant or the expression to the correct range to avoid this warning
  1754. % if you think the code is correct.
  1755. type_w_comparison_always_true=04045_W_Comparison might be always true due to range of constant and expression
  1756. % There is a comparison between a constant and an expression where the constant is out of the
  1757. % valid range of values of the expression. Because of type promotion, the statement will always evaluate to
  1758. % true. Explicitly typecast the constant or the expression to the correct range to avoid this warning
  1759. % if you think the code is correct.
  1760. type_w_instance_with_abstract=04046_W_Membentuk sebuah kelas "$1" dengan metode abstrak
  1761. % Turunan kelas dibuat yang berisi metode abstrak tidak diimplementasikan. Ini
  1762. % dapat membawa kesalahan runtime 211 dalam kode jika rutin itu tidak pernah
  1763. % dibersihkan. Semua metode abstrak harus diganti.
  1764. type_h_in_range_check=04047_H_Operand kiri pada operator IN harus berukuran byte
  1765. % Operand kiri pada operator \var{in} bukan ordinal atau enumerasi yang sesuai
  1766. % dalam 8-bits, ini dapat mengakibatkan kesalahan pemeriksaan jangkauan.
  1767. % Operator \var{in} saat ini hanya mendukung operand kiri yang sesuai dalam byte.
  1768. % Dalam hal enumerasi, ukuran elemen pada enumerasi dapat dikontrol dengan
  1769. % saklar \var{\{\$PACKENUM\}} atau \var{\{\$Zn\}}.
  1770. type_w_smaller_possible_range_check=04048_W_Ukuran tipe tidak sama, kemungkinan kehilangan data / kesalahan pemeriksaan jangkauan
  1771. % Ada penempatan ke tipe lebih kecil daripada tipe sumber. Ini berarti bahwa
  1772. % ini dapat menyebabkan kesalahan pemeriksaan jangkauan, atau dapat mengakibatkan kehilangan data.
  1773. type_h_smaller_possible_range_check=04049_H_Ukuran tipe tidak sama, kemungkinan kehilangan data / kesalahan pemeriksaan jangkauan
  1774. % Ada penempatan ke tipe lebih kecil daripada tipe sumber. Ini berarti bahwa
  1775. % ini dapat menyebabkan kesalahan pemeriksaan jangkauan, atau dapat mengakibatkan kehilangan data.
  1776. type_e_cant_take_address_of_abstract_method=04050_E_Alamat metode abstrak tidak bisa diambil
  1777. % Metode abstrak tidak memiliki badan, maka alamat metode abstrak tidak bisa diambil.
  1778. type_e_assignment_not_allowed=04051_E_Penempatan ke parameter formal dan array terbuka tidak mungkin
  1779. % Anda mencoba untuk menempatkan nilai ke parameter formal (untyped var, const
  1780. % atau out), atau ke array terbuka.
  1781. type_e_constant_expr_expected=04052_E_Ekspresi Konstan diharapkan
  1782. % Kompilator mengharapkan ekspresi konstan, tapi mendapatkan ekspresi variabel.
  1783. type_e_operator_not_supported_for_types=04053_E_Operasi "$1" tidak didukung untuk tipe "$2" dan "$3"
  1784. % Operasi tidak dibolehkan untuk tipe yang disediakan
  1785. type_e_illegal_type_conversion=04054_E_Konversi tipe tidak benar: "$1" ke "$2"
  1786. % Ketika melakukan type-cast, anda harus berhati-hati bahwa ukuran variabel dan tipe
  1787. % tujuan adalah sama.
  1788. type_h_pointer_to_longint_conv_not_portable=04055_H_Konversi antara ordinal dan pointer tidak portabel
  1789. % Jika anda melakukan typecast pointer ke longint (atau sebaliknya), kode ini
  1790. % tidak akan dikompilasi pada mesin menggunakan 64-bit untuk penyimpanan pointer.
  1791. type_w_pointer_to_longint_conv_not_portable=04056_W_Konversi antara ordinal dan pointer tidak portabel
  1792. % Jika anda melakukan typecast pointer ke tipe ordinal pada ukuran berbeda
  1793. % (atau sebaliknya), ini dapat menyebabkan masalah. Ini adalah peringatan untuk
  1794. % membantu menemukan kode spesifik 32bit di mana cardinal/longint dipakai
  1795. % untuk typecast pointer ke ordinal. Solusinya sebaiknya menggunakan tipe ptrint/ptruint.
  1796. type_e_cant_choose_overload_function=04057_E_Tidak dapat menentukan fungsi di-overload mana yang dipanggil
  1797. % Anda memanggil fungsi di-overload dengan parameter yang tidak terkait ke daftar
  1798. % parameter fungsi yang dideklarasikan di manapun. Misalnya saat anda
  1799. % mendeklarasikan fungsi dengan parameter \var{word} dan \var{longint}, kemudian
  1800. % anda memanggilnya dengan parameter yang tipenya \var{integer}.
  1801. type_e_illegal_count_var=04058_E_Variabel penghitung tidak benar
  1802. % Tipe variabel loop \var{for} harus tipe ordinal. Variabel loop tidak bisa
  1803. % real atau string.
  1804. type_w_double_c_varargs=04059_W_Mengkonversi konstan nilai real ke double untuk argumen variabel C, tambah typecast eksplisit untuk menghindarinya.
  1805. % Dalam C, nilai konstan real adalah double standarnya. Untuk alasan ini, jika
  1806. % anda mengirimkan nilai konstan real ke argumen variabel bagian dari fungsi C,
  1807. % standarnya FPC mengkonversi konstan ini ke double juga. Jika anda ingin
  1808. % menghindari ini terjadi, tambah typecast eksplisit disekitar konstan.
  1809. type_e_class_or_cominterface_type_expected=04060_E_Tipe Class atau interface COM diharapkan, tapi didapat "$1"
  1810. % Beberapa operator seperti operator AS hanya berlaku pada kelas atau interface COM.
  1811. type_e_no_const_packed_array=04061_E_Konstan packed arrays belum didukung
  1812. % Anda tidak bisa mendeklarasikan (bit)packed array sebagai konstan type.
  1813. type_e_got_expected_packed_array=04062_E_Tipe tidak kompatibel untuk arg no. $1: Didapat "$2" diharapkan "(Bit)Packed Array"
  1814. % Kompilator mengharapkan (bit)packed array sebagai parameter yang dietapkan
  1815. type_e_got_expected_unpacked_array=04063_E_Tipe tidak kompatibel untuk arg no. $1: Didapat "$2" diharapkan "(Bit)Packed Array"
  1816. % Kompilator mengharapkan reguler (misalnya bukan packed) array sebagai parameter yang ditetapkan
  1817. type_e_no_packed_inittable=04064_E_Elemen pada packed arrays tidak bisa dari tipe yang perlu diinisialisasi
  1818. % Dukungan untuk packed array daru tuoe yang memerlukan inisialisasi (seperti
  1819. % ansistring, atau record yang berisi ansistring) belum diimplementasikan.
  1820. type_e_no_const_packed_record=04065_E_Konstan packed record dan obyek belum didukung
  1821. % Anda tidak bisa mendeklarasikan (bit)packed array sebagai typed konstan pada saat ini.
  1822. type_w_untyped_arithmetic_unportable=04066_W_Aritmatika "$1" pada pointer untyped tidak portabel bagi {$T+}, disarankan typecast
  1823. % Penambahan/pengurangan dari pointer untyped mungkin bekerja secara berbeda
  1824. % dalam \var{\{\$T+\}}, gunakan typecast untuk pointer typed
  1825. type_e_cant_take_address_of_local_subroutine=04076_E_Tidak bisa mengambil alamat dari subrutin yang ditandai sebagai lokal
  1826. % Alamat subrutin yang ditandai sebagai lokal tidak bisa diambil.
  1827. type_e_cant_export_local=04077_E_Tidak bisa mengekspor subrutin yang ditandai sebagai lokal dari sebuah unit
  1828. % Subrutin yang ditandai sebagai lokal tidak bisa diekspor dari sebuah unit.
  1829. type_e_not_automatable=04078_E_Tipe tidak bisa diotomasi: "$1"
  1830. % Hanya byte, integer, longint, smallint, currency, single, double, ansistring,
  1831. % widestring, tdatetime, variant, olevariant, wordbool dan semua interface bisa diotomasi.
  1832. type_h_convert_add_operands_to_prevent_overflow=04079_H_Mengkonversi operand ke "$1" sebelum melakukan penambahan dapat menghindari kesalahan overflow.
  1833. % Menambah dua tipe dapat menyebabkan kesalahan overflow. Karena anda
  1834. % mengkonversi hasil ke tipe lebih besar, anda dapat menghindari kesalahan
  1835. % seperti itu dengan mengubah operand ke tipe ini sebelum melakukan penambahan.
  1836. type_h_convert_sub_operands_to_prevent_overflow=04080_H_Mengkonversi operand ke "$1" sebelum melakukan pengurangan dapat menghindari kesalahan overflow.
  1837. % Pengurangan dua tipe dapat menyebabkan kesalahan overflow. Karena anda
  1838. % mengkonversi hasil ke tipe lebih besar, anda menghindari
  1839. % seperti itu dengan mengubah operand ke tipe ini sebelum melakukan pengurangan.
  1840. type_h_convert_mul_operands_to_prevent_overflow=04081_H_Mengkonversi operand ke "$1" sebelum melakukan perkalian dapat menghindari kesalahan overflow.
  1841. % Perkalian dua tipe dapat menyebabkan kesalahan overflow. Karena anda
  1842. % mengkonversi hasil ke tipe lebih besar, anda menghindari
  1843. % seperti itu dengan mengubah operand ke tipe ini sebelum melakukan pengurangan.
  1844. type_w_pointer_to_signed=04082_W_Mengkonversi pointer ke integer bertanda dapat membuat hasil perbandingan yang salah dan kesalahan jangkauan, sebaiknya gunakan tipe unsigned.
  1845. % Ruang alamat virtual pada mesin 32-bit berjalan dari \$00000000 sampai
  1846. % \$ffffffff. Banyak sistem operasi membeolehkan anda untuk mengalokasikan
  1847. % memori di atas \$80000000, sebagai contoh Windows dan Linux membolehkan
  1848. % pointer dalam jangkauan \$0000000 sampai \$bfffffff. Jika anda mengkonversi
  1849. % pointer ke tipe bertanda, ini dapat menyebabkan overflow dan kesalahan
  1850. % pemeriksaan jangkauan, tapi juga \$80000000 < \$7fffffff.
  1851. % Ini bisa menyebabkan kesalahan acak dalam kode seperti "if p>q".
  1852. % \end{description}
  1853. #
  1854. # Symtable
  1855. #
  1856. # 05060 is the last used one
  1857. #
  1858. % \section{Penanganan simbol}
  1859. % Seksi ini mendaftarkan semua pesan yang berkenaan dengan penanganan simbol.
  1860. % Ini berarti semua hal yang harus dilakukan dengan prosedur dan nama variabel.
  1861. % \begin{description}
  1862. type_e_interface_has_no_guid=04083_E_Interface type $1 has no valid GUID
  1863. % When applying the as-operator to an interface or class, the desired interface (i.e. the right operand of the
  1864. % as-operator) must have a valid GUID.
  1865. type_e_invalid_objc_selector_name=04084_E_Invalid selector name "$1"
  1866. % An Objective-C selector cannot be empty, must be a valid identifier or a single colon,
  1867. % and if it contains at least one colon it must also end in one.
  1868. type_e_expected_objc_method_but_got=04085_E_Expected Objective-C method, but got $1
  1869. % A selector can only be created for Objective-C methods, not for any other kind
  1870. % of procedure/function/method.
  1871. type_e_expected_objc_method=04086_E_Expected Objective-C method or constant method name
  1872. % A selector can only be created for Objective-C methods, either by specifying
  1873. % the name using a string constant, or by using an Objective-C method identifier
  1874. % that is visible in the current scope.
  1875. type_e_no_type_info=04087_E_No type info available for this type
  1876. % Type information is not generated for some types, such as enumerations with gaps
  1877. % in their value range (this includes enumerations whose lower bound is different
  1878. % from zero).
  1879. type_e_ordinal_or_string_expr_expected=04088_E_Ordinal or string expression expected
  1880. % The expression must be an ordinal or string type.
  1881. type_e_string_expr_expected=04089_E_String expression expected
  1882. % The expression must be a string type.
  1883. type_w_zero_to_nil=04090_W_Converting 0 to NIL
  1884. % Use NIL rather than 0 when initialising a pointer.
  1885. type_e_protocol_type_expected=04091_E_Objective-C protocol type expected, but got "$1"
  1886. % The compiler expected a protocol type name, but found something else.
  1887. type_e_objc_type_unsupported=04092_E_The type "$1" is not supported for interaction with the Objective-C and the blocks runtime.
  1888. % Objective-C and Blocks make extensive use of run time type information (RTTI). This format
  1889. % is defined by the maintainers of the run time and can therefore not be adapted
  1890. % to all possible Object Pascal types. In particular, types that depend on
  1891. % reference counting by the compiler (such as ansistrings and certain kinds of
  1892. % interfaces) cannot be used as fields of Objective-C classes, cannot be
  1893. % directly passed to Objective-C methods or Blocks, and cannot be encoded using \var{objc\_encode}.
  1894. type_e_class_or_objcclass_type_expected=04093_E_Class or objcclass type expected, but got "$1"
  1895. % It is only possible to create class reference types of \var{class} and \var{objcclass}
  1896. type_e_objcclass_type_expected=04094_E_Objcclass type expected
  1897. % The compiler expected an \var{objcclass} type
  1898. type_w_procvar_univ_conflicting_para=04095_W_Coerced univ parameter type in procedural variable may cause crash or memory corruption: $1 to $2
  1899. % \var{univ} parameters are implicitly compatible with all types of the same size,
  1900. % also in procedural variable definitions. That means that the following code is
  1901. % legal, because \var{single} and \var{longint} have the same size:
  1902. % \begin{verbatim}
  1903. % {$mode macpas}
  1904. % Type
  1905. % TIntProc = procedure (l: univ longint);
  1906. %
  1907. % procedure test(s: single);
  1908. % begin
  1909. % writeln(s);
  1910. % end;
  1911. %
  1912. % var
  1913. % p: TIntProc;
  1914. % begin
  1915. % p:=test;
  1916. % p(4);
  1917. % end.
  1918. % \end{verbatim}
  1919. % This code may however crash on platforms that pass integers in registers and
  1920. % floating point values on the stack, because then the stack will be unbalanced.
  1921. % Note that this warning will not flag all potentially dangerous situations.
  1922. % when \var{test} returns.
  1923. type_e_generics_cannot_reference_itself=04096_E_Type parameters of specializations of generics cannot reference the currently specialized type
  1924. % Recursive specializations of generics like \var{Type MyType = specialize MyGeneric<MyType>;} are not possible.
  1925. type_e_type_parameters_are_not_allowed_here=04097_E_Type parameters are not allowed on non-generic class/record/object procedure or function
  1926. % Type parameters are only allowed for methods of generic classes, records or objects
  1927. type_e_generic_declaration_does_not_match=04098_E_Generic declaration of "$1" differs from previous declaration
  1928. % Generic declaration does not match the previous declaration
  1929. type_e_helper_type_expected=04099_E_Helper type expected
  1930. % The compiler expected a \var{class helper} type.
  1931. type_e_record_type_expected=04100_E_Record type expected
  1932. % The compiler expected a \var{record} type.
  1933. type_e_class_helper_must_extend_subclass=04101_E_Derived class helper must extend a subclass of "$1" or the class itself
  1934. % If a class helper inherits from another class helper the extended class must
  1935. % extend either the same class as the parent class helper or a subclass of it
  1936. type_e_record_helper_must_extend_same_record=04102_E_Derived record or type helper must extend "$1"
  1937. % If a record helper inherits from another record helper it must extend the same
  1938. % record that the parent record helper extended.
  1939. type_e_procedures_return_no_value=04103_E_Invalid assignment, procedures return no value
  1940. % This error occurs when one tries to assign the result of a procedure or destructor call.
  1941. % A procedure or destructor returns no value so this is not
  1942. % possible.
  1943. type_w_implicit_string_cast=04104_W_Implicit string type conversion from "$1" to "$2"
  1944. % An implicit type conversion from an ansi string type to an unicode string type is
  1945. % encountered. To avoid this warning perform an explicit type conversion.
  1946. type_w_implicit_string_cast_loss=04105_W_Implicit string type conversion with potential data loss from "$1" to "$2"
  1947. % An implicit type conversion from an unicode string type to an ansi string type is
  1948. % encountered. This conversion can lose data since not all unicode characters may be represented in the codepage of
  1949. % destination string type.
  1950. type_w_explicit_string_cast=04106_-W_Explicit string typecast from "$1" to "$2"
  1951. % An explicit typecast from an ansi string type to an unicode string type is
  1952. % encountered. This warning is off by default. You can turn it on to see all suspicious string conversions.
  1953. type_w_explicit_string_cast_loss=04107_-W_Explicit string typecast with potential data loss from "$1" to "$2"
  1954. % An explicit typecast from an unicode string type to an ansi string type is
  1955. % encountered. This conversion can lose data since not all unicode characters may be represented in the codepage of
  1956. % destination string type. This warning is off by default. You can turn it on to see all the places with lossy string
  1957. % conversions.
  1958. type_w_unicode_data_loss=04108_W_Unicode constant cast with potential data loss
  1959. % Conversion from a WideChar to AnsiChar can lose data since now all unicode characters may be represented in the current
  1960. % system codepage
  1961. % You can nest function definitions only 31 levels deep.
  1962. type_e_range_check_error_bounds=04109_E_range check error while evaluating constants ($1 must be between $2 and $3)
  1963. type_w_range_check_error_bounds=04110_W_range check error while evaluating constants ($1 must be between $2 and $3)
  1964. % The constants are outside their allowed range.
  1965. type_e_type_not_allowed_for_default=04111_E_This type is not supported for the Default() intrinsic
  1966. % Some types like for example Text and File Of X are not supported by the Default intrinsic.
  1967. type_e_java_class_method_not_static_virtual=04112_E_JVM virtual class methods cannot be static
  1968. % Virtual class methods cannot be static when targeting the JVM platform, because
  1969. % the self pointer is required for correct dispatching.
  1970. type_e_invalid_final_assignment=04113_E_Final (class) fields can only be assigned in their class' (class) constructor
  1971. % It is only possible to assign a value to a final (class) field inside a (class) constructor of its owning class.
  1972. type_e_no_managed_formal_assign_typecast=04114_E_It is not possible to typecast untyped parameters on managed platforms, simply assign a value to them instead.
  1973. % On managed platforms, untyped parameters are translated by the compiler into
  1974. % the equivalent of \var{var x: BaseClassType}. Non-class-based types passed to
  1975. % such parameters are automatically wrapped (or boxed) in a class, and after the
  1976. % call the potentially modified value is assigned back to the original variable.
  1977. % On the caller side, changing untyped var/out parameters happens by simply assigning
  1978. % values to them (either class-based or primitive ones). On the caller side,
  1979. % they will be extracted and if their type does not match the original variable's,
  1980. % an exception will be raised.
  1981. type_e_no_managed_assign_generic_typecast=04115_E_The assignment side of an expression cannot be typecasted to a supertype on managed platforms
  1982. % Managed platforms guarantee type safety at the bytecode level. This means that the virtual machine must be able
  1983. % to statically determine that no type-unsafe assignments or operations occur. By assigning a parent class type to a
  1984. % variable of a child type by typecasting the assignment side to the parent class type, the type safety would no
  1985. % longer be guaranteed and the generated code would fail verification at run time time.
  1986. type_w_interface_lower_visibility=04116_-W_The interface method "$1" raises the visibility of "$2" to public when accessed via an interface instance
  1987. type_e_interface_lower_visibility=04117_E_The interface method "$1" has a higher visibility (public) than "$2"
  1988. % All methods in an interface have always public visibility. That means that if
  1989. % an interface method is implemented using a (strict) protected or private method,
  1990. % this method is actually publicly accessible via the interface. On the JVM
  1991. % target this situation results in an error because the JVM rejects such
  1992. % attempts to circumvent the visibility rules. On other targets this is a
  1993. % warning that is disabled by default because such situations are common
  1994. % practice, but it can be enabled in case you are concerned with keeping your
  1995. % code compilable for the JVM target.
  1996. type_e_typeof_requires_vmt=04118_E_TYPEOF can only be used on object types with VMT
  1997. % Typeof() intrinsic returns pointer to VMT of its argument. It cannot be used on object types that do not have VMT.
  1998. type_e_invalid_default_value=04119_E_It is not possible to define a default value for a parameter of type "$1"
  1999. % Parameters declared as structured types, such as files, variants, non-dynamic
  2000. % arrays and TP-style objects, cannot have a default value.
  2001. type_e_type_not_allowed_for_type_helper=04120_E_Type "$1" cannot be extended by a type helper
  2002. % Types like procedural variables cannot be extended by type helpers
  2003. type_e_procedure_must_be_far=04121_E_Procedure or function must be far in order to allow taking its address: "$1"
  2004. % In certain i8086 memory models (medium, large and huge), procedures and functions
  2005. % have to be declared 'far' in order to allow their address to be taken.
  2006. type_w_instance_abstract_class=04122_W_Creating an instance of abstract class "$1"
  2007. % The specified class is declared as \var{abstract} and thus no instance of this class
  2008. % should be created. This is merely a warning for Delphi compatibility.
  2009. type_e_function_reference_kind=04123_E_Subroutine references cannot be declared as "of object" or "is nested", they can always refer to any kind of subroutine
  2010. % Subroutine references can refer to any kind of subroutine and hence do not
  2011. % require specialisation for methods or nested subroutines.
  2012. type_e_anonymous_function_unsupported=04999_E_Function references are not yet supported, only blocks (add "cdecl;" at the end)
  2013. % Remove this error message once Delphi-style anonymous are implemented. It has
  2014. % number 4999 so as not to result in a gap in the error message numbering once
  2015. % it's removed.
  2016. % \end{description}
  2017. #
  2018. # Symtable
  2019. #
  2020. # 05095 is the last used one
  2021. #
  2022. % \section{Symbol handling}
  2023. % This section lists all the messages that concern the handling of symbols.
  2024. % This means all things that have to do with procedure and variable names.
  2025. % \begin{description}
  2026. sym_e_id_not_found=05000_E_Pengenal tidak ditemukan "$1"
  2027. % Kompilator tidak mengetahui simbol ini. Biasanya terjadi ketika anda salah
  2028. % mengeja nama variabel atau prosedur, atau ketika anda lupa untuk
  2029. % mendeklarasikan variabel.
  2030. sym_f_internal_error_in_symtablestack=05001_F_Kesalahan Internal dalam SymTableStack()
  2031. % Kesalahan internal terjadi dalam kompilator; Jika anda menemukan kesalahan ini,
  2032. % silahkan hubungi para pengembang dan coba untuk menyertakan penjelasan pasti
  2033. % dari keadaan di mana kesalahan terjadi.
  2034. sym_e_duplicate_id=05002_E_Duplikasi pengenal "$1"
  2035. % Pengenal sudah dideklarasikan dalam lingkup saat ini.
  2036. sym_h_duplicate_id_where=05003_H_Pengenal sudah didefinisikan dalam $1 pada baris $2
  2037. % Pengenal sudah dideklarasikan dalam lingkup sebelumnya.
  2038. sym_e_unknown_id=05004_E_Pengenal "$1" tidak dikenal
  2039. % Pengenal ditemukan belum dideklarasikan, atai dipakai di luar lingkup
  2040. % di mana ia didefinisikan.
  2041. sym_e_forward_not_resolved=05005_E_Deklarasi fotidak memecahkan "$1"
  2042. % Ini dapat terjadi dalam dua kasus:
  2043. % \begin{itemize}
  2044. % \item Ini terjadi saat anda mendeklarasikan fungsi bagian (dalam \var{interface},
  2045. % atau dengan direktif \var{forward}, tapi tidak mengimplementasikannya.
  2046. % \item Anda mereferensi tipe yang tidak dideklarasikan dalam blok \var{type}
  2047. % saat ini.
  2048. % \end{itemize}
  2049. sym_e_error_in_type_def=05007_E_Kesalahan dalam definisi tipe
  2050. % Ada kesalahan dalam definisi anda pada tipe array baru:
  2051. % \item Salah satu pembatas jangkauan dalam deklarasi array salah.
  2052. % Sebagai contoh, \var{Array [1..1.25]} akan memicu kesalahan ini.
  2053. sym_e_forward_type_not_resolved=05009_E_Tipe forward tidak memecahkan "$1"
  2054. % Simbol forward didefinisikan, tapi tidak ada deklarasi yang ditemukan.
  2055. sym_e_only_static_in_static=05010_E_Hanya variabel statis bisa dipakai dalam metode statis atau di luar metode
  2056. % Metode statis pada obyek hanya bisa mengakses variabel statis.
  2057. sym_e_type_must_be_rec_or_object_or_class=05012_E_Record or object or class type expected
  2058. % The variable or expression isn't of the type \var{record} or \var{object} or \var{class}.
  2059. sym_e_no_instance_of_abstract_object=05013_E_Turunan kelas atau obyek dengan metode abstrak tidak dibolehkan
  2060. % Anda mencoba untuk membuat turunan kelas yang memiliki metode abstrak yang
  2061. % tidak diganti.
  2062. sym_w_label_not_defined=05014_W_Label tidak didefinisikan "$1"
  2063. % Label dideklarasikan, tapi tidak didefinisikan.
  2064. sym_e_label_used_and_not_defined=05015_E_Label dipakai tapi tidak didefinisikan "$1"
  2065. % Label dideklarasikan dan dipakai, tapi tidak didefinisikan.
  2066. sym_e_ill_label_decl=05016_E_Deklarasi label tidak benar
  2067. % Kesalahan ini seharusnya tidak pernah terjadi; ia terjadi jika label
  2068. % didefinisikan di luar prosedur atau fungsi.
  2069. sym_e_goto_and_label_not_supported=05017_E_GOTO dan LABEL tidak didukung (gunakan saklar -Sg)
  2070. % Anda harus mengompilasi program yang mempunyai pernyataan \var{label}s dan \var{goto}
  2071. % dengan saklar \var{-Sg}. Standarnya, \var{label} dan \var{goto} tidak
  2072. % didukung.
  2073. sym_e_label_not_found=05018_E_Label tidak ditemukan
  2074. % \var{goto label} ditemukan, tapi label tidak dideklarasikan.
  2075. sym_e_id_is_no_label_id=05019_E_pengenal bukan sebuah label
  2076. % Pengenal ditetapkan setelah \var{goto} bukan tipe label.
  2077. sym_e_label_already_defined=05020_E_label sudah didefinisikan
  2078. % Anda mendefinisikan label dua kali. Anda bisa mendefinisikan label hanya sekali.
  2079. sym_e_ill_type_decl_set=05021_E_deklarasi tipe tidak benar pada set elemen
  2080. % Deklarasi sebuah set berisi definisi tipe yang tidak benar.
  2081. sym_e_class_forward_not_resolved=05022_E_Definisi kelas forward tidak memecahkan "$1"
  2082. % Anda mendeklarasikan kelas, tapi anda tidak mengimplementasikannya.
  2083. sym_n_unit_not_used=05023_H_Unit "$1" tidak dipakai dalam $2
  2084. % Unit yang direferensi ulang dalam klausul \var{uses} tidak dipakai.
  2085. sym_h_para_identifier_not_used=05024_H_Parameter "$1" tidak dipakai
  2086. % Pengenal dideklarasikan (secara lokal atau global) tapi tidak dipakai
  2087. % (secara lokal atau global).
  2088. sym_n_local_identifier_not_used=05025_N_Variabel lokal "$1" tidak dipakai
  2089. % Anda telah mendeklarasikan, tapi tidak menggunakan variabel dalam implementasi
  2090. % prosedur atau fungsi.
  2091. sym_h_para_identifier_only_set=05026_H_Parameter nilai "$1" ditempati tetapi tidak dipakai
  2092. % Pengenal dideklarasikan (secara lokal atau global) dan disetel tapi tidak
  2093. % dipakai (secara lokal atau global).
  2094. sym_n_local_identifier_only_set=05027_N_Variabel lokal "$1" ditempati tapi tidak dipakai
  2095. % Implementasi variabel dalam prosedur atau fungsi dideklarasikan, disetel
  2096. % tapi tidak pernah digunakan.
  2097. sym_h_local_symbol_not_used=05028_H_Lokal $1 "$2" tidak dipakai
  2098. % Simbol lokal tidak pernah digunakan.
  2099. sym_n_private_identifier_not_used=05029_N_Field private "$1.$2" tidak pernah dipakai
  2100. % Field private didefinisikan, tapi tidak pernah dipakai dalam kode.
  2101. sym_n_private_identifier_only_set=05030_N_Field private "$1.$2" ditempati tapi tidak pernah dipakai
  2102. % Field private dideklarasikan, ditempati tapi tidak pernah dibaca.
  2103. sym_n_private_method_not_used=05031_N_Metode private "$1.$2" tidak pernah dipakai
  2104. % Metode private dideklarasikan tapi tidak pernah dipakai dalam kode.
  2105. sym_e_set_expected=05032_E_Tipe set diharapkan
  2106. % Variabel atau ekspresi bukan tipe \var{set}. Ini terjadi dalam pernyataan
  2107. % \var{in}.
  2108. sym_w_function_result_not_set=05033_W_Hasil fungsi nampaknya belum disetel
  2109. % Anda mendapatkan peringatan ini jika kompilator berpikir bahwa nilai kembalian
  2110. % fungsi tidak disetel. Ini tidak akan ditampilkan untuk prosedur assembler,
  2111. % atau prosedur yang berisi blok assembler.
  2112. sym_w_wrong_C_pack=05034_W_Tipe "$1" tidak dijajarkan dengan benar dalam record saat ini untuk C
  2113. % Array dengan ukuran tidak multipel dari 4 akan dijajarkan secara salah untuk
  2114. % struktur C.
  2115. sym_e_illegal_field=05035_E_Pengenal field record "$1" tidak dikenal
  2116. % Field tidak ada dalam definisi record/object.
  2117. sym_w_uninitialized_local_variable=05036_W_Variabel lokal "$1" nampaknya belum diinisialisasi
  2118. % Pesan ini ditampilkan jika kompilator berpikir bahwa variabel akan dipakai
  2119. % (misalnya muncul dalam ekspresi sisi-tangan-kanan) saat ia tidak
  2120. % diinisialisasi lebih dulu (misalnya muncul dalam sisi tangan-kiri pada
  2121. % penempatan)
  2122. sym_w_uninitialized_variable=05037_W_Variabel "$1" nampaknya belum diinisialisasi
  2123. % Pesan ini ditampilkan jika kompilator berpikir bahwa variabel akan dipakai
  2124. % (misalnya muncul dalam sisi tangan-kanan dari ekspresi) saat ia tidak
  2125. % diinisialisasi lebih dulu (misalnya muncul dalam sisi tangan-kiri pada
  2126. % penempatan)
  2127. sym_e_id_no_member=05038_E_pengenal idents tanpa anggota "$1"
  2128. % Kesalahan ini dibuat ketika pengenal record, field, atau metode diakses
  2129. % sementara ia tidak didefinisikan.
  2130. sym_h_param_list=05039_H_Ditemukan deklarasi: $1
  2131. % Anda mendapatkan ini ketika anda menggunakan saklar \var{-vh}. Dalam hal
  2132. % prosedur yang di-overload tidak ditemukan, maka semua kandidat prosedur yang
  2133. % di-overload didaftarkan, dengan daftar parameternya.
  2134. sym_e_segment_too_large=05040_E_Elemen data terlalu besar
  2135. % Anda mendapatkan in ketika anda mendeklarasikan elemen data yang ukurannya
  2136. % melebihi batas yang ditetapkan (2 Gb pada prosesor 80386+/68020+)
  2137. sym_e_no_matching_implementation_found=05042_E_Tidak ada implementasi yang sesuai untuk metode interface "$1" yang ditemukan
  2138. % Tidak ada metode yang sama ditemukan yang dapat mengimplementasi metode
  2139. % interface. Periksa tipe argumen dan tipe hasil pada metode.
  2140. sym_w_deprecated_symbol=05043_W_Simbol "$1" tidak dipakai lagi
  2141. % Ini berarti bahwa simbol (variabel, rutin, dll...) yang dideklarasikan
  2142. % sebagai \var{deprecated} diterbitkan. Simbol deprecated mungkin tidak lagi
  2143. % tersedia dalam versi lebih baru atas unit / librari. Penggunaan simbol
  2144. % harus dihindari sebaik mungkin.
  2145. sym_w_non_portable_symbol=05044_W_Simbol "$1" tidak portabel
  2146. % Ini berarti bahwa sebuah simbol (variabel, rutin, dll...) yang dideklarasikan
  2147. % sebagai \var{platform} dipakai. Nilai simbol ini, penggunaannya serta
  2148. % ketersediaannya adalah spesifik platform dan tidak boleh dipakai jika kode
  2149. % sumber harus portabel.
  2150. sym_w_non_implemented_symbol=05055_W_Simbol "$1" tidak diimplementasikan
  2151. % Ini berarti bahwa sebuah simbol (variabel, rutin, dll...) yang dideklarasikan
  2152. % sebagai \var{unimplemented} dipakai. Simbol ini didefinisikan, tapi belum
  2153. % diimplementasikan pada spesifik platform ini.
  2154. sym_e_cant_create_unique_type=05056_E_Tidak bisa membuat tipe unik dari tipe ini
  2155. % Hanya tipe sederhana seperti ordinal, float dan tipe string didukung ketika
  2156. % mendefinisikan ulang tipe dengan \var{type newtype = type oldtype;}.
  2157. sym_h_uninitialized_local_variable=05057_H_Variabel lokal "$1" nampaknya belum diinisialisasi
  2158. % Pesan ini ditampilkan jika kompilator berpikir bahwa variabel yang akan
  2159. % dipakai (misalnya muncul dalam sisi-tangan-kiri atas ekspresi) saat ia tidak
  2160. % diinisialisasi lebih dulu (misalnya muncul dalam sisi tangan-kiri pada
  2161. % penempatan)
  2162. sym_h_uninitialized_variable=05058_H_Variabel "$1" nampaknya tidak diinisialisasi
  2163. % Pesan ini ditampilkan jika kompilator berpikir bahwa variabel yang akan
  2164. % dipakai (misalnya muncul dalam sisi-tangan-kiri atas ekspresi) saat ia tidak
  2165. % diinisialisasi lebih dulu (misalnya muncul dalam sisi tangan-kiri pada
  2166. % penempatan)
  2167. sym_w_function_result_uninitialized=05059_W_Variabel hasil fungsi nampaknya tidak diinisialisasi
  2168. % Pesan ini ditampilkan jika kompilator berpikir bahwa variabel hasil fungsi yang
  2169. % akan dipakai (misalnya muncul dalam sisi-tangan-kiri atas ekspresi) saat ia
  2170. % tidak diinisialisasi lebih dulu (misalnya muncul dalam sisi tangan-kiri pada
  2171. % penempatan)
  2172. sym_h_function_result_uninitialized=05060_H_Variabel hasil fungsi nampaknya tidak diinisialisasi
  2173. % Pesan ini ditampilkan jika kompilator berpikir bahwa variabel hasil fungsi
  2174. % yang akan dipakai (misalnya muncul dalam sisi-tangan-kanan atas ekspresi) saat
  2175. % tidak diinisialisasi lebih dulu (misalnya muncul dalam sisi tangan-kanan pada
  2176. % penempatan)
  2177. sym_w_identifier_only_read=05061_W_Variabel "$1" dibaca tapi tida ditempati dimanapun
  2178. % Anda membaca nilai sebuah variabel, tapi tidak menempatkan nilainya ke
  2179. % manapun.
  2180. sym_h_abstract_method_list=05062_H_Ditemukan metode abstrak: $1
  2181. % Ketika mendapatkan peringatan mengenai pembentukan class/object dengan metode
  2182. % abstrak anda mendapatkan petunjuk ini untuk menemukan metode yang dipengaruhi.
  2183. % \end{description}
  2184. #
  2185. # Codegenerator
  2186. #
  2187. # 06040 is the last used one
  2188. #
  2189. % \section{Pesan pembuat kode}
  2190. % Seksi ini mendaftarkan semua pesan yang dapat ditampilkan jika generator
  2191. % kode menemukan kondisi kesalahan.
  2192. % \begin{description}
  2193. sym_w_experimental_symbol=05063_W_Symbol "$1" is experimental
  2194. % This means that a symbol (a variable, routine, etc...) which is
  2195. % declared as \var{experimental} is used. Experimental symbols
  2196. % might disappear or change semantics in future versions. Usage of this symbol
  2197. % should be avoided as much as possible.
  2198. sym_w_forward_not_resolved=05064_W_Forward declaration "$1" not resolved, assumed external
  2199. % This happens if you declare a function in the \var{interface} of a unit in macpas mode,
  2200. % but do not implement it.
  2201. sym_w_library_symbol=05065_W_Symbol "$1" is belongs to a library
  2202. % This means that a symbol (a variable, routine, etc...) which is
  2203. % declared as \var{library} is used. Library symbols may not be
  2204. % available in other libraries.
  2205. sym_w_deprecated_symbol_with_msg=05066_W_Symbol "$1" is deprecated: "$2"
  2206. % This means that a symbol (a variable, routine, etc...) which is
  2207. % declared as \var{deprecated} is used. Deprecated symbols may no longer
  2208. % be available in newer versions of the unit / library. Use of this symbol
  2209. % should be avoided as much as possible.
  2210. sym_e_no_enumerator=05067_E_Cannot find an enumerator for the type "$1"
  2211. % This means that compiler cannot find an appropriate enumerator to use in the for-in loop.
  2212. % To create an enumerator you need to define an operator enumerator or add a public or published
  2213. % GetEnumerator method to the class or object definition.
  2214. sym_e_no_enumerator_move=05068_E_Cannot find a "MoveNext" method in enumerator "$1"
  2215. % This means that compiler cannot find a public MoveNext method with the Boolean return type in
  2216. % the enumerator class or object definition.
  2217. sym_e_no_enumerator_current=05069_E_Cannot find a "Current" property in enumerator "$1"
  2218. % This means that compiler cannot find a public Current property in the enumerator class or object
  2219. % definition.
  2220. sym_e_objc_para_mismatch=05070_E_Mismatch between number of declared parameters and number of colons in message string.
  2221. % In Objective-C, a message name automatically contains as many colons as parameters.
  2222. % In order to prevent mistakes when specifying the message name in FPC, the compiler
  2223. % checks whether this is also the case here. Note that in case of messages taking a
  2224. % variable number of arguments translated to FPC via an \var{array of const} parameter,
  2225. % this final \var{array of const} parameter is not counted. Neither are the hidden
  2226. % \var{self} and \var{\_cmd} parameters.
  2227. sym_n_private_type_not_used=05071_N_Private type "$1.$2" never used
  2228. % The indicated private type is declared but is never used in the code.
  2229. sym_n_private_const_not_used=05072_N_Private const "$1.$2" never used
  2230. % The indicated private const is declared but is never used in the code.
  2231. sym_n_private_property_not_used=05073_N_Private property "$1.$2" never used
  2232. % The indicated private property is declared but is never used in the code.
  2233. sym_w_deprecated_unit=05074_W_Unit "$1" is deprecated
  2234. % This means that a unit which is
  2235. % declared as \var{deprecated} is used. Deprecated units may no longer
  2236. % be available in newer versions of the library. Use of this unit
  2237. % should be avoided as much as possible.
  2238. sym_w_deprecated_unit_with_msg=05075_W_Unit "$1" is deprecated: "$2"
  2239. % This means that a unit which is
  2240. % declared as \var{deprecated} is used. Deprecated units may no longer
  2241. % be available in newer versions of the library. Use of this unit
  2242. % should be avoided as much as possible.
  2243. sym_w_non_portable_unit=05076_W_Unit "$1" is not portable
  2244. % This means that a unit which is
  2245. % declared as \var{platform} is used. This unit use
  2246. % and availability is platform specific and should not be used
  2247. % if the source code must be portable.
  2248. sym_w_library_unit=05077_W_Unit "$1" is belongs to a library
  2249. % This means that a unit which is
  2250. % declared as \var{library} is used. Library units may not be
  2251. % available in other libraries.
  2252. sym_w_non_implemented_unit=05078_W_Unit "$1" is not implemented
  2253. % This means that a unit which is
  2254. % declared as \var{unimplemented} is used. This unit is defined,
  2255. % but is not yet implemented on this specific platform.
  2256. sym_w_experimental_unit=05079_W_Unit "$1" is experimental
  2257. % This means that a unit which is
  2258. % declared as \var{experimental} is used. Experimental units
  2259. % might disappear or change semantics in future versions. Usage of this unit
  2260. % should be avoided as much as possible.
  2261. sym_e_formal_class_not_resolved=05080_E_No complete definition of the formally declared class "$1" is in scope
  2262. % Objecive-C and Java classes can be imported formally, without using the unit in which it is fully declared.
  2263. % This enables making forward references to such classes and breaking circular dependencies amongst units.
  2264. % However, as soon as you wish to actually do something with an entity of this class type (such as
  2265. % access one of its fields, send a message to it, or use it to inherit from), the compiler requires the full definition
  2266. % of the class to be in scope.
  2267. sym_e_interprocgoto_into_init_final_code_not_allowed=05081_E_Gotos into initialization or finalization blocks of units are not allowed
  2268. % Gotos into initialization or finalization blockse of units are not allowed.
  2269. sym_e_external_class_name_mismatch1=05082_E_Invalid external name "$1" for formal class "$2"
  2270. sym_e_external_class_name_mismatch2=05083_E_Complete class definition with external name "$1" here
  2271. % When a class is declared using a formal external definition, the actual external
  2272. % definition (if any) must specify the same external name as the formal definition
  2273. % (since both definitions refer to the same actual class type).
  2274. sym_w_library_overload=05084_W_Possible library conflict: symbol "$1" from library "$2" also found in library "$3"
  2275. % Some OS do not have library specific namespaces, for those
  2276. % OS, the function declared as "external 'libname' name 'funcname'",
  2277. % the 'libname' part is only a hint, funcname might also be loaded
  2278. % by another library. This warning appears if 'funcname' is used twice
  2279. % with two different library names.
  2280. sym_e_duplicate_id_create_java_constructor=05085_E_Cannot add implicit constructor 'Create' because identifier already used by "$1"
  2281. % Java does not automatically add inherited constructors to child classes, so that they can be hidden.
  2282. % However, if a class does not explicitly declare at least one constructor, the compiler is
  2283. % required to add a public, parameterless constructor. In Java, constructors are nameless,
  2284. % but in FPC they are all called ``Create''. Therefore, if you do not add a constructor to
  2285. % a Java class and furthermore use the ``Create'' identifier for another entity (e.g., a field,
  2286. % or a parameterless method), the compiler cannot satisfy this requirement.
  2287. sym_e_no_matching_inherited_parameterless_constructor=05086_E_Cannot generate default constructor for class, because parent has no parameterless constructor
  2288. % Java does not automatically add inherited constructors to child classes, so that they can be hidden.
  2289. % However, if a class does not explicitly declare at least one constructor, the compiler is
  2290. % required to add a public, parameterless constructor. This compiler must then call
  2291. % the parameterless constructor from the parent class inside this added constructor.
  2292. % This is however impossible if the parent class does not declare such a constructor.
  2293. % In this case you must add a valid constructor yourself.
  2294. sym_d_adding_helper_for=05087_D_Adding helper for $1
  2295. % A helper for the mentioned type is added to the current scope
  2296. sym_e_param_list=05088_E_Found declaration: $1
  2297. % This message shows all overloaded declarations in case of an error.
  2298. sym_w_uninitialized_managed_local_variable=05089_W_Local variable "$1" of a managed type does not seem to be initialized
  2299. % This message is displayed if the compiler thinks that a variable will
  2300. % be used (i.e. it appears in the right-hand side of an expression) when it
  2301. % was not initialized first (i.e. appeared in the left-hand side of an
  2302. % assignment). Since the variable is managed, i. e. implicitly initialized by the compiler, this might be intended behaviour and
  2303. % does not necessarily mean that the code is wrong.
  2304. sym_w_uninitialized_managed_variable=05090_W_Variable "$1" of a managed type does not seem to be initialized
  2305. % This message is displayed if the compiler thinks that a variable will
  2306. % be used (i.e. it appears in the right-hand side of an expression) when it
  2307. % was not initialized first (i.e. appeared in the left-hand side of an
  2308. % assignment). Since the variable is managed, i. e. implicitly initialized by the compiler, this might be intended behaviour and
  2309. % does not necessarily mean that the code is wrong.
  2310. sym_h_uninitialized_managed_local_variable=05091_H_Local variable "$1" of a managed type does not seem to be initialized
  2311. % This message is displayed if the compiler thinks that a variable will
  2312. % be used (i.e. it appears in the right-hand side of an expression) when it
  2313. % was not initialized first (i.e. it did not appear in the left-hand side of an
  2314. % assignment). Since the variable is managed, i. e. implicitly initialized by the compiler, this might be intended behaviour and
  2315. % does not necessarily mean that the code is wrong.
  2316. sym_h_uninitialized_managed_variable=05092_H_Variable "$1" of a managed type does not seem to be initialized
  2317. % This message is displayed if the compiler thinks that a variable will
  2318. % be used (i.e. it appears in the right-hand side of an expression) when it
  2319. % was not initialized first (i.e. t did not appear in the left-hand side of an
  2320. % assignment). Since the variable is managed, i. e. implicitly initialized by the compiler, this might be intended behaviour and
  2321. % does not necessarily mean that the code is wrong.
  2322. sym_w_managed_function_result_uninitialized=05093_W_function result variable of a managed type does not seem to initialized
  2323. % This message is displayed if the compiler thinks that the function result
  2324. % variable will be used (i.e. it appears in the right-hand side of an expression)
  2325. % before it is initialized (i.e. before it appeared in the left-hand side of an
  2326. % assignment). Since the variable is managed, i. e. implicitly initialized by the compiler, this might be intended behaviour and
  2327. % does not necessarily mean that the code is wrong.
  2328. sym_h_managed_function_result_uninitialized=05094_H_Function result variable of a managed type does not seem to be initialized
  2329. % This message is displayed if the compiler thinks that the function result
  2330. % variable will be used (i.e. it appears in the right-hand side of an expression)
  2331. % before it is initialized (i.e. it appears in the left-hand side of an
  2332. % assignment). Since the variable is managed, i. e. implicitly initialized by the compiler, this might be intended behaviour and
  2333. % does not necessarily mean that the code is wrong.
  2334. sym_w_duplicate_id=05095_W_Duplicate identifier "$1"
  2335. % The identifier was already declared in an Objective-C category that's in the
  2336. % same scope as the current identifier. This is a warning instead of an error,
  2337. % because while this hides the identifier from the category, there are often
  2338. % many unused categories in scope.
  2339. % \end{description}
  2340. #
  2341. # Codegenerator
  2342. #
  2343. # 06049 is the last used one
  2344. #
  2345. % \section{Code generator messages}
  2346. % This section lists all messages that can be displayed if the code
  2347. % generator encounters an error condition.
  2348. % \begin{description}
  2349. cg_e_parasize_too_big=06009_E_Ukuran daftar parameter melebihi 65535 byte
  2350. % Prosesor I386 membatasi daftar parameter ke 65535 byte (instruksi \var{RET}
  2351. % menyebabkan ini)
  2352. cg_e_file_must_call_by_reference=06012_E_Tipe file harus parameter var
  2353. % Anda tidak bisa menetapkan file sebagai parameter nilai, misalnya ia harus
  2354. % selalu dideklarasikan parameter \var{var}.
  2355. cg_e_cant_use_far_pointer_there=06013_E_Penggunaan pointer far tidak dibolehkan di sini
  2356. % Free Pascal tidak mendukung pointer far, maka anda tidak bisa mengambil alamat
  2357. % sebuah ekspresi yang memiliki referensi far sebagai hasil. Konstruksi \var{mem}
  2358. % mempunyai referensi far sebagai hasil, maka kode berikut akan menghasilkan
  2359. % kesalahan ini:
  2360. % \begin{verbatim}
  2361. % var p : pointer;
  2362. % ...
  2363. % p:=@mem[a000:000];
  2364. % \end{verbatim}
  2365. cg_e_dont_call_exported_direct=06015_E_Fungsi yang dideklarasikan EXPORT tidak bisa dipanggil
  2366. % Tidak dipakai lagi.
  2367. cg_w_member_cd_call_from_method=06016_W_Kemungkinan tidak benar pemanggilan atas constructor atau destructor
  2368. % Kompilator mendeteksi bahwa constructor atau destructor dipanggil di dalam
  2369. % sebuah metode. Ini mungkin akan menimbulkan masalah, karena constructors/
  2370. % destructors memerlukan parameter saat masuk.
  2371. cg_n_inefficient_code=06017_N_Kode tidak efisien
  2372. % Pernyataan anda nampaknya diragukan oleh kompilator.
  2373. cg_w_unreachable_code=06018_W_Kode tidak bisa dicapai
  2374. % Anda menetapkan sebuah konstruksi yang tidak akan pernah dieksekusi. Contoh:
  2375. % \begin{verbatim}
  2376. % while false do
  2377. % begin
  2378. % {.. code ...}
  2379. % end;
  2380. % \end{verbatim}
  2381. cg_e_cant_call_abstract_method=06020_E_Metode abstrak tidak bisa dipanggil secara langsung
  2382. % Anda tidak bisa memanggil metode abstrak secara langsung, sebaliknya anda
  2383. % harus memanggil metode anak penggantinya, karena metode abstrak tidak diterapkan.
  2384. cg_d_register_weight=06027_DL_Register $1 bobot $2 $3
  2385. % Pesan debug. Ditampilkan saat kompilator menganggap variabel untuk dipelihara
  2386. % dalam register.
  2387. cg_d_stackframe_omited=06029_DL_Bingkai stack diabaikan
  2388. % Beberapa prosedur/fungsi tidak memerlukan bingkai stack lengkap, maka ia
  2389. % diabaikan. Pesan ini akan ditampilkan saat saklar {-vd} dipakai.
  2390. cg_e_unable_inline_object_methods=06031_E_Metode obyek atau kelas tidak bisa inline.
  2391. % Anda tidak bisa mempunyai metode obyek inlined.
  2392. cg_e_unable_inline_procvar=06032_E_Pemanggilan procvar tidak dalam inline.
  2393. % Prosedur dengan pemanggilan variabel prosedural tidak bisa disejajarkan.
  2394. cg_e_no_code_for_inline_stored=06033_E_Tidak ada kode untuk prosedur inline tersimpan
  2395. % Kompilator tidak bisa menyimpan kode untuk prosedur inline.
  2396. cg_e_can_access_element_zero=06035_E_Elemen nol dari ansi/wide- atau longstring tidak dapat diakses, sebaiknya gunakan (set)length
  2397. % Anda harus menggunakan \var{setlength} untuk menyetel panjang ansi/wide/longstring
  2398. % dan \var{length} untuk mendapatkan panjang dari tipe string tersebut
  2399. cg_e_cannot_call_cons_dest_inside_with=06037_E_Konstruktor atau Destruktor tidak bisa dipanggil di dalam klausul 'with'
  2400. % Di dalam klausul \var{with} anda tidak dapat memanggil sebuah konstruktor
  2401. % atau destruktor untuk obyek yang anda miliki dalam klausul \var{with}.
  2402. cg_e_cannot_call_message_direct=06038_E_Tidak bisa memanggil metode pengendali pesan secara langsung
  2403. % Pengendali metode pesan tidak bisa dipanggil secara langsung jika ia berisi
  2404. % argumen self eksplisit
  2405. cg_e_goto_inout_of_exception_block=06039_E_Lompat masuk atau keluar blok eksepsi
  2406. % Tidak dibolehkan untuk melompat masuk atau keluar dari blok eksepsi seperti \var{try..finally..end;}:
  2407. % \begin{verbatim}
  2408. % label 1;
  2409. %
  2410. % ...
  2411. %
  2412. % try
  2413. % if not(final) then
  2414. % goto 1; // baris ini akan menimbulkan kesalahan
  2415. % finally
  2416. % ...
  2417. % end;
  2418. % 1:
  2419. % ...
  2420. % \end{verbatim}
  2421. cg_e_control_flow_outside_finally=06040_E_Pernyataan alur kontrol tidak dibolehkan dalam blok finally
  2422. % Tidak dibolehkan untuk menggunakan pernyataan alur kontrol \var{break},
  2423. % \var{continue} dan \var{exit}
  2424. % di dalam pernyataan finally. Contoh berikut menampilkan masalah ini:
  2425. % \begin{verbatim}
  2426. % ...
  2427. % try
  2428. % p;
  2429. % finally
  2430. % ...
  2431. % exit; // Exit ini TIDAK diperbolehkan
  2432. % end;
  2433. % ...
  2434. %
  2435. % \end{verbatim}
  2436. % Jika prosedur \var{p} memunculkan eksepsi blok finally dijalankan. Jika
  2437. % eksekusi mencapai exit, tidak jelas apa yang dilakukan:
  2438. % keluar prosedur, atau mencari pengendali eksepsi yang lain
  2439. cg_w_parasize_too_big=06041_W_Ukuran parameters melebihi batas cpu tertentu
  2440. % Ini menunjukan bahwa anda mendeklarasikan lebih dari 64K parameter, yang
  2441. % mungkin tidak didukung pada prosesor target.
  2442. cg_w_localsize_too_big=06042_W_Ukuran variabel lokal melebihi batas untuk cpu tertetnu
  2443. % Ini menunjukan bahwa anda mendeklarasikan lebih dari 32K varbael lokal, yang
  2444. % mungkin tidak didukung pada prosesor target.
  2445. cg_e_localsize_too_big=06043_E_Ukuran variabel lokal melebihi batas yang didukung
  2446. % Ini menunjukan bahwa anda mendeklarasikan lebih dari 32K variabel lokal, yang
  2447. % tidak didukung oleh prosesor ini.
  2448. cg_e_break_not_allowed=06044_E_BREAK tidak diperbolehkan
  2449. % Anda mencoba untuk menggunakan \var{break} di luar konstruksi loop.
  2450. cg_e_continue_not_allowed=06045_E_CONTINUE tidak diperbolehkan
  2451. % Anda mencoba untuk menggunakan \var{continue} di luar konstruksi loop.
  2452. cg_f_unknown_compilerproc=06046_F_Tidak dikenal compilerproc "$1". Periksa apakah anda menggunakan run time library yang benar.
  2453. % Kompilator mengharapkan bahwa runtime library berisi subrutin tertentu. Jika
  2454. % anda melihat kesalahan ini dan anda tidak mengubah kode runtime library,
  2455. % nampaknya runtime library yang anda pakai tidak sesuai dengan kompilator.
  2456. % Jika anda mengubah runtime library kesalahan ini berarti bahwa anda
  2457. % menghapus subrutin yang diperlukan kompilator untuk pemakaian internalnya.
  2458. cg_f_unknown_system_type=06047_F_Tidak bisa menemukan tipe sistem "$1". Periksa apakah anda menggunakan run time library yang benar.
  2459. % Kompilator mengharapkan bahwa runtime library berisi definisi tipe tertentu.
  2460. % Jika anda melihat kesalahan ini dan anda tidak mengubah kode runtime library,
  2461. % nampaknya runtime library yang anda pakai tidak sesuai dengan kompilator.
  2462. % Jika anda mengubah runtime library kesalahan ini berarti bahwa anda
  2463. % menghapus subrutin yang diperlukan kompilator untuk pemakaian internalnya.
  2464. cg_h_inherited_ignored=06048_H_Pemanggilan turunan ke metode abstrak diabaikan
  2465. % Pesan ini hanya muncul dalam mode Delphi ketika anda memanggil metode abstract
  2466. % dari kelas leluhur via \var{inherited;}. Pemanggilan in kemudian diabaikan.
  2467. % \end{description}
  2468. # EndOfTeX
  2469. #
  2470. # Assembler reader
  2471. #
  2472. # 07105 is the last used one
  2473. #
  2474. cg_e_goto_label_not_found=06049_E_Goto label "$1" not defined or optimized away
  2475. % The label used in the goto definition is not defined or optimized away by the
  2476. % unreachable code elemination.
  2477. cg_f_unknown_type_in_unit=06050_F_Cannot find type "$1" in unit "$2". Check if you use the correct run time library.
  2478. % The compiler expects that the runtime library contains certain type definitions. If you see this error
  2479. % and you didn't change the runtime library code, it's very likely that the runtime library
  2480. % you're using doesn't match the compiler in use. If you changed the runtime library this error means
  2481. % that you removed a type which the compiler needs for internal use.
  2482. cg_e_interprocedural_goto_only_to_outer_scope_allowed=06051_E_Interprocedural gotos are allowed only to outer subroutines
  2483. % Gotos between subroutines are only allowed if the goto jumps from an inner to an outer subroutine or
  2484. % from a subroutine to the main program
  2485. cg_e_labels_cannot_defined_outside_declaration_scope=06052_E_Label must be defined in the same scope as it is declared
  2486. % In ISO mode, labels must be defined in the same scope as they are declared.
  2487. cg_e_goto_across_procedures_with_exceptions_not_allowed=06053_E_Leaving procedures containing explicit or implicit exceptions frames using goto is not allowed
  2488. % Non-local gotos might not be used to leave procedures using exceptions either implicitly or explicitly. Procedures
  2489. % which use automated types like ansistrings or class constructurs are affected by this too.
  2490. cg_e_mod_only_defined_for_pos_quotient=06054_E_In ISO mode, the mod operator is defined only for positive quotient
  2491. % In ISO pascal, only positive values are allowed for the quotient: \var{n mod m} is only valid if \var{m>0}.
  2492. cg_d_autoinlining=06055_DL_Auto inlining: $1
  2493. % Due to auto inlining turned on, the compiler auto inlines this subroutine.
  2494. cg_e_function_not_support_by_selected_instruction_set=06056_E_The function used, is not supported by the selected instruction set: $1
  2495. % Some functions cannot be implemented efficiently for certain instruction sets, one example is fused multiply/add.
  2496. % To avoid very inefficient code, the compiler complains in this case, so either select another instruction set
  2497. % or replace the function call by alternative code
  2498. cg_f_max_units_reached=06057_F_Maximum number of units ($1) reached for the current target
  2499. % Depending of target architecture, the number of units is limited. This limit
  2500. % has been reached. A unit counts only if it contains initialization or finalization count.
  2501. %
  2502. % \end{description}
  2503. # EndOfTeX
  2504. #
  2505. # Assembler reader
  2506. #
  2507. # 07125 is the last used one
  2508. #
  2509. asmr_d_start_reading=07000_DL_Mulai penguraian assembler gaya $1
  2510. % Ini memberitahu anda bahwa blok assembler sedang diuraikan
  2511. asmr_d_finish_reading=07001_DL_Selesasi penguraian assembler gaya $1
  2512. % Ini memberitahu anda bahwa blok assembler sudah selesai.
  2513. asmr_e_none_label_contain_at=07002_E_Pola non-label berisi @
  2514. % Pembeda yang bukan label tidak bisa berisi sebuah @.
  2515. asmr_e_building_record_offset=07004_E_Kesalahan pembangunan ofset record
  2516. % Terjadi kesalahan saat membangun ofset struktur record/object,
  2517. % ini bisa terjadi ketika tidak ada field yang ditetapkan sama sekali
  2518. % atau pembeda field yang dipakai tidak dikenal.
  2519. asmr_e_offset_without_identifier=07005_E_OFFSET dipakai tanpa pembeda
  2520. % Abda hanya bisa menggunakan OFFSET dengan sebuah pembeda. Sintaks lain tidak
  2521. % didukung
  2522. asmr_e_type_without_identifier=07006_E_TYPE dipakai tanpa pembeda
  2523. % Anda hanya bisa menggunakan TYPE dengan sebuah pembeda. Sintaks lain tidak
  2524. % didukung
  2525. asmr_e_no_local_or_para_allowed=07007_E_Tidak bisa menggunakan variabel lokal atau parameters di sini
  2526. % Anda tidak dapat menggunakan variabel lokal atau parameter di sini, karena
  2527. % pengalamatan lokal dan parameter dikerjakan menggunakan bingkai register pointer
  2528. % agar alamat tidak bisa diperoleh secara langsung.
  2529. asmr_e_need_offset=07008_E_perlu memakai OFFSET di sini
  2530. % Anda perlu menggunakan OFFSET <id> di sini untuk mendapatkan alamat pengenal.
  2531. asmr_e_need_dollar=07009_E_perlu memakai $ di sini
  2532. % Anda perlu menggunakan $<id> di sini untuk mendapatkan alamat pengenal.
  2533. asmr_e_cant_have_multiple_relocatable_symbols=07010_E_Tidak bisa menggunakan multipel simbol relocatable
  2534. % Anda tidak bisa mempunyai lebih dari satu simbol relocatable (variabel/konstan type)
  2535. % dalam satu argumen.
  2536. asmr_e_only_add_relocatable_symbol=07011_E_Simbol relocatable hanya dapat ditambahkan
  2537. % Simbol relocatable (variabel/konstan type) tidak bisa dipakai dengan operator
  2538. % lain. Hanya tambahan yang dibolehkan.
  2539. asmr_e_invalid_constant_expression=07012_E_Ekspresi konstan tidak benar
  2540. % Ada kesalahan dalam ekspresi konstan.
  2541. asmr_e_relocatable_symbol_not_allowed=07013_E_Simbol relocatable tidak dibolehkan
  2542. % Anda tidak bisa menggunakan simbol relocatable (variabel/konstan type) di sini.
  2543. asmr_e_invalid_reference_syntax=07014_E_Sintaks referensi tidak benar
  2544. % Ada kesalahan dalam referensi.
  2545. asmr_e_local_para_unreachable=07015_E_Anda tidak dapat mencapai $1 dari kode itu
  2546. % Anda tidak dapat membaca secara langsung nilai variabel lokal atau parameter
  2547. % dari tingkat prosedur lebih tinggi dalam kode assembler (kecuali untuk kode
  2548. % assembler lokal tanpa parameter maupun local).
  2549. asmr_e_local_label_not_allowed_as_ref=07016_E_Simbol local/label tidak dibolehkan sebagai referensi
  2550. % Anda tidak bisa menggunakan simbol lokal/label sebagai referensi
  2551. asmr_e_wrong_base_index=07017_E_Penggunaan basis dan indeks register tidak benar
  2552. % Ada kesalahan dengan base dan index register, keduanya mungkin
  2553. % tidak benar
  2554. asmr_w_possible_object_field_bug=07018_W_Kemungkinan kesalahan dalam penanganan field obyek
  2555. % Field obyek atau kelas dapat dicapai secara langsung dalam mode normal atau
  2556. % objfpc tapi mode TP dan Delphi memperlakukan nama field sebagai ofset sederhana.
  2557. asmr_e_wrong_scale_factor=07019_E_Faktor skala yang ditetapkan salah
  2558. % Faktor skala yang diberikan salah, hanya 1,2,4 dan 8 yang dibolehkan
  2559. asmr_e_multiple_index=07020_E_Penggunaan multipel indeks register
  2560. % Anda mencoba menggunakan lebih dari satu indeks register
  2561. asmr_e_invalid_operand_type=07021_E_Tipe operand tidak benar
  2562. % Tipe operand tidak sama dengan opcode yang dipakai
  2563. asmr_e_invalid_string_as_opcode_operand=07022_E_String sebagai opcode operand tidak benar: $1
  2564. % String yang ditetapkan sebagai operand tidak sama dengan opcode ini
  2565. asmr_w_CODE_and_DATA_not_supported=07023_W_@CODE dan @DATA tidak didukung
  2566. % @CODE dan @DATA tidak didukung dan diabaikan.
  2567. asmr_e_null_label_ref_not_allowed=07024_E_Referensi label null tidak dibolehkan
  2568. asmr_e_expr_zero_divide=07025_E_Pembagian dengan nol dalam evaluator asm
  2569. % Ada pembagian dengan nol dalam ekspresi konstan
  2570. asmr_e_expr_illegal=07026_E_Ekspresi tidak benar
  2571. % Ada ekspresi tidak benar dalam ekspresi konstan
  2572. asmr_e_escape_seq_ignored=07027_E_urutan escape diabaikan: $1
  2573. % Ada string bergaya-C, tapi urutan escape dalam string tidak dikenal,
  2574. % dan karenanya diabaikan
  2575. asmr_e_invalid_symbol_ref=07028_E_Referensi simbol tidak benar
  2576. asmr_w_fwait_emu_prob=07029_W_Fwait dapat menyebabkan masalah emulasi dengan emu387
  2577. asmr_w_fadd_to_faddp=07030_W_$1 tanpa operand diterjemahkan menjadi $1P
  2578. asmr_w_enter_not_supported_by_linux=07031_W_Instruksi ENTER tidak didukung oleh Linux kernel
  2579. % Instruksi ENTER dapat membuat kesalahan halaman stack yang tidak ditangkap
  2580. % dengan benar oleh pengendali halaman i386 Linux.
  2581. asmr_w_calling_overload_func=07032_W_Pemanggilan fungsi overload dalam assembler
  2582. % Ada panggilan ke metode yang di-overload dalam blok assembler, ini dapat
  2583. % menjadi tanda di sana ada masalah
  2584. asmr_e_unsupported_symbol_type=07033_E_Tipe simbol untuk operand tidak didukung
  2585. asmr_e_constant_out_of_bounds=07034_E_Nilai konstan di luar jangkauan
  2586. asmr_e_error_converting_decimal=07035_E_Kesalahan konversi desimal $1
  2587. % Nilai konstan desimal tidak memiliki sintaks yang benar
  2588. asmr_e_error_converting_octal=07036_E_Kesalahan konversi oktal $1
  2589. % Nilai konstan oktal tidak memiliki sintaks yang benar
  2590. asmr_e_error_converting_binary=07037_E_Kesalahan konversi biner $1
  2591. % Nilai konstan biner tidak memiliki sintaks yang benar
  2592. asmr_e_error_converting_hexadecimal=07038_E_Kesalahan konversi heksadesimal $1
  2593. % Nilai konstan heksadesimal tidak memiliki sintaks yang benar
  2594. asmr_h_direct_global_to_mangled=07039_H_$1 diterjemahkan menjadi $2
  2595. asmr_w_direct_global_is_overloaded_func=07040_W_$1 dikaitkan ke fungsi yang di-overload
  2596. asmr_e_cannot_use_SELF_outside_a_method=07041_E_Tidak bisa menggunakan SELF di luar metode
  2597. % Ada referensi ke simbol \var{self} sementara ia tidak diijinkan.
  2598. % \var{self} hanya bisa direferensi di dalam metode
  2599. asmr_e_cannot_use_OLDEBP_outside_nested_procedure=07042_E_Tidak bisa menggunakan OLDEBP di luar prosedure yang diulang
  2600. % Ada referensi ke simbol \var{oldebp} sementara ia tidak diijinkan.
  2601. % \var{oldebp} hanya bisa direferensi di dalam rutin yang diulang
  2602. asmr_e_void_function=07043_W_Prosedure tidak bisa mengembalikan setiap nilai dalam kode asm
  2603. % Mencoba untuk mengembalikan nilai saat dalam sebuah prosedur. Sebuah prosedur
  2604. % tidak mempunyai nilai balik
  2605. asmr_e_SEG_not_supported=07044_E_SEG tidak didukung
  2606. asmr_e_size_suffix_and_dest_dont_match=07045_E_Ukuran sufiks dan tujuan atau sumber tidak sama
  2607. % Ukuran register dan sufiks ukuran opcode tidak sama. Ini mungkin kesalahan
  2608. % dalam pernyataan assembler
  2609. asmr_w_size_suffix_and_dest_dont_match=07046_W_Ukuran sufiks dan tujuan atau sumber tidak sama
  2610. % Ukuran register dan sufiks ukuran opcode tidak sama. Ini mungkin kesalahan
  2611. % dalam pernyataan assembler
  2612. asmr_e_syntax_error=07047_E_Sintaks assembler salah
  2613. % Ada kesalahan dalam sintaks assembler
  2614. asmr_e_invalid_opcode_and_operand=07048_E_Kombinasi opcode dan operand tidak benar
  2615. % Opcode tidak bisa dipakai dengan tipe operand ini
  2616. asmr_e_syn_operand=07049_E_Sintaks assembler salah dalam operand
  2617. asmr_e_syn_constant=07050_E_Kesalahan sintaks assembler dalam konstan
  2618. asmr_e_invalid_string_expression=07051_E_Ekspresi String tidak benar
  2619. asmr_w_const32bit_for_address=07052_W_konstan dengan simbol $1 untuk alamat yang tidak pada pointer
  2620. % Ekspresi konstan mewakili alamat yang tidak sesuai ke dalam sebuah pointer.
  2621. % Alamat mungkin tidak benar
  2622. asmr_e_unknown_opcode=07053_E_Opcode $1 tidak dikenal
  2623. % Opcode ini tidak dikenal
  2624. asmr_e_invalid_or_missing_opcode=07054_E_Tidak benar atau opcode hilang
  2625. asmr_e_invalid_prefix_and_opcode=07055_E_Kombinasi prefiks dan opcode tidak benar: $1
  2626. asmr_e_invalid_override_and_opcode=07056_E_Kombinasi override dan opcode tidak benar: $1
  2627. asmr_e_too_many_operands=07057_E_Terlalu banyak operand pada baris
  2628. % Ada terlalu banyak operand untuk opcode ini. Periksa sintaks assembler
  2629. % anda
  2630. asmr_w_near_ignored=07058_W_NEAR diabaikan
  2631. asmr_w_far_ignored=07059_W_FAR diabaikan
  2632. asmr_e_dup_local_sym=07060_E_Duplikasi simbol lokal $1
  2633. asmr_e_unknown_local_sym=07061_E_Simbol lokal $1 tidak didefinisikan
  2634. asmr_e_unknown_label_identifier=07062_E_Pengenal label tidak dikenal $1
  2635. asmr_e_invalid_register=07063_E_Nama register tidak benar
  2636. % Ada nama register tidak dikenal yang dipakai sebagai operand.
  2637. asmr_e_invalid_fpu_register=07064_E_Nama register floating point tidak benar
  2638. % Ada nama register tidak dikenal yang dipakai sebagai operand.
  2639. asmr_w_modulo_not_supported=07066_W_Modulo tidak didukung
  2640. asmr_e_invalid_float_const=07067_E_Konstan floating point $1 tidak benar
  2641. % Konstan floating point yang dideklarasikan dalam blok assembler tidak
  2642. % benar.
  2643. asmr_e_invalid_float_expr=07068_E_Ekspresi floating point tidak benar
  2644. % Ekspresi floating point yang dideklarasikan dalam blok assembler tidak
  2645. % benar.
  2646. asmr_e_wrong_sym_type=07069_E_Tipe simbol salah
  2647. asmr_e_cannot_index_relative_var=07070_E_Tidak bisa mengindeks var lokal atau parameter dengan register
  2648. % Mencoba untuk mengindeks menggunakan basis register simbol yang sudah relatif
  2649. % bagi register. Ini tidak mungkin, dan mungkin akan membawa kerusakan.
  2650. asmr_e_invalid_seg_override=07071_E_Ekspresi penggantian segmen tidak benar
  2651. asmr_w_id_supposed_external=07072_W_Pengenal $1 dianggap eksternal
  2652. % Ada referensi ke simbol yang tidak didefinisikan. Ini tidak menghasilkan
  2653. % kesalahan, karena simbol mungkin eksternal, tapi dapat menyebabkan masalah
  2654. % saat waktu link jika simbol tidak didefinisikan dimanapun.
  2655. asmr_e_string_not_allowed_as_const=07073_E_String tidak diijinkan sebagai konstan
  2656. % String karakter tidak dibolehkan sebagai konstan.
  2657. asmr_e_no_var_type_specified=07074_Tidak ada tipe variabel yang ditetapkan
  2658. % Sintaks mengharapkan tipe pengenal setelah titik, tapi tidak menemukan
  2659. % apapun.
  2660. asmr_w_assembler_code_not_returned_to_text=07075_E_kode assembler tidak dikembaliken ke seksi text
  2661. % Ada direktif dalam blok assembler untuk mengubah seksi, tapi di sana
  2662. % ada kekuarangan untuk ke seksi text di akhir blok assembler. Ini dapat
  2663. % menyebabkan kesalahan selama waktu link.
  2664. asmr_e_not_directive_or_local_symbol=07076_E_Bukan direktif atau simbol lokal $1
  2665. % Simbol ini tidak dikenal.
  2666. asmr_w_using_defined_as_local=07077_E_Menggunakan nama yang didefinisikan sebagai label lokal
  2667. asmr_e_dollar_without_identifier=07078_E_Token dolar dipakai tanpa sebuah pengenal
  2668. % Ekspresi konstan memiliki pengenal yang tidak diawali dengan simbol $
  2669. asmr_w_32bit_const_for_address=07079_W_Konstan 32bit dibuat untuk alamat
  2670. % Konstan dipakai sebagai alamat. Ini mungkin kesalahan karena menggunakan
  2671. % alamat absolut yang mungkin tidak akan bekerja.
  2672. asmr_n_align_is_target_specific=07080_N_.align adalah spesifik target, gunakan .balign atau .p2align
  2673. % Menggunakan direktif .align adalah spesifik platform, dan artinya akan
  2674. % berlainan dari satu platform ke yang lainnya.
  2675. asmr_e_cannot_access_field_directly_for_parameters=07081_E_Tidak bisa mengakses field secara langsung untuk parameter
  2676. % Anda harus mengambil parameter lebih duku ke dalam register dan kemudian
  2677. % mengakses field menggunakan register itu.
  2678. asmr_e_cannot_access_object_field_directly=07082_E_Tidak bisa mengakses field dari obyek/kelas secara langsung
  2679. % Anda harus mengambil pointer self lebih dulu ke dalam register dan mengakses
  2680. % field menggunakan register sebagai basis. Standarnya pointer self tersedia
  2681. % dalam register esi pada i386.
  2682. asmr_e_unable_to_determine_reference_size=07083_E_Tidak ada ukuran yang ditetapkan dan tidak bisa menentukan besar operand
  2683. % Anda harus menetapkan secara eksplisit ukuran untuk referensi, karena kompilator
  2684. % tidak bisa menentukan ukuran apa (byte, word, dword, dll) ia harus dipakai
  2685. % untuk referensi.
  2686. asmr_e_cannot_use_RESULT_here=07084_E_Tidak bisa menggunakan RESULT dalam fungsi ini
  2687. % Beberapa fungsi yang mengembalikan tipe kompleks tidak bisa menggunakan kata
  2688. % kunci \var{result}.
  2689. asmr_w_adding_explicit_args_fXX=07086_W_"$1" tanpa operand yang diterjemahkan ke dalam "$1 %st,%st(1)"
  2690. asmr_w_adding_explicit_first_arg_fXX=07087_W_"$1 %st(n)" diterjemahkan ke dalam "$1 %st,%st(n)"
  2691. asmr_w_adding_explicit_second_arg_fXX=07088_W_"$1 %st(n)" diterjemahkan ke dalam "$1 %st(n),%st"
  2692. asmr_e_invalid_char_smaller=07089_E_Char < tidak dibolehkan di sini
  2693. % Operator shift memerlukan karakter <<. Hanya salah satu dari karakter itu
  2694. % yang ditemukan.
  2695. asmr_e_invalid_char_greater=07090_E_Char > tidak dibolehkan di sini
  2696. % Operator shift memerlukan karakter >>. Hanya salah satu dari karakter itu
  2697. % yang ditemukan.
  2698. asmr_w_align_not_supported=07093_W_ALIGN tidak didukung
  2699. asmr_e_no_inc_and_dec_together=07094_E_Inc dan Dec tidak bisa bersamaan
  2700. % Mencoba untuk menggunakan increment dan decrement di dalam opcode yang sama
  2701. % pada 680x0. Ini tidak mungkin.
  2702. asmr_e_invalid_reg_list_in_movem=07095_E_reglist untuk movem tidak benar
  2703. % Mencoba untuk menggunakan opcode \var{movem} dengan register yang tidak
  2704. % benar untuk menyimpan dan mengembalikan.
  2705. asmr_e_invalid_reg_list_for_opcode=07096_E_Reglist tidak benar untuk opcode
  2706. asmr_e_higher_cpu_mode_required=07097_E_Mode cpu lebih tinggi diperlukan ($1)
  2707. % Mencoba untuk menggunakan instruksi yang tidak didukung dalam mode cpu saat
  2708. % ini. Gunakan pembuatan cpu lebih tinggi agar bisa menggunakan opcode ini
  2709. % dalam blok assembler anda
  2710. asmr_w_unable_to_determine_reference_size_using_dword=07098_W_Tidak ada ukuran yang ditetapkan dan tidak bisa menentukan besar operands, menggunakan DWORD sebagai standar
  2711. % Anda harus menetapkan secara eksplisit ukuran untuk referensi, karena
  2712. % kompilator tidak dapat menentukan ukuran apa (byte, word, dword, dll)
  2713. % yang harus dipakai untuk referensi. Peringatan ini hanya dipakai dalam mode
  2714. % Delphi di mana ia kembali menggunakan DWORD sebagai standar.
  2715. asmr_e_illegal_shifterop_syntax=07099_E_Kesalahan sintaks saat mencoba mengurai shifter operand
  2716. % Hanya ARM; ARM assembler mendukung apa yang disebut shifter operand. Sintaks
  2717. % yang dipakai bukan shifter operand yang benar. Contoh untuk operasi dengan shifter operand:
  2718. % \begin{verbatim}
  2719. % asm
  2720. % orr r2,r2,r2,lsl #8
  2721. % end;
  2722. % \end{verbatim}
  2723. asmr_e_packed_element=07100_E_Alamat komponen yang di-packed tidak pada batasan byte
  2724. % Komponen yang di-packed (field record dan elemen array) dapat dimulai pada bit
  2725. % mana saja di dalam sebuah byte. Pada CPU yang tidak mendukung memori
  2726. % dialamatkan-bit (yang menyertakan semua CPU yang didukung oleh FPC saat ini) anda akan
  2727. % mendapatkan pesan kesalahan saat mencoba untuk mengindeks arrays dengan elemen
  2728. % yang ukurannya bukan multipel dari 8 bit. Hal yang sama untuk mengakses field record
  2729. % dengan alamat demikian dengan multipel dari 8 bit.
  2730. asmr_w_unable_to_determine_reference_size_using_byte=07101_W_Ukuran tidak ditetapkan dan tidak bisa menentukan besar dari operand, menggunakan BYTE sebagai standar
  2731. % Anda harus menetapkan secara eksplisit ukuran untuk referensi, karena
  2732. % kompilator tidak dapat menentukan ukuran apa (byte, word, dword, dll)
  2733. % yang harus dipakai untuk referensi. Peringatan ini hanya dipakai dalam mode
  2734. % Delphi di mana ia kembali menggunakan BYTE sebagai standar.
  2735. asmr_w_no_direct_ebp_for_parameter=07102_W_Penggunaan +offset(%ebp) untuk parameter di sini tidak benar
  2736. % Menggunakan referensi 8(%ebp) langsung untuk parameter fungsi/prosedur tidak
  2737. % benar jika parameter ada dalam register.
  2738. asmr_w_direct_ebp_for_parameter_regcall=07103_W_Penggunaan +offset(%ebp) tidak kompatibel dengan konvensi regcall
  2739. % Menggunakan referensi 8(%ebp) langsung untuk parameter fungsi/prosedur tidak
  2740. % benar jika parameter ada dalam register.
  2741. asmr_w_direct_ebp_neg_offset=07104_W_Penggunaan -offset(%ebp) tidak direkomendasikan untuk akses variabel lokal
  2742. % Menggunakan -8(%ebp) untuk mengakses variabel lokal tidak direkomendasikan
  2743. asmr_w_direct_esp_neg_offset=07105_W_Penggunaan -offset(%esp), akses dapat menyebabkan kerusakan atau nilai bisa hilang
  2744. % Menggunakan -8(%esp) untuk mengakses stack lokal tidak direkomendasikan karena
  2745. % bagian stack ini dapat diganti oleh setiap panggilan fungsi atau interrupt.
  2746. asmr_e_no_vmtoffset_possible=07106_E_VMTOffset harus dipakai dalam kombinasi dengan metode virtual, dan "$1" bukanlah virtual
  2747. %
  2748. #
  2749. # Assembler/binary writers
  2750. #
  2751. # 08018 is the last used one
  2752. #
  2753. asmr_e_need_pic_ref=07107_E_Generating PIC, but reference is not PIC-safe
  2754. % The compiler has been configured to generate position-independent code
  2755. % (PIC), but there are position-dependent references in the current
  2756. % handwritten assembler instruction.
  2757. asmr_e_mixing_regtypes=07108_E_All registers in a register set must be of the same kind and width
  2758. % Instructions on the ARM architecture that take a register set as argument require that all registers
  2759. % in this set are of the same kind (e.g., integer, vfp) and width (e.g., single precision, double precision).
  2760. asmr_e_empty_regset=07109_E_A register set cannot be empty
  2761. % Instructions on the ARM architecture that take a register set as argument require that such a set
  2762. % contains at least one register.
  2763. asmr_w_useless_got_for_local=07110_W_@GOTPCREL is useless and potentially dangerous for local symbols
  2764. % The use of @GOTPCREL supposes an extra indirection that is
  2765. % not present if the symbol is local, which might lead to wrong assembler code
  2766. asmr_w_general_segment_with_constant=07111_W_Constant with general purpose segment register
  2767. % General purpose register should not have constant offsets
  2768. % as OS memory allocation might not be compatible with that.
  2769. asmr_e_bad_seh_directive_offset=07112_E_Invalid offset value for $1
  2770. % Win64 SEH directives have certain restrictions on possible offset values, e.g. they should
  2771. % be positive and have 3 or 4 low bits clear.
  2772. asmr_e_bad_seh_directive_register=07113_E_Invalid register for $1
  2773. % Win64 SEH directives accept only 64-bit integer registers or XMM registers.
  2774. asmr_e_seh_in_pure_asm_only=07114_E_SEH directives are allowed only in pure assembler procedures
  2775. % Win64 SEH directives are allowed only in pure assembler procedures, not in assembler
  2776. % blocks of regular procedures.
  2777. asmr_e_unsupported_directive=07115_E_Directive "$1" is not supported for the current target
  2778. asmr_e_complex_function_result_location=07116_E_This function's result location cannot be encoded directly in a single operand when "nostackframe" is used
  2779. % Functions declared with the \var{nostackframe} modifier do not have a stack frame, and hence
  2780. % do not have a local variable to hold the temporary function result. Accesses to the function
  2781. % result in such routines directly go to the registers or memory location that will be used
  2782. % to return their result to the caller. In some cases this result may be spread over multiple
  2783. % registers, in which case it is not possible to access the location via its symbolic name.
  2784. % You have to directly use the appropriate register names in this case.
  2785. asmr_e_wrong_gotpcrel_intel_syntax=07117_E_GOTPCREL references in Intel assembler syntax cannot contain a base or index register, and their offset must 0.
  2786. % The syntax for a gotpcrel PIC memory expression in Intel assembler syntax is
  2787. % \verb*[global_symbol wrt ..gotpcrel]*
  2788. asmr_e_no_gotpcrel_support=07118_E_The current target does not support GOTPCREL relocations
  2789. % Not all targets support position-independent code using a global offset table.
  2790. % Use a different way to access symbols in a position-indepent way in these cases.
  2791. asmr_w_global_access_without_got=07119_W_Exported/global symbols should be accessed via the GOT
  2792. % Global symbols (symbols from the unit interface, or defined in a program
  2793. % or library) should be accessed via the GOT when generating position-indepent code.
  2794. asmr_w_check_mem_operand_size=07120_W_Check size of memory operand "$1"
  2795. % The size of memory operand is possible invalid. This is
  2796. % probably an error in the assembler statement
  2797. asmr_w_check_mem_operand_size3=07121_W_Check size of memory operand "$1: memory-operand-size is $2 bits, but expected [$3 bits]"
  2798. % The size of memory operand is possible invalid. This is
  2799. % probably an error in the assembler statement
  2800. asmr_w_check_mem_operand_size_offset=07122_W_Check size of memory operand "$1: memory-operand-size is $2 bits, but expected [$3 bits + $4 byte offset]"
  2801. % The size of memory operand is possible invalid. This is
  2802. % probably an error in the assembler statement
  2803. asmr_w_check_mem_operand_negative_offset=07123_W_Check "$1: offset of memory operand is negative "$2 byte"
  2804. % The offset of memory operand is possible invalid. This is
  2805. % probably an error in the assembler statement
  2806. asmr_w_check_mem_operand_automap_multiple_size=07124_W_Check "$1: size of memory operand is empty, but es exists different definitions of the memory size =>> map to $2 (smallest option)"
  2807. % The size of memory operand is empty and we have different definitions of possible memory sizes. Check it!
  2808. asmr_e_invalid_ref_register=07125_E_Invalid register used in memory reference expression: "$1"
  2809. % FPU, vector and sometimes integer registers cannot be used in memory reference
  2810. % expressions, due to limitations of the cpu architecture or simple because
  2811. % it is not meaningful.
  2812. #
  2813. # Assembler/binary writers
  2814. #
  2815. # 08029 is the last used one
  2816. #
  2817. asmw_f_too_many_asm_files=08000_F_Terlalu banyak file assembler
  2818. % Dengan menghidupkan smartlinking, ada terlalu banyak file assembler yang dibuat.
  2819. % Matikan smartlinking.
  2820. asmw_f_assembler_output_not_supported=08001_F_Output assembler yang dipilih tidak didukung
  2821. asmw_f_comp_not_supported=08002_F_Comp tidak didukung
  2822. asmw_f_direct_not_supported=08003_F_Direct tidak mendukung penulis biner
  2823. % Mode assembler direct tidak mendukung penulis biner.
  2824. asmw_e_alloc_data_only_in_bss=08004_E_Alikasi data hanya dibolehkan dalam seksi bss
  2825. asmw_f_no_binary_writer_selected=08005_F_Tidak ada penulis biner yang dipilih
  2826. asmw_e_opcode_not_in_table=08006_E_Asm: Opcode $1 tidak dalam tabel
  2827. asmw_e_invalid_opcode_and_operands=08007_E_Asm: $1 kombinasi opcode dan operan tidak benar
  2828. asmw_e_16bit_not_supported=08008_E_Asm: referensi 16 Bit tidak didukung
  2829. asmw_e_invalid_effective_address=08009_E_Asm: Alamat efektif tidak benar
  2830. asmw_e_immediate_or_reference_expected=08010_E_Asm: Immediate atau referensi diharapkan
  2831. asmw_e_value_exceeds_bounds=08011_E_Asm: $1 nilai melebihi batasan $2
  2832. asmw_e_short_jmp_out_of_range=08012_E_Asm: Lompat pendek di luar jangkauan $1
  2833. asmw_e_undefined_label=08013_E_Asm: Label tidak didefinisikan $1
  2834. asmw_e_comp_not_supported=08014_E_Asm: Tipe Comp tidak didukung untuk target ini
  2835. asmw_e_extended_not_supported=08015_E_Asm: Tipe Extended tidak didukung untuk target ini
  2836. asmw_e_duplicate_label=08016_E_Asm: Duplikasi label $1
  2837. asmw_e_redefined_label=08017_E_Asm: Redefinisi label $1
  2838. asmw_e_first_defined_label=08018_E_Asm: Pertama didefinisikan di sini
  2839. asmw_e_invalid_register=08019_E_Asm: register tidak benar $1
  2840. asmw_e_16bit_32bit_not_supported=08020_E_Asm: Referensi 16 atau 32 Bit tidak didukung
  2841. asmw_e_64bit_not_supported=08021_E_Asm: 64 Bit operand tidak didukung
  2842. #
  2843. # Menjalankan linker/assembler
  2844. #
  2845. # 09034 is the last used one
  2846. #
  2847. # BeginOfTeX
  2848. %
  2849. % \section{Kesalahan tahap assembling/linking}
  2850. % Seksi ini mendaftarkan kesalahan yang terjadi saat kompilator memproses
  2851. % baris perintah atau menangani file konfigurasi.
  2852. % \begin{description}
  2853. asmw_e_bad_reg_with_rex=08022_E_Asm: AH,BH,CH or DH cannot be used in an instruction requiring REX prefix
  2854. % x86_64 only: instruction encoding of this platform does not allow using
  2855. % 8086 high byte registers (AH,BH,CH or DH) together with REX prefix in a single instruction.
  2856. % The REX prefix is required whenever the instruction operand size is 64 bits, or
  2857. % when it uses one of extended x86_64 registers (R8-R15 or XMM8-XMM15).
  2858. asmw_e_missing_endprologue=08023_E_Missing .seh_endprologue directive
  2859. % x86_64-win64 only: Normally, SEH directives are handled internally by compiler.
  2860. % However, in pure assembler procedures .seh_endprologue directive is required
  2861. % if other SEH directives are present.
  2862. asmw_e_prologue_too_large=08024_E_Function prologue exceeds 255 bytes
  2863. % x86_64-win64: .seh_prologue directive must be placed within 255 bytes from function start.
  2864. asmw_e_handlerdata_no_handler=08025_E_.seh_handlerdata directive without preceding .seh_handler
  2865. % x86_64-win64: If .seh_handlerdata directive is used, then a .seh_handler directive must be
  2866. % present earlier in the same function.
  2867. asmw_f_too_many_relocations=08026_F_Relocation count for section $1 exceeds 65535
  2868. % Legacy COFF targets limit number of relocations per section to 65535 because they use a 2-byte field
  2869. % to store the relocation count. Targets using newer PECOFF format do not have this limitation.
  2870. asmw_w_changing_bind_type=08027_N_Change of bind type of symbol $1 from $2 to $3 after use
  2871. asmw_h_changing_bind_type=08028_H_Change of bind type of symbol $1 from $2 to $3 after use
  2872. % An assembler symbol bind type has been altered after use, which can lead to wrong code.
  2873. % First version is reserved for changig to local label, which is the most probable cause
  2874. % of wrong code generation, but currently set to Note level as it appears inside
  2875. % the compiler compilation.
  2876. asmw_e_32bit_not_supported=08029_E_Asm: 32 Bit references not supported
  2877. #
  2878. # Executing linker/assembler
  2879. #
  2880. # 09035 is the last used one
  2881. #
  2882. # BeginOfTeX
  2883. %
  2884. % \section{Errors of assembling/linking stage}
  2885. % This section lists errors that occur when the compiler is processing the
  2886. % command line or handling the configuration files.
  2887. % \begin{description}
  2888. exec_w_source_os_redefined=09000_W_Sistem operasi sumber didefinisikan ulang
  2889. % Sistem operasi sumber didefinisikan ulang.
  2890. exec_i_assembling_pipe=09001_I_Assembling (pipe) $1
  2891. % Meng-assembling menggunakan pipa ke assembler eksternal.
  2892. exec_d_cant_create_asmfile=09002_E_Tidak bisa membuat file assembler: $1
  2893. % File yang disebutkan tadi tidak bisa dibuat. Periksa apakah anda memiliki
  2894. % perijinan akses untuk membuat file ini
  2895. exec_e_cant_create_objectfile=09003_E_Tidak bisa membuat file obyek: $1
  2896. % File yang disebutkan tadi tidak bisa dibuat. Periksa apakah anda memiliki
  2897. % perijinan akses untuk membuat file ini
  2898. exec_e_cant_create_archivefile=09004_E_Tidak bisa membuat file arsip: $1
  2899. % File yang disebutkan tadi tidak bisa dibuat. Periksa apakah anda memiliki
  2900. % perijinan akses untuk membuat file ini
  2901. exec_e_assembler_not_found=09005_E_Assembler $1 tidak ditemukan, beralih ke assmembling eksternal
  2902. % Program assembler tidak ditemukan. Kompilator akan menghasilkannaskah yang
  2903. % dapat dipakai untuk meng-assemble dan me-link program.
  2904. exec_t_using_assembler=09006_T_Menggunakan assembler: $1
  2905. % Pesan informasi yang mengatakan assembler mana yang sedang dipakai.
  2906. exec_e_error_while_assembling=09007_E_Kesaslahan saat meng-assembling exitcode $1
  2907. % Ada kesalahan saat meng-assembling file menggunakan assembler eksternal.
  2908. % Lihat dokumentasi piranti assembler guna mencari informasi lebih jauh
  2909. % mengenai kesalahan ini.
  2910. exec_e_cant_call_assembler=09008_E_Tidak bisa memanggil assembler, kesalahan $1 beralih ke assembling eksternal
  2911. % Kesalahan terjadi saat memanggil assembler eksternal, kompilator akan menghasilkan
  2912. % naskah yang dapat dipakai untuk meng-assemble dan link program.
  2913. exec_i_assembling=09009_I_Pemasangan $1
  2914. % Pesan informasional yang menyatakan file yang sedang dipasang.
  2915. exec_i_assembling_smart=09010_I_Memasang dengan smartlinking $1
  2916. % Pesan informasional yang menyatakan file mana yang sedang dipasang menggunakan smartlinking.
  2917. exec_w_objfile_not_found=09011_W_Obyek $1 tidak ditemukan, Linking bisa gagal !
  2918. % Salah satu file obyek hilang, dan linking kemungkinan akan gagal.
  2919. % Periksa path anda.
  2920. exec_w_libfile_not_found=09012_W_Librari $1 tidak ditemukan, Linking bisa gagal !
  2921. % Salah satu file librari hilang, dan linking kemungkinan akan gagal.
  2922. % Periksa path anda.
  2923. exec_e_error_while_linking=09013_E_Kesalahan saat me-link
  2924. % Kesalahan umum saat melakukan linking.
  2925. exec_e_cant_call_linker=09014_E_Tidak bisa memanggil linker, beralih ke eksternal linking
  2926. % Kesalahan terjadi saat memanggil linker eksternal, kompulator akan membuat naskah
  2927. % yang bisa dipakai untuk memasang dan me-link program.
  2928. exec_i_linking=09015_I_Linking $1
  2929. % Pesan informasional, menampilkan program atau librari mana yang sedang di-link.
  2930. exec_e_util_not_found=09016_E_Util $1 tidak ditemukan, beralih ke eksternal linking
  2931. % Piranti eksternal tidak ditemukan, kompilator akan membuat naskah yang
  2932. % dapat dipakai untuk memasang dan me-link atau memproses akhir program.
  2933. exec_t_using_util=09017_T_Menggunakan util $1
  2934. % Pesan informasional, menampilkan program eksternal mana (biasanya pemroses akhir) yang dipakai.
  2935. exec_e_exe_not_supported=09018_E_Pembuatan Executable tidak didukung
  2936. % Pembuatan program executable tidak didukung untuk platform ini, karena belum
  2937. % diimplementasikan dalam kompilator.
  2938. exec_e_dll_not_supported=09019_E_Pembuatan Librari Dinamis/Berbagai tidak didukung
  2939. % Pembuatan dynamically loadable libraries tidak didukung untuk platform ini,
  2940. % karena belum diimplementasikan dalam kompilator.
  2941. exec_e_static_lib_not_supported=09035_E_Creation of Static Libraries not supported
  2942. % Creating static libraries is not supported for this platform, because it was
  2943. % not yet implemented in the compiler.
  2944. exec_i_closing_script=09020_I_Menutup naskah $1
  2945. % Pesan informasional yang tampil saat naskah linking assembling eskternal selesai.
  2946. exec_e_res_not_found=09021_E_kompilator resource tidak ditemukan, beralih ke mode eksternal
  2947. % Kompilator resource eksternal tidak ditemukan, kompilator akan membuat naskah yang dapat
  2948. % dipakai untuk memasang, mengompilasi resources dan me-link atau memproses akhir program.
  2949. exec_i_compilingresource=09022_I_Mengompilasi resource $1
  2950. % Pesan informasional, menampilkan resource mana yang sedang dikompilasi.
  2951. exec_t_unit_not_static_linkable_switch_to_smart=09023_T_unit $1 tidak bisa di-link secara statis, beralih ke smart linking
  2952. % Link statis diminta, tapi unit yang dipakai bukan yang bisa di-link secara statis.
  2953. exec_t_unit_not_smart_linkable_switch_to_static=09024_T_unit $1 tidak bisa di-link smart, beralih ke linking statis
  2954. % Smart linking diminta, tapi unit yang dipakai bukan yang bisa di-link samart.
  2955. exec_t_unit_not_shared_linkable_switch_to_static=09025_T_unit $1 tidak bisa di-link berbagi, berlaih ke linking statis
  2956. % Link berbagi yang diminta, tapi unit yang dipakai bukan yang bisa berbagi link.
  2957. exec_e_unit_not_smart_or_static_linkable=09026_E_unit $1 tidak bisa di-link smart atau statis
  2958. % Link smart atau statis diminta, tapi unit yang dipakai tidak bisa digunakan untuk keduanya.
  2959. exec_e_unit_not_shared_or_static_linkable=09027_E_unit $1 tidak bisa di-link berbagi ataupun statis
  2960. % Link berbagi atau statis yang diminta, tapi unit bukan yang bisa melakukan keduanya.
  2961. exec_d_resbin_params=09028_D_Memanggil kompilator resource "$1" dengan "$2" sebagai baris perintah
  2962. % Pesan informasional yang menampilkan baris perintah mana yang dipakai untuk kompilator resource.
  2963. %\end{description}
  2964. # EndOfTeX
  2965. #
  2966. # Informasi Executable
  2967. #
  2968. # BeginOfTeX
  2969. % \section{Pesan informasi executable.}
  2970. % Seksi ini mendaftarkan semua pesan yang dikeluarkan kompilator saat program
  2971. % executable dihasilkan, dan hanya ketika linker internal yang dipakai.
  2972. % \begin{description}
  2973. exec_e_error_while_compiling_resources=09029_E_Error while compiling resources
  2974. % The resource compiler or converter returned an error.
  2975. exec_e_cant_call_resource_compiler=09030_E_Can't call the resource compiler "$1", switching to external mode
  2976. % An error occurred when calling a resource compiler. The compiler will produce
  2977. % a script that can be used to assemble, compile resources and link or
  2978. % postprocess the program.
  2979. exec_e_cant_open_resource_file=09031_E_Can't open resource file "$1"
  2980. % An error occurred resource file cannot be opened.
  2981. exec_e_cant_write_resource_file=09032_E_Can't write resource file "$1"
  2982. % An error occurred resource file cannot be written.
  2983. exec_n_backquote_cat_file_not_found=09033_N_File "$1" not found for backquoted cat command
  2984. % The compiler did not find the file that should be expanded into linker parameters
  2985. exec_w_init_file_not_found=09034_W_"$1" not found, this will probably cause a linking failure
  2986. % The compiler adds certain startup code files to the linker only when they are found.
  2987. % If they are not found, they are not added and this might cause a linking failure.
  2988. %
  2989. %\end{description}
  2990. # EndOfTeX
  2991. #
  2992. # Executable information
  2993. #
  2994. # 09134 is the last used one
  2995. #
  2996. # BeginOfTeX
  2997. % \section{Executable information messages.}
  2998. % This section lists all messages that the compiler emits when an executable program is produced,
  2999. % and only when the internal linker is used.
  3000. % \begin{description}
  3001. execinfo_f_cant_process_executable=09128_F_Tidak dapat memproses akhir executable $1
  3002. % Kesalahan fatal saat kompilator tidak bisa memproses akhir sebuah executable.
  3003. execinfo_f_cant_open_executable=09129_F_Tidak bisa membuka executable $1
  3004. % Kesalahan fatal saat kompilator tidak bisa membuka file untuk executable.
  3005. execinfo_x_codesize=09130_X_Besar Kode: $1 byte
  3006. % Pesan informasional yang menampilkan ukuran seksi kode yang dihasilkan.
  3007. execinfo_x_initdatasize=09131_X_Besar data diinisialisasi: $1 byte
  3008. % Pesan informasional yang menampilkan ukuran seksi data diinisialisasi.
  3009. execinfo_x_uninitdatasize=09132_X_Besar data tidak diinisialisasi: $1 byte
  3010. % Pesan informasional yang menampilkan ukuran seksi data yang tidak diinisialisasi.
  3011. execinfo_x_stackreserve=09133_X_Ruang stack terpakai: $1 byte
  3012. % Pesan informasional yang menampilkan ukuran stack yang dipakai kompilator untuk executable.
  3013. execinfo_x_stackcommit=09134_X_Ruang stack dikomit: $1 byte
  3014. % Pesan informasional yang menampilkan ukuran stack yang dikomit oleh kompilator untuk executable.
  3015. %\end{description}
  3016. # EndOfTeX
  3017. #
  3018. # Pengambilan Unit
  3019. #
  3020. # 10041 is the last used one
  3021. #
  3022. # BeginOfTeX
  3023. % \section{Pesan pengambilan unit.}
  3024. % Seksi ini mendaftarkan semua pesan yang dapat terjadi saat kompilator
  3025. % menggambil unit dari disk ke dalam memori. Banyak dari pesan ini berupa
  3026. % pesan informasional.
  3027. % \begin{description}
  3028. link_f_executable_too_big=09200_F_Executable image size is too big for $1 target.
  3029. % Fatal error when resulting executable is too big.
  3030. link_w_32bit_absolute_reloc=09201_W_Object file "$1" contains 32-bit absolute relocation to symbol "$2".
  3031. % Warning when 64-bit object file contains 32-bit absolute relocations.
  3032. % In such case an executable image can be loaded into lower 4Gb of
  3033. % address space only.
  3034. %\end{description}
  3035. # EndOfTeX
  3036. #
  3037. # Unit loading
  3038. #
  3039. # 10062 is the last used one
  3040. #
  3041. # BeginOfTeX
  3042. % \section{Unit loading messages.}
  3043. % This section lists all messages that can occur when the compiler is
  3044. % loading a unit from disk into memory. Many of these messages are
  3045. % informational messages.
  3046. % \begin{description}
  3047. unit_t_unitsearch=10000_T_Pencarian unit: $1
  3048. % Ketika anda menggunakan saklar \var{-vt}, kompilator memberitahu anda ke mana
  3049. % ia mencoba mencari file unit.
  3050. unit_t_ppu_loading=10001_T_Pengambilan PPU $1
  3051. % Saat saklar \var{-vt} dipakai, kompilator memberitahu anda
  3052. % unit apa yang diambil.
  3053. unit_u_ppu_name=10002_U_Nama PPU: $1
  3054. % Saat anda menggunakan flag \var{-vu}, nama unit ditampilkan.
  3055. unit_u_ppu_flags=10003_U_Flag PPU: $1
  3056. % Saat anda menggunakan flag \var{-vu}, flag unit ditampilkan.
  3057. unit_u_ppu_crc=10004_U_Crc PPU: $1
  3058. % Saat anda memakai flag \var{-vu}, pemeriksaan CRC unit ditampilkan.
  3059. unit_u_ppu_time=10005_U_Waktu PPU: $1
  3060. % Saat anda memakai flag \var{-vu}, waktu unit dikompilasi ditampilkan.
  3061. unit_u_ppu_file_too_short=10006_U_File PPU terlalu pendek
  3062. % File ppu terlalu pendek, tidak semua deklarasi ada di sana.
  3063. unit_u_ppu_invalid_header=10007_U_Header PPU tidak benar (tanpa PPU di awal)
  3064. % File unit berisi tiga byte pertama kode ascii \var{PPU}
  3065. unit_u_ppu_invalid_version=10008_U_Versi PPU tidak benar $1
  3066. % File unit ini dikompilasi dengan versi kompilator berbeda, dan
  3067. % tidak bisa dibaca.
  3068. unit_u_ppu_invalid_processor=10009_U_PPU dikompilasi untuk prosesor lain
  3069. % File unit dikompilasi untuk tipe prosesor berbeda, dan
  3070. % tidak bisa dibaca
  3071. unit_u_ppu_invalid_target=10010_U_PPU dikompilasi untuk target lain
  3072. % File unit dikompilasi untuk target berbeda, dan
  3073. % tidak bisa dibaca
  3074. unit_u_ppu_source=10011_U_Sumber PPU: $1
  3075. % Saat anda memakai flag \var{-vu}, nama file sumber ditampilkan.
  3076. unit_u_ppu_write=10012_U_Menuliskan $1
  3077. % Saat anda menetapkan saklar \var{-vu}, kompilator akan memberitahu anda
  3078. % di mana ia menulis file unit.
  3079. unit_f_ppu_cannot_write=10013_F_Tidak bisa Menulis File-PPU
  3080. % Kesalahan terjadi saat menuliskan file unit.
  3081. unit_f_ppu_read_error=10014_F_Kesalahan membaca File-PPU
  3082. % Ini berarti bahwa file unit sudah rusak, dan berisi informasi tidak benar.
  3083. % Diperlukan rekompilasi.
  3084. unit_f_ppu_read_unexpected_end=10015_F_akhir File-PPU diharapkan
  3085. % Akhir file tidak diharapkan. Ini berarti bahwa file PPU
  3086. % rusak.
  3087. unit_f_ppu_invalid_entry=10016_F_Entri File-PPU tidak benar: $1
  3088. % Unit yang coba dibaca kompilator rusak, atau dibuat dengan versi
  3089. % kompilator lebih baru.
  3090. unit_f_ppu_dbx_count_problem=10017_F_Masalah jumlah PPU Dbx
  3091. % Ada ketidak konsistenan dalam informasi debug pada unit.
  3092. unit_e_illegal_unit_name=10018_E_Nama unit tidak benar: $1
  3093. % Nama unit tidak sama dengan nama file.
  3094. unit_f_too_much_units=10019_F_Terlalu banyak unit
  3095. % \fpc mempunyai batasan 1024 unit dalam sebuah program. Anda dapat mengubah
  3096. % perliaku ini dengan mengubah konstan \var{maxunits} dalam file \file{fmodule.pas}
  3097. % pada kompilator, dan mengompilasi ulang kompilator.
  3098. unit_f_circular_unit_reference=10020_F_Referensi unit berputar antara $1 dan $2
  3099. % Dua unit saling menggunakan bagian interface. Ini hanya dibolehkan dalam
  3100. % bagian \var{implementation}. Setidaknya satu unit harus berisi satu yang
  3101. % lain dalam seksi \var{implementation}.
  3102. unit_f_cant_compile_unit=10021_F_Tidak bisa mengompilasi unit $1, tidak ada sumber tersedia
  3103. % Unit ditemukan yang memerlukan kompilasi ulang, tapi tidak ada file sumber
  3104. % yang tersedia.
  3105. unit_f_cant_find_ppu=10022_F_Tidak bisa menemukan unit $1 yang dipakai oleh $2
  3106. % Anda mencoba untuk memakai sebuah unit di mana file PPU tidak ditemukan oleh
  3107. % kompilator. Periksas file konfigurasi anda untuk path unit
  3108. unit_w_unit_name_error=10023_W_Unit $1 tidak ditemukan tapi $2 ada
  3109. % Pesan kesalahan ini tidak dipakai lagi.
  3110. unit_f_unit_name_error=10024_F_Unit $1 dicari tapi $2 yang ditemukan
  3111. % Pemotongan Dos pada 8 huruf untuk file unit PPU dapat membawa
  3112. % masalah saat nama unit lebih panjang dari 8 huruf.
  3113. unit_w_switch_us_missed=10025_W_Mengompilasi unit sistem memerlukan saklar -Us
  3114. % Ketika mengompilasi ulang unit sistem (ia memerlukan perlakuan khusus),
  3115. % \var{-Us} harus ditetapkan.
  3116. unit_f_errors_in_unit=10026_F_Ada $1 kesalahan dalam mengompilasi modul, dihentikan
  3117. % Saat kompilator menemukan sebuah kesalahan fatal atau terlalu banyak kesalahan
  3118. % dalam sebuah modul maka ia berhenti dengan pesan ini.
  3119. unit_u_load_unit=10027_U_Diambil dari $1 ($2) unit $3
  3120. % Saat anda memakai flag \var{-vu}, yang mana unit diambil dari unit itu
  3121. % ditampilkan.
  3122. unit_u_recompile_crc_change=10028_U_Rekompilasi $1, checksum berubah untuk $2
  3123. % Unit dikompilasi ulang karena checksum unit di mana ia bergantung padanya
  3124. % sudah berubah.
  3125. unit_u_recompile_source_found_alone=10029_U_Rekompilasi $1, hanya ditemukan sumber
  3126. % Saat anda menggunakan flag \var{-vu}, pesan ini memberitahu anda mengapa
  3127. % unit saat ini dikompilasi ulang.
  3128. unit_u_recompile_staticlib_is_older=10030_U_Rekompilasi unit, lib statis lebih lama dari ppufile
  3129. % Saat anda menggunakan flag \var{-vu}, kompilator memperingatkan bila unit
  3130. % librari statis lebih lama dari file unit itu sendiri.
  3131. unit_u_recompile_sharedlib_is_older=10031_U_Rekompilasi unit, lib berbagi lebih lama dari ppufile
  3132. % Saat anda menggunakan flag \var{-vu}, kompilator memperingatkan bila unit
  3133. % librari berbagi lebih lama dari file unit itu sendiri.
  3134. unit_u_recompile_obj_and_asm_older=10032_U_Rekompilasi unit, obj dan asm lebih lama dari ppufile
  3135. % Saat anda menggunakan flag \var{-vu}, kompilator memperingatkan bila assembler
  3136. % atau file obyek pada unit lebih lama dari file unit itu sendiri.
  3137. unit_u_recompile_obj_older_than_asm=10033_U_Rekompilasi unit, obj lebih lama dari asm
  3138. % Saat anda menggunakan flag \var{-vu}, kompilator memperingatkan bila file
  3139. % assembler pada unit lebih lama dari file obyek dalam unit.
  3140. unit_u_parsing_interface=10034_U_Menguraikan interface pada $1
  3141. % Saat anda menggunakan flag \var{-vu}, kompilator memperingatkan bahwa ia
  3142. % mulai menguraikan bagian interface pada unit
  3143. unit_u_parsing_implementation=10035_U_Menguraikan implementation pada $1
  3144. % Saat anda menggunakan flag \var{-vu}, kompilator memperingatkan bahwa ia
  3145. % mulai menguraikan bagian implementation pada unit
  3146. unit_u_second_load_unit=10036_U_Pengambilan kedua untuk unit $1
  3147. % Saat anda menggunakan flag \var{-vu}, kompilator memperingatkan bahwa ia
  3148. % mulai mengompilasi ulang unit untuk kedua kali. Ini dapat terjadi dengan
  3149. % unit interdependensi.
  3150. unit_u_check_time=10037_U_Pemeriksaan file PPU $1 waktu $2
  3151. % Saat anda menggunakan flag \var{-vu}, kompilator menampilkan nama file dan
  3152. % tanggal serta waktu rekompilasi file diandalkan
  3153. ### Dua pesan kesalahan berikut saat ini dimatikan.
  3154. #unit_h_cond_not_set_in_last_compile=10038_H_Kondisional $1 tidak disetel di awal dalam kompilasi terkahir $2
  3155. #% Saat rekompilasi unit diperlukan, kompilator akan memeriksa kondisional
  3156. #% yang sama yang disetel untuk rekompilasi. Kompilator sudah menemukan
  3157. #% kondisional yang saat ini didefinisikan, tapi tidak dipakai terakhir kali
  3158. #% unit direkompilasi.
  3159. #unit_h_cond_set_in_last_compile=10039_H_Kondisional $1 disetel di awal dalam kompilasi terakhir $2
  3160. #% Saat rekompilasi unit memerlukan kompilator memeriksa bahwa kondisional
  3161. #% yang sama disetel untuk rekompilasi. Kompilator sudah menemukan sebuah
  3162. #% kondisional yang dipakai terakhir kali unit dikompilasi, tetapi
  3163. #% kondisional saat ini tidak didefinisikan.
  3164. unit_w_cant_compile_unit_with_changed_incfile=10040_W_Tidak bisa merekompilasi unit $1, tapi ditemukan file include yang dimodifikasi
  3165. % Sebuah unit ditemukan di mana file include sudah diubah, tapi
  3166. % beberapa file sumber tidak ditemukan, maka rekompilasi tidak memungkinkan.
  3167. unit_u_source_modified=10041_U_File $1 lebih baru daripada file PPU $2
  3168. % File sumber dimodifikasi untuk unit yang ditemukan kompilator.
  3169. unit_u_ppu_invalid_fpumode=10042_U_Mencoba menggunakan unit yang dikompilasi dengan mode FPU berbeda
  3170. % Mencoba untuk mengompilasi kode sementara menggunakan unit yang tidak
  3171. % dikompilasi dengan mode format pecahan yang sama. Baik semua kode harus
  3172. % dikompilasi dengan emulasi FPU on ataupun dengan emulasi FPU off.
  3173. unit_u_loading_interface_units=10043_U_Mengambil unit interface dari $1
  3174. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3175. % mulai mengambil unit yang didefinisikan dalam bagian interface pada unit.
  3176. unit_u_loading_implementation_units=10044_U_Mengambil implementation unit dari $1
  3177. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3178. % mulai mengambil unit yang didefinisikan dalam bagian implementation pada unit.
  3179. unit_u_interface_crc_changed=10045_U_CRC Interface berubah untuk unit $1
  3180. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa
  3181. % CRC yang dihitung untuk interface sudah berubah setelah interface
  3182. % diuraikan.
  3183. unit_u_implementation_crc_changed=10046_U_CRC Implementation berubah untuk unit $1
  3184. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa
  3185. % CRC yang dihitung sudah diubah setelah implementation
  3186. % diuraikan.
  3187. unit_u_finished_compiling=10047_U_Selesai mengompilasi unit $1
  3188. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3189. % selesai mengompilasi unit.
  3190. unit_u_add_depend_to=10048_U_Menambah dependensi $1 ke $2
  3191. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3192. % sudah menambahkan dependensi antara dua unit.
  3193. unit_u_no_reload_is_caller=10049_U_Tidak mengambil ulang, pemanggil: $1
  3194. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3195. % tidak akan mengambil ulang unit karena ia adalah unit yang ingin
  3196. % mengambil unit ini
  3197. unit_u_no_reload_in_second_compile=10050_U_No reload, already in second compile: $1
  3198. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3199. % tidak akan mengambil ulang unit karena sudah dalam rekompilasi kedua
  3200. unit_u_flag_for_reload=10051_U_Flag untuk mengambil ulang: $1
  3201. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3202. % harus mengambil ulang unit
  3203. unit_u_forced_reload=10052_U_Pemaksaan pengambilan ulang
  3204. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3205. % mengambil ulang unit karen unit diperlukan
  3206. unit_u_previous_state=10053_U_Keadaan $1 sebelumnya: $2
  3207. % Saat anda menggunakan flag \var{-vu}, kompilator menampilkan
  3208. % keadaan unit sebelumnya
  3209. unit_u_second_compile_unit=10054_U_Sudah mengompilasi $1, menyetel kompilasi kedua
  3210. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3211. % mulai mengompilasi ulang unit untuk kedua kali. Ini bisa terjadi dengan
  3212. % unit interdependensi.
  3213. unit_u_loading_unit=10055_U_Mengambil unit $1
  3214. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3215. % mulai mengambil unit.
  3216. unit_u_finished_loading_unit=10056_U_Selesai mengambil unit $1
  3217. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3218. % selesai mengambil unit.
  3219. unit_u_registering_new_unit=10057_U_Mendaftarkan unit baru $1
  3220. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3221. % telah menemukan unit baru dan mendaftarkannya dalam daftar internal.
  3222. unit_u_reresolving_unit=10058_U_Memecahkan ulang unit $1
  3223. % Saat anda menggunakan flag \var{-vu}, kompilator meperingatkan bahwa ia
  3224. % harus menghitung ulang data internal pada unit
  3225. unit_u_skipping_reresolving_unit=10059_U_Melewati pemecahan ulang unit $1, masih mengambil unit yang dipakai
  3226. % Saat anda menggunakan flag \var{-vu}, kompilator memperingatkan bahwa ia
  3227. % mulai melewati untuk menghitung ulang data internal pada unit karena di sana
  3228. % tidak ada data untuk dihitung ulang
  3229. % \end{description}
  3230. # EndOfTeX
  3231. #
  3232. # Opsi
  3233. #
  3234. # 11041 is the last used one
  3235. #
  3236. unit_u_unload_resunit=10060_U_Unloading resource unit $1 (not needed)
  3237. % When you use the \var{-vu} flag, the compiler warns that it is unloading the
  3238. % resource handling unit, since no resources are used.
  3239. unit_e_different_wpo_file=10061_E_Unit $1 was compiled using a different whole program optimization feedback input ($2, $3); recompile it without wpo or use the same wpo feedback input file for this compilation invocation
  3240. % When a unit has been compiled using a particular whole program optimization (wpo) feedback file (\var{-FW<x>} \var{-OW<x>}),
  3241. % this compiled version of the unit is specialised for that particular compilation scenario and cannot be used in
  3242. % any other context. It has to be recompiled before you can use it in another program or with another wpo feedback input file.
  3243. unit_u_indirect_crc_changed=10062_U_Indirect interface (objects/classes) CRC changed for unit $1
  3244. % When you use the \var{-vu} flag, the compiler warns that the
  3245. % indirect CRC calculated for the unit (this is the CRC of all classes/objects/interfaces/$\ldots$
  3246. % in the interfaces of units directly or indirectly used by this unit in the interface) has been changed after the
  3247. % implementation has been parsed.
  3248. unit_u_ppu_invalid_memory_model=10063_U_PPU is compiled for another i8086 memory model
  3249. % This unit file was compiled for a different i8086 memory model and
  3250. % cannot be read.
  3251. % \end{description}
  3252. # EndOfTeX
  3253. #
  3254. # Options
  3255. #
  3256. # 11057 is the last used one
  3257. #
  3258. option_usage=11000_O_$1 [opsi] <inputfile> [opsi]
  3259. # BeginOfTeX
  3260. %
  3261. % \section{Kesaslahan penanganan baris perintah}
  3262. % Seksi ini mendaftarkan kesalahan yang terjadi saat kompilator memproses
  3263. % baris perintah atau menangani file konfigurasi.
  3264. % \begin{description}
  3265. option_only_one_source_support=11001_W_Hanya satu file sumber didukung
  3266. % Anda dapat menetapkan hanya satu file sumber pada baris perintah. Yang
  3267. % pertama akan dikompilasi, yang lainnya akan diabaikan. Ini menunjukan bahwa
  3268. % anda melupakan tanda \var{'-'}.
  3269. option_def_only_for_os2=11002_W_File DEF hanya dapat dibuat untuk OS/2
  3270. % Opsi ini hanya ditetapkan ketika anda mengompilasi untuk OS/2
  3271. option_no_nested_response_file=11003_E_File respon berulang tidak didukung
  3272. % Anda tidak bisa mengulang file respon dengan opsi baris perintah \var{@file}.
  3273. option_no_source_found=11004_F_Nama file sumber tidak ada dalam baris perintah
  3274. % Kompilator mengharapkan nama file sumber pada baris perintah.
  3275. option_no_option_found=11005_N_Tidak ada opsi di dalam file konfig $1
  3276. % Kompilator tidak menemukan setiap opsi dalam file konfig.
  3277. option_illegal_para=11006_E_Parameter tidak benar: $1
  3278. % Anda menetapkan opsi yang tidak dikenal.
  3279. option_help_pages_para=11007_H_-? menulis halaman bantuan
  3280. % Ketika sebuah opsi tidak dikenal diberikan, pesan ini ditampilkan.
  3281. option_too_many_cfg_files=11008_F_Terlalu banyak file konfig yang diulang
  3282. % Anda hanya bisa mengulang sampai 16 file konfigurasi.
  3283. option_unable_open_file=11009_F_Tidak bisa membuka file $1
  3284. % File opsi tidak bisa ditemukan.
  3285. option_reading_further_from=11010_D_Membaca opsi lanjutan dari $1
  3286. % Ditampilkan saat anda menghidupkan catatan, dan kompilator beralih ke
  3287. % file opsi lain.
  3288. option_target_is_already_set=11011_W_Target sudah disetel ke: $1
  3289. % Ditampilkan jika lebih dari satu opsi \var{-T} ditetapkan.
  3290. option_no_shared_lib_under_dos=11012_W_Libs berbagi tidak didukung pada DOS platform, membalikan ke statis
  3291. % Jika anda menetapkan \var{-CD} untuk platform \dos, pesan ini ditampilkan.
  3292. % Kompilator hanya mendukung libari statis di bawah \dos
  3293. option_too_many_ifdef=11013_F_terlalu banyak IF(N)DEF
  3294. % Pernyataan \var{\#IF(N)DEF} dalam file opsi tidak seimbang dengan pernyataan
  3295. % \var{\#ENDIF}.
  3296. option_too_many_endif=11014_F_terlalu banyak ENDIF
  3297. % Pernyataan \var{\#IF(N)DEF} dalam file opsi tidak seimbang dengan pernyataan
  3298. % \var{\#ENDIF}.
  3299. option_too_less_endif=11015_F_Kondisional terbuka di akhir file
  3300. % Pernyataan \var{\#IF(N)DEF} dalam file opsi tidak seimbang dengan pernyataan
  3301. % \var{\#ENDIF}.
  3302. option_no_debug_support=11016_W_Pembuatan informasi debug tidak didukung oleh executable ini
  3303. % Dimungkinkan untuk memiliki executable kompilator yang tidak mendukung
  3304. % pembuatan info debug. Jika anda menggunakan executable seperti itu dengan
  3305. % saklar \var{-g}, peringatan ini akan ditampilkan.
  3306. option_no_debug_support_recompile_fpc=11017_H_Coba rekompilasi dengan -dGDB
  3307. % Dimungkinkan untuk memiliki executable kompilator yang tidak mendukung
  3308. % pembuatan info debug. Jika anda menggunakan executable seperti itu dengan
  3309. % saklar \var{-g}, peringatan ini akan ditampilkan.
  3310. option_obsolete_switch=11018_W_Anda menggunakan saklar tidak terpakai $1
  3311. % Ini memperingatkan anda saat anda menggunakan saklar yang tidak diperlukan/didukung lagi.
  3312. % Direkomendasikan bahwa anda menghapus saklar untuk menghindari masalah di masa
  3313. % mendatang, saat saklar mungkin diubah.
  3314. option_obsolete_switch_use_new=11019_W_Anda menggunakan saklar tidak terpakai $1, silahkan pakai $2
  3315. % Ini memperingatkan anda saat anda memakai saklar yang tidak didukung lagi.
  3316. % sekarang sebaliknya anda harus menggunakan saklar kedua.
  3317. % Direkomendasikan bahwa anda menghapus saklar untuk menghindari masalah di masa
  3318. % mendatang, saat saklar mungkin diubah.
  3319. option_switch_bin_to_src_assembler=11020_N_Beralih assembler ke penulisan sumber assembler standar
  3320. % Ini memberitahu anda bahwa assembler sudah diubah karena anda menggunakan
  3321. % saklar -a yang tidak bisa dipakai dengan penulis assembler biner.
  3322. option_incompatible_asm=11021_W_Output assembler yang dipilih "$1" tidak kompatibel dengan "$2"
  3323. option_asm_forced=11022_W_"$1" assembler dipaksa dipakai
  3324. % Output assembler yang dipilih tidak dapat menghasilkan
  3325. % file obyek dengan format yang benar. Oleh karena itu, sebaliknya
  3326. % assembler standar untuk target ini digunakan.
  3327. option_using_file=11026_T_Membaca opsi dari file $1
  3328. % Opsi juga dibaca dari file ini
  3329. option_using_env=11027_T_Membaca opsi dari lingkungan $1
  3330. % Opsi juga dibaca dari string lingkungan ini
  3331. option_handling_option=11028_D_Menangani opsi "$1"
  3332. % Info debug yang opsinya ditemukan akan ditangani
  3333. option_help_press_enter=11029__*** tekan enter ***
  3334. % Message shown when help is shown page per page. When pressing the ENTER
  3335. % Key, the next page of help is shown. If you press q and then ENTER, the
  3336. % compiler exits.
  3337. option_start_reading_configfile=11030_H_Mulai membaca file konfigurasi $1
  3338. % Memulai penguraian file konfigurasi.
  3339. option_end_reading_configfile=11031_H_Akhir pembacaan file konfigurasi $1
  3340. % Akhir penguraian file konfigurasi.
  3341. option_interpreting_option=11032_D_menginterpretasikan opsi "$1"
  3342. % The compiler is interpreting an option
  3343. option_interpreting_firstpass_option=11036_D_menginterpretasikan operan opsi pertama "$1"
  3344. % The compiler is interpreting an option for the first time.
  3345. option_interpreting_file_option=11033_D_menginterpretasikan opsi file "$1"
  3346. % The compiler is interpreting an option which it read from the configuration file.
  3347. option_read_config_file=11034_D_Membaca file konfigurasi "$1"
  3348. % The compiler is starting to read the configuration file.
  3349. option_found_file=11035_D_ditemukan nama file sumber "$1"
  3350. % Info tambahan mengenai opsi, ditampilkan saat anda menghidupkan opsi
  3351. % debug.
  3352. option_code_page_not_available=11039_E_Halaman kode tidak dikenal
  3353. % An unknown codepage for the source files was requested.
  3354. % The compiler is compiled with support for several codepages built-in.
  3355. % The requested codepage is not in that list. You will need to recompile
  3356. % the compiler with support for the codepage you need.
  3357. option_config_is_dir=11040_F_File konfigurasi $1 adalah sebuah direktori
  3358. % Direktori tidak bisa dipakai sebagai file konfigurasi.
  3359. option_confict_asm_debug=11041_W_Output assembler yang dipilih "$1" tidak bisa menghasilkan info debug, debugging dimatikan
  3360. % Output assembler yang dipilih tidak dapat membuat informasi debug,
  3361. % oleh karenanya opsi debug dimatikan.
  3362. %\end{description}
  3363. # EndOfTeX
  3364. #
  3365. # Logo (option -l)
  3366. #
  3367. option_ppc386_deprecated=11042_W_Use of ppc386.cfg is deprecated, please use fpc.cfg instead
  3368. % Using ppc386.cfg is still supported for historical reasons, however, for a multiplatform
  3369. % system the naming makes no sense anymore. Please continue to use fpc.cfg instead.
  3370. option_else_without_if=11043_F_In options file $1 at line $2 #ELSE directive without #IF(N)DEF found
  3371. % An \var{\#ELSE} statement was found in the options file without a matching \var{\#IF(N)DEF} statement.
  3372. option_unsupported_target=11044_F_Option "$1" is not, or not yet, supported on the current target platform
  3373. % Not all options are supported or implemented for all target platforms. This message informs you that a chosen
  3374. % option is incompatible with the currently selected target platform.
  3375. option_unsupported_target_for_feature=11045_F_The feature "$1" is not, or not yet, supported on the selected target platform
  3376. % Not all features are supported or implemented for all target platforms. This message informs you that a chosen
  3377. % feature is incompatible with the currently selected target platform.
  3378. option_dwarf_smart_linking=11046_N_DWARF debug information cannot be used with smart linking on this target, switching to static linking
  3379. % Smart linking is currently incompatible with DWARF debug information on most
  3380. % platforms, so smart linking is disabled in such cases.
  3381. option_ignored_target=11047_W_Option "$1" is ignored for the current target platform.
  3382. % Not all options are supported or implemented for all target platforms. This message informs you that a chosen
  3383. % option is ignored for the currently selected target platform.
  3384. option_debug_external_unsupported=11048_W_Disabling external debug information because it is unsupported for the selected target/debug format combination.
  3385. % Not all debug formats can be stored in an external file on all platforms. In particular, on
  3386. % Mac OS X only DWARF debug information can be stored externally.
  3387. option_dwarf_smartlink_creation=11049_N_DWARF debug information cannot be used with smart linking with external assembler, disabling static library creation.
  3388. % Smart linking is currently incompatble with DWARF debug information on most
  3389. % platforms, so smart linking is disabled in such cases.
  3390. option_invalid_macosx_deployment_target=11050_E_Invalid value for MACOSX_DEPLOYMENT_TARGET environment variable: $1
  3391. option_invalid_iphoneos_deployment_target=11051_E_Invalid value for IPHONEOS_DEPLOYMENT_TARGET environment variable: $1
  3392. % On Mac OS X, the MACOSX\_DEPLOYMENT\_TARGET/IPHONEOS\_DEPLOYMENT\_TARGET environment variable can be
  3393. % used to set the default target OS version. In case of Mac OS X, it has to be of the format
  3394. % XY.Z or XY.Z.AB with X, Y,Z , A and B all digits from 0-9.
  3395. % In case of iOS, it has to be X.Z.A, where X, Z and A can all be either 1 or 2
  3396. % digits from 0-9.
  3397. option_illegal_fpu_eabihf=11052_E_You must use a FPU type of VFPV2, VFPV3 or VFPV3_D16 when using the EABIHF ABI target
  3398. % The EABIHF (VFP hardfloat) ABI target can only be used with VFP FPUs.
  3399. option_w_unsupported_debug_format=11053_W_The selected debug format is not supported on the current target, not changing the current setting
  3400. % Not all targets support all debug formats (in particular, Stabs is not supported on 64 bit targets).
  3401. option_missing_arg=11054_E_argument to "$1" is missing
  3402. % Displayed when parameter must be followed by an argument.
  3403. option_malformed_para=11055_E_malformed parameter: $1
  3404. % Given argument is not valid for parameter.
  3405. option_smart_link_requires_external_linker=11056_W_Smart linking requires external linker
  3406. option_com_files_require_tiny_model=11057_E_Creating .COM files is not supported in the current memory model. Only the tiny memory model supports making .COM files.
  3407. %\end{description}
  3408. # EndOfTeX
  3409. #
  3410. # Whole program optimization
  3411. #
  3412. # 12019 is the last used one
  3413. #
  3414. # BeginOfTeX
  3415. %
  3416. % \section{Whole program optimization messages}
  3417. % This section lists errors that occur when the compiler is performing
  3418. % whole program optimization.
  3419. % \begin{description}
  3420. wpo_cant_find_file=12000_F_Cannot open whole program optimization feedback file "$1"
  3421. % The compiler cannot open the specified feedback file with whole program optimization information.
  3422. wpo_begin_processing=12001_D_Processing whole program optimization information in wpo feedback file "$1"
  3423. % The compiler starts processing whole program optimization information found in the named file.
  3424. wpo_end_processing=12002_D_Finished processing the whole program optimization information in wpo feedback file "$1"
  3425. % The compiler has finished processing the whole program optimization information found in the named file.
  3426. wpo_expected_section=12003_E_Expected section header, but got "$2" at line $1 of wpo feedback file
  3427. % The compiler expected a section header in the whole program optimization file (starting with \%),
  3428. % but did not find it.
  3429. wpo_no_section_handler=12004_W_No handler registered for whole program optimization section "$2" at line $1 of wpo feedback file, ignoring
  3430. % The compiler has no handler to deal with the mentioned whole program optimization information
  3431. % section, and will therefore ignore it and skip to the next section.
  3432. wpo_found_section=12005_D_Found whole program optimization section "$1" with information about "$2"
  3433. % The compiler encountered a section with whole program optimization information, and according
  3434. % to its handler this section contains information usable for the mentioned purpose.
  3435. wpo_no_input_specified=12006_F_The selected whole program optimizations require a previously generated feedback file (use -Fw to specify)
  3436. % The compiler needs information gathered during a previous compilation run to perform the selected
  3437. % whole program optimizations. You can specify the location of the feedback file containing this
  3438. % information using the -Fw switch.
  3439. wpo_not_enough_info=12007_E_No collected information necessary to perform "$1" whole program optimization found
  3440. % While you pointed the compiler to a file containing whole program optimization feedback, it
  3441. % did not contain the information necessary to perform the selected optimizations. You most likely
  3442. % have to recompile the program using the appropriate -OWxxx switch.
  3443. wpo_no_output_specified=12008_F_Specify a whole program optimization feedback file to store the generated info in (using -FW)
  3444. % You have to specify the feedback file in which the compiler has to store the whole program optimization
  3445. % feedback that is generated during the compilation run. This can be done using the -FW switch.
  3446. wpo_output_without_info_gen=12009_E_Not generating any whole program optimization information, yet a feedback file was specified (using -FW)
  3447. % The compiler was instructed to store whole program optimization feedback into a file specified using -FW,
  3448. % but not to actually generated any whole program optimization feedback. The classes of to be
  3449. % generated information can be specified using -OWxxx.
  3450. wpo_input_without_info_use=12010_E_Not performing any whole program optimizations, yet an input feedback file was specified (using -Fw)
  3451. % The compiler was not instructed to perform any whole program optimizations (no -Owxxx parameters),
  3452. % but nevertheless an input file with such feedback was specified (using -Fwyyy). Since this can
  3453. % indicate that you forgot to specify an -Owxxx parameter, the compiler generates an error in this case.
  3454. wpo_skipping_unnecessary_section=12011_D_Skipping whole program optimization section "$1", because not needed by the requested optimizations
  3455. % The whole program optimization feedback file contains a section with information that is not
  3456. % required by the selected whole program optimizations.
  3457. wpo_duplicate_wpotype=12012_W_Overriding previously read information for "$1" from feedback input file using information in section "$2"
  3458. % The feedback file contains multiple sections that provide the same class of information (e.g.,
  3459. % information about which virtual methods can be devirtualized). In this case, the information in last encountered
  3460. % section is used. Turn on debugging output (-vd) to see which class of information is provided by each section.
  3461. wpo_cannot_extract_live_symbol_info_strip=12013_E_Cannot extract symbol liveness information from program when stripping symbols, use -Xs-
  3462. % Certain symbol liveness collectors extract the symbol information from the linked program. If the symbol information
  3463. % is stripped (option -Xs), this is not possible.
  3464. wpo_cannot_extract_live_symbol_info_no_link=12014_E_Cannot extract symbol liveness information from program when when not linking
  3465. % Certain symbol liveness collectors extract the symbol information from the linked program. If the program is not
  3466. % linked by the compiler, this is not possible.
  3467. wpo_cannot_find_symbol_progs=12015_F_Cannot find "$1" or "$2" to extract symbol liveness information from linked program
  3468. % Certain symbol liveness collectors need a helper program to extract the symbol information from the linked program.
  3469. % This helper program is normally 'nm', which is part of the GNU binutils.
  3470. wpo_error_reading_symbol_file=12016_E_Error during reading symbol liveness information produced by "$1"
  3471. % An error occurred during the reading of the symbol liveness file that was generated using the 'nm' or 'objdump' program. The reason
  3472. % can be that it was shorter than expected, or that its format was not understood.
  3473. wpo_error_executing_symbol_prog=12017_F_Error executing "$1" (exitcode: $2) to extract symbol information from linked program
  3474. % Certain symbol liveness collectors need a helper program to extract the symbol information from the linked program.
  3475. % The helper program produced the reported error code when it was run on the linked program.
  3476. wpo_symbol_live_info_needs_smart_linking=12018_E_Collection of symbol liveness information can only help when using smart linking, use -CX -XX
  3477. % Whether or not a symbol is live is determined by looking whether it exists in the final linked program.
  3478. % Without smart linking/dead code stripping, all symbols are always included, regardless of whether they are
  3479. % actually used or not. So in that case all symbols will be seen as live, which makes this optimization ineffective.
  3480. wpo_cant_create_feedback_file=12019_E_Cannot create specified whole program optimisation feedback file "$1"
  3481. % The compiler is unable to create the file specified using the -FW parameter to store the whole program optimisation information.
  3482. %\end{description}
  3483. # EndOfTeX
  3484. #
  3485. # Logo (option -l)
  3486. #
  3487. option_logo=11023_[
  3488. Free Pascal Compiler versi $FPCFULLVERSION [$FPCDATE] untuk $FPCCPU
  3489. Hak Cipta (c) 1993-2024 oleh Florian Klaempfl and others
  3490. ]
  3491. #
  3492. # Info (option -i)
  3493. #
  3494. option_info=11024_[
  3495. Free Pascal Compiler versi $FPCVERSION
  3496. Tanggal Kompilator : $FPCDATE
  3497. Target CPU Kompilator: $FPCCPU
  3498. Target didukung:
  3499. $OSTARGETS
  3500. Set instruksi CPU didukung:
  3501. $INSTRUCTIONSETS
  3502. Set instruksi FPU didukung:
  3503. $FPUINSTRUCTIONSETS
  3504. Optimasi Didukung:
  3505. $OPTIMIZATIONS
  3506. Program ini datang bersama GNU General Public Licence
  3507. Untuk informasi lebih jauh baca COPYING.v2
  3508. Laporkan bugs, saran, dll ke:
  3509. http://bugs.freepascal.org
  3510. ]
  3511. #
  3512. # Halaman bantuan (opsi -? dan -h)
  3513. #
  3514. # Karakter pertama pada baris menunjukan siapa yang akan menampilkan baris
  3515. # ini, kemungkinan saat ini ialah :
  3516. # * = setiap target
  3517. # 3 = 80x86 target
  3518. # 6 = 680x0 target
  3519. # e = hanya dalam mode debug diperluas
  3520. # P = PowerPC target
  3521. # S = Sparc target
  3522. # V = Target mesin virtual
  3523. # Karakter kedua juga menunjukan siapa yang akan menampilkan baris ini,
  3524. # (jika karakter di atas adalah BENAR) kemungkinan saat ini ialah :
  3525. # * = setiap orang
  3526. # g = dengan info GDB yang didukung oleh kompilator
  3527. # O = OS/2
  3528. # L = Sistem UNIX
  3529. # Karakter ketiga mewakili tingkat indentasi.
  3530. #
  3531. option_help_pages=11025_[
  3532. **0*_Tambah + setelah opsi saklar boolean untuk menghidupkannya, - untuk mematikan
  3533. **1a_Kompilator tidak menghapus file assembler yang dibuat
  3534. **2al_Daftarkan baris kode sumber dalam file assembler
  3535. **2an_Daftarkan info node dalam file assembler
  3536. *L2ap_Gunakan pipa daripada pembuatan file assembler sementara
  3537. **2ar_Daftarkan info alokasi/pelepasan register dalam file assembler
  3538. **2at_Daftarkan info alokasi/pelepasan temp dalam file assembler
  3539. **1A<x>_Format output:
  3540. **2Adefault_Gunakan assembler standar
  3541. 3*2Aas_Assemble menggunakan GNU AS
  3542. 3*2Anasmcoff_File COFF (Go32v2) menggunakan Nasm
  3543. 3*2Anasmelf_File ELF32 (Linux) menggunakan Nasm
  3544. 3*2Anasmwin32_File obyek Win32 menggunakan Nasm
  3545. 3*2Anasmwdosx_File obyek Win32/WDOSX menggunakan Nasm
  3546. 3*2Awasm_File Obj menggunakan Wasm (Watcom)
  3547. 3*2Anasmobj_File Obj menggunakan Nasm
  3548. 3*2Amasm_File Obj menggunakan Masm (Microsoft)
  3549. 3*2Atasm_File Obj menggunakan Tasm (Borland)
  3550. 3*2Aelf_ELF (Linux) menggunakan penulis internal
  3551. 3*2Acoff_COFF (Go32v2) menggunakan penulis internal
  3552. 3*2Apecoff_PE-COFF (Win32) menggunakan penulis internal
  3553. 4*2Aas_Rangkai menggunakan GNU AS
  3554. 6*2Aas_File-0 Unix menggunakan GNU AS
  3555. 6*2Agas_GNU Motorola assembler
  3556. 6*2Amit_Sintaks MIT (GAS lama)
  3557. 6*2Amot_Standard Motorola assembler
  3558. A*2Aas_Rangkai menggunakan GNU AS
  3559. P*2Aas_Rangkai menggunakan GNU AS
  3560. S*2Aas_Rangkai menggunakan GNU AS
  3561. **1b_Hasilkan info browser
  3562. **2bl_Hasilkan info simbol lokal
  3563. **1B_Bangun seluruh modul
  3564. **1C<x>_Opsi pembuatan kode:
  3565. **2Cc<x>_Setel konvensi pemanggilan standar ke <x>
  3566. **2CD_Buat juga librari dinamis (tidak didukung)
  3567. **2Ce_Kompilasi dengan opcode pecahan diemulasikan
  3568. **2Cf<x>_Pilih set instruksi fpu yang dipakai, lihat fpc -i untuk nilai yang mungkin
  3569. **2CF<x>_Minimal presisi konstan pecahan (standar, 32, 64)
  3570. **2Cg_Hasilkan kode PIC
  3571. **2Ch<n>_<n> byte heap (antara 1023 dan 67107840)
  3572. **2Ci_Pemeriksaan-IO
  3573. **2Cn_Abaikan tahap linking
  3574. **2Co_Periksa kelebihan untuk operasi integer
  3575. **2Cp<x>_Pilih set instruksi, lihat fpc -i untuk nilai yang mungkin
  3576. **2CP<x>=<y>_ setelan pemadatan
  3577. **3CPPACKSET=<y>_ <y> setel alokasi: 0, 1 atau DEFAULT atau NORMAL, 2, 4 dan 8
  3578. **2Cr_Pemeriksaan jangkauan
  3579. **2CR_Verifikasi kebenaran pemanggilan metode obyek
  3580. **2Cs<n>_Setel besar stack menjadi <n>
  3581. **2Ct_Pemeriksaan stack
  3582. **2CX_Buat juga librari smartlinked
  3583. **1d<x>_Definisikan simbol <x>
  3584. **1D_Hasilkan file DEF
  3585. **2Dd<x>_Setel deskripsi menjadi <x>
  3586. **2Dv<x>_Setel versi DLL menjadi <x>
  3587. *O2Dw_Aplikasi PM
  3588. **1e<x>_Setel path ke executable
  3589. **1E_Sama seperti -Cn
  3590. **1fPIC_Sama seperti -Cg
  3591. **1F<x>_Setel nama file dan path:
  3592. **2Fa<x>[,y]_(untuk sebuah program) ambil unit <x> dan [y] sebelum uses diuraikan
  3593. **2Fc<x>_Setel input codepage menjadi <x>
  3594. **2FC<x>_Setel nama biner kompilator RC menjadi <x>
  3595. **2FD<x>_Setel direktori ke mana untuk menjcari utilitas kompilator
  3596. **2Fe<x>_Alihkan output kesalahan ke <x>
  3597. **2Ff<x>_Tambah <x> ke path kerangka kerja (hanya Darwin)
  3598. **2FE<x>_Setel path output exe/unit ke <x>
  3599. **2Fi<x>_Tambah <x> ke path include
  3600. **2Fl<x>_Tambah <x> ke path librari
  3601. **2FL<x>_Gunakan <x> sebagai linker dinamis
  3602. **2Fm<x>_Ambil tabel konversi unicode dari <x>.txt dalam dir kompilator
  3603. **2Fo<x>_Tambah <x> ke path obyek
  3604. **2Fr<x>_Ambil file pesan kesalahan <x>
  3605. **2FR<x>_Setel linker resource (.res) ke <x>
  3606. **2Fu<x>_Tambah <x> ke path unit
  3607. **2FU<x>_Setel path output unit ke <x>, ganti -FE
  3608. *g1g_Hasilkan informasi debug (format standar untuk target)
  3609. *g2gc_Hasilkan pemeriksaan untuk pointer
  3610. *g2gh_Gunakan unit heaptrace (untuk men-debug kebocoran/kerusakan memori)
  3611. *g2gl_Gunakan info baris unit (tampilkan info lebih lengkap dengan backtraces)
  3612. *g2go<x>_Setel opsi informasi debug
  3613. *g3godwarfsets_ Hidupkan informasi setelan debug Dwarf (pecahkan gdb < 6.5)
  3614. *g2gp_Siapkan jenis huruf dalam nama simbol stabs
  3615. *g2gs_Hasilkan informasi debug stabs
  3616. *g2gt_Bersihkan variabel lokal (untuk mendeteksi uses tak terinisialisasi)
  3617. *g2gv_Hasilkan program yang bisa dilacak oleh valgrind
  3618. *g2gw_Hasilkan informasi debug dwarf-2 (sama seperti -gw2)
  3619. *g2gw2_Hasilkan informasi debug dwarf-2
  3620. *g2gw3_Hasilkan informasi debug dwarf-3
  3621. **1i_Informasi
  3622. **2iD_Kembalikan tanggal kompilator
  3623. **2iV_Kembalikan versi pendek kompilator
  3624. **2iW_Kembalikan versi lengkap kompilator
  3625. **2iSO_Kemblikan OS kompilator
  3626. **2iSP_Kembalikan prosesor host kompilator
  3627. **2iTO_Kembalikan OS target
  3628. **2iTP_Kembalikan prosesor target
  3629. **1I<x>_Tambah <x> ke path include
  3630. **1k<x>_Operkan <x> ke linker
  3631. **1l_Tulis logo
  3632. **1M<x>_Setel mode bahasa menjadi <x>
  3633. **2Mfpc_Dialek Free Pascal (standar)
  3634. **2Mobjfpc_Mode FPC dengan dukungan Obyek Pascal
  3635. **2Mdelphi_Mode kompatibilitas Delphi 7
  3636. **2Mtp_Mode kompatibilitas TP/BP 7.0
  3637. **2Mmacpas_Mode kompatibilitas dialek Macintosh Pascal
  3638. **1n_Jangan baca file konfigurasi standar
  3639. **1o<x>_Ubah nama executable yang dihasilkan ke <x>
  3640. **1O<x>_Optimasi:
  3641. **2O-_Matikan optimasi
  3642. **2O1_Optimasi tingkat 1 (cepat dan ramah debugger)
  3643. **2O2_Optimasi tingkat 2 (-O1 + optimasi cepat)
  3644. **2O3_Optimasi tingkat 3 (-O2 + optimasi lambat)
  3645. **2Oa<x>=<y>_Setel penjajaran
  3646. **2Oo[NO]<x>_Hidupkan atau matikan optimasi, lihat fpc -i untuk nilai yang mungkin
  3647. **2Op<x>_Setel cpu target untuk optimasi, lihat fpc -i untuk nilai yang mungkin
  3648. **2Os_Optimasi untuk ukuran daripada kecepatan
  3649. **1pg_Hasilkan kode profil untuk gprof (definisikan FPC_PROFILE)
  3650. **1R<x>_Gaya pembacaan assembler:
  3651. **2Rdefault_Gunakan assembler standar untuk target
  3652. 3*2Ratt_Baca gaya assembler AT&T
  3653. 3*2Rintel_Baca gaya assembler Intel
  3654. 4*2Ratt_Baca gaya assembler AT&T
  3655. 4*2Rintel_Baca gaya assembler Intel
  3656. 8*2Ratt_Baca gaya assembler AT&T
  3657. 8*2Rintel_Baca gaya assembler Intel
  3658. 6*2RMOT_Baca gaya assembler Motorola
  3659. **1S<x>_Opsi sintaks:
  3660. **2S2_Sama seperti -Mobjfpc
  3661. **2Sc_Dukung operator seperti C (*=,+=,/= and -=)
  3662. **2Sa_Hidupkan assertions
  3663. **2Sd_Sama seperti -Mdelphi
  3664. **2Se<x>_Opsi kesalahan. <x> adalah kombinasi dari yang berikut:
  3665. **3*_<n> : Kompilator batal setelah <n> kesalahan (standarnya 1)
  3666. **3*_w : Kompilator juga batal setelah peringatan
  3667. **3*_n : Kompilator juga batal setelah catatan
  3668. **3*_h : Kompilator juga batal setelah petunjuk
  3669. **2Sg_Hidupkan LABEL dan GOTO (standar dalam -Mtp dan -Mdelphi)
  3670. **2Sh_Gunakan ansistrings secara standar daripada shortstrings
  3671. **2Si_Hidupkan inlining procedures/functions yang dideklarisak sebagai "inline"
  3672. **2Sk_Ambil unit fpcylix
  3673. **2SI<x>_Setel gaya antarmuka ke <x>
  3674. **3SIcom_Antarmuka kompatibel COM (standar)
  3675. **3SIcorba_Antarmuka kompatibel CORBA
  3676. **2Sm_Dukung makro seperti C (global)
  3677. **2So_Sama seperti -Mtp
  3678. **2Ss_Nama konstruktor harus init (destruktor harus done)
  3679. **2Sx_Hidupkan kata kunci exception (standar dalam mode Delphi/ObjFPC)
  3680. **1s_Jangan panggil assembler dan linker
  3681. **2sh_Hasilkan naskah untuk me-link pada host
  3682. **2st_Hasilkan naskah untuk me-link pada target
  3683. **2sr_Lewati tahap alokasi register (gunakan dengan -alr)
  3684. **1T<x>_Sistem operasi target:
  3685. 3*2Temx_OS/2 via EMX (termasuk EMX/RSX extender)
  3686. 3*2Tfreebsd_FreeBSD
  3687. 3*2Tgo32v2_Versi 2 pada DJ Delorie DOS extender
  3688. 3*2Tlinux_Linux
  3689. 3*2Tnetbsd_NetBSD
  3690. 3*2Tnetware_Novell Netware Module (clib)
  3691. 3*2Tnetwlibc_Novell Netware Module (libc)
  3692. 3*2Topenbsd_OpenBSD
  3693. 3*2Tos2_OS/2 / eComStation
  3694. 3*2Twatcom_Watcom kompatibel DOS extender
  3695. 3*2Twdosx_WDOSX DOS extender
  3696. 3*2Twin32_Windows 32 Bit
  3697. 3*2Twince_Windows CE
  3698. 4*2Tlinux_Linux
  3699. 6*2Tamiga_Commodore Amiga
  3700. 6*2Tatari_Atari ST/STe/TT
  3701. 6*2Tlinux_Linux/m68k
  3702. 6*2Tmacos_Macintosh m68k (tidak didukung)
  3703. 6*2Tpalmos_PalmOS
  3704. A*2Tlinux_Linux
  3705. A*2Twince_Windows CE
  3706. P*2Tamiga_AmigaOS pada PowerPC
  3707. P*2Tdarwin_Darwin dan Mac OS X pada PowerPC
  3708. P*2Tlinux_Linux pada PowerPC
  3709. P*2Tmacos_Mac OS (klasik) pada PowerPC
  3710. P*2Tmorphos_MorphOS
  3711. S*2Tlinux_Linux
  3712. **1u<x>_Simbol tidak didefinisikan <x>
  3713. **1U_Opsi unit:
  3714. **2Un_Jangan periksa di mana nama unit sama dengan nama file
  3715. **2Ur_Hasilkan file unit rilis (jangan dikompilasi secara otomatis)
  3716. **2Us_Kompilasi unit sistem
  3717. **1v<x>_Ditampilkan. <x> adalah kombinasi dari huruf berikut:
  3718. **2*_e : Tampilkan kesalahan (default) 0 : Jangan tampilkan (kecuali kesalahan)
  3719. **2*_w : Tampilkan peringatan u : Tampilkan info unit
  3720. **2*_n : Tampilkan catatan t : Tampilkan file yang dicoba/dipakai
  3721. **2*_h : Tampilkan petunjuk c : Tampilkan kondisional
  3722. **2*_i : Tampilkan info umum d : Tampilkan info debug
  3723. **2*_l : Tampilkan nomor baris r : Mode kompatibilitas Rhide/GCC
  3724. **2*_a : Tampilkan semuanya x : Info executable (hanya Win32)
  3725. **2*_b : Tulis pesan nama file dengan path lengkap
  3726. **2*_v : Tulis fpcdebug.txt dengan p : Tulis tree.log dengan susunan urai
  3727. **2*_ banyak info debug
  3728. 3*1W<x>_Opsi spesifik-target (target)
  3729. A*1W<x>_Opsi spesifik-target (target)
  3730. P*1W<x>_Opsi spesifik-target (target)
  3731. 3*2Wb_Buat sebuah bundel daripada sebuah librari (Darwin)
  3732. P*2Wb_Buat sebuah bundel daripada sebuah librari (Darwin)
  3733. p*2Wb_Buat sebuah bundel daripada sebuah librari (Darwin)
  3734. 3*2WB_Buat citra relokatabel (Windows)
  3735. A*2WB_Buat citra relokatabel (Windows, Symbian)
  3736. 3*2WC_Tetapkan aplikasi tipe konsol (EMX, OS/2, Windows)
  3737. A*2WC_Tetapkan aplikasi tipe konsol (Windows)
  3738. P*2WC_Tetapkan aplikasi tipe konsol (Mac OS Klasik)
  3739. 3*2WD_Gunakan DEFFILE untuk mengekspor fungsi DLL atau EXE (Windows)
  3740. A*2WD_Gunakan DEFFILE untuk mengekspor fungsi DLL atau EXE (Windows)
  3741. 3*2WF_Tetapkan aplikasi tipe layar-penuh (EMX, OS/2)
  3742. 3*2WG_Tetapkan aplikasi tipe grafis (EMX, OS/2, Windows)
  3743. A*2WG_Tetapkan aplikasi tipe grafis (Windows)
  3744. P*2WG_Tetapkan aplikasi tipe grafis (Classic Mac OS)
  3745. 3*2WN_Jangan hasilkan kode relokasi, diperlukan untuk debugging (Windows)
  3746. A*2WN_Jangan hasilkan kode relokasi, diperlukan untuk debugging (Windows)
  3747. 3*2WR_Hasilkan kode relokasi (Windows)
  3748. A*2WR_Hasilkan kode relokasi (Windows)
  3749. P*2WT_Tetapkan aplikasi tipe piranti MPW (Mac OS Klasik)
  3750. **1X_Opsi executable:
  3751. **2Xc_Oper --shared/-dynamic ke linker (BeOS, Darwin, FreeBSD, Linux)
  3752. **2Xd_Jangan gunakan path pencarian librari standar (diperlukan untuk kompilasi silang)
  3753. **2Xe_Gunakan linker eksternal
  3754. **2XD_Coba untuk me-link unit secara dinamis (definisikan FPC_LINK_DYNAMIC)
  3755. **2Xi_Gunakan linker internal
  3756. **2Xm_Hasilkan peta link
  3757. **2XM<x>_Set nama rutin program 'main' (standarnya 'main')
  3758. **2XP<x>_Awali nama binutils dengan prefiks <x>
  3759. **2Xr<x>_Setel path pencarian librari ke <x> (diperlukan untuk kompilasi silang)
  3760. **2Xs_Buang semua simbol dari executable
  3761. **2XS_Coba untuk me-link unit secara statis (standar, definisikan FPC_LINK_STATIC)
  3762. **2Xt_Link dengan librari statis (-static dioper ke linker)
  3763. **2XX_Coba untuk smartlink unit (definisikan FPC_LINK_SMART)
  3764. **1*_
  3765. **1?_Tampilkan bantuan ini
  3766. **1h_Tampilkan bantuan ini tanpa menunggu
  3767. ]
  3768. #
  3769. # The End...
  3770. %%% parser_e_only_class_methods_via_class_ref=03053_E_Hanya metode kelas dapat dirujuk dengan referensi kelas
  3771. % Kesalahan ini terjadi dalam situasi seperti berikut:
  3772. % \begin{verbatim}
  3773. % Type :
  3774. % Tclass = Class of Tobject;
  3775. %
  3776. % Var C : TClass;
  3777. %
  3778. % begin
  3779. % ...
  3780. % C.free
  3781. % \end{verbatim}
  3782. % \var{Free} bukan metode kelas dan tidak bisa dipanggil dengan referensi
  3783. % kelas.
  3784. %%% parser_e_only_class_methods=03054_E_Hanya metode kelas bisa diakses dalam metode kelas
  3785. % Ini terkait dengan kesalahan sebelumnya. Anda tidak bisa memanggil metode obyek dari
  3786. % dalam metode kelas. Kode berikut akan menghasilkan kesalahan ini:
  3787. % \begin{verbatim}
  3788. % class procedure tobject.x;
  3789. %
  3790. % begin
  3791. % free
  3792. % \end{verbatim}
  3793. % Karena free adalah metode normal sebuah kelas, ia tidak bisa dipanggil dari
  3794. % metode kelas.
  3795. %%% parser_e_absolute_only_one_var=03095_E_absolute hanya bisa dikaitkan ke satu variabel
  3796. % Anda tidak bisa menetapkan lebih dari satu variabel sebelum direktif \var{absolute}.
  3797. % Selanjutnya, konstruksi berikut akan menghasilkan kesalahan ini:
  3798. % \begin{verbatim}
  3799. % Var Z : Longint;
  3800. % X,Y : Longint absolute Z;
  3801. % \end{verbatim}
  3802. % \item [ absolute hanya bisa dikaitkan ke sebuah var atau const ]
  3803. % Alamat dari direktif \var{absolute} hanya dapat mengarah ke variabel atau
  3804. % tipe konstan. Oleh karena itu, kode berikut akan menghasilkan kesalahan ini:
  3805. % \begin{verbatim}
  3806. % Procedure X;
  3807. %
  3808. % var p : longint absolute x;
  3809. % \end{verbatim}
  3810. %
  3811. %%% parser_e_type_and_var_only_in_generics=03224_E_VAR dan TYPE hanya dibolehkan dalam generik
  3812. % Penggunaan VAR dan TYPE untuk mendeklarasikan tipe baru di dalam sebuah obyek
  3813. % hanya dibolehkan di dalam generik.
  3814. %%% parser_f_no_anonymous_specializations=03232_F_Spesialisasi generik anonim tidak diperbolehkan
  3815. % Sesuatu seperti
  3816. % \begin{verbatim}
  3817. % var
  3818. % MyLinkedList: specialize TLinkedList<TFixedString15>;
  3819. % \end{verbatim}
  3820. % tidak dibolehkan. Deklarasikan tipe spesialisasi lebih dulu:
  3821. % \begin{verbatim}
  3822. % type
  3823. % TMyLinkedList = specialize TLinkedList<TFixedString15>;
  3824. % var
  3825. % MyLinkedList: TMyLinkedList
  3826. % \end{verbatim}
  3827. %%% type_w_mixed_signed_unsigned=04035_W_Mencampur ekspresi bertanda dan longword memberikan hasil 64bit
  3828. % Jika anda membagi (atau menghitung modulus dari) ekspresi bertanda dengan
  3829. % longword (atau sebaliknya), atau jika anda memiliki overflow dan/atau
  3830. % menghidupkan pemeriksaan jangkauan dan menggunakan ekspresi aritmatika
  3831. % (+, -, *, div, mod) dalam kedua angka bertanda dan longwords muncul,
  3832. % maka kesemuanya harus dievaluasi dalam 64bit yang lebih lambat daripada
  3833. % aritmatika 32bit normal. Anda bisa menghindari ini dengan typecasting satu
  3834. % operand agar ia sesuai tipe hasil atas yang lainnya.
  3835. %%% type_w_signed_unsigned_always_false=04044_W_Perbandingan selalu salah karena jangkauan nilai
  3836. % Ada perbandingan antara nilai unsigned dan konstan bertanda yang kurang dari
  3837. % nol. Karena promosi tipe, pernyataan akan selalu dievaluasi menjadi false.
  3838. % Typecast secara eksplisit konstan ke jangkauan yang benar guna menghindari masalah ini.
  3839. %%% type_w_signed_unsigned_always_true=04045_W_Perbandingan selalu true karena jangkauan nilai
  3840. % Ada perbandingan antara nilai unsigned dan konstan bertanda yang kurang dari
  3841. % nol. Karena promosi tipe, pernyataan akan selalu dievaluasi menjadi true.
  3842. % Typecast secara eksplisit konstan ke jangkauan yang benar guna menghindari masalah ini.