id.po 97 KB

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