errorid.msg 243 KB

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