id.po 88 KB

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