id.po 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000
  1. # Indonesian translation for aria2
  2. # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
  3. # This file is distributed under the same license as the aria2 package.
  4. # Andhika Padmawan <andhika.padmawan@gmail.com>, 2009.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2011-06-25 02:59+0900\n"
  11. "PO-Revision-Date: 2009-03-05 06:58+0000\n"
  12. "Last-Translator: pepoluan <Unknown>\n"
  13. "Language-Team: Indonesian <id@li.org>\n"
  14. "Language: id\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Launchpad-Export-Date: 2009-03-13 14:08+0000\n"
  19. "X-Generator: Launchpad (build Unknown)\n"
  20. #: src/DownloadEngine.cc:228
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr ""
  24. "Memulai proses shutdown... Tekan Ctrl-C sekali lagi untuk mengakhiri segera."
  25. #: src/DownloadEngine.cc:235
  26. msgid "Emergency shutdown sequence commencing..."
  27. msgstr "Memulai proses shutdown darurat..."
  28. #: src/MultiUrlRequestInfo.cc:157
  29. msgid "aria2 will resume download if the transfer is restarted."
  30. msgstr "aria2 akan melanjutkan unduh jika proses transfer dimulai kembali."
  31. #: src/MultiUrlRequestInfo.cc:159
  32. msgid ""
  33. "If there are any errors, then see the log file. See '-l' option in help/man "
  34. "page for details."
  35. msgstr ""
  36. "Jika terjadi error, silakan lihat berkas log. Lihat opsi '-l' pada laman "
  37. "help/man untuk keterangan lebih lanjut."
  38. #: src/RequestGroupMan.cc:603
  39. msgid "Download Results:"
  40. msgstr "Hasil pengunduhan:"
  41. #: src/RequestGroupMan.cc:640
  42. msgid "Status Legend:"
  43. msgstr "Legenda Status:"
  44. #: src/OptionHandler.cc:38
  45. msgid " Default: "
  46. msgstr " Default: "
  47. #: src/OptionHandler.cc:39
  48. msgid " Tags: "
  49. msgstr " Tag: "
  50. #: src/OptionHandler.cc:40
  51. msgid " Possible Values: "
  52. msgstr " Nilai-nilai yang dimungkinkan: "
  53. #: src/usage_text.h:37
  54. msgid ""
  55. " -d, --dir=DIR The directory to store the downloaded file."
  56. msgstr ""
  57. " -d, --dir=DIR Direktori untuk menyimpan berkas yang diunduh."
  58. #: src/usage_text.h:39
  59. #, fuzzy
  60. msgid ""
  61. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  62. " option is used, this option is ignored."
  63. msgstr ""
  64. " -l, --log=LOG Nama berkas dari berkas log. Jika\n"
  65. " diisi dengan '-', log ditulis ke stdout."
  66. #: src/usage_text.h:42
  67. msgid ""
  68. " -l, --log=LOG The file name of the log file. If '-' is\n"
  69. " specified, log is written to stdout."
  70. msgstr ""
  71. " -l, --log=LOG Nama berkas dari berkas log. Jika\n"
  72. " diisi dengan '-', log ditulis ke stdout."
  73. #: src/usage_text.h:45
  74. #, fuzzy
  75. msgid ""
  76. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  77. "will\n"
  78. " be changed to \"/\" and standard input, "
  79. "standard\n"
  80. " output and standard error will be redirected "
  81. "to\n"
  82. " \"/dev/null\"."
  83. msgstr ""
  84. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  85. "akan\n"
  86. " membatalkan unduhan ketika satu bagian berbeda "
  87. "dengan\n"
  88. " yang ada di berkas kendali. Jika true yang "
  89. "diberikan, anda\n"
  90. " dapat melanjutkan tapi beberapa proses unduhan "
  91. "akan hilang."
  92. #: src/usage_text.h:50
  93. #, fuzzy
  94. msgid ""
  95. " -s, --split=N Download a file using N connections. If more\n"
  96. " than N URLs are given, first N URLs are used "
  97. "and\n"
  98. " remaining URLs are used for backup. If less "
  99. "than\n"
  100. " N URLs are given, those URLs are used more "
  101. "than\n"
  102. " once so that N connections total are made\n"
  103. " simultaneously. The number of connections to "
  104. "the\n"
  105. " same host is restricted by\n"
  106. " --max-connection-per-server option. Please see "
  107. "-j\n"
  108. " and --min-split-size option too.\n"
  109. " Please note that in Metalink download, this\n"
  110. " option has no effect and use -C option instead."
  111. msgstr ""
  112. " -s, --split=N Unduh berkas menggunakan N koneksi. Jika "
  113. "lebih\n"
  114. " dari N URL diberikan, N URL pertama yang "
  115. "digunakan\n"
  116. " dan sisanya dipakai sebagai cadangan. Jika "
  117. "kurang dari\n"
  118. " N URL diberikan, URL tersebut digunakan lebih "
  119. "dari\n"
  120. " sekali sehingga total N koneksi yang dibuat "
  121. "secara\n"
  122. " simultan. Silakan lihat juga opsi -j.\n"
  123. " Perlu dicatat bahwa dalam pengunduhan "
  124. "Metalink, opsi\n"
  125. " ini tidak berakibat apapun sehingga gunakan "
  126. "opsi -C."
  127. #: src/usage_text.h:62
  128. #, fuzzy
  129. msgid ""
  130. " --retry-wait=SEC Set the seconds to wait between retries. \n"
  131. " With SEC > 0, aria2 will retry download when "
  132. "the\n"
  133. " HTTP server returns 503 response."
  134. msgstr ""
  135. " --retry-wait=DET Atur detik tunggu sebelum mencoba kembali\n"
  136. " setelah error terjadi."
  137. #: src/usage_text.h:66
  138. msgid " -t, --timeout=SEC Set timeout in seconds."
  139. msgstr " -t, --timeout=DET Atur tenggang waktu dalam detik."
  140. #: src/usage_text.h:68
  141. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  142. msgstr ""
  143. " -m, --max-tries=N Atur jumlah percobaan. 0 berarti tak terbatas."
  144. #: src/usage_text.h:70
  145. #, fuzzy
  146. msgid ""
  147. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  148. " previously defined proxy, use \"\".\n"
  149. " See also --all-proxy option.\n"
  150. " This affects all URLs."
  151. msgstr ""
  152. " --http-proxy=PROXY Gunakan server proxy ini untuk HTTP.\n"
  153. " Lihat pula opsi --all-proxy.\n"
  154. " Ini mempengaruhi semua URL."
  155. #: src/usage_text.h:75
  156. #, fuzzy
  157. msgid ""
  158. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  159. " previously defined proxy, use \"\".\n"
  160. " See also --all-proxy option.\n"
  161. " This affects all URLs."
  162. msgstr ""
  163. " --https-proxy=PROXY Gunakan server proxy ini untuk HTTPS.\n"
  164. " Lihat pula opsi --all-proxy.\n"
  165. " Ini mempengaruhi semua URL."
  166. #: src/usage_text.h:80
  167. #, fuzzy
  168. msgid ""
  169. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  170. "previously\n"
  171. " defined proxy, use \"\".\n"
  172. " See also --all-proxy option.\n"
  173. " This affects all URLs."
  174. msgstr ""
  175. " --ftp-proxy=PROXY Gunakan server proxy ini untuk FTP.\n"
  176. " Lihat pula opsi --all-proxy.\n"
  177. " Ini mempengaruhi semua URLs."
  178. #: src/usage_text.h:85
  179. #, fuzzy
  180. msgid ""
  181. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  182. "erase\n"
  183. " previously defined proxy, use \"\".\n"
  184. " You can override this setting and specify a\n"
  185. " proxy server for a particular protocol using\n"
  186. " --http-proxy, --https-proxy and --ftp-proxy\n"
  187. " options.\n"
  188. " This affects all URLs."
  189. msgstr ""
  190. " --all-proxy=PROXY Gunakan server proxy untuk semua protokol.\n"
  191. " Anda dapat melewatkan pengaturan ini dan "
  192. "menentukan\n"
  193. " server proxy untuk protokol tertentu "
  194. "menggunakan\n"
  195. " opsi --http-proxy, --https-proxy dan --ftp-"
  196. "proxy\n"
  197. " Ini mempengaruhi semua URL."
  198. #: src/usage_text.h:93
  199. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  200. msgstr ""
  201. " --http-user=PENGGUNA Atur pengguna HTTP. Ini mempengaruhi semua "
  202. "URL."
  203. #: src/usage_text.h:95
  204. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  205. msgstr ""
  206. " --http-passwd=SANDI Atur sandi HTTP. Ini mempengaruhi semua URL."
  207. #: src/usage_text.h:97
  208. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  209. msgstr ""
  210. " --proxy-method=METODE Atur metode yang digunakan dalam permintaan "
  211. "proxy."
  212. #: src/usage_text.h:99
  213. msgid " --referer=REFERER Set Referer. This affects all URLs."
  214. msgstr " --referer=REFERER Atur Referer. Ini mempengarui semua URL."
  215. #: src/usage_text.h:101
  216. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  217. msgstr ""
  218. " --ftp-user=PENGGUNA Atur pengguna FTP. Ini mempengaruhi semua "
  219. "URL."
  220. #: src/usage_text.h:103
  221. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  222. msgstr ""
  223. " --ftp-passwd=SANDI Atur sandi FTP. Ini mempengaruhi semua URL."
  224. #: src/usage_text.h:105
  225. msgid " --ftp-type=TYPE Set FTP transfer type."
  226. msgstr " --ftp-type=TIPE Atur tipe transfer FTP."
  227. #: src/usage_text.h:107
  228. msgid ""
  229. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  230. "given,\n"
  231. " the active mode will be used."
  232. msgstr ""
  233. " -p, --ftp-pasv[=true|false] Gunakan mode pasif di FTP. Jika false yang "
  234. "diberikan,\n"
  235. " maka mode aktif yang digunakan."
  236. #: src/usage_text.h:110
  237. msgid ""
  238. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  239. "than\n"
  240. " or equal to this value(bytes per sec).\n"
  241. " 0 means aria2 does not have a lowest speed "
  242. "limit.\n"
  243. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  244. " This option does not affect BitTorrent "
  245. "downloads."
  246. msgstr ""
  247. " --lowest-speed-limit=KECEPATAN Tutup koneksi jika unduhan lebih lambat "
  248. "dari\n"
  249. " atau sama dengan nilai ini (byte per detik).\n"
  250. " 0 berarti aria2 tak memiliki batas kecepatan "
  251. "terendah.\n"
  252. " Anda dapat menggunakan K atau M (1K = 1024, 1M "
  253. "= 1024K).\n"
  254. " Opsi ini tidak mempengaruhi unduhan BitTorrent."
  255. #: src/usage_text.h:116
  256. #, fuzzy
  257. msgid ""
  258. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  259. "sec.\n"
  260. " 0 means unrestricted.\n"
  261. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  262. " To limit the download speed per download, use\n"
  263. " --max-download-limit option."
  264. msgstr ""
  265. " --max-download-limit=KECEPATAN Atur kecepatan unduh maksimal dalam byte "
  266. "per detik.\n"
  267. " 0 berarti tidak dibatasi.\n"
  268. " Anda dapat menggunakan K atau M(1K = 1024, 1M "
  269. "= 1024K)."
  270. #: src/usage_text.h:122
  271. #, fuzzy
  272. msgid ""
  273. " --max-download-limit=SPEED Set max download speed per each download in\n"
  274. " bytes/sec. 0 means unrestricted.\n"
  275. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  276. " To limit the overall download speed, use\n"
  277. " --max-overall-download-limit option."
  278. msgstr ""
  279. " --max-download-limit=KECEPATAN Atur kecepatan unduh maksimal dalam byte "
  280. "per detik.\n"
  281. " 0 berarti tidak dibatasi.\n"
  282. " Anda dapat menggunakan K atau M(1K = 1024, 1M "
  283. "= 1024K)."
  284. #: src/usage_text.h:128
  285. msgid ""
  286. " --file-allocation=METHOD Specify file allocation method.\n"
  287. " 'none' doesn't pre-allocate file space. "
  288. "'prealloc'\n"
  289. " pre-allocates file space before download "
  290. "begins.\n"
  291. " This may take some time depending on the size "
  292. "of\n"
  293. " the file.\n"
  294. " If you are using newer file systems such as "
  295. "ext4\n"
  296. " (with extents support), btrfs, xfs or NTFS\n"
  297. " (MinGW build only), 'falloc' is your best\n"
  298. " choice. It allocates large(few GiB) files\n"
  299. " almost instantly. Don't use 'falloc' with "
  300. "legacy\n"
  301. " file systems such as ext3 and FAT32 because "
  302. "it\n"
  303. " takes almost same time as 'prealloc' and it\n"
  304. " blocks aria2 entirely until allocation "
  305. "finishes.\n"
  306. " 'falloc' may not be available if your system\n"
  307. " doesn't have posix_fallocate() function."
  308. msgstr ""
  309. #: src/usage_text.h:144
  310. msgid ""
  311. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  312. " size is smaller than SIZE.\n"
  313. " You can append K or M(1K = 1024, 1M = 1024K)."
  314. msgstr ""
  315. " --no-file-allocation-limit=UKURAN Tak ada alokasi berkas yang dibuat untuk "
  316. "berkas\n"
  317. " yang ukurannya lebih kecil dari UKURAN.\n"
  318. " Anda dapat menggunakan K atau M(1K = 1024, 1M "
  319. "= 1024K)."
  320. #: src/usage_text.h:148
  321. msgid ""
  322. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  323. "while\n"
  324. " allocating files.\n"
  325. " Turn off if you encounter any error"
  326. msgstr ""
  327. " --enable-direct-io[=true|false] Aktifkan directI/O, yang meminimalkan "
  328. "penggunaan\n"
  329. " cpu ketika mengalokasi berkas.\n"
  330. " Matikan jika anda mengalami error"
  331. #: src/usage_text.h:152
  332. #, fuzzy
  333. msgid ""
  334. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  335. " corresponding control file doesn't exist. "
  336. "See\n"
  337. " also --auto-file-renaming option."
  338. msgstr ""
  339. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  340. "akan\n"
  341. " membatalkan unduhan ketika satu bagian berbeda "
  342. "dengan\n"
  343. " yang ada di berkas kendali. Jika true yang "
  344. "diberikan, anda\n"
  345. " dapat melanjutkan tapi beberapa proses unduhan "
  346. "akan hilang."
  347. #: src/usage_text.h:156
  348. #, fuzzy
  349. msgid ""
  350. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  351. " download when a piece length is different "
  352. "from\n"
  353. " one in a control file. If true is given, you "
  354. "can\n"
  355. " proceed but some download progress will be "
  356. "lost."
  357. msgstr ""
  358. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  359. "akan\n"
  360. " membatalkan unduhan ketika satu bagian berbeda "
  361. "dengan\n"
  362. " yang ada di berkas kendali. Jika true yang "
  363. "diberikan, anda\n"
  364. " dapat melanjutkan tapi beberapa proses unduhan "
  365. "akan hilang."
  366. #: src/usage_text.h:161
  367. msgid ""
  368. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  369. "sequentially\n"
  370. " and download each URI in a separate session, "
  371. "like\n"
  372. " the usual command-line download utilities."
  373. msgstr ""
  374. " -Z, --force-sequential[=true|false] Ambil URI dalam baris perintah secara "
  375. "berurutan\n"
  376. " dan unduh tiap URI dalam sesi terpisah, "
  377. "seperti\n"
  378. " utilitas unduhan baris perintah biasa."
  379. #: src/usage_text.h:165
  380. msgid ""
  381. " --auto-file-renaming[=true|false] Rename file name if the same file "
  382. "already\n"
  383. " exists. This option works only in http(s)/ftp\n"
  384. " download.\n"
  385. " The new file name has a dot and a number"
  386. "(1..9999)\n"
  387. " appended."
  388. msgstr ""
  389. " --auto-file-renaming[=true|false] Namai ulang nama berkas jika berkas yang "
  390. "sama\n"
  391. " telah ada. Opsi ini hanya bekerja dalam "
  392. "unduhan\n"
  393. " http(s)/ftp.\n"
  394. " Nama berkas baru memiliki titik dan nomor"
  395. "(1..9999)\n"
  396. " yang ditambahkan."
  397. #: src/usage_text.h:171
  398. msgid ""
  399. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  400. " You can specify set of parts:\n"
  401. " http://{sv1,sv2,sv3}/foo.iso\n"
  402. " Also you can specify numeric sequences with "
  403. "step\n"
  404. " counter:\n"
  405. " http://host/image[000-100:2].img\n"
  406. " A step counter can be omitted.\n"
  407. " If all URIs do not point to the same file, "
  408. "such\n"
  409. " as the second example above, -Z option is\n"
  410. " required."
  411. msgstr ""
  412. " -P, --parameterized-uri[=true|false] Aktifkan dukungan URI ber-parameter.\n"
  413. " Anda dapat menentukan seperangkat bagian:\n"
  414. " http://{sv1,sv2,sv3}/foo.iso\n"
  415. " Anda juga dapat menentukan urutan numerik "
  416. "dengan\n"
  417. " penghitung langkah:\n"
  418. " http://host/image[000-100:2].img\n"
  419. " Penghitung langkah dapat dihilangkan.\n"
  420. " Jika tidak semua URI menunjuk ke berkas yang\n"
  421. " sama, seperti contoh kedua di atas, opsi -Z\n"
  422. " diperlukan."
  423. #: src/usage_text.h:182
  424. msgid ""
  425. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  426. msgstr ""
  427. " --enable-http-keep-alive[=true|false] Nyalakan koneksi persisten HTTP/1.1."
  428. #: src/usage_text.h:184
  429. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  430. msgstr " --enable-http-pipelining[=true|false] Aktifkan pipeline HTTP/1.1."
  431. #: src/usage_text.h:186
  432. msgid ""
  433. " -V, --check-integrity[=true|false] Check file integrity by validating "
  434. "piece\n"
  435. " hashes. This option has effect only in "
  436. "BitTorrent\n"
  437. " and Metalink downloads with chunk checksums.\n"
  438. " Use this option to re-download a damaged "
  439. "portion\n"
  440. " of a file. See also --bt-hash-check-seed "
  441. "option."
  442. msgstr ""
  443. " -V, --check-integrity[=true|false] Periksa integritas berkas dengan mem-"
  444. "validasi\n"
  445. " hash per bagian. Opsi ini hanya berpengaruh "
  446. "untuk unduhan\n"
  447. " BitTorrent dan Metalink dengan checksum "
  448. "bagian.\n"
  449. " Gunakan opsi ini untuk mengunduh-ulang bagian "
  450. "berkas yang\n"
  451. " rusak. Lihat juga opsi --bt-hash-check-seed"
  452. #: src/usage_text.h:192
  453. msgid ""
  454. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  455. " --check-integrity option and file is "
  456. "complete,\n"
  457. " continue to seed file. If you want to check "
  458. "file\n"
  459. " and download it only when it is damaged or\n"
  460. " incomplete, set this option to false.\n"
  461. " This option has effect only on BitTorrent\n"
  462. " download."
  463. msgstr ""
  464. " --bt-hash-check-seed[=true|false] Jika diberi nilai 'true', setelah "
  465. "memeriksa\n"
  466. " hash menggunakan opsi --check-integrity dan "
  467. "berkas\n"
  468. " sudah lengkap, lanjutkan men-seed berkas. Jika "
  469. "Anda\n"
  470. " ingin memeriksa berkas dan mengunduh hanya "
  471. "saat\n"
  472. " berkas rusak atau tidak lengkap, beri nilai "
  473. "'false'.\n"
  474. " Opsi ini hanya berpengaruh pada unduhan\n"
  475. " BitTorrent."
  476. #: src/usage_text.h:200
  477. #, fuzzy
  478. msgid ""
  479. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  480. "calculating\n"
  481. " checksum while downloading a file if chunk\n"
  482. " checksums are provided."
  483. msgstr ""
  484. " --realtime-chunk-checksum=true|false Validasi bagian data dengan "
  485. "menghitung\n"
  486. " checksum ketika mengunduh berkas jika checksum "
  487. "per\n"
  488. " bagian disediakan."
  489. #: src/usage_text.h:204
  490. #, fuzzy
  491. msgid ""
  492. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  493. " file. Use this option to resume a download\n"
  494. " started by a web browser or another program\n"
  495. " which downloads files sequentially from the\n"
  496. " beginning. Currently this option is only\n"
  497. " applicable to http(s)/ftp downloads."
  498. msgstr ""
  499. " -c, --continue Lanjutkan mengunduh berkas yang telah "
  500. "terunduh\n"
  501. " sebagian. Gunakan opsi ini untuk melanjutkan "
  502. "unduhan\n"
  503. " yang dimulai oleh peramban web atau program "
  504. "lain\n"
  505. " yang mengunduh berkas dari awal. Saat ini "
  506. "opsi\n"
  507. " ini hanya dapat diterapkan pada unduhan\n"
  508. " http(s)/ftp."
  509. #: src/usage_text.h:211
  510. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  511. msgstr ""
  512. " -U, --user-agent=AGEN_PENGGUNA Atur agen pengguna untuk unduhan http(s)."
  513. #: src/usage_text.h:213
  514. #, fuzzy
  515. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  516. msgstr " -n, --no-netrc Matikan dukungan netrc."
  517. #: src/usage_text.h:215
  518. #, fuzzy
  519. msgid ""
  520. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  521. " multiple URIs for a single entity: separate\n"
  522. " URIs on a single line using the TAB "
  523. "character.\n"
  524. " Reads input from stdin when '-' is specified.\n"
  525. " Additionally, options can be specified after "
  526. "each\n"
  527. " line of URI. This optional line must start "
  528. "with\n"
  529. " one or more white spaces and have one option "
  530. "per\n"
  531. " single line. See INPUT FILE section of man "
  532. "page\n"
  533. " for details."
  534. msgstr ""
  535. " -i, --input-file=BERKAS Mengunduh semua URI dalam BERKAS. Anda bisa "
  536. "menentukan\n"
  537. " lebih dari satu URI untuk satu entitas: "
  538. "pisahkan\n"
  539. " semua URI dalam satu baris dengan karakter "
  540. "TAB.\n"
  541. " Membaca masukan dari stdin kalau diberikan "
  542. "'-'\n"
  543. " Opsi out dan dir dapat diberikan setelah\n"
  544. " setiap baris URI. Baris optional ini\n"
  545. " harus dimulai dengan white space. Lihat bagian "
  546. "INPUT\n"
  547. " dan FILE dari laman man untuk detilnya."
  548. #: src/usage_text.h:225
  549. msgid ""
  550. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  551. "for\n"
  552. " every static (HTTP/FTP) URL, torrent and "
  553. "metalink.\n"
  554. " See also -s and -C options."
  555. msgstr ""
  556. " -j, --max-concurrent-downloads=N Atur jumlah maksimum unduhan bersamaan "
  557. "untuk\n"
  558. " tiap URL (HTTP/FTP), torrent dan metalink "
  559. "statis.\n"
  560. " Lihat pula opsi -s dan -C."
  561. #: src/usage_text.h:229
  562. msgid ""
  563. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  564. "format\n"
  565. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  566. msgstr ""
  567. " --load-cookies=BERKAS Muat cookie dari BERKAS menggunakan format "
  568. "Firefox3\n"
  569. " dan format Mozilla/Firefox(1.x/2.x)/Netscape."
  570. #: src/usage_text.h:232
  571. msgid ""
  572. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  573. "x)/\n"
  574. " Netscape format. If FILE already exists, it "
  575. "is\n"
  576. " overwritten. Session Cookies are also saved "
  577. "and\n"
  578. " their expiry values are treated as 0."
  579. msgstr ""
  580. #: src/usage_text.h:237
  581. #, fuzzy
  582. msgid ""
  583. " -S, --show-files[=true|false] Print file listing of .torrent, .meta4 and\n"
  584. " .metalink file and exit. More detailed\n"
  585. " information will be listed in case of torrent\n"
  586. " file."
  587. msgstr ""
  588. " -S, --show-files Cetak senarai berkas .torrent atau .metalink\n"
  589. " lalu keluar. Informasi lebih detail akan "
  590. "disenaraikan\n"
  591. " untuk berkas torrent."
  592. #: src/usage_text.h:242
  593. msgid ""
  594. " --select-file=INDEX... Set file to download by specifying its index.\n"
  595. " You can find the file index using the\n"
  596. " --show-files option. Multiple indexes can be\n"
  597. " specified by using ',', for example: \"3,6\".\n"
  598. " You can also use '-' to specify a range: "
  599. "\"1-5\".\n"
  600. " ',' and '-' can be used together.\n"
  601. " When used with the -M option, index may vary\n"
  602. " depending on the query(see --metalink-* "
  603. "options)."
  604. msgstr ""
  605. " --select-file=INDEX... Memilih berkas yang akan diunduh dengan\n"
  606. " menentukan indeks-nya. Anda bisa menemukan "
  607. "indeks-nya\n"
  608. " dengan menggunakan opsi --show-files. Lebih "
  609. "dari satu\n"
  610. " index bisa ditentukan dengan menggunakan ',', "
  611. "contoh: \"3,6\".\n"
  612. " Anda juga bisa menggunakan '-' untuk "
  613. "menandakan jangkauan: \"1-5\".\n"
  614. " ',' dan '-' dapat digunakan bersamaan.\n"
  615. " Kalau digunakan bersama opsi -M, indeks bisa "
  616. "berubah tergantung\n"
  617. " pada query-nya (lihat opsi --metalink-*)."
  618. #: src/usage_text.h:251
  619. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  620. msgstr " -T, --torrent-file=BERKAS_TORRENT Alamat ke berkas .torrent."
  621. #: src/usage_text.h:253
  622. msgid ""
  623. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  624. " whose suffix is .torrent or content type is\n"
  625. " application/x-bittorrent is downloaded, aria2\n"
  626. " parses it as a torrent file and downloads "
  627. "files\n"
  628. " mentioned in it.\n"
  629. " If mem is specified, a torrent file is not\n"
  630. " written to the disk, but is just kept in "
  631. "memory.\n"
  632. " If false is specified, the action mentioned "
  633. "above\n"
  634. " is not taken."
  635. msgstr ""
  636. " --follow-torrent=true|false|mem Jika true atau mem diberikan, saat "
  637. "mengunduh sebuah\n"
  638. " berkas berakhiran .torrent atau jenis konten "
  639. "application/x-bittorent,\n"
  640. " aria2 akan memeriksa berkas itu sebagai berkas "
  641. "torrent dan\n"
  642. " mengunduh berkas-berkas di dalamnya.\n"
  643. " Kalau mem diberikan, berkas torrent itu tidak "
  644. "ditulis ke disk,\n"
  645. " tetapi disimpan di memory saja.\n"
  646. " Jika false diberikan, tindakan di atas tidak "
  647. "dilakukan."
  648. #: src/usage_text.h:263
  649. msgid ""
  650. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  651. " Multiple ports can be specified by using ',',\n"
  652. " for example: \"6881,6885\". You can also use "
  653. "'-'\n"
  654. " to specify a range: \"6881-6999\". ',' and '-' "
  655. "can\n"
  656. " be used together."
  657. msgstr ""
  658. " --listen-port=PORT... Menentukan nomor port untuk unduhan "
  659. "BitTorrent.\n"
  660. " Beberapa port bisa ditentukan menggunakan "
  661. "',',\n"
  662. " contoh: \"6881,6885\". Anda juga bisa "
  663. "menggunakan\n"
  664. " '-' untuk menetapkan jangkauan: \"6881-6999\". "
  665. "',' dan\n"
  666. " '-' dapat digunakan bersamaan."
  667. #: src/usage_text.h:269
  668. #, fuzzy
  669. msgid ""
  670. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  671. "sec.\n"
  672. " 0 means unrestricted.\n"
  673. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  674. " To limit the upload speed per torrent, use\n"
  675. " --max-upload-limit option."
  676. msgstr ""
  677. " --max-download-limit=KECEPATAN Atur kecepatan unduh maksimal dalam byte "
  678. "per detik.\n"
  679. " 0 berarti tidak dibatasi.\n"
  680. " Anda dapat menggunakan K atau M(1K = 1024, 1M "
  681. "= 1024K)."
  682. #: src/usage_text.h:275
  683. msgid ""
  684. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  685. " bytes/sec. 0 means unrestricted.\n"
  686. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  687. " To limit the overall upload speed, use\n"
  688. " --max-overall-upload-limit option."
  689. msgstr ""
  690. #: src/usage_text.h:281
  691. msgid ""
  692. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  693. " --seed-ratio option."
  694. msgstr ""
  695. " --seed-time=MENIT Tentukan kecepatan pembenihan dalam menit. "
  696. "Lihat\n"
  697. " pula opsi --seed-ratio."
  698. #: src/usage_text.h:284
  699. msgid ""
  700. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  701. " until share ratio reaches RATIO.\n"
  702. " You are strongly encouraged to specify equals "
  703. "or\n"
  704. " more than 1.0 here. Specify 0.0 if you intend "
  705. "to\n"
  706. " do seeding regardless of share ratio.\n"
  707. " If --seed-time option is specified along with\n"
  708. " this option, seeding ends when at least one "
  709. "of\n"
  710. " the conditions is satisfied."
  711. msgstr ""
  712. #: src/usage_text.h:293
  713. msgid ""
  714. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  715. "in\n"
  716. " BitTorrent is 20 byte length. If more than 20\n"
  717. " bytes are specified, only first 20 bytes are\n"
  718. " used. If less than 20 bytes are specified, "
  719. "random\n"
  720. " byte data are added to make its length 20 "
  721. "bytes."
  722. msgstr ""
  723. #: src/usage_text.h:299
  724. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  725. msgstr ""
  726. #: src/usage_text.h:301
  727. #, fuzzy
  728. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  729. msgstr " --enable-dht[=true|false] Aktifkan fungsionalitas DHT."
  730. #: src/usage_text.h:303
  731. #, fuzzy
  732. msgid ""
  733. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  734. " DHT. Multiple ports can be specified by using\n"
  735. " ',', for example: \"6881,6885\". You can also\n"
  736. " use '-' to specify a range: \"6881-6999\". "
  737. "','\n"
  738. " and '-' can be used together."
  739. msgstr ""
  740. " --listen-port=PORT... Menentukan nomor port untuk unduhan "
  741. "BitTorrent.\n"
  742. " Beberapa port bisa ditentukan menggunakan "
  743. "',',\n"
  744. " contoh: \"6881,6885\". Anda juga bisa "
  745. "menggunakan\n"
  746. " '-' untuk menetapkan jangkauan: \"6881-6999\". "
  747. "',' dan\n"
  748. " '-' dapat digunakan bersamaan."
  749. #: src/usage_text.h:309
  750. #, fuzzy
  751. msgid ""
  752. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  753. "DHT\n"
  754. " network."
  755. msgstr ""
  756. " --retry-wait=DET Atur detik tunggu sebelum mencoba kembali\n"
  757. " setelah error terjadi."
  758. #: src/usage_text.h:312
  759. #, fuzzy
  760. msgid ""
  761. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  762. msgstr ""
  763. " --conf-path=ALAMAT Ubah alamat berkas konfigurasi ke ALAMAT."
  764. #: src/usage_text.h:314
  765. msgid ""
  766. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  767. " If several encryption methods are provided by "
  768. "a\n"
  769. " peer, aria2 chooses the lowest one which "
  770. "satisfies\n"
  771. " the given level."
  772. msgstr ""
  773. #: src/usage_text.h:319
  774. #, fuzzy
  775. msgid ""
  776. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  777. "and\n"
  778. " establish connection with legacy BitTorrent\n"
  779. " handshake. Thus aria2 always uses Obfuscation\n"
  780. " handshake."
  781. msgstr ""
  782. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  783. "akan\n"
  784. " membatalkan unduhan ketika satu bagian berbeda "
  785. "dengan\n"
  786. " yang ada di berkas kendali. Jika true yang "
  787. "diberikan, anda\n"
  788. " dapat melanjutkan tapi beberapa proses unduhan "
  789. "akan hilang."
  790. #: src/usage_text.h:324
  791. msgid ""
  792. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  793. " torrent is lower than SPEED, aria2 "
  794. "temporarily\n"
  795. " increases the number of peers to try for more\n"
  796. " download speed. Configuring this option with "
  797. "your\n"
  798. " preferred download speed can increase your\n"
  799. " download speed in some cases.\n"
  800. " You can append K or M(1K = 1024, 1M = 1024K)."
  801. msgstr ""
  802. #: src/usage_text.h:332
  803. msgid ""
  804. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  805. "each\n"
  806. " BitTorrent download."
  807. msgstr ""
  808. #: src/usage_text.h:335
  809. msgid ""
  810. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  811. " verifying piece hashes."
  812. msgstr ""
  813. #: src/usage_text.h:338
  814. msgid ""
  815. " --bt-max-peers=NUM Specify the maximum number of peers per "
  816. "torrent.\n"
  817. " 0 means unlimited.\n"
  818. " See also --bt-request-peer-speed-limit option."
  819. msgstr ""
  820. #: src/usage_text.h:342
  821. #, fuzzy
  822. msgid ""
  823. " -M, --metalink-file=METALINK_FILE The file path to the .meta4 and ."
  824. "metalink\n"
  825. " file. Reads input from stdin when '-' is\n"
  826. " specified."
  827. msgstr ""
  828. " -M, --metalink-file=BERKAS_METALINK Alamat berkas ke berkas .metalink."
  829. #: src/usage_text.h:346
  830. msgid ""
  831. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  832. " simultaneously. Some Metalinks regulate the\n"
  833. " number of servers to connect. aria2 strictly\n"
  834. " respects them. This means that if Metalink "
  835. "defines\n"
  836. " the maxconnections attribute lower than\n"
  837. " NUM_SERVERS, then aria2 uses the value of\n"
  838. " maxconnections attribute instead of "
  839. "NUM_SERVERS.\n"
  840. " See also -s and -j options."
  841. msgstr ""
  842. #: src/usage_text.h:355
  843. msgid " --metalink-version=VERSION The version of the file to download."
  844. msgstr " --metalink-version=VERSI Versi berkas yang akan diunduh."
  845. #: src/usage_text.h:357
  846. msgid " --metalink-language=LANGUAGE The language of the file to download."
  847. msgstr " --metalink-language=BAHASA Bahasa dari berkas yang akan diunduh."
  848. #: src/usage_text.h:359
  849. msgid ""
  850. " --metalink-os=OS The operating system of the file to download."
  851. msgstr ""
  852. " --metalink-os=OS Sistem operasi dari berkas yang akan diunduh."
  853. #: src/usage_text.h:361
  854. msgid ""
  855. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  856. " A comma-delimited list of locations is\n"
  857. " acceptable."
  858. msgstr ""
  859. #: src/usage_text.h:365
  860. msgid ""
  861. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  862. "'none'\n"
  863. " if you don't have any preferred protocol."
  864. msgstr ""
  865. #: src/usage_text.h:368
  866. #, fuzzy
  867. msgid ""
  868. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  869. " whose suffix is .meta4 or .metalink, or "
  870. "content\n"
  871. " type of application/metalink4+xml or\n"
  872. " application/metalink+xml is downloaded, aria2\n"
  873. " parses it as a metalink file and downloads "
  874. "files\n"
  875. " mentioned in it.\n"
  876. " If mem is specified, a metalink file is not\n"
  877. " written to the disk, but is just kept in "
  878. "memory.\n"
  879. " If false is specified, the action mentioned "
  880. "above\n"
  881. " is not taken."
  882. msgstr ""
  883. " --follow-torrent=true|false|mem Jika true atau mem diberikan, saat "
  884. "mengunduh sebuah\n"
  885. " berkas berakhiran .torrent atau jenis konten "
  886. "application/x-bittorent,\n"
  887. " aria2 akan memeriksa berkas itu sebagai berkas "
  888. "torrent dan\n"
  889. " mengunduh berkas-berkas di dalamnya.\n"
  890. " Kalau mem diberikan, berkas torrent itu tidak "
  891. "ditulis ke disk,\n"
  892. " tetapi disimpan di memory saja.\n"
  893. " Jika false diberikan, tindakan di atas tidak "
  894. "dilakukan."
  895. #: src/usage_text.h:379
  896. #, fuzzy
  897. msgid ""
  898. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  899. "several\n"
  900. " protocols are available for a mirror in a "
  901. "metalink\n"
  902. " file, aria2 uses one of them.\n"
  903. " Use --metalink-preferred-protocol option to\n"
  904. " specify the preference of protocol."
  905. msgstr ""
  906. " --auto-file-renaming[=true|false] Namai ulang nama berkas jika berkas yang "
  907. "sama\n"
  908. " telah ada. Opsi ini hanya bekerja dalam "
  909. "unduhan\n"
  910. " http(s)/ftp.\n"
  911. " Nama berkas baru memiliki titik dan nomor"
  912. "(1..9999)\n"
  913. " yang ditambahkan."
  914. #: src/usage_text.h:385
  915. msgid " -v, --version Print the version number and exit."
  916. msgstr " -v, --version Cetak nomor versi lalu keluar."
  917. #: src/usage_text.h:387
  918. #, fuzzy
  919. msgid ""
  920. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  921. " The help messages are classified with tags. A "
  922. "tag\n"
  923. " starts with \"#\". For example, type \"--"
  924. "help=#http\"\n"
  925. " to get the usage for the options tagged with\n"
  926. " \"#http\". If non-tag word is given, print the "
  927. "usage\n"
  928. " for the options whose name includes that word."
  929. msgstr ""
  930. " --bt-hash-check-seed[=true|false] Jika diberi nilai 'true', setelah "
  931. "memeriksa\n"
  932. " hash menggunakan opsi --check-integrity dan "
  933. "berkas\n"
  934. " sudah lengkap, lanjutkan men-seed berkas. Jika "
  935. "Anda\n"
  936. " ingin memeriksa berkas dan mengunduh hanya "
  937. "saat\n"
  938. " berkas rusak atau tidak lengkap, beri nilai "
  939. "'false'.\n"
  940. " Opsi ini hanya berpengaruh pada unduhan\n"
  941. " BitTorrent."
  942. #: src/usage_text.h:394
  943. #, fuzzy
  944. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  945. msgstr " --no-conf Nonaktifkan memuat berkas aria2.conf."
  946. #: src/usage_text.h:396
  947. msgid ""
  948. " --conf-path=PATH Change the configuration file path to PATH."
  949. msgstr ""
  950. " --conf-path=ALAMAT Ubah alamat berkas konfigurasi ke ALAMAT."
  951. #: src/usage_text.h:398
  952. msgid ""
  953. " --stop=SEC Stop application after SEC seconds has "
  954. "passed.\n"
  955. " If 0 is given, this feature is disabled."
  956. msgstr ""
  957. #: src/usage_text.h:401
  958. msgid ""
  959. " --header=HEADER Append HEADER to HTTP request header. You can "
  960. "use\n"
  961. " this option repeatedly to specify more than "
  962. "one\n"
  963. " header:\n"
  964. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  965. "9J1\"\n"
  966. " http://host/file"
  967. msgstr ""
  968. #: src/usage_text.h:407
  969. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  970. msgstr ""
  971. #: src/usage_text.h:409
  972. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  973. msgstr ""
  974. #: src/usage_text.h:411
  975. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  976. msgstr ""
  977. #: src/usage_text.h:413
  978. msgid ""
  979. " --summary-interval=SEC Set interval to output download progress "
  980. "summary.\n"
  981. " Setting 0 suppresses the output."
  982. msgstr ""
  983. #: src/usage_text.h:416
  984. msgid " --log-level=LEVEL Set log level to output."
  985. msgstr ""
  986. #: src/usage_text.h:418
  987. msgid ""
  988. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  989. "the\n"
  990. " remote HTTP/FTP server and if it is "
  991. "available,\n"
  992. " apply it to the local file."
  993. msgstr ""
  994. #: src/usage_text.h:422
  995. msgid ""
  996. " --connect-timeout=SEC Set the connect timeout in seconds to "
  997. "establish\n"
  998. " connection to HTTP/FTP/proxy server. After "
  999. "the\n"
  1000. " connection is established, this option makes "
  1001. "no\n"
  1002. " effect and --timeout option is used instead."
  1003. msgstr ""
  1004. #: src/usage_text.h:427
  1005. msgid ""
  1006. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  1007. "the\n"
  1008. " remote HTTP/FTP servers NUM times without "
  1009. "getting\n"
  1010. " a single byte, then force the download to "
  1011. "fail.\n"
  1012. " Specify 0 to disable this option.\n"
  1013. " This options is effective only when using\n"
  1014. " HTTP/FTP servers."
  1015. msgstr ""
  1016. #: src/usage_text.h:434
  1017. msgid ""
  1018. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  1019. " If 'inorder' is given, URI is tried in the "
  1020. "order\n"
  1021. " appeared in the URI list.\n"
  1022. " If 'feedback' is given, aria2 uses download "
  1023. "speed\n"
  1024. " observed in the previous downloads and choose\n"
  1025. " fastest server in the URI list. This also\n"
  1026. " effectively skips dead mirrors. The observed\n"
  1027. " download speed is a part of performance "
  1028. "profile\n"
  1029. " of servers mentioned in --server-stat-of and\n"
  1030. " --server-stat-if options.\n"
  1031. " If 'adaptive' is given, selects one of the "
  1032. "best\n"
  1033. " mirrors for the first and reserved "
  1034. "connections.\n"
  1035. " For supplementary ones, it returns mirrors "
  1036. "which\n"
  1037. " has not been tested yet, and if each of them "
  1038. "has\n"
  1039. " already been tested, returns mirrors which has "
  1040. "to\n"
  1041. " be tested again. Otherwise, it doesn't select\n"
  1042. " anymore mirrors. Like 'feedback', it uses a\n"
  1043. " performance profile of servers."
  1044. msgstr ""
  1045. #: src/usage_text.h:453
  1046. msgid ""
  1047. " --server-stat-of=FILE Specify the filename to which performance "
  1048. "profile\n"
  1049. " of the servers is saved. You can load saved "
  1050. "data\n"
  1051. " using --server-stat-if option."
  1052. msgstr ""
  1053. #: src/usage_text.h:457
  1054. msgid ""
  1055. " --server-stat-if=FILE Specify the filename to load performance "
  1056. "profile\n"
  1057. " of the servers. The loaded data will be used "
  1058. "in\n"
  1059. " some URI selector such as 'feedback'.\n"
  1060. " See also --uri-selector option"
  1061. msgstr ""
  1062. #: src/usage_text.h:462
  1063. msgid ""
  1064. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  1065. " performance profile of the servers since the "
  1066. "last\n"
  1067. " contact to them."
  1068. msgstr ""
  1069. #: src/usage_text.h:466
  1070. msgid ""
  1071. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  1072. "seconds.\n"
  1073. " If 0 is given, a control file is not saved "
  1074. "during\n"
  1075. " download. aria2 saves a control file when it "
  1076. "stops\n"
  1077. " regardless of the value."
  1078. msgstr ""
  1079. #: src/usage_text.h:471
  1080. msgid ""
  1081. " --certificate=FILE Use the client certificate in FILE.\n"
  1082. " The certificate must be in PEM format.\n"
  1083. " You may use --private-key option to specify "
  1084. "the\n"
  1085. " private key."
  1086. msgstr ""
  1087. #: src/usage_text.h:476
  1088. msgid ""
  1089. " --private-key=FILE Use the private key in FILE.\n"
  1090. " The private key must be decrypted and in PEM\n"
  1091. " format. See also --certificate option."
  1092. msgstr ""
  1093. #: src/usage_text.h:480
  1094. msgid ""
  1095. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1096. "verify\n"
  1097. " the peers. The certificate file must be in "
  1098. "PEM\n"
  1099. " format and can contain multiple CA "
  1100. "certificates.\n"
  1101. " Use --check-certificate option to enable\n"
  1102. " verification."
  1103. msgstr ""
  1104. #: src/usage_text.h:486
  1105. msgid ""
  1106. " --check-certificate[=true|false] Verify the peer using certificates "
  1107. "specified\n"
  1108. " in --ca-certificate option."
  1109. msgstr ""
  1110. #: src/usage_text.h:489
  1111. msgid ""
  1112. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  1113. " network address with or without CIDR block "
  1114. "where\n"
  1115. " proxy should not be used."
  1116. msgstr ""
  1117. #: src/usage_text.h:493
  1118. msgid ""
  1119. " --use-head[=true|false] Use HEAD method for the first request to the "
  1120. "HTTP\n"
  1121. " server."
  1122. msgstr ""
  1123. #: src/usage_text.h:496
  1124. msgid " --event-poll=POLL Specify the method for polling events."
  1125. msgstr ""
  1126. #: src/usage_text.h:498
  1127. msgid ""
  1128. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1129. "a\n"
  1130. " BitTorrent tracker. Although this function is\n"
  1131. " named 'external', it can accept any kind of "
  1132. "IP\n"
  1133. " addresses."
  1134. msgstr ""
  1135. #: src/usage_text.h:503
  1136. msgid ""
  1137. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1138. "it\n"
  1139. " is requested by the server. If false is set, "
  1140. "then\n"
  1141. " authorization header is always sent to the "
  1142. "server.\n"
  1143. " There is an exception: if username and "
  1144. "password\n"
  1145. " are embedded in URI, authorization header is\n"
  1146. " always sent to the server regardless of this\n"
  1147. " option."
  1148. msgstr ""
  1149. #: src/usage_text.h:511
  1150. #, fuzzy
  1151. msgid ""
  1152. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1153. "can\n"
  1154. " find the file index using the --show-files "
  1155. "option.\n"
  1156. " PATH is a relative path to the path specified "
  1157. "in\n"
  1158. " --dir option. You can use this option "
  1159. "multiple\n"
  1160. " times."
  1161. msgstr ""
  1162. " --file-allocation=METODE Tentukan metode pengalokasian berkas.\n"
  1163. " 'none' tidak melakukan pre-alokasi ruang "
  1164. "berkas. 'prealloc'\n"
  1165. " melakukan pre-alokasi ruang berkas sebelum "
  1166. "mengunduh.\n"
  1167. " Ini mungkin memakan waktu tergantung ukuran "
  1168. "dari\n"
  1169. " berkas ini."
  1170. #: src/usage_text.h:517
  1171. #, fuzzy
  1172. msgid ""
  1173. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1174. "the\n"
  1175. " remote file is available and doesn't download\n"
  1176. " data. This option has effect on HTTP/FTP "
  1177. "download.\n"
  1178. " BitTorrent downloads are canceled if true is\n"
  1179. " specified."
  1180. msgstr ""
  1181. " --auto-file-renaming[=true|false] Namai ulang nama berkas jika berkas yang "
  1182. "sama\n"
  1183. " telah ada. Opsi ini hanya bekerja dalam "
  1184. "unduhan\n"
  1185. " http(s)/ftp.\n"
  1186. " Nama berkas baru memiliki titik dan nomor"
  1187. "(1..9999)\n"
  1188. " yang ditambahkan."
  1189. #: src/usage_text.h:523
  1190. #, fuzzy
  1191. msgid ""
  1192. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1193. " requests. This completely overrides interval "
  1194. "value\n"
  1195. " and aria2 just uses this value and ignores "
  1196. "the\n"
  1197. " min interval and interval value in the "
  1198. "response of\n"
  1199. " tracker. If 0 is set, aria2 determines "
  1200. "interval\n"
  1201. " based on the response of tracker and the "
  1202. "download\n"
  1203. " progress."
  1204. msgstr ""
  1205. " --bt-hash-check-seed[=true|false] Jika diberi nilai 'true', setelah "
  1206. "memeriksa\n"
  1207. " hash menggunakan opsi --check-integrity dan "
  1208. "berkas\n"
  1209. " sudah lengkap, lanjutkan men-seed berkas. Jika "
  1210. "Anda\n"
  1211. " ingin memeriksa berkas dan mengunduh hanya "
  1212. "saat\n"
  1213. " berkas rusak atau tidak lengkap, beri nilai "
  1214. "'false'.\n"
  1215. " Opsi ini hanya berpengaruh pada unduhan\n"
  1216. " BitTorrent."
  1217. #: src/usage_text.h:531
  1218. #, fuzzy
  1219. msgid ""
  1220. " --on-download-complete=COMMAND Set the command to be executed after "
  1221. "download\n"
  1222. " completed.\n"
  1223. " See --on-download-start option for the\n"
  1224. " requirement of COMMAND.\n"
  1225. " See also --on-download-stop option."
  1226. msgstr ""
  1227. " --max-download-limit=KECEPATAN Atur kecepatan unduh maksimal dalam byte "
  1228. "per detik.\n"
  1229. " 0 berarti tidak dibatasi.\n"
  1230. " Anda dapat menggunakan K atau M(1K = 1024, 1M "
  1231. "= 1024K)."
  1232. #: src/usage_text.h:537
  1233. #, fuzzy
  1234. msgid ""
  1235. " --on-download-start=COMMAND Set the command to be executed after download\n"
  1236. " got started. aria2 passes 3 arguments to "
  1237. "COMMAND:\n"
  1238. " GID, the nubmer of files and file path. See "
  1239. "Event\n"
  1240. " Hook in man page for more details."
  1241. msgstr ""
  1242. " --max-download-limit=KECEPATAN Atur kecepatan unduh maksimal dalam byte "
  1243. "per detik.\n"
  1244. " 0 berarti tidak dibatasi.\n"
  1245. " Anda dapat menggunakan K atau M(1K = 1024, 1M "
  1246. "= 1024K)."
  1247. #: src/usage_text.h:542
  1248. #, fuzzy
  1249. msgid ""
  1250. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  1251. " was paused.\n"
  1252. " See --on-download-start option for the\n"
  1253. " requirement of COMMAND."
  1254. msgstr ""
  1255. " --max-download-limit=KECEPATAN Atur kecepatan unduh maksimal dalam byte "
  1256. "per detik.\n"
  1257. " 0 berarti tidak dibatasi.\n"
  1258. " Anda dapat menggunakan K atau M(1K = 1024, 1M "
  1259. "= 1024K)."
  1260. #: src/usage_text.h:547
  1261. #, fuzzy
  1262. msgid ""
  1263. " --on-download-error=COMMAND Set the command to be executed after download\n"
  1264. " aborted due to error.\n"
  1265. " See --on-download-start option for the\n"
  1266. " requirement of COMMAND.\n"
  1267. " See also --on-download-stop option."
  1268. msgstr ""
  1269. " --max-download-limit=KECEPATAN Atur kecepatan unduh maksimal dalam byte "
  1270. "per detik.\n"
  1271. " 0 berarti tidak dibatasi.\n"
  1272. " Anda dapat menggunakan K atau M(1K = 1024, 1M "
  1273. "= 1024K)."
  1274. #: src/usage_text.h:553
  1275. #, fuzzy
  1276. msgid ""
  1277. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  1278. " stopped. You can override the command to be\n"
  1279. " executed for particular download result using\n"
  1280. " --on-download-complete and --on-download-"
  1281. "error. If\n"
  1282. " they are specified, command specified in this\n"
  1283. " option is not executed.\n"
  1284. " See --on-download-start option for the\n"
  1285. " requirement of COMMAND."
  1286. msgstr ""
  1287. " --follow-torrent=true|false|mem Jika true atau mem diberikan, saat "
  1288. "mengunduh sebuah\n"
  1289. " berkas berakhiran .torrent atau jenis konten "
  1290. "application/x-bittorent,\n"
  1291. " aria2 akan memeriksa berkas itu sebagai berkas "
  1292. "torrent dan\n"
  1293. " mengunduh berkas-berkas di dalamnya.\n"
  1294. " Kalau mem diberikan, berkas torrent itu tidak "
  1295. "ditulis ke disk,\n"
  1296. " tetapi disimpan di memory saja.\n"
  1297. " Jika false diberikan, tindakan di atas tidak "
  1298. "dilakukan."
  1299. #: src/usage_text.h:562
  1300. msgid ""
  1301. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1302. "0 in\n"
  1303. " consecutive SEC seconds. If 0 is given, this\n"
  1304. " feature is disabled."
  1305. msgstr ""
  1306. #: src/usage_text.h:566
  1307. msgid ""
  1308. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1309. "last\n"
  1310. " pieces of each file first. This is useful for\n"
  1311. " previewing files. The argument can contain 2\n"
  1312. " keywords:head and tail. To include both "
  1313. "keywords,\n"
  1314. " they must be separated by comma. These "
  1315. "keywords\n"
  1316. " can take one parameter, SIZE. For example, if\n"
  1317. " head=SIZE is specified, pieces in the range "
  1318. "of\n"
  1319. " first SIZE bytes of each file get higher "
  1320. "priority.\n"
  1321. " tail=SIZE means the range of last SIZE bytes "
  1322. "of\n"
  1323. " each file. SIZE can include K or M(1K = 1024, "
  1324. "1M =\n"
  1325. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1326. msgstr ""
  1327. #: src/usage_text.h:578
  1328. msgid ""
  1329. " --interface=INTERFACE Bind sockets to given interface. You can "
  1330. "specify\n"
  1331. " interface name, IP address and hostname."
  1332. msgstr ""
  1333. #: src/usage_text.h:581
  1334. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1335. msgstr ""
  1336. #: src/usage_text.h:583
  1337. #, fuzzy
  1338. msgid ""
  1339. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1340. "has\n"
  1341. " effect only when BitTorrent Magnet URI is "
  1342. "used.\n"
  1343. " The filename is hex encoded info hash with "
  1344. "suffix\n"
  1345. " .torrent. The directory to be saved is the "
  1346. "same\n"
  1347. " directory where download file is saved. If "
  1348. "the\n"
  1349. " same file already exists, metadata is not "
  1350. "saved.\n"
  1351. " See also --bt-metadata-only option."
  1352. msgstr ""
  1353. " --bt-hash-check-seed[=true|false] Jika diberi nilai 'true', setelah "
  1354. "memeriksa\n"
  1355. " hash menggunakan opsi --check-integrity dan "
  1356. "berkas\n"
  1357. " sudah lengkap, lanjutkan men-seed berkas. Jika "
  1358. "Anda\n"
  1359. " ingin memeriksa berkas dan mengunduh hanya "
  1360. "saat\n"
  1361. " berkas rusak atau tidak lengkap, beri nilai "
  1362. "'false'.\n"
  1363. " Opsi ini hanya berpengaruh pada unduhan\n"
  1364. " BitTorrent."
  1365. #: src/usage_text.h:591
  1366. msgid ""
  1367. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1368. "cache\n"
  1369. " header to avoid cached content. If false is\n"
  1370. " given, these headers are not sent and you can "
  1371. "add\n"
  1372. " Cache-Control header with a directive you "
  1373. "like\n"
  1374. " using --header option."
  1375. msgstr ""
  1376. #: src/usage_text.h:597
  1377. #, fuzzy
  1378. msgid ""
  1379. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1380. "described\n"
  1381. " in metadata will not be downloaded. This "
  1382. "option\n"
  1383. " has effect only when BitTorrent Magnet URI is\n"
  1384. " used. See also --bt-save-metadata option."
  1385. msgstr ""
  1386. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  1387. "akan\n"
  1388. " membatalkan unduhan ketika satu bagian berbeda "
  1389. "dengan\n"
  1390. " yang ada di berkas kendali. Jika true yang "
  1391. "diberikan, anda\n"
  1392. " dapat melanjutkan tapi beberapa proses unduhan "
  1393. "akan hilang."
  1394. #: src/usage_text.h:602
  1395. msgid ""
  1396. " --human-readable[=true|false] Print sizes and speed in human readable "
  1397. "format\n"
  1398. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1399. msgstr ""
  1400. #: src/usage_text.h:605
  1401. #, fuzzy
  1402. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1403. msgstr " --enable-dht[=true|false] Aktifkan fungsionalitas DHT."
  1404. #: src/usage_text.h:607
  1405. #, fuzzy
  1406. msgid ""
  1407. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1408. "If\n"
  1409. " this option is not specified, the default\n"
  1410. " interface is chosen. You can specify "
  1411. "interface\n"
  1412. " name and IP address."
  1413. msgstr ""
  1414. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  1415. "akan\n"
  1416. " membatalkan unduhan ketika satu bagian berbeda "
  1417. "dengan\n"
  1418. " yang ada di berkas kendali. Jika true yang "
  1419. "diberikan, anda\n"
  1420. " dapat melanjutkan tapi beberapa proses unduhan "
  1421. "akan hilang."
  1422. #: src/usage_text.h:612
  1423. msgid ""
  1424. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1425. " left."
  1426. msgstr ""
  1427. #: src/usage_text.h:615
  1428. #, fuzzy
  1429. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1430. msgstr ""
  1431. " --ftp-user=PENGGUNA Atur pengguna FTP. Ini mempengaruhi semua "
  1432. "URL."
  1433. #: src/usage_text.h:617
  1434. #, fuzzy
  1435. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1436. msgstr ""
  1437. " --ftp-passwd=SANDI Atur sandi FTP. Ini mempengaruhi semua URL."
  1438. #: src/usage_text.h:619
  1439. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1440. msgstr ""
  1441. #: src/usage_text.h:621
  1442. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1443. msgstr ""
  1444. #: src/usage_text.h:623
  1445. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1446. msgstr ""
  1447. #: src/usage_text.h:625
  1448. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1449. msgstr ""
  1450. #: src/usage_text.h:627
  1451. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1452. msgstr ""
  1453. #: src/usage_text.h:629
  1454. #, fuzzy
  1455. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1456. msgstr ""
  1457. " --ftp-passwd=SANDI Atur sandi FTP. Ini mempengaruhi semua URL."
  1458. #: src/usage_text.h:631
  1459. #, fuzzy
  1460. msgid ""
  1461. " --remove-control-file[=true|false] Remove control file before download. "
  1462. "Using\n"
  1463. " with --allow-overwrite=true, download always\n"
  1464. " starts from scratch. This will be useful for\n"
  1465. " users behind proxy server which disables "
  1466. "resume."
  1467. msgstr ""
  1468. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  1469. "akan\n"
  1470. " membatalkan unduhan ketika satu bagian berbeda "
  1471. "dengan\n"
  1472. " yang ada di berkas kendali. Jika true yang "
  1473. "diberikan, anda\n"
  1474. " dapat melanjutkan tapi beberapa proses unduhan "
  1475. "akan hilang."
  1476. #: src/usage_text.h:636
  1477. #, fuzzy
  1478. msgid ""
  1479. " --always-resume[=true|false] Always resume download. If true is given, "
  1480. "aria2\n"
  1481. " always tries to resume download and if resume "
  1482. "is\n"
  1483. " not possible, aborts download. If false is "
  1484. "given,\n"
  1485. " when all given URIs do not support resume or\n"
  1486. " aria2 encounters N URIs which does not "
  1487. "support\n"
  1488. " resume (N is the value specified using\n"
  1489. " --max-resume-failure-tries option), aria2\n"
  1490. " downloads file from scratch.\n"
  1491. " See --max-resume-failure-tries option."
  1492. msgstr ""
  1493. " --follow-torrent=true|false|mem Jika true atau mem diberikan, saat "
  1494. "mengunduh sebuah\n"
  1495. " berkas berakhiran .torrent atau jenis konten "
  1496. "application/x-bittorent,\n"
  1497. " aria2 akan memeriksa berkas itu sebagai berkas "
  1498. "torrent dan\n"
  1499. " mengunduh berkas-berkas di dalamnya.\n"
  1500. " Kalau mem diberikan, berkas torrent itu tidak "
  1501. "ditulis ke disk,\n"
  1502. " tetapi disimpan di memory saja.\n"
  1503. " Jika false diberikan, tindakan di atas tidak "
  1504. "dilakukan."
  1505. #: src/usage_text.h:646
  1506. msgid ""
  1507. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1508. " downloads file from scratch when aria2 detects "
  1509. "N\n"
  1510. " number of URIs that does not support resume. "
  1511. "If N\n"
  1512. " is 0, aria2 downloads file from scratch when "
  1513. "all\n"
  1514. " given URIs do not support resume.\n"
  1515. " See --always-resume option."
  1516. msgstr ""
  1517. #: src/usage_text.h:653
  1518. #, fuzzy
  1519. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1520. msgstr " -t, --timeout=DET Atur tenggang waktu dalam detik."
  1521. #: src/usage_text.h:655
  1522. #, fuzzy
  1523. msgid ""
  1524. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1525. " establish connection to tracker. After the\n"
  1526. " connection is established, this option makes "
  1527. "no\n"
  1528. " effect and --bt-tracker-timeout option is "
  1529. "used\n"
  1530. " instead."
  1531. msgstr ""
  1532. " --file-allocation=METODE Tentukan metode pengalokasian berkas.\n"
  1533. " 'none' tidak melakukan pre-alokasi ruang "
  1534. "berkas. 'prealloc'\n"
  1535. " melakukan pre-alokasi ruang berkas sebelum "
  1536. "mengunduh.\n"
  1537. " Ini mungkin memakan waktu tergantung ukuran "
  1538. "dari\n"
  1539. " berkas ini."
  1540. #: src/usage_text.h:661
  1541. #, fuzzy
  1542. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1543. msgstr " -t, --timeout=DET Atur tenggang waktu dalam detik."
  1544. #: src/usage_text.h:663
  1545. msgid ""
  1546. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1547. "header\n"
  1548. " and inflate response if remote server "
  1549. "responds\n"
  1550. " with 'Content-Encoding: gzip' or\n"
  1551. " 'Content-Encoding: deflate'."
  1552. msgstr ""
  1553. #: src/usage_text.h:668
  1554. #, fuzzy
  1555. msgid ""
  1556. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1557. "exit.\n"
  1558. " You can pass this output file to aria2c with -"
  1559. "i\n"
  1560. " option on restart. Please note that downloads\n"
  1561. " added by aria2.addTorrent and aria2."
  1562. "addMetalink\n"
  1563. " RPC method and whose metadata could not be "
  1564. "saved\n"
  1565. " as a file will not be saved. Downloads "
  1566. "removed\n"
  1567. " using aria2.remove and aria2.forceRemove will "
  1568. "not\n"
  1569. " be saved."
  1570. msgstr ""
  1571. " --file-allocation=METODE Tentukan metode pengalokasian berkas.\n"
  1572. " 'none' tidak melakukan pre-alokasi ruang "
  1573. "berkas. 'prealloc'\n"
  1574. " melakukan pre-alokasi ruang berkas sebelum "
  1575. "mengunduh.\n"
  1576. " Ini mungkin memakan waktu tergantung ukuran "
  1577. "dari\n"
  1578. " berkas ini."
  1579. #: src/usage_text.h:677
  1580. msgid ""
  1581. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1582. "one\n"
  1583. " server for each download."
  1584. msgstr ""
  1585. #: src/usage_text.h:680
  1586. msgid ""
  1587. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1588. "range.\n"
  1589. " For example, let's consider downloading 20MiB\n"
  1590. " file. If SIZE is 10M, aria2 can split file "
  1591. "into 2\n"
  1592. " range [0-10MiB) and [10MiB-20MiB) and download "
  1593. "it\n"
  1594. " using 2 sources(if --split >= 2, of course).\n"
  1595. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1596. "does\n"
  1597. " not split file and download it using 1 "
  1598. "source.\n"
  1599. " You can append K or M(1K = 1024, 1M = 1024K)."
  1600. msgstr ""
  1601. #: src/usage_text.h:689
  1602. #, fuzzy
  1603. msgid ""
  1604. " --conditional-get[=true|false] Download file only when the local file is "
  1605. "older\n"
  1606. " than remote file. Currently, this function "
  1607. "has\n"
  1608. " many limitations. See man page for details."
  1609. msgstr ""
  1610. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  1611. "akan\n"
  1612. " membatalkan unduhan ketika satu bagian berbeda "
  1613. "dengan\n"
  1614. " yang ada di berkas kendali. Jika true yang "
  1615. "diberikan, anda\n"
  1616. " dapat melanjutkan tapi beberapa proses unduhan "
  1617. "akan hilang."
  1618. #: src/usage_text.h:693
  1619. #, fuzzy
  1620. msgid ""
  1621. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1622. " --on-download-complete is called after "
  1623. "download\n"
  1624. " completed and seeding is over. On the other "
  1625. "hand,\n"
  1626. " this option sets the command to be executed "
  1627. "after\n"
  1628. " download completed but before seeding.\n"
  1629. " See --on-download-start option for the\n"
  1630. " requirement of COMMAND."
  1631. msgstr ""
  1632. " --follow-torrent=true|false|mem Jika true atau mem diberikan, saat "
  1633. "mengunduh sebuah\n"
  1634. " berkas berakhiran .torrent atau jenis konten "
  1635. "application/x-bittorent,\n"
  1636. " aria2 akan memeriksa berkas itu sebagai berkas "
  1637. "torrent dan\n"
  1638. " mengunduh berkas-berkas di dalamnya.\n"
  1639. " Kalau mem diberikan, berkas torrent itu tidak "
  1640. "ditulis ke disk,\n"
  1641. " tetapi disimpan di memory saja.\n"
  1642. " Jika false diberikan, tindakan di atas tidak "
  1643. "dilakukan."
  1644. #: src/usage_text.h:701
  1645. #, fuzzy
  1646. msgid ""
  1647. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1648. "asynchronous\n"
  1649. " DNS resolver. This option will be ignored "
  1650. "when\n"
  1651. " --async-dns=false."
  1652. msgstr ""
  1653. " --enable-direct-io[=true|false] Aktifkan directI/O, yang meminimalkan "
  1654. "penggunaan\n"
  1655. " cpu ketika mengalokasi berkas.\n"
  1656. " Matikan jika anda mengalami error"
  1657. #: src/usage_text.h:705
  1658. #, fuzzy
  1659. msgid ""
  1660. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1661. " Use --dht-listen-port option to specify port\n"
  1662. " number to listen on. See also --dht-listen-"
  1663. "addr6\n"
  1664. " option."
  1665. msgstr ""
  1666. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  1667. "akan\n"
  1668. " membatalkan unduhan ketika satu bagian berbeda "
  1669. "dengan\n"
  1670. " yang ada di berkas kendali. Jika true yang "
  1671. "diberikan, anda\n"
  1672. " dapat melanjutkan tapi beberapa proses unduhan "
  1673. "akan hilang."
  1674. #: src/usage_text.h:710
  1675. msgid ""
  1676. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1677. " It should be a global unicast IPv6 address of "
  1678. "the\n"
  1679. " host."
  1680. msgstr ""
  1681. #: src/usage_text.h:714
  1682. msgid ""
  1683. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1684. "DHT\n"
  1685. " network."
  1686. msgstr ""
  1687. #: src/usage_text.h:717
  1688. #, fuzzy
  1689. msgid ""
  1690. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1691. msgstr ""
  1692. " --conf-path=ALAMAT Ubah alamat berkas konfigurasi ke ALAMAT."
  1693. #: src/usage_text.h:719
  1694. #, fuzzy
  1695. msgid ""
  1696. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1697. " tracker's announce URI. These URIs are not\n"
  1698. " affected by --bt-exclude-tracker option "
  1699. "because\n"
  1700. " they are added after URIs in --bt-exclude-"
  1701. "tracker\n"
  1702. " option are removed."
  1703. msgstr ""
  1704. " --file-allocation=METODE Tentukan metode pengalokasian berkas.\n"
  1705. " 'none' tidak melakukan pre-alokasi ruang "
  1706. "berkas. 'prealloc'\n"
  1707. " melakukan pre-alokasi ruang berkas sebelum "
  1708. "mengunduh.\n"
  1709. " Ini mungkin memakan waktu tergantung ukuran "
  1710. "dari\n"
  1711. " berkas ini."
  1712. #: src/usage_text.h:725
  1713. msgid ""
  1714. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1715. "tracker's\n"
  1716. " announce URI to remove. You can use special "
  1717. "value\n"
  1718. " '*' which matches all URIs, thus removes all\n"
  1719. " announce URIs. When specifying '*' in shell\n"
  1720. " command-line, don't forget to escape or quote "
  1721. "it.\n"
  1722. " See also --bt-tracker option."
  1723. msgstr ""
  1724. #: src/usage_text.h:732
  1725. msgid ""
  1726. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1727. " memory. The download results are completed/"
  1728. "error/\n"
  1729. " removed downloads. The download results are "
  1730. "stored\n"
  1731. " in FIFO queue and it can store at most NUM\n"
  1732. " download results. When queue is full and new\n"
  1733. " download result is created, oldest download "
  1734. "result\n"
  1735. " is removed from the front of the queue and new "
  1736. "one\n"
  1737. " is pushed to the back. Setting big number in "
  1738. "this\n"
  1739. " option may result high memory consumption "
  1740. "after\n"
  1741. " thousands of downloads. Specifying 0 means no\n"
  1742. " download result is kept."
  1743. msgstr ""
  1744. #: src/usage_text.h:744
  1745. msgid ""
  1746. " --async-dns-server=IPADDRESS[,...] Comma separated list of DNS server "
  1747. "address\n"
  1748. " used in asynchronous DNS resolver. Usually\n"
  1749. " asynchronous DNS resolver reads DNS server\n"
  1750. " addresses from /etc/resolv.conf. When this "
  1751. "option\n"
  1752. " is used, it uses DNS servers specified in "
  1753. "this\n"
  1754. " option instead of ones in /etc/resolv.conf. "
  1755. "You\n"
  1756. " can specify both IPv4 and IPv6 address. This\n"
  1757. " option is useful when the system does not "
  1758. "have\n"
  1759. " /etc/resolv.conf and user does not have the\n"
  1760. " permission to create it."
  1761. msgstr ""
  1762. #: src/usage_text.h:755
  1763. #, fuzzy
  1764. msgid ""
  1765. " --enable-rpc[=true|false] Enable JSON-RPC/XML-RPC server.\n"
  1766. " It is strongly recommended to set username "
  1767. "and\n"
  1768. " password using --rpc-user and --rpc-passwd\n"
  1769. " option. See also --rpc-listen-port option."
  1770. msgstr ""
  1771. " --allow-piece-length-change=true|false Jika false yang diberikan, aria2 "
  1772. "akan\n"
  1773. " membatalkan unduhan ketika satu bagian berbeda "
  1774. "dengan\n"
  1775. " yang ada di berkas kendali. Jika true yang "
  1776. "diberikan, anda\n"
  1777. " dapat melanjutkan tapi beberapa proses unduhan "
  1778. "akan hilang."
  1779. #: src/usage_text.h:760
  1780. msgid ""
  1781. " --rpc-max-request-size=SIZE Set max size of JSON-RPC/XML-RPC request. If "
  1782. "aria2\n"
  1783. " detects the request is more than SIZE bytes, "
  1784. "it\n"
  1785. " drops connection."
  1786. msgstr ""
  1787. #: src/usage_text.h:764
  1788. #, fuzzy
  1789. msgid " --rpc-user=USER Set JSON-RPC/XML-RPC user."
  1790. msgstr ""
  1791. " --ftp-user=PENGGUNA Atur pengguna FTP. Ini mempengaruhi semua "
  1792. "URL."
  1793. #: src/usage_text.h:766
  1794. #, fuzzy
  1795. msgid " --rpc-passwd=PASSWD Set JSON-RPC/XML-RPC password."
  1796. msgstr ""
  1797. " --ftp-passwd=SANDI Atur sandi FTP. Ini mempengaruhi semua URL."
  1798. #: src/usage_text.h:768
  1799. #, fuzzy
  1800. msgid ""
  1801. " --rpc-listen-all[=true|false] Listen incoming JSON-RPC/XML-RPC requests on "
  1802. "all\n"
  1803. " network interfaces. If false is given, listen "
  1804. "only\n"
  1805. " on local loopback interface."
  1806. msgstr ""
  1807. " -Z, --force-sequential[=true|false] Ambil URI dalam baris perintah secara "
  1808. "berurutan\n"
  1809. " dan unduh tiap URI dalam sesi terpisah, "
  1810. "seperti\n"
  1811. " utilitas unduhan baris perintah biasa."
  1812. #: src/usage_text.h:772
  1813. msgid ""
  1814. " --rpc-listen-port=PORT Specify a port number for JSON-RPC/XML-RPC "
  1815. "server\n"
  1816. " to listen to."
  1817. msgstr ""
  1818. #: src/usage_text.h:775
  1819. #, fuzzy
  1820. msgid " --enable-xml-rpc[=true|false] Deprecated. Use --enable-rpc instead."
  1821. msgstr " --enable-dht[=true|false] Aktifkan fungsionalitas DHT."
  1822. #: src/usage_text.h:777
  1823. msgid ""
  1824. " --xml-rpc-max-request-size=SIZE Deprecated. Use --rpc-max-request-size\n"
  1825. " instead."
  1826. msgstr ""
  1827. #: src/usage_text.h:780
  1828. #, fuzzy
  1829. msgid " --xml-rpc-user=USER Deprecated. Use --rpc-user instead."
  1830. msgstr ""
  1831. " --ftp-user=PENGGUNA Atur pengguna FTP. Ini mempengaruhi semua "
  1832. "URL."
  1833. #: src/usage_text.h:782
  1834. #, fuzzy
  1835. msgid " --xml-rpc-passwd=PASSWD Deprecated. Use --rpc-passwd instead."
  1836. msgstr ""
  1837. " --ftp-passwd=SANDI Atur sandi FTP. Ini mempengaruhi semua URL."
  1838. #: src/usage_text.h:784
  1839. msgid ""
  1840. " --xml-rpc-listen-all[=true|false] Deprecated. Use --rpc-listen-all instead."
  1841. msgstr ""
  1842. #: src/usage_text.h:786
  1843. msgid ""
  1844. " --xml-rpc-listen-port=PORT Deprecated. Use --rpc-listen-port instead."
  1845. msgstr ""
  1846. #: src/usage_text.h:788
  1847. msgid " --show-console-readout[=true|false] Show console readout."
  1848. msgstr ""
  1849. #: src/usage_text.h:790
  1850. #, fuzzy
  1851. msgid ""
  1852. " --metalink-base-uri=URI Specify base URI to resolve relative URI in\n"
  1853. " metalink:url and metalink:metaurl element in "
  1854. "a\n"
  1855. " metalink file stored in local disk. If URI "
  1856. "points\n"
  1857. " to a directory, URI must end with '/'."
  1858. msgstr ""
  1859. " -S, --show-files Cetak senarai berkas .torrent atau .metalink\n"
  1860. " lalu keluar. Informasi lebih detail akan "
  1861. "disenaraikan\n"
  1862. " untuk berkas torrent."
  1863. #: src/usage_text.h:795
  1864. msgid ""
  1865. " --stream-piece-selector=SELECTOR Specify piece selection algorithm\n"
  1866. " used in HTTP/FTP download. Piece means fixed\n"
  1867. " length segment which is downloaded in "
  1868. "parallel\n"
  1869. " in segmented download. If 'default' is given,\n"
  1870. " aria2 selects piece so that it reduces the\n"
  1871. " number of establishing connection. This is\n"
  1872. " reasonable default behaviour because\n"
  1873. " establishing connection is an expensive\n"
  1874. " operation.\n"
  1875. " If 'inorder' is given, aria2 selects piece "
  1876. "which\n"
  1877. " has minimum index. Index=0 means first of the\n"
  1878. " file. This will be useful to view movie while\n"
  1879. " downloading it. --enable-http-pipelining "
  1880. "option\n"
  1881. " may be useful to reduce reconnection "
  1882. "overhead.\n"
  1883. " Please note that aria2 honors\n"
  1884. " --min-split-size option, so it will be "
  1885. "necessary\n"
  1886. " to specify a reasonable value to\n"
  1887. " --min-split-size option."
  1888. msgstr ""
  1889. #: src/usage_text.h:814
  1890. msgid ""
  1891. " --truncate-console-readout[=true|false] Truncate console readout to fit in\n"
  1892. " a single line."
  1893. msgstr ""
  1894. #: src/usage_text.h:817
  1895. #, fuzzy
  1896. msgid ""
  1897. " --pause[=true|false] Pause download after added. This option is\n"
  1898. " effective only when --enable-rpc=true is given."
  1899. msgstr ""
  1900. " -p, --ftp-pasv[=true|false] Gunakan mode pasif di FTP. Jika false yang "
  1901. "diberikan,\n"
  1902. " maka mode aktif yang digunakan."
  1903. #: src/version_usage.cc:57
  1904. msgid " version "
  1905. msgstr " versi "
  1906. #: src/version_usage.cc:80
  1907. #, c-format
  1908. msgid "Report bugs to %s"
  1909. msgstr "Laporkan kutu ke %s"
  1910. #: src/version_usage.cc:85
  1911. #, fuzzy
  1912. msgid ""
  1913. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1914. msgstr "Penggunaan: %s [OPSI] [URL | BERKAS_TORRENT | BERKAS_METALINK]..."
  1915. #: src/version_usage.cc:92
  1916. msgid "Printing all options."
  1917. msgstr "Cetak semua opsi."
  1918. #: src/version_usage.cc:94
  1919. #, c-format
  1920. msgid "Printing options tagged with '%s'."
  1921. msgstr ""
  1922. #: src/version_usage.cc:98
  1923. #, c-format
  1924. msgid "See -h option to know other command-line options(%s)."
  1925. msgstr ""
  1926. #: src/version_usage.cc:103 src/version_usage.cc:115
  1927. msgid "Options:"
  1928. msgstr "Opsi:"
  1929. #: src/version_usage.cc:112
  1930. #, c-format
  1931. msgid "Printing options whose name includes '%s'."
  1932. msgstr ""
  1933. #: src/version_usage.cc:121
  1934. #, c-format
  1935. msgid "No option matching with '%s'."
  1936. msgstr ""
  1937. #: src/version_usage.cc:129
  1938. msgid ""
  1939. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1940. "all\n"
  1941. " URIs must point to the same file or downloading will fail."
  1942. msgstr ""
  1943. #: src/version_usage.cc:131
  1944. msgid ""
  1945. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1946. " metalink files stored in a local drive. Please note that they are always\n"
  1947. " treated as a separate download."
  1948. msgstr ""
  1949. #: src/version_usage.cc:136
  1950. msgid ""
  1951. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1952. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1953. "time,\n"
  1954. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1955. "file\n"
  1956. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1957. "ends\n"
  1958. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1959. "and\n"
  1960. " 'path' in torrent are added to form a URI for each file."
  1961. msgstr ""
  1962. #: src/version_usage.cc:143
  1963. msgid ""
  1964. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1965. " contains \"&\" or any characters that have special meaning in shell."
  1966. msgstr ""
  1967. #: src/version_usage.cc:153
  1968. msgid "Refer to man page for more information."
  1969. msgstr "Baca halaman man untuk informasi selanjutnya."
  1970. #: src/message.h:57
  1971. #, fuzzy, c-format
  1972. msgid "GID#%s - Download has already completed: %s"
  1973. msgstr "#%d - Unduh telah selesai: %s"
  1974. #: src/message.h:106
  1975. #, c-format
  1976. msgid "Unrecognized URI or unsupported protocol: %s"
  1977. msgstr "URI tidak dikenal atau protokol tidak didukung: %s"
  1978. #: src/message.h:107
  1979. #, c-format
  1980. msgid "Tracker returned warning message: %s"
  1981. msgstr "Tracker memberi pesan peringatan: %s"
  1982. #: src/message.h:108
  1983. #, c-format
  1984. msgid "The segment file %s exists."
  1985. msgstr "Berkas bagian %s sudah ada."
  1986. #: src/message.h:109
  1987. #, c-format
  1988. msgid "The segment file %s does not exist."
  1989. msgstr "Berkas bagian %s belum ada."
  1990. #: src/message.h:110
  1991. #, c-format
  1992. msgid "Saving the segment file %s"
  1993. msgstr ""
  1994. #: src/message.h:111
  1995. msgid "The segment file was saved successfully."
  1996. msgstr "Berkas bagian berhasil disimpan."
  1997. #: src/message.h:112
  1998. #, c-format
  1999. msgid "Loading the segment file %s."
  2000. msgstr ""
  2001. #: src/message.h:113
  2002. msgid "The segment file was loaded successfully."
  2003. msgstr ""
  2004. #: src/message.h:114
  2005. msgid "No URI to download. Download aborted."
  2006. msgstr "Tidak ada URI untuk diunduh. Unduh dibatalkan."
  2007. #: src/message.h:115
  2008. #, c-format
  2009. msgid ""
  2010. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  2011. "canceled in order to prevent your file from being truncated to 0. If you are "
  2012. "sure to download the file all over again, then delete it or add --allow-"
  2013. "overwrite=true option and restart aria2."
  2014. msgstr ""
  2015. #: src/message.h:116
  2016. #, c-format
  2017. msgid "Allocating file %s, %s bytes"
  2018. msgstr ""
  2019. #: src/message.h:117
  2020. msgid "File not found"
  2021. msgstr "Berkas tidak ditemukan."
  2022. #: src/message.h:118
  2023. msgid "Not a directory"
  2024. msgstr "Bukan sebuah direktori."
  2025. #: src/message.h:119
  2026. #, c-format
  2027. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  2028. msgstr "Checksum tidak cukup. checksumLength=%d, numChecksum=%d"
  2029. #: src/message.h:120
  2030. #, c-format
  2031. msgid "Writing file %s"
  2032. msgstr "Menulis berkas %s"
  2033. #: src/message.h:121
  2034. msgid "No peer list received."
  2035. msgstr "Tidak menerima daftar peer."
  2036. #: src/message.h:122
  2037. #, c-format
  2038. msgid "Adding peer %s:%d"
  2039. msgstr ""
  2040. #: src/message.h:123
  2041. #, c-format
  2042. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  2043. msgstr ""
  2044. #: src/message.h:124
  2045. msgid "Download of selected files was complete."
  2046. msgstr "Unduh berkas yang dipilih telah selesai."
  2047. #: src/message.h:125
  2048. msgid "The download was complete."
  2049. msgstr "Unduh telah selesai."
  2050. #: src/message.h:126
  2051. #, c-format
  2052. msgid "Removed %lu have entries."
  2053. msgstr ""
  2054. #: src/message.h:127
  2055. #, c-format
  2056. msgid "Validating file %s"
  2057. msgstr "Validasi berkas %s"
  2058. #: src/message.h:128
  2059. #, fuzzy, c-format
  2060. msgid "%ld seconds to allocate %s byte(s)"
  2061. msgstr "%d detik untuk alokasi %s bita"
  2062. #: src/message.h:131
  2063. #, c-format
  2064. msgid "Metalink: Queueing %s for download."
  2065. msgstr ""
  2066. #: src/message.h:132
  2067. #, c-format
  2068. msgid "Download complete: %s"
  2069. msgstr "Unduhan selesai: %s"
  2070. #: src/message.h:133
  2071. msgid "Seeding is over."
  2072. msgstr ""
  2073. #: src/message.h:134
  2074. msgid "No chunk to verify."
  2075. msgstr ""
  2076. #: src/message.h:135
  2077. #, c-format
  2078. msgid "Good chunk checksum. hash=%s"
  2079. msgstr ""
  2080. #: src/message.h:136
  2081. #, c-format
  2082. msgid "Failed to load cookies from %s"
  2083. msgstr ""
  2084. #: src/message.h:137
  2085. #, c-format
  2086. msgid ""
  2087. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  2088. "support disabled."
  2089. msgstr ""
  2090. #: src/message.h:138
  2091. msgid "Logging started."
  2092. msgstr "Pencatatan dimulai."
  2093. #: src/message.h:139
  2094. msgid "Specify at least one URL."
  2095. msgstr ""
  2096. #: src/message.h:140
  2097. msgid "daemon failed."
  2098. msgstr "jurik gagal."
  2099. #: src/message.h:141
  2100. #, c-format
  2101. msgid "Verification finished successfully. file=%s"
  2102. msgstr ""
  2103. #: src/message.h:142
  2104. #, c-format
  2105. msgid "Checksum error detected. file=%s"
  2106. msgstr ""
  2107. #: src/message.h:143
  2108. #, c-format
  2109. msgid "Incomplete range specified. %s"
  2110. msgstr ""
  2111. #: src/message.h:144
  2112. #, c-format
  2113. msgid "Failed to convert string into value: %s"
  2114. msgstr ""
  2115. #: src/message.h:145
  2116. msgid "Resource not found"
  2117. msgstr "Sumber daya tak ditemukan"
  2118. #: src/message.h:146
  2119. #, c-format
  2120. msgid "File already exists. Renamed to %s."
  2121. msgstr "Berkas telah ada. Menamai ulang ke %s."
  2122. #: src/message.h:147
  2123. msgid "Cannot parse metalink XML file. XML may be malformed."
  2124. msgstr ""
  2125. #: src/message.h:148
  2126. #, c-format
  2127. msgid "Too small payload size for %s, size=%lu."
  2128. msgstr ""
  2129. #: src/message.h:149
  2130. #, c-format
  2131. msgid ""
  2132. "Removed the defunct control file %s because the download file %s doesn't "
  2133. "exist."
  2134. msgstr ""
  2135. #: src/message.h:150
  2136. #, c-format
  2137. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  2138. msgstr ""
  2139. #: src/message.h:151
  2140. #, c-format
  2141. msgid "Missing %s in torrent metainfo."
  2142. msgstr "Kehilangan %s di metainfo torrent."
  2143. #: src/message.h:152
  2144. msgid "Tracker returned null data."
  2145. msgstr "Pelacak mengembalikan data kosong."
  2146. #: src/message.h:153
  2147. msgid "Windows socket library initialization failed"
  2148. msgstr "Inisialisasi pustaka soket Windows gagal"
  2149. #: src/message.h:154
  2150. #, fuzzy, c-format
  2151. msgid "%ld second(s) has passed. Stopping application."
  2152. msgstr "%d detik telah berlalu. Menghentikan aplikasi."
  2153. #: src/message.h:155
  2154. #, c-format
  2155. msgid ""
  2156. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  2157. msgstr ""
  2158. "Menyimpan tanda tangan sebagai %s. Perlu dicatat bahwa aria2 tidak "
  2159. "memverifikasi tanda tangan."
  2160. #: src/message.h:157
  2161. #, c-format
  2162. msgid "Saving signature as %s failed. Maybe file already exists."
  2163. msgstr "Gagal menyimpan tanda tangan sebagai %s. Mungkin berkas telah ada."
  2164. #: src/message.h:160
  2165. #, c-format
  2166. msgid "Failed to open ServerStat file %s for read."
  2167. msgstr "Gagal membuka berkas ServerStat %s untuk dibaca."
  2168. #: src/message.h:161
  2169. #, c-format
  2170. msgid "ServerStat file %s loaded successfully."
  2171. msgstr "Berkas ServerStat %s sukses dimuat."
  2172. #: src/message.h:162
  2173. #, c-format
  2174. msgid "Failed to read ServerStat from %s."
  2175. msgstr "Gagal membaca ServerStat dari %s."
  2176. #: src/message.h:165
  2177. #, c-format
  2178. msgid "Failed to open ServerStat file %s for write."
  2179. msgstr "Gagal membuka berkas ServerStat %s untuk ditulis."
  2180. #: src/message.h:166
  2181. #, c-format
  2182. msgid "ServerStat file %s saved successfully."
  2183. msgstr "Berkas ServerStat %s sukses tersimpan."
  2184. #: src/message.h:167
  2185. #, c-format
  2186. msgid "Failed to write ServerStat to %s."
  2187. msgstr "Gagal menulis ServerStat ke %s."
  2188. #: src/message.h:170
  2189. #, c-format
  2190. msgid "Failed to establish connection, cause: %s"
  2191. msgstr "Gagal membangun hubungan, penyebab: %s"
  2192. #: src/message.h:171
  2193. #, c-format
  2194. msgid "Network problem has occurred. cause:%s"
  2195. msgstr "Masalah jaringan telah terjadi. penyebab:%s"
  2196. #: src/message.h:173
  2197. #, c-format
  2198. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  2199. msgstr "Gagal memuat sertifikat CA yang dipercaya dari %s. Penyebab: %s"
  2200. #: src/message.h:175
  2201. #, fuzzy, c-format
  2202. msgid ""
  2203. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  2204. "certificate option."
  2205. msgstr ""
  2206. "Anda mungkin menghadapi galat verifikasi sertifikat dengan server HTTPS. "
  2207. "Lihat opsi --ca-certificate dan --check-certificate."
  2208. #: src/message.h:177
  2209. msgid "No certificate found."
  2210. msgstr "Tak ada sertifikat yang ditemukan."
  2211. #: src/message.h:178
  2212. msgid "Hostname not match."
  2213. msgstr "Nama host tidak cocok."
  2214. #: src/message.h:179
  2215. msgid "No files to download."
  2216. msgstr "Tak ada berkas untuk diunduh."
  2217. #: src/message.h:181
  2218. msgid ""
  2219. "You may encounter the certificate verification error with HTTPS server. See "
  2220. "--ca-certificate and --check-certificate option."
  2221. msgstr ""
  2222. "Anda mungkin menghadapi galat verifikasi sertifikat dengan server HTTPS. "
  2223. "Lihat opsi --ca-certificate dan --check-certificate."
  2224. #: src/message.h:183
  2225. #, c-format
  2226. msgid "Printing the contents of file '%s'..."
  2227. msgstr "Mencetak isi berkas '%s'..."
  2228. #: src/message.h:184
  2229. msgid "This file is neither Torrent nor Metalink file. Skipping."
  2230. msgstr "Berkas ini bukan berkas Torrent atau Metalink. Lewati."
  2231. #: src/message.h:189
  2232. #, c-format
  2233. msgid "Is '%s' a file?"
  2234. msgstr ""
  2235. #: src/message.h:190
  2236. #, fuzzy, c-format
  2237. msgid "Failed to find given interface %s, cause: %s"
  2238. msgstr "Gagal membuka berkas %s, penyebab: %s"
  2239. #: src/message.h:192
  2240. #, c-format
  2241. msgid "Saved metadata as %s."
  2242. msgstr ""
  2243. #: src/message.h:193
  2244. #, fuzzy, c-format
  2245. msgid "Saving metadata as %s failed. Maybe file already exists."
  2246. msgstr "Gagal menyimpan tanda tangan sebagai %s. Mungkin berkas telah ada."
  2247. #: src/message.h:195
  2248. #, c-format
  2249. msgid "Detected directory traversal directive in %s"
  2250. msgstr ""
  2251. #: src/message.h:199
  2252. msgid "Timeout."
  2253. msgstr "Waktu habis."
  2254. #: src/message.h:200
  2255. msgid "Invalid chunk size."
  2256. msgstr "Ukuran potongan tidak sah."
  2257. #: src/message.h:201
  2258. #, c-format
  2259. msgid "Too large chunk. size=%d"
  2260. msgstr "Potongan terlalu besar. ukuran=%d"
  2261. #: src/message.h:202
  2262. msgid "Invalid header."
  2263. msgstr "Tajuk tidak sah."
  2264. #: src/message.h:203
  2265. msgid "Invalid response."
  2266. msgstr "Respon tidak sah."
  2267. #: src/message.h:204
  2268. msgid "No header found."
  2269. msgstr "Tak ada tajuk ditemukan."
  2270. #: src/message.h:205
  2271. msgid "No status header."
  2272. msgstr "Tak ada tajuk status."
  2273. #: src/message.h:206
  2274. msgid "Proxy connection failed."
  2275. msgstr "Koneksi proxy gagal."
  2276. #: src/message.h:207
  2277. msgid "Connection failed."
  2278. msgstr "Koneksi gagal."
  2279. #: src/message.h:208
  2280. #, c-format
  2281. msgid ""
  2282. "The requested filename and the previously registered one are not same. "
  2283. "Expected:%s Actual:%s"
  2284. msgstr ""
  2285. "Nama berkas yang diminta dengan yang didaftarkan sebelumnya tidak sama. "
  2286. "Mengharapkan:%s Sebenarnya:%s"
  2287. #: src/message.h:209
  2288. #, c-format
  2289. msgid "The response status is not successful. status=%d"
  2290. msgstr "Status respon tidak berhasil. status=%d"
  2291. #: src/message.h:210
  2292. #, c-format
  2293. msgid "Too large file size. size=%s"
  2294. msgstr "Ukuran berkas terlalu besar. ukuran=%s"
  2295. #: src/message.h:211
  2296. #, c-format
  2297. msgid "Transfer encoding %s is not supported."
  2298. msgstr "Penyandian transfer %s tidak disokong."
  2299. #: src/message.h:212
  2300. #, c-format
  2301. msgid "SSL initialization failed: %s"
  2302. msgstr "Inisialisasi SSL gagal: %s"
  2303. #: src/message.h:213
  2304. msgid "SSL I/O error"
  2305. msgstr "Galat I/O SSL"
  2306. #: src/message.h:214
  2307. msgid "SSL protocol error"
  2308. msgstr "Galat protokol SSL"
  2309. #: src/message.h:215
  2310. #, c-format
  2311. msgid "SSL unknown error %d"
  2312. msgstr "Galat tak dikenal SSL %d"
  2313. #: src/message.h:216
  2314. #, c-format
  2315. msgid "SSL initialization failed: OpenSSL connect error %d"
  2316. msgstr "Inisialisasi SSL gagal: Galat sambungan OpenSSL %d"
  2317. #: src/message.h:217
  2318. #, c-format
  2319. msgid "Size mismatch Expected:%s Actual:%s"
  2320. msgstr "Ukuran tak cocok Diharapkan: %s Sebenarnya: %s"
  2321. #: src/message.h:218
  2322. msgid "Authorization failed."
  2323. msgstr "Otorisasi gagal."
  2324. #: src/message.h:219
  2325. msgid "Got EOF from the server."
  2326. msgstr "Dapat EOF dari server."
  2327. #: src/message.h:220
  2328. msgid "Got EOF from peer."
  2329. msgstr "Dapat EOF dari peer."
  2330. #: src/message.h:221
  2331. msgid "Malformed meta info."
  2332. msgstr "Info meta salah bentuk."
  2333. #: src/message.h:223
  2334. #, c-format
  2335. msgid "Failed to open the file %s, cause: %s"
  2336. msgstr "Gagal membuka berkas %s, penyebab: %s"
  2337. #: src/message.h:224
  2338. #, c-format
  2339. msgid "Failed to write into the file %s, cause: %s"
  2340. msgstr "Gagal menulis ke berkas %s, penyebab: %s"
  2341. #: src/message.h:225
  2342. #, c-format
  2343. msgid "Failed to read from the file %s, cause: %s"
  2344. msgstr "Gagal membaca dari berkas %s, penyebab: %s"
  2345. #: src/message.h:226
  2346. msgid "Failed to read data from disk."
  2347. msgstr "Gagal membaca data dari cakram."
  2348. #: src/message.h:227
  2349. #, c-format
  2350. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2351. msgstr ""
  2352. "Gagal mengkalkulasi ringkasan SHA1 atau bagian dari berkas %s, penyebab: %s"
  2353. #: src/message.h:228
  2354. #, c-format
  2355. msgid "Failed to seek the file %s, cause: %s"
  2356. msgstr "Gagal mencari berkas %s, penyebab: %s"
  2357. #: src/message.h:229
  2358. #, c-format
  2359. msgid "The offset is out of range, offset=%s"
  2360. msgstr ""
  2361. #: src/message.h:230
  2362. #, c-format
  2363. msgid "%s is not a directory."
  2364. msgstr "%s bukan direktori"
  2365. #: src/message.h:231
  2366. #, c-format
  2367. msgid "Failed to make the directory %s, cause: %s"
  2368. msgstr "Gagal membuat direktori %s, penyebab: %s"
  2369. #: src/message.h:235
  2370. #, c-format
  2371. msgid "Failed to open a socket, cause: %s"
  2372. msgstr "Gagal membuka soket, penyebab: %s"
  2373. #: src/message.h:236
  2374. #, c-format
  2375. msgid "Failed to set a socket option, cause: %s"
  2376. msgstr "Gagal mengatur opsi soket, penyebab: %s"
  2377. #: src/message.h:237
  2378. #, c-format
  2379. msgid "Failed to set a socket as blocking, cause: %s"
  2380. msgstr "Gagal mengatur soket sebagai penghalang, penyebab: %s"
  2381. #: src/message.h:238
  2382. #, c-format
  2383. msgid "Failed to set a socket as non-blocking, cause: %s"
  2384. msgstr "Gagal mengatur soket sebagai bukan penghalang, penyebab: %s"
  2385. #: src/message.h:239
  2386. #, c-format
  2387. msgid "Failed to bind a socket, cause: %s"
  2388. msgstr "Gagal mengikat soket, penyebab: %s"
  2389. #: src/message.h:240
  2390. #, c-format
  2391. msgid "Failed to listen to a socket, cause: %s"
  2392. msgstr "Gagal mendengarkan soket, penyebab: %s"
  2393. #: src/message.h:241
  2394. #, c-format
  2395. msgid "Failed to accept a peer connection, cause: %s"
  2396. msgstr ""
  2397. #: src/message.h:242
  2398. #, c-format
  2399. msgid "Failed to get the name of socket, cause: %s"
  2400. msgstr "Gagal mendapatkan nama soket, penyebab: %s"
  2401. #: src/message.h:243
  2402. #, c-format
  2403. msgid "Failed to get the name of connected peer, cause: %s"
  2404. msgstr ""
  2405. #: src/message.h:244
  2406. #, c-format
  2407. msgid "Failed to resolve the hostname %s, cause: %s"
  2408. msgstr ""
  2409. #: src/message.h:245
  2410. #, c-format
  2411. msgid "Failed to connect to the host %s, cause: %s"
  2412. msgstr "Gagal menyambung ke host %s, penyebab: %s"
  2413. #: src/message.h:246
  2414. #, c-format
  2415. msgid "Failed to check whether the socket is writable, cause: %s"
  2416. msgstr "Gagal memeriksa apakah soket dapat ditulis, penyebab: %s"
  2417. #: src/message.h:247
  2418. #, c-format
  2419. msgid "Failed to check whether the socket is readable, cause: %s"
  2420. msgstr "Gagal memeriksa apakah soket dapat dibaca, penyebab: %s"
  2421. #: src/message.h:248
  2422. #, c-format
  2423. msgid "Failed to send data, cause: %s"
  2424. msgstr "Gagal mengirim data, penyebab: %s"
  2425. #: src/message.h:249
  2426. #, c-format
  2427. msgid "Failed to receive data, cause: %s"
  2428. msgstr "Gagal menerima data, penyebab: %s"
  2429. #: src/message.h:250
  2430. #, c-format
  2431. msgid "Failed to peek data, cause: %s"
  2432. msgstr "Gagal mengintip data, penyebab: %s"
  2433. #: src/message.h:251
  2434. #, c-format
  2435. msgid "Unknown socket error %d (0x%x)"
  2436. msgstr "Galat soket %d tak diketahui (0x%x)"
  2437. #: src/message.h:252
  2438. #, c-format
  2439. msgid "File %s exists, but %s does not exist."
  2440. msgstr "Berkas %s ada, tapi %s tidak ada"
  2441. #: src/message.h:254
  2442. #, c-format
  2443. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2444. msgstr ""
  2445. #: src/message.h:255
  2446. #, c-format
  2447. msgid "Invalid ID=%d for %s. It should be %d."
  2448. msgstr ""
  2449. #: src/message.h:256
  2450. #, c-format
  2451. msgid ""
  2452. "Chunk checksum validation failed. checksumIndex=%lu, offset=%s, expectedHash="
  2453. "%s, actualHash=%s"
  2454. msgstr ""
  2455. #: src/message.h:257
  2456. msgid "Download aborted."
  2457. msgstr "Unduh dibatalkan."
  2458. #: src/message.h:258
  2459. #, c-format
  2460. msgid "File %s is being downloaded by other command."
  2461. msgstr ""
  2462. #: src/message.h:259
  2463. msgid "Insufficient checksums."
  2464. msgstr ""
  2465. #: src/message.h:260
  2466. #, c-format
  2467. msgid "Tracker returned failure reason: %s"
  2468. msgstr ""
  2469. #: src/message.h:261
  2470. msgid "Flooding detected."
  2471. msgstr "Banjir terdeteksi."
  2472. #: src/message.h:263
  2473. #, fuzzy, c-format
  2474. msgid ""
  2475. "Drop connection because no request/piece messages were exchanged in a "
  2476. "certain period(%ld seconds)."
  2477. msgstr ""
  2478. "Koneksi jatuh karena tak ada pesan permintaan/bagian yang ditukar dalam "
  2479. "periode tertentu (%d detik)."
  2480. #: src/message.h:265
  2481. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2482. msgstr ""
  2483. "infoHash dalam berkas torrent tidak cocok dengan yang ada di berkas .aria2."
  2484. #: src/message.h:266
  2485. #, c-format
  2486. msgid "No such file entry %s"
  2487. msgstr "Tak ada entri berkas %s"
  2488. #: src/message.h:267
  2489. #, c-format
  2490. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2491. msgstr "Terlalu pelan kecepatan Unduh: %d <= %d(B/s), host:%s"
  2492. #: src/message.h:268
  2493. msgid "No HttpRequestEntry found."
  2494. msgstr "Tak ada HttpRequestEntry yang ditemukan."
  2495. #: src/message.h:269
  2496. #, c-format
  2497. msgid "Got %d status, but no location header provided."
  2498. msgstr "Dapat status %d, tapi tak ada tajuk lokasi yang diberikan."
  2499. #: src/message.h:270
  2500. #, c-format
  2501. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2502. msgstr "Rentang tajuk tidak sah. Permintaan: %s-%s/%s, Respon: %s-%s/%s"
  2503. #: src/message.h:271
  2504. msgid "No file matched with your preference."
  2505. msgstr "Tidak ada berkas yang cocok dengan pilihan Anda."
  2506. #: src/message.h:272
  2507. msgid "Exception caught"
  2508. msgstr "Pengecualian tertangkap"
  2509. #: src/message.h:273
  2510. #, c-format
  2511. msgid "Max payload length exceeded or invalid. length = %u"
  2512. msgstr "Panjang muatan maksimum terlampaui atau tidak sah. panjang = %u"
  2513. #: src/message.h:274
  2514. #, c-format
  2515. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2516. msgstr ""
  2517. "Panjang berkas tidak sah. Tak dapat melanjutkan unduh %s: lokal %s, jarak "
  2518. "jauh %s"
  2519. #: src/BtSetup.cc:212
  2520. msgid "Errors occurred while binding port.\n"
  2521. msgstr "Galat terjadi ketika mengikat pangkalan.\n"
  2522. #~ msgid "must be either 'true' or 'false'."
  2523. #~ msgstr "harus diisi 'true' atau 'false'."
  2524. #~ msgid "must be between %s and %s."
  2525. #~ msgstr "harus diantara %s dan %s."
  2526. #~ msgid "must be smaller than or equal to %s."
  2527. #~ msgstr "harus lebih kecil atau sama dengan %s."
  2528. #~ msgid "must be greater than or equal to %s."
  2529. #~ msgstr "harus lebih besar atau sama dengan %s."
  2530. #~ msgid "must be a number."
  2531. #~ msgstr "harus sebuah angka."
  2532. #~ msgid "must be smaller than or equal to %.1f."
  2533. #~ msgstr "harus lebih kecil atau sama dengan %.1f."
  2534. #~ msgid "must be between %.1f and %.1f."
  2535. #~ msgstr "harus diantara %.1f dan %.1f."
  2536. #~ msgid "must be greater than or equal to %.1f."
  2537. #~ msgstr "harus lebih besar atau sama dengan %.1f"
  2538. #~ msgid "must be one of the following:"
  2539. #~ msgstr "harus berisi salah satu dari:"
  2540. #, fuzzy
  2541. #~ msgid "Unrecognized format"
  2542. #~ msgstr "format proxy tidak dikenali"
  2543. #~ msgid "unrecognized proxy format"
  2544. #~ msgstr "format proxy tidak dikenali"
  2545. #~ msgid "Failed to open the segment file %s, cause: %s"
  2546. #~ msgstr "Gagal membuka segmen berkas %s, penyebab: %s"
  2547. #~ msgid "Failed to write into the segment file %s, cause: %s"
  2548. #~ msgstr "Gagal menulis ke segmen berkas %s, penyebab: %s"
  2549. #~ msgid "Failed to read from the segment file %s, cause: %s"
  2550. #~ msgstr "Gagal membaca dari segmen berkas %s, penyebab: %s"
  2551. #~ msgid "Certificate verification failed. Cause: %s"
  2552. #~ msgstr "Verifikasi sertifikat gagal. Menyebabkan: %s"
  2553. #~ msgid "CUID#%d - The download for one segment completed successfully."
  2554. #~ msgstr "CUID#%d - Unduh satu bagian telah berhasil diselesaikan."
  2555. #~ msgid "CUID#%d - No segment available."
  2556. #~ msgstr "CUID#%d - Tidak ada bagian yang tersedia."
  2557. #~ msgid "CUID#%d - Connecting to %s:%d"
  2558. #~ msgstr "CUID#%d - Menghubungi %s:%d"
  2559. #~ msgid ""
  2560. #~ "CUID#%d - The segment changed. We send the request again with new Range "
  2561. #~ "header."
  2562. #~ msgstr ""
  2563. #~ "CUID#%d - Bagian berubah. Kita kirim permintaan lagi dengan header Range "
  2564. #~ "yang baru."
  2565. #~ msgid "CUID#%d - Redirecting to %s"
  2566. #~ msgstr "CUID#%d - Dialihkan ke %s"
  2567. #~ msgid ""
  2568. #~ "CUID#%d - Requesting:\n"
  2569. #~ "%s"
  2570. #~ msgstr ""
  2571. #~ "CUID#%d - Meminta:\n"
  2572. #~ "%s"
  2573. #~ msgid ""
  2574. #~ "CUID#%d - Response received:\n"
  2575. #~ "%s"
  2576. #~ msgstr ""
  2577. #~ "CUID#%d - Jawaban yang diterima:\n"
  2578. #~ "%s"
  2579. #~ msgid "CUID#%d - Download aborted. URI=%s"
  2580. #~ msgstr "CUID#%d - Unduh dibatalkan. URI=%s"
  2581. #~ msgid "CUID#%d - Restarting the download. URI=%s"
  2582. #~ msgstr "CUID#%d - Memulai kembali proses unduh. URI=%s"
  2583. #~ msgid "CUID#%d - Download aborted."
  2584. #~ msgstr "CUID#%d - Unduh dibatalkan."
  2585. #~ msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  2586. #~ msgstr "CUID#%d - %d kali dicoba, tapi tidak berhasil. Unduh dibatalkan."
  2587. #~ msgid "CUID#%d - we got new piece. index=%d"
  2588. #~ msgstr "CUID#%d - kita dapatkan potongan baru. index=%d"
  2589. #~ msgid "CUID#%d - we got wrong piece. index=%d"
  2590. #~ msgstr "CUID#%d - kita dapatkan potongan yang salah. index=%d"
  2591. #~ msgid "CUID#%d - Download not complete: %s"
  2592. #~ msgstr "CUID#%d - Unduh tidak selesai: %s"
  2593. #~ msgid "CUID#%d - Good checksum: %s"
  2594. #~ msgstr "CUID#%d - Checksum benar: %s"
  2595. #~ msgid "CUID#%d - Bad checksum: %s"
  2596. #~ msgstr "CUID#%d - Checksum salah: %s"
  2597. #~ msgid "CUID#%d - Resolving hostname %s"
  2598. #~ msgstr "CUID#%d - Mencari nama host %s"
  2599. #~ msgid "CUID#%d - Name resolution complete: %s -> %s"
  2600. #~ msgstr "CUID#%d - Pencarian nama selesai: %s -> %s"
  2601. #~ msgid "CUID#%d - Name resolution for %s failed:%s"
  2602. #~ msgstr "CUID#%d - Pencarian nama untuk %s gagal:%s"
  2603. #~ msgid "CUID#%d - Abort requested."
  2604. #~ msgstr "CUID#%d - Permintaan pembatalan diterima."
  2605. #~ msgid " -o, --out=FILE The file name of the downloaded file."
  2606. #~ msgstr ""
  2607. #~ " -o, --out=BERKAS Nama berkas dari berkas yang diunduh."
  2608. #~ msgid ""
  2609. #~ " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  2610. #~ "basic\n"
  2611. #~ " is the only supported scheme."
  2612. #~ msgstr ""
  2613. #~ " --http-auth-scheme=SKEMA Atur skema otentikasi HTTP. Saat ini, basic\n"
  2614. #~ " adalah satu-satunya skema yang didukung."
  2615. #~ msgid " -D, --daemon Run as daemon."
  2616. #~ msgstr " -D, --daemon Jalankan sebagai daemon."
  2617. #~ msgid "Files:"
  2618. #~ msgstr "Berkas:"
  2619. #~ msgid ""
  2620. #~ " --allow-overwrite=true|false If false, aria2 doesn't download a file "
  2621. #~ "which\n"
  2622. #~ " already exists but the corresponding .aria2 "
  2623. #~ "file\n"
  2624. #~ " doesn't exist."
  2625. #~ msgstr ""
  2626. #~ " --allow-overwrite=true|false Jika false, aria2 tidak mengunduh berkas "
  2627. #~ "yang\n"
  2628. #~ " telah ada tapi tidak memiliki berkas ."
  2629. #~ "aria2\n"
  2630. #~ " yang berkaitan."