ar.po 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217
  1. # Arabic translation for aria2
  2. # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
  3. # This file is distributed under the same license as the aria2 package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2009.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2011-01-10 17:04+0900\n"
  11. "PO-Revision-Date: 2010-11-16 03:29+0000\n"
  12. "Last-Translator: ChArLoK_16 <Unknown>\n"
  13. "Language-Team: Arabic <ar@li.org>\n"
  14. "Language: ar\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: 2010-12-04 12:56+0000\n"
  19. "X-Generator: Launchpad (build Unknown)\n"
  20. #: src/DownloadEngine.cc:220
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr ""
  24. "بدات خطوات الإغلاق ... إضغط Ctrl-C مجددا للإغلاق الإضطراري / الإجباري ."
  25. #: src/DownloadEngine.cc:227
  26. msgid "Emergency shutdown sequence commencing..."
  27. msgstr "بدأت خطوات الإغلاق الإضطراري / الإجباري ...."
  28. #: src/MultiUrlRequestInfo.cc:109
  29. msgid "aria2 will resume download if the transfer is restarted."
  30. msgstr "aria2 سيستأنف التحميل إذا أعيد النقل"
  31. #: src/MultiUrlRequestInfo.cc:111
  32. msgid ""
  33. "If there are any errors, then see the log file. See '-l' option in help/man "
  34. "page for details."
  35. msgstr ""
  36. "إذا كانت هناك أية أخطاء، راجع السجل. أنظر الخيار 'l-' في الصفحة help/man "
  37. "لمزيد من التفاصيل."
  38. #: src/RequestGroupMan.cc:608
  39. msgid "Download Results:"
  40. msgstr "نتائج التحميل"
  41. #: src/RequestGroupMan.cc:649
  42. msgid "Status Legend:"
  43. msgstr "وصف الحالة"
  44. #: src/OptionHandler.cc:38
  45. msgid " Default: "
  46. msgstr " افتراضي: "
  47. #: src/OptionHandler.cc:39
  48. msgid " Tags: "
  49. msgstr " الوسوم: "
  50. #: src/OptionHandler.cc:40
  51. msgid " Possible Values: "
  52. msgstr " القيم المحتملة: "
  53. #: src/usage_text.h:37
  54. msgid ""
  55. " -d, --dir=DIR The directory to store the downloaded file."
  56. msgstr " -d، --dir=DIR المجلد الذي سيتم حفظ الملف المحمل فيه."
  57. #: src/usage_text.h:39
  58. msgid ""
  59. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  60. " option is used, this option is ignored."
  61. msgstr ""
  62. #: src/usage_text.h:42
  63. msgid ""
  64. " -l, --log=LOG The file name of the log file. If '-' is\n"
  65. " specified, log is written to stdout."
  66. msgstr ""
  67. " -l, --log=LOG اسم ملف سجل البيانات. إذا كان If '-'\n"
  68. " محددا، سيجسل ملف البيانات في stdout."
  69. #: src/usage_text.h:45
  70. msgid ""
  71. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  72. "will\n"
  73. " be changed to \"/\" and standard input, "
  74. "standard\n"
  75. " output and standard error will be redirected "
  76. "to\n"
  77. " \"/dev/null\"."
  78. msgstr ""
  79. #: src/usage_text.h:50
  80. msgid ""
  81. " -s, --split=N Download a file using N connections. If more\n"
  82. " than N URLs are given, first N URLs are used "
  83. "and\n"
  84. " remaining URLs are used for backup. If less "
  85. "than\n"
  86. " N URLs are given, those URLs are used more "
  87. "than\n"
  88. " once so that N connections total are made\n"
  89. " simultaneously. The number of connections to "
  90. "the\n"
  91. " same host is restricted by\n"
  92. " --max-connection-per-server option. Please see "
  93. "-j\n"
  94. " and --min-split-size option too.\n"
  95. " Please note that in Metalink download, this\n"
  96. " option has no effect and use -C option instead."
  97. msgstr ""
  98. #: src/usage_text.h:62
  99. msgid ""
  100. " --retry-wait=SEC Set the seconds to wait to retry after an "
  101. "error\n"
  102. " has occured."
  103. msgstr ""
  104. #: src/usage_text.h:65
  105. msgid " -t, --timeout=SEC Set timeout in seconds."
  106. msgstr ""
  107. #: src/usage_text.h:67
  108. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  109. msgstr ""
  110. #: src/usage_text.h:69
  111. msgid ""
  112. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  113. " previously defined proxy, use \"\".\n"
  114. " See also --all-proxy option.\n"
  115. " This affects all URLs."
  116. msgstr ""
  117. #: src/usage_text.h:74
  118. msgid ""
  119. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  120. " previously defined proxy, use \"\".\n"
  121. " See also --all-proxy option.\n"
  122. " This affects all URLs."
  123. msgstr ""
  124. #: src/usage_text.h:79
  125. msgid ""
  126. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  127. "previously\n"
  128. " defined proxy, use \"\".\n"
  129. " See also --all-proxy option.\n"
  130. " This affects all URLs."
  131. msgstr ""
  132. #: src/usage_text.h:84
  133. msgid ""
  134. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  135. "erase\n"
  136. " previously defined proxy, use \"\".\n"
  137. " You can override this setting and specify a\n"
  138. " proxy server for a particular protocol using\n"
  139. " --http-proxy, --https-proxy and --ftp-proxy\n"
  140. " options.\n"
  141. " This affects all URLs."
  142. msgstr ""
  143. #: src/usage_text.h:92
  144. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  145. msgstr ""
  146. #: src/usage_text.h:94
  147. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  148. msgstr ""
  149. #: src/usage_text.h:96
  150. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  151. msgstr ""
  152. #: src/usage_text.h:98
  153. msgid " --referer=REFERER Set Referer. This affects all URLs."
  154. msgstr ""
  155. #: src/usage_text.h:100
  156. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  157. msgstr ""
  158. #: src/usage_text.h:102
  159. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  160. msgstr ""
  161. #: src/usage_text.h:104
  162. msgid " --ftp-type=TYPE Set FTP transfer type."
  163. msgstr ""
  164. #: src/usage_text.h:106
  165. msgid ""
  166. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  167. "given,\n"
  168. " the active mode will be used."
  169. msgstr ""
  170. #: src/usage_text.h:109
  171. msgid ""
  172. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  173. "than\n"
  174. " or equal to this value(bytes per sec).\n"
  175. " 0 means aria2 does not have a lowest speed "
  176. "limit.\n"
  177. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  178. " This option does not affect BitTorrent "
  179. "downloads."
  180. msgstr ""
  181. #: src/usage_text.h:115
  182. msgid ""
  183. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  184. "sec.\n"
  185. " 0 means unrestricted.\n"
  186. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  187. " To limit the download speed per download, use\n"
  188. " --max-download-limit option."
  189. msgstr ""
  190. #: src/usage_text.h:121
  191. msgid ""
  192. " --max-download-limit=SPEED Set max download speed per each download in\n"
  193. " bytes/sec. 0 means unrestricted.\n"
  194. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  195. " To limit the overall download speed, use\n"
  196. " --max-overall-download-limit option."
  197. msgstr ""
  198. #: src/usage_text.h:127
  199. msgid ""
  200. " --file-allocation=METHOD Specify file allocation method.\n"
  201. " 'none' doesn't pre-allocate file space. "
  202. "'prealloc'\n"
  203. " pre-allocates file space before download "
  204. "begins.\n"
  205. " This may take some time depending on the size "
  206. "of\n"
  207. " the file.\n"
  208. " If you are using newer file systems such as "
  209. "ext4\n"
  210. " (with extents support), btrfs or xfs, 'falloc' "
  211. "is\n"
  212. " your best choice. It allocates large(few GiB)\n"
  213. " files almost instantly. Don't use 'falloc' "
  214. "with\n"
  215. " legacy file systems such as ext3 because it "
  216. "takes\n"
  217. " almost same time as 'prealloc' and it blocks "
  218. "aria2\n"
  219. " entirely until allocation finishes. 'falloc' "
  220. "may\n"
  221. " not be available if your system doesn't have\n"
  222. " posix_fallocate() function."
  223. msgstr ""
  224. #: src/usage_text.h:142
  225. msgid ""
  226. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  227. " size is smaller than SIZE.\n"
  228. " You can append K or M(1K = 1024, 1M = 1024K)."
  229. msgstr ""
  230. #: src/usage_text.h:146
  231. msgid ""
  232. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  233. "while\n"
  234. " allocating files.\n"
  235. " Turn off if you encounter any error"
  236. msgstr ""
  237. #: src/usage_text.h:150
  238. msgid ""
  239. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  240. " corresponding control file doesn't exist. "
  241. "See\n"
  242. " also --auto-file-renaming option."
  243. msgstr ""
  244. #: src/usage_text.h:154
  245. msgid ""
  246. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  247. " download when a piece length is different "
  248. "from\n"
  249. " one in a control file. If true is given, you "
  250. "can\n"
  251. " proceed but some download progress will be "
  252. "lost."
  253. msgstr ""
  254. #: src/usage_text.h:159
  255. msgid ""
  256. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  257. "sequentially\n"
  258. " and download each URI in a separate session, "
  259. "like\n"
  260. " the usual command-line download utilities."
  261. msgstr ""
  262. #: src/usage_text.h:163
  263. msgid ""
  264. " --auto-file-renaming[=true|false] Rename file name if the same file "
  265. "already\n"
  266. " exists. This option works only in http(s)/ftp\n"
  267. " download.\n"
  268. " The new file name has a dot and a number"
  269. "(1..9999)\n"
  270. " appended."
  271. msgstr ""
  272. #: src/usage_text.h:169
  273. msgid ""
  274. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  275. " You can specify set of parts:\n"
  276. " http://{sv1,sv2,sv3}/foo.iso\n"
  277. " Also you can specify numeric sequences with "
  278. "step\n"
  279. " counter:\n"
  280. " http://host/image[000-100:2].img\n"
  281. " A step counter can be omitted.\n"
  282. " If all URIs do not point to the same file, "
  283. "such\n"
  284. " as the second example above, -Z option is\n"
  285. " required."
  286. msgstr ""
  287. #: src/usage_text.h:180
  288. msgid ""
  289. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  290. msgstr ""
  291. #: src/usage_text.h:182
  292. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  293. msgstr ""
  294. #: src/usage_text.h:184
  295. msgid ""
  296. " -V, --check-integrity[=true|false] Check file integrity by validating "
  297. "piece\n"
  298. " hashes. This option has effect only in "
  299. "BitTorrent\n"
  300. " and Metalink downloads with chunk checksums.\n"
  301. " Use this option to re-download a damaged "
  302. "portion\n"
  303. " of a file. See also --bt-hash-check-seed "
  304. "option."
  305. msgstr ""
  306. #: src/usage_text.h:190
  307. msgid ""
  308. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  309. " --check-integrity option and file is "
  310. "complete,\n"
  311. " continue to seed file. If you want to check "
  312. "file\n"
  313. " and download it only when it is damaged or\n"
  314. " incomplete, set this option to false.\n"
  315. " This option has effect only on BitTorrent\n"
  316. " download."
  317. msgstr ""
  318. #: src/usage_text.h:198
  319. msgid ""
  320. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  321. "calculating\n"
  322. " checksum while downloading a file if chunk\n"
  323. " checksums are provided."
  324. msgstr ""
  325. #: src/usage_text.h:202
  326. msgid ""
  327. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  328. " file. Use this option to resume a download\n"
  329. " started by a web browser or another program\n"
  330. " which downloads files sequentially from the\n"
  331. " beginning. Currently this option is only\n"
  332. " applicable to http(s)/ftp downloads."
  333. msgstr ""
  334. #: src/usage_text.h:209
  335. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  336. msgstr ""
  337. #: src/usage_text.h:211
  338. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  339. msgstr ""
  340. #: src/usage_text.h:213
  341. msgid ""
  342. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  343. " multiple URIs for a single entity: separate\n"
  344. " URIs on a single line using the TAB "
  345. "character.\n"
  346. " Reads input from stdin when '-' is specified.\n"
  347. " Additionally, options can be specified after "
  348. "each\n"
  349. " line of URI. This optional line must start "
  350. "with\n"
  351. " one or more white spaces and have one option "
  352. "per\n"
  353. " single line. See INPUT FILE section of man "
  354. "page\n"
  355. " for details."
  356. msgstr ""
  357. #: src/usage_text.h:223
  358. msgid ""
  359. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  360. "for\n"
  361. " every static (HTTP/FTP) URL, torrent and "
  362. "metalink.\n"
  363. " See also -s and -C options."
  364. msgstr ""
  365. #: src/usage_text.h:227
  366. msgid ""
  367. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  368. "format\n"
  369. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  370. msgstr ""
  371. #: src/usage_text.h:230
  372. msgid ""
  373. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  374. "x)/\n"
  375. " Netscape format. If FILE already exists, it "
  376. "is\n"
  377. " overwritten. Session Cookies are also saved "
  378. "and\n"
  379. " their expiry values are treated as 0."
  380. msgstr ""
  381. #: src/usage_text.h:235
  382. msgid ""
  383. " -S, --show-files[=true|false] Print file listing of .torrent or .metalink "
  384. "file\n"
  385. " and exit. More detailed information will be "
  386. "listed\n"
  387. " in case of torrent file."
  388. msgstr ""
  389. #: src/usage_text.h:239
  390. msgid ""
  391. " --select-file=INDEX... Set file to download by specifying its index.\n"
  392. " You can find the file index using the\n"
  393. " --show-files option. Multiple indexes can be\n"
  394. " specified by using ',', for example: \"3,6\".\n"
  395. " You can also use '-' to specify a range: "
  396. "\"1-5\".\n"
  397. " ',' and '-' can be used together.\n"
  398. " When used with the -M option, index may vary\n"
  399. " depending on the query(see --metalink-* "
  400. "options)."
  401. msgstr ""
  402. #: src/usage_text.h:248
  403. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  404. msgstr ""
  405. #: src/usage_text.h:250
  406. msgid ""
  407. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  408. " whose suffix is .torrent or content type is\n"
  409. " application/x-bittorrent is downloaded, aria2\n"
  410. " parses it as a torrent file and downloads "
  411. "files\n"
  412. " mentioned in it.\n"
  413. " If mem is specified, a torrent file is not\n"
  414. " written to the disk, but is just kept in "
  415. "memory.\n"
  416. " If false is specified, the action mentioned "
  417. "above\n"
  418. " is not taken."
  419. msgstr ""
  420. #: src/usage_text.h:260
  421. msgid ""
  422. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  423. " Multiple ports can be specified by using ',',\n"
  424. " for example: \"6881,6885\". You can also use "
  425. "'-'\n"
  426. " to specify a range: \"6881-6999\". ',' and '-' "
  427. "can\n"
  428. " be used together."
  429. msgstr ""
  430. #: src/usage_text.h:266
  431. msgid ""
  432. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  433. "sec.\n"
  434. " 0 means unrestricted.\n"
  435. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  436. " To limit the upload speed per torrent, use\n"
  437. " --max-upload-limit option."
  438. msgstr ""
  439. #: src/usage_text.h:272
  440. msgid ""
  441. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  442. " bytes/sec. 0 means unrestricted.\n"
  443. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  444. " To limit the overall upload speed, use\n"
  445. " --max-overall-upload-limit option."
  446. msgstr ""
  447. #: src/usage_text.h:278
  448. msgid ""
  449. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  450. " --seed-ratio option."
  451. msgstr ""
  452. #: src/usage_text.h:281
  453. msgid ""
  454. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  455. " until share ratio reaches RATIO.\n"
  456. " You are strongly encouraged to specify equals "
  457. "or\n"
  458. " more than 1.0 here. Specify 0.0 if you intend "
  459. "to\n"
  460. " do seeding regardless of share ratio.\n"
  461. " If --seed-time option is specified along with\n"
  462. " this option, seeding ends when at least one "
  463. "of\n"
  464. " the conditions is satisfied."
  465. msgstr ""
  466. #: src/usage_text.h:290
  467. msgid ""
  468. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  469. "in\n"
  470. " BitTorrent is 20 byte length. If more than 20\n"
  471. " bytes are specified, only first 20 bytes are\n"
  472. " used. If less than 20 bytes are specified, "
  473. "random\n"
  474. " byte data are added to make its length 20 "
  475. "bytes."
  476. msgstr ""
  477. #: src/usage_text.h:296
  478. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  479. msgstr ""
  480. #: src/usage_text.h:298
  481. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  482. msgstr ""
  483. #: src/usage_text.h:300
  484. msgid ""
  485. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  486. " DHT. Multiple ports can be specified by using\n"
  487. " ',', for example: \"6881,6885\". You can also\n"
  488. " use '-' to specify a range: \"6881-6999\". "
  489. "','\n"
  490. " and '-' can be used together."
  491. msgstr ""
  492. #: src/usage_text.h:306
  493. msgid ""
  494. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  495. "DHT\n"
  496. " network."
  497. msgstr ""
  498. #: src/usage_text.h:309
  499. msgid ""
  500. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  501. msgstr ""
  502. #: src/usage_text.h:311
  503. msgid ""
  504. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  505. " If several encryption methods are provided by "
  506. "a\n"
  507. " peer, aria2 chooses the lowest one which "
  508. "satisfies\n"
  509. " the given level."
  510. msgstr ""
  511. #: src/usage_text.h:316
  512. msgid ""
  513. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  514. "and\n"
  515. " establish connection with legacy BitTorrent\n"
  516. " handshake. Thus aria2 always uses Obfuscation\n"
  517. " handshake."
  518. msgstr ""
  519. #: src/usage_text.h:321
  520. msgid ""
  521. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  522. " torrent is lower than SPEED, aria2 "
  523. "temporarily\n"
  524. " increases the number of peers to try for more\n"
  525. " download speed. Configuring this option with "
  526. "your\n"
  527. " preferred download speed can increase your\n"
  528. " download speed in some cases.\n"
  529. " You can append K or M(1K = 1024, 1M = 1024K)."
  530. msgstr ""
  531. #: src/usage_text.h:329
  532. msgid ""
  533. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  534. "each\n"
  535. " BitTorrent download."
  536. msgstr ""
  537. #: src/usage_text.h:332
  538. msgid ""
  539. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  540. " verifying piece hashes."
  541. msgstr ""
  542. #: src/usage_text.h:335
  543. msgid ""
  544. " --bt-max-peers=NUM Specify the maximum number of peers per "
  545. "torrent.\n"
  546. " 0 means unlimited.\n"
  547. " See also --bt-request-peer-speed-limit option."
  548. msgstr ""
  549. #: src/usage_text.h:339
  550. msgid ""
  551. " -M, --metalink-file=METALINK_FILE The file path to the .metalink file. "
  552. "Reads\n"
  553. " input from stdin when '-' is specified."
  554. msgstr ""
  555. #: src/usage_text.h:342
  556. msgid ""
  557. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  558. " simultaneously. Some Metalinks regulate the\n"
  559. " number of servers to connect. aria2 strictly\n"
  560. " respects them. This means that if Metalink "
  561. "defines\n"
  562. " the maxconnections attribute lower than\n"
  563. " NUM_SERVERS, then aria2 uses the value of\n"
  564. " maxconnections attribute instead of "
  565. "NUM_SERVERS.\n"
  566. " See also -s and -j options."
  567. msgstr ""
  568. #: src/usage_text.h:351
  569. msgid " --metalink-version=VERSION The version of the file to download."
  570. msgstr ""
  571. #: src/usage_text.h:353
  572. msgid " --metalink-language=LANGUAGE The language of the file to download."
  573. msgstr ""
  574. #: src/usage_text.h:355
  575. msgid ""
  576. " --metalink-os=OS The operating system of the file to download."
  577. msgstr ""
  578. #: src/usage_text.h:357
  579. msgid ""
  580. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  581. " A comma-delimited list of locations is\n"
  582. " acceptable."
  583. msgstr ""
  584. #: src/usage_text.h:361
  585. msgid ""
  586. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  587. "'none'\n"
  588. " if you don't have any preferred protocol."
  589. msgstr ""
  590. #: src/usage_text.h:364
  591. msgid ""
  592. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  593. " whose suffix is .metalink or content type of\n"
  594. " application/metalink+xml is downloaded, aria2\n"
  595. " parses it as a metalink file and downloads "
  596. "files\n"
  597. " mentioned in it.\n"
  598. " If mem is specified, a metalink file is not\n"
  599. " written to the disk, but is just kept in "
  600. "memory.\n"
  601. " If false is specified, the action mentioned "
  602. "above\n"
  603. " is not taken."
  604. msgstr ""
  605. #: src/usage_text.h:374
  606. msgid ""
  607. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  608. "several\n"
  609. " protocols are available for a mirror in a "
  610. "metalink\n"
  611. " file, aria2 uses one of them.\n"
  612. " Use --metalink-preferred-protocol option to\n"
  613. " specify the preference of protocol."
  614. msgstr ""
  615. #: src/usage_text.h:380
  616. msgid " -v, --version Print the version number and exit."
  617. msgstr ""
  618. #: src/usage_text.h:382
  619. msgid ""
  620. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  621. " The help messages are classified with tags. A "
  622. "tag\n"
  623. " starts with \"#\". For example, type \"--"
  624. "help=#http\"\n"
  625. " to get the usage for the options tagged with\n"
  626. " \"#http\". If non-tag word is given, print the "
  627. "usage\n"
  628. " for the options whose name includes that word."
  629. msgstr ""
  630. #: src/usage_text.h:389
  631. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  632. msgstr ""
  633. #: src/usage_text.h:391
  634. msgid ""
  635. " --conf-path=PATH Change the configuration file path to PATH."
  636. msgstr ""
  637. #: src/usage_text.h:393
  638. msgid ""
  639. " --stop=SEC Stop application after SEC seconds has "
  640. "passed.\n"
  641. " If 0 is given, this feature is disabled."
  642. msgstr ""
  643. #: src/usage_text.h:396
  644. msgid ""
  645. " --header=HEADER Append HEADER to HTTP request header. You can "
  646. "use\n"
  647. " this option repeatedly to specify more than "
  648. "one\n"
  649. " header:\n"
  650. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  651. "9J1\"\n"
  652. " http://host/file"
  653. msgstr ""
  654. #: src/usage_text.h:402
  655. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  656. msgstr ""
  657. #: src/usage_text.h:404
  658. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  659. msgstr ""
  660. #: src/usage_text.h:406
  661. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  662. msgstr ""
  663. #: src/usage_text.h:408
  664. msgid ""
  665. " --summary-interval=SEC Set interval to output download progress "
  666. "summary.\n"
  667. " Setting 0 suppresses the output."
  668. msgstr ""
  669. #: src/usage_text.h:411
  670. msgid " --log-level=LEVEL Set log level to output."
  671. msgstr ""
  672. #: src/usage_text.h:413
  673. msgid ""
  674. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  675. "the\n"
  676. " remote HTTP/FTP server and if it is "
  677. "available,\n"
  678. " apply it to the local file."
  679. msgstr ""
  680. #: src/usage_text.h:417
  681. msgid ""
  682. " --connect-timeout=SEC Set the connect timeout in seconds to "
  683. "establish\n"
  684. " connection to HTTP/FTP/proxy server. After "
  685. "the\n"
  686. " connection is established, this option makes "
  687. "no\n"
  688. " effect and --timeout option is used instead."
  689. msgstr ""
  690. #: src/usage_text.h:422
  691. msgid ""
  692. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  693. "the\n"
  694. " remote HTTP/FTP servers NUM times without "
  695. "getting\n"
  696. " a single byte, then force the download to "
  697. "fail.\n"
  698. " Specify 0 to disable this option.\n"
  699. " This options is effective only when using\n"
  700. " HTTP/FTP servers."
  701. msgstr ""
  702. #: src/usage_text.h:429
  703. msgid ""
  704. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  705. " If 'inorder' is given, URI is tried in the "
  706. "order\n"
  707. " appeared in the URI list.\n"
  708. " If 'feedback' is given, aria2 uses download "
  709. "speed\n"
  710. " observed in the previous downloads and choose\n"
  711. " fastest server in the URI list. This also\n"
  712. " effectively skips dead mirrors. The observed\n"
  713. " download speed is a part of performance "
  714. "profile\n"
  715. " of servers mentioned in --server-stat-of and\n"
  716. " --server-stat-if options.\n"
  717. " If 'adaptive' is given, selects one of the "
  718. "best\n"
  719. " mirrors for the first and reserved "
  720. "connections.\n"
  721. " For supplementary ones, it returns mirrors "
  722. "which\n"
  723. " has not been tested yet, and if each of them "
  724. "has\n"
  725. " already been tested, returns mirrors which has "
  726. "to\n"
  727. " be tested again. Otherwise, it doesn't select\n"
  728. " anymore mirrors. Like 'feedback', it uses a\n"
  729. " performance profile of servers."
  730. msgstr ""
  731. #: src/usage_text.h:448
  732. msgid ""
  733. " --server-stat-of=FILE Specify the filename to which performance "
  734. "profile\n"
  735. " of the servers is saved. You can load saved "
  736. "data\n"
  737. " using --server-stat-if option."
  738. msgstr ""
  739. #: src/usage_text.h:452
  740. msgid ""
  741. " --server-stat-if=FILE Specify the filename to load performance "
  742. "profile\n"
  743. " of the servers. The loaded data will be used "
  744. "in\n"
  745. " some URI selector such as 'feedback'.\n"
  746. " See also --uri-selector option"
  747. msgstr ""
  748. #: src/usage_text.h:457
  749. msgid ""
  750. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  751. " performance profile of the servers since the "
  752. "last\n"
  753. " contact to them."
  754. msgstr ""
  755. #: src/usage_text.h:461
  756. msgid ""
  757. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  758. "seconds.\n"
  759. " If 0 is given, a control file is not saved "
  760. "during\n"
  761. " download. aria2 saves a control file when it "
  762. "stops\n"
  763. " regardless of the value."
  764. msgstr ""
  765. #: src/usage_text.h:466
  766. msgid ""
  767. " --certificate=FILE Use the client certificate in FILE.\n"
  768. " The certificate must be in PEM format.\n"
  769. " You may use --private-key option to specify "
  770. "the\n"
  771. " private key."
  772. msgstr ""
  773. #: src/usage_text.h:471
  774. msgid ""
  775. " --private-key=FILE Use the private key in FILE.\n"
  776. " The private key must be decrypted and in PEM\n"
  777. " format. See also --certificate option."
  778. msgstr ""
  779. #: src/usage_text.h:475
  780. msgid ""
  781. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  782. "verify\n"
  783. " the peers. The certificate file must be in "
  784. "PEM\n"
  785. " format and can contain multiple CA "
  786. "certificates.\n"
  787. " Use --check-certificate option to enable\n"
  788. " verification."
  789. msgstr ""
  790. #: src/usage_text.h:481
  791. msgid ""
  792. " --check-certificate[=true|false] Verify the peer using certificates "
  793. "specified\n"
  794. " in --ca-certificate option."
  795. msgstr ""
  796. #: src/usage_text.h:484
  797. msgid ""
  798. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  799. " network address with or without CIDR block "
  800. "where\n"
  801. " proxy should not be used."
  802. msgstr ""
  803. #: src/usage_text.h:488
  804. msgid ""
  805. " --use-head[=true|false] Use HEAD method for the first request to the "
  806. "HTTP\n"
  807. " server."
  808. msgstr ""
  809. #: src/usage_text.h:491
  810. msgid " --event-poll=POLL Specify the method for polling events."
  811. msgstr ""
  812. #: src/usage_text.h:493
  813. msgid ""
  814. " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  815. "listen\n"
  816. " to."
  817. msgstr ""
  818. #: src/usage_text.h:496
  819. msgid ""
  820. " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  821. " It is strongly recommended to set username "
  822. "and\n"
  823. " password using --xml-rpc-user and --xml-rpc-"
  824. "passwd\n"
  825. " option. See also --xml-rpc-listen-port option."
  826. msgstr ""
  827. #: src/usage_text.h:501
  828. msgid ""
  829. " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If aria2\n"
  830. " detects the request is more than SIZE bytes, "
  831. "it\n"
  832. " drops connection."
  833. msgstr ""
  834. #: src/usage_text.h:505
  835. msgid " --xml-rpc-user=USER Set XML-RPC user."
  836. msgstr ""
  837. #: src/usage_text.h:507
  838. msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  839. msgstr ""
  840. #: src/usage_text.h:509
  841. msgid ""
  842. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  843. "a\n"
  844. " BitTorrent tracker. Although this function is\n"
  845. " named 'external', it can accept any kind of "
  846. "IP\n"
  847. " addresses."
  848. msgstr ""
  849. #: src/usage_text.h:514
  850. msgid ""
  851. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  852. "it\n"
  853. " is requested by the server. If false is set, "
  854. "then\n"
  855. " authorization header is always sent to the "
  856. "server.\n"
  857. " There is an exception: if username and "
  858. "password\n"
  859. " are embedded in URI, authorization header is\n"
  860. " always sent to the server regardless of this\n"
  861. " option."
  862. msgstr ""
  863. #: src/usage_text.h:522
  864. msgid ""
  865. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  866. "can\n"
  867. " find the file index using the --show-files "
  868. "option.\n"
  869. " PATH is a relative path to the path specified "
  870. "in\n"
  871. " --dir option. You can use this option "
  872. "multiple\n"
  873. " times."
  874. msgstr ""
  875. #: src/usage_text.h:528
  876. msgid ""
  877. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  878. "the\n"
  879. " remote file is available and doesn't download\n"
  880. " data. This option has effect on HTTP/FTP "
  881. "download.\n"
  882. " BitTorrent downloads are canceled if true is\n"
  883. " specified."
  884. msgstr ""
  885. #: src/usage_text.h:534
  886. msgid ""
  887. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  888. " requests. This completely overrides interval "
  889. "value\n"
  890. " and aria2 just uses this value and ignores "
  891. "the\n"
  892. " min interval and interval value in the "
  893. "response of\n"
  894. " tracker. If 0 is set, aria2 determines "
  895. "interval\n"
  896. " based on the response of tracker and the "
  897. "download\n"
  898. " progress."
  899. msgstr ""
  900. #: src/usage_text.h:542
  901. msgid ""
  902. " --on-download-complete=COMMAND Set the command to be executed after "
  903. "download\n"
  904. " completed.\n"
  905. " See --on-download-start option for the\n"
  906. " requirement of COMMAND.\n"
  907. " See also --on-download-stop option."
  908. msgstr ""
  909. #: src/usage_text.h:548
  910. msgid ""
  911. " --on-download-start=COMMAND Set the command to be executed after download\n"
  912. " got started. aria2 passes 3 arguments to "
  913. "COMMAND:\n"
  914. " GID, the nubmer of files and file path. See "
  915. "Event\n"
  916. " Hook in man page for more details."
  917. msgstr ""
  918. #: src/usage_text.h:553
  919. msgid ""
  920. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  921. " was paused.\n"
  922. " See --on-download-start option for the\n"
  923. " requirement of COMMAND."
  924. msgstr ""
  925. #: src/usage_text.h:558
  926. msgid ""
  927. " --on-download-error=COMMAND Set the command to be executed after download\n"
  928. " aborted due to error.\n"
  929. " See --on-download-start option for the\n"
  930. " requirement of COMMAND.\n"
  931. " See also --on-download-stop option."
  932. msgstr ""
  933. #: src/usage_text.h:564
  934. msgid ""
  935. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  936. " stopped. You can override the command to be\n"
  937. " executed for particular download result using\n"
  938. " --on-download-complete and --on-download-"
  939. "error. If\n"
  940. " they are specified, command specified in this\n"
  941. " option is not executed.\n"
  942. " See --on-download-start option for the\n"
  943. " requirement of COMMAND."
  944. msgstr ""
  945. #: src/usage_text.h:573
  946. msgid ""
  947. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  948. "0 in\n"
  949. " consecutive SEC seconds. If 0 is given, this\n"
  950. " feature is disabled."
  951. msgstr ""
  952. #: src/usage_text.h:577
  953. msgid ""
  954. " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on all\n"
  955. " network interfaces. If false is given, listen "
  956. "only\n"
  957. " on local loopback interface."
  958. msgstr ""
  959. #: src/usage_text.h:581
  960. msgid ""
  961. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  962. "last\n"
  963. " pieces of each file first. This is useful for\n"
  964. " previewing files. The argument can contain 2\n"
  965. " keywords:head and tail. To include both "
  966. "keywords,\n"
  967. " they must be separated by comma. These "
  968. "keywords\n"
  969. " can take one parameter, SIZE. For example, if\n"
  970. " head=SIZE is specified, pieces in the range "
  971. "of\n"
  972. " first SIZE bytes of each file get higher "
  973. "priority.\n"
  974. " tail=SIZE means the range of last SIZE bytes "
  975. "of\n"
  976. " each file. SIZE can include K or M(1K = 1024, "
  977. "1M =\n"
  978. " 1024K). If SIZE is omitted, SIZE=1M is used."
  979. msgstr ""
  980. #: src/usage_text.h:593
  981. msgid ""
  982. " --interface=INTERFACE Bind sockets to given interface. You can "
  983. "specify\n"
  984. " interface name, IP address and hostname."
  985. msgstr ""
  986. #: src/usage_text.h:596
  987. msgid " --disable-ipv6[=true|false] Disable IPv6."
  988. msgstr ""
  989. #: src/usage_text.h:598
  990. msgid ""
  991. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  992. "has\n"
  993. " effect only when BitTorrent Magnet URI is "
  994. "used.\n"
  995. " The filename is hex encoded info hash with "
  996. "suffix\n"
  997. " .torrent. The directory to be saved is the "
  998. "same\n"
  999. " directory where download file is saved. If "
  1000. "the\n"
  1001. " same file already exists, metadata is not "
  1002. "saved.\n"
  1003. " See also --bt-metadata-only option."
  1004. msgstr ""
  1005. #: src/usage_text.h:606
  1006. msgid ""
  1007. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1008. "cache\n"
  1009. " header to avoid cached content. If false is\n"
  1010. " given, these headers are not sent and you can "
  1011. "add\n"
  1012. " Cache-Control header with a directive you "
  1013. "like\n"
  1014. " using --header option."
  1015. msgstr ""
  1016. #: src/usage_text.h:612
  1017. msgid ""
  1018. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1019. "described\n"
  1020. " in metadata will not be downloaded. This "
  1021. "option\n"
  1022. " has effect only when BitTorrent Magnet URI is\n"
  1023. " used. See also --bt-save-metadata option."
  1024. msgstr ""
  1025. #: src/usage_text.h:617
  1026. msgid ""
  1027. " --human-readable[=true|false] Print sizes and speed in human readable "
  1028. "format\n"
  1029. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1030. msgstr ""
  1031. #: src/usage_text.h:620
  1032. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1033. msgstr ""
  1034. #: src/usage_text.h:622
  1035. msgid ""
  1036. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1037. "If\n"
  1038. " this option is not specified, the default\n"
  1039. " interface is chosen. You can specify "
  1040. "interface\n"
  1041. " name and IP address."
  1042. msgstr ""
  1043. #: src/usage_text.h:627
  1044. msgid ""
  1045. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1046. " left."
  1047. msgstr ""
  1048. #: src/usage_text.h:630
  1049. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1050. msgstr ""
  1051. #: src/usage_text.h:632
  1052. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1053. msgstr ""
  1054. #: src/usage_text.h:634
  1055. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1056. msgstr ""
  1057. #: src/usage_text.h:636
  1058. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1059. msgstr ""
  1060. #: src/usage_text.h:638
  1061. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1062. msgstr ""
  1063. #: src/usage_text.h:640
  1064. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1065. msgstr ""
  1066. #: src/usage_text.h:642
  1067. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1068. msgstr ""
  1069. #: src/usage_text.h:644
  1070. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1071. msgstr ""
  1072. #: src/usage_text.h:646
  1073. msgid ""
  1074. " --remove-control-file[=true|false] Remove control file before download. "
  1075. "Using\n"
  1076. " with --allow-overwrite=true, download always\n"
  1077. " starts from scratch. This will be useful for\n"
  1078. " users behind proxy server which disables "
  1079. "resume."
  1080. msgstr ""
  1081. #: src/usage_text.h:651
  1082. msgid ""
  1083. " --always-resume[=true|false] Always resume download. If true is given, "
  1084. "aria2\n"
  1085. " always tries to resume download and if resume "
  1086. "is\n"
  1087. " not possible, aborts download. If false is "
  1088. "given,\n"
  1089. " when all given URIs do not support resume or\n"
  1090. " aria2 encounters N URIs which does not "
  1091. "support\n"
  1092. " resume (N is the value specified using\n"
  1093. " --max-resume-failure-tries option), aria2\n"
  1094. " downloads file from scratch.\n"
  1095. " See --max-resume-failure-tries option."
  1096. msgstr ""
  1097. #: src/usage_text.h:661
  1098. msgid ""
  1099. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1100. " downloads file from scratch when aria2 detects "
  1101. "N\n"
  1102. " number of URIs that does not support resume. "
  1103. "If N\n"
  1104. " is 0, aria2 downloads file from scratch when "
  1105. "all\n"
  1106. " given URIs do not support resume.\n"
  1107. " See --always-resume option."
  1108. msgstr ""
  1109. #: src/usage_text.h:668
  1110. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1111. msgstr ""
  1112. #: src/usage_text.h:670
  1113. msgid ""
  1114. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1115. " establish connection to tracker. After the\n"
  1116. " connection is established, this option makes "
  1117. "no\n"
  1118. " effect and --bt-tracker-timeout option is "
  1119. "used\n"
  1120. " instead."
  1121. msgstr ""
  1122. #: src/usage_text.h:676
  1123. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1124. msgstr ""
  1125. #: src/usage_text.h:678
  1126. msgid ""
  1127. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1128. "header\n"
  1129. " and inflate response if remote server "
  1130. "responds\n"
  1131. " with 'Content-Encoding: gzip' or\n"
  1132. " 'Content-Encoding: deflate'."
  1133. msgstr ""
  1134. #: src/usage_text.h:683
  1135. msgid ""
  1136. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1137. "exit.\n"
  1138. " You can pass this output file to aria2c with -"
  1139. "i\n"
  1140. " option on restart. Please note that downloads\n"
  1141. " added by aria2.addTorrent and aria2."
  1142. "addMetalink\n"
  1143. " XML-RPC method are not saved."
  1144. msgstr ""
  1145. #: src/usage_text.h:689
  1146. msgid ""
  1147. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1148. "one\n"
  1149. " server for each download."
  1150. msgstr ""
  1151. #: src/usage_text.h:692
  1152. msgid ""
  1153. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1154. "range.\n"
  1155. " For example, let's consider downloading 20MiB\n"
  1156. " file. If SIZE is 10M, aria2 can split file "
  1157. "into 2\n"
  1158. " range [0-10MiB) and [10MiB-20MiB) and download "
  1159. "it\n"
  1160. " using 2 sources(if --split >= 2, of course).\n"
  1161. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1162. "does\n"
  1163. " not split file and download it using 1 "
  1164. "source.\n"
  1165. " You can append K or M(1K = 1024, 1M = 1024K)."
  1166. msgstr ""
  1167. #: src/usage_text.h:701
  1168. msgid ""
  1169. " --conditional-get[=true|false] Download file only when the local file is "
  1170. "older\n"
  1171. " than remote file. Currently, this function "
  1172. "has\n"
  1173. " many limitations. See man page for details."
  1174. msgstr ""
  1175. #: src/usage_text.h:705
  1176. msgid ""
  1177. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1178. " --on-download-complete is called after "
  1179. "download\n"
  1180. " completed and seeding is over. On the other "
  1181. "hand,\n"
  1182. " this option sets the command to be executed "
  1183. "after\n"
  1184. " download completed but before seeding.\n"
  1185. " See --on-download-start option for the\n"
  1186. " requirement of COMMAND."
  1187. msgstr ""
  1188. #: src/usage_text.h:713
  1189. msgid ""
  1190. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1191. "asynchronous\n"
  1192. " DNS resolver. This option will be ignored "
  1193. "when\n"
  1194. " --async-dns=false."
  1195. msgstr ""
  1196. #: src/usage_text.h:717
  1197. msgid ""
  1198. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1199. " Use --dht-listen-port option to specify port\n"
  1200. " number to listen on. See also --dht-listen-"
  1201. "addr6\n"
  1202. " option."
  1203. msgstr ""
  1204. #: src/usage_text.h:722
  1205. msgid ""
  1206. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1207. " It should be a global unicast IPv6 address of "
  1208. "the\n"
  1209. " host."
  1210. msgstr ""
  1211. #: src/usage_text.h:726
  1212. msgid ""
  1213. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1214. "DHT\n"
  1215. " network."
  1216. msgstr ""
  1217. #: src/usage_text.h:729
  1218. msgid ""
  1219. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1220. msgstr ""
  1221. #: src/usage_text.h:731
  1222. msgid ""
  1223. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1224. " tracker's announce URI. These URIs are not\n"
  1225. " affected by --bt-exclude-tracker option "
  1226. "because\n"
  1227. " they are added after URIs in --bt-exclude-"
  1228. "tracker\n"
  1229. " option are removed."
  1230. msgstr ""
  1231. #: src/usage_text.h:737
  1232. msgid ""
  1233. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1234. "tracker's\n"
  1235. " announce URI to remove. You can use special "
  1236. "value\n"
  1237. " '*' which matches all URIs, thus removes all\n"
  1238. " announce URIs. When specifying '*' in shell\n"
  1239. " command-line, don't forget to escape or quote "
  1240. "it.\n"
  1241. " See also --bt-tracker option."
  1242. msgstr ""
  1243. #: src/usage_text.h:744
  1244. msgid ""
  1245. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1246. " memory. The download results are completed/"
  1247. "error/\n"
  1248. " removed downloads. The download results are "
  1249. "stored\n"
  1250. " in FIFO queue and it can store at most NUM\n"
  1251. " download results. When queue is full and new\n"
  1252. " download result is created, oldest download "
  1253. "result\n"
  1254. " is removed from the front of the queue and new "
  1255. "one\n"
  1256. " is pushed to the back. Setting big number in "
  1257. "this\n"
  1258. " option may result high memory consumption "
  1259. "after\n"
  1260. " thousands of downloads. Specifying 0 means no\n"
  1261. " download result is kept."
  1262. msgstr ""
  1263. #: src/version_usage.cc:57
  1264. msgid " version "
  1265. msgstr ""
  1266. #: src/version_usage.cc:80
  1267. #, c-format
  1268. msgid "Report bugs to %s"
  1269. msgstr ""
  1270. #: src/version_usage.cc:85
  1271. msgid ""
  1272. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1273. msgstr ""
  1274. #: src/version_usage.cc:92
  1275. msgid "Printing all options."
  1276. msgstr ""
  1277. #: src/version_usage.cc:94
  1278. #, c-format
  1279. msgid "Printing options tagged with '%s'."
  1280. msgstr ""
  1281. #: src/version_usage.cc:98
  1282. #, c-format
  1283. msgid "See -h option to know other command-line options(%s)."
  1284. msgstr ""
  1285. #: src/version_usage.cc:103 src/version_usage.cc:115
  1286. msgid "Options:"
  1287. msgstr ""
  1288. #: src/version_usage.cc:112
  1289. #, c-format
  1290. msgid "Printing options whose name includes '%s'."
  1291. msgstr ""
  1292. #: src/version_usage.cc:121
  1293. #, c-format
  1294. msgid "No option matching with '%s'."
  1295. msgstr ""
  1296. #: src/version_usage.cc:129
  1297. msgid ""
  1298. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1299. "all\n"
  1300. " URIs must point to the same file or downloading will fail."
  1301. msgstr ""
  1302. #: src/version_usage.cc:131
  1303. msgid ""
  1304. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1305. " metalink files stored in a local drive. Please note that they are always\n"
  1306. " treated as a separate download."
  1307. msgstr ""
  1308. #: src/version_usage.cc:136
  1309. msgid ""
  1310. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1311. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1312. "time,\n"
  1313. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1314. "file\n"
  1315. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1316. "ends\n"
  1317. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1318. "and\n"
  1319. " 'path' in torrent are added to form a URI for each file."
  1320. msgstr ""
  1321. #: src/version_usage.cc:143
  1322. msgid ""
  1323. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1324. " contains \"&\" or any characters that have special meaning in shell."
  1325. msgstr ""
  1326. #: src/version_usage.cc:153
  1327. msgid "Refer to man page for more information."
  1328. msgstr ""
  1329. #: src/message.h:57
  1330. #, c-format
  1331. msgid "GID#%s - Download has already completed: %s"
  1332. msgstr ""
  1333. #: src/message.h:106
  1334. #, c-format
  1335. msgid "Unrecognized URI or unsupported protocol: %s"
  1336. msgstr ""
  1337. #: src/message.h:107
  1338. #, c-format
  1339. msgid "Tracker returned warning message: %s"
  1340. msgstr ""
  1341. #: src/message.h:108
  1342. #, c-format
  1343. msgid "The segment file %s exists."
  1344. msgstr ""
  1345. #: src/message.h:109
  1346. #, c-format
  1347. msgid "The segment file %s does not exist."
  1348. msgstr ""
  1349. #: src/message.h:110
  1350. #, c-format
  1351. msgid "Saving the segment file %s"
  1352. msgstr ""
  1353. #: src/message.h:111
  1354. msgid "The segment file was saved successfully."
  1355. msgstr ""
  1356. #: src/message.h:112
  1357. #, c-format
  1358. msgid "Loading the segment file %s."
  1359. msgstr ""
  1360. #: src/message.h:113
  1361. msgid "The segment file was loaded successfully."
  1362. msgstr ""
  1363. #: src/message.h:114
  1364. msgid "No URI to download. Download aborted."
  1365. msgstr ""
  1366. #: src/message.h:115
  1367. #, c-format
  1368. msgid ""
  1369. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1370. "canceled in order to prevent your file from being truncated to 0. If you are "
  1371. "sure to download the file all over again, then delete it or add --allow-"
  1372. "overwrite=true option and restart aria2."
  1373. msgstr ""
  1374. #: src/message.h:116
  1375. #, c-format
  1376. msgid "Allocating file %s, %s bytes"
  1377. msgstr ""
  1378. #: src/message.h:117
  1379. msgid "File not found"
  1380. msgstr ""
  1381. #: src/message.h:118
  1382. msgid "Not a directory"
  1383. msgstr ""
  1384. #: src/message.h:119
  1385. #, c-format
  1386. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1387. msgstr ""
  1388. #: src/message.h:120
  1389. #, c-format
  1390. msgid "Writing file %s"
  1391. msgstr ""
  1392. #: src/message.h:121
  1393. msgid "No peer list received."
  1394. msgstr ""
  1395. #: src/message.h:122
  1396. #, c-format
  1397. msgid "Adding peer %s:%d"
  1398. msgstr ""
  1399. #: src/message.h:123
  1400. #, c-format
  1401. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1402. msgstr ""
  1403. #: src/message.h:124
  1404. msgid "Download of selected files was complete."
  1405. msgstr ""
  1406. #: src/message.h:125
  1407. msgid "The download was complete."
  1408. msgstr ""
  1409. #: src/message.h:126
  1410. #, c-format
  1411. msgid "Removed %lu have entries."
  1412. msgstr ""
  1413. #: src/message.h:127
  1414. #, c-format
  1415. msgid "Validating file %s"
  1416. msgstr ""
  1417. #: src/message.h:128
  1418. #, c-format
  1419. msgid "%ld seconds to allocate %s byte(s)"
  1420. msgstr ""
  1421. #: src/message.h:131
  1422. #, c-format
  1423. msgid "Metalink: Queueing %s for download."
  1424. msgstr ""
  1425. #: src/message.h:132
  1426. #, c-format
  1427. msgid "Download complete: %s"
  1428. msgstr ""
  1429. #: src/message.h:133
  1430. msgid "Seeding is over."
  1431. msgstr ""
  1432. #: src/message.h:134
  1433. msgid "No chunk to verify."
  1434. msgstr ""
  1435. #: src/message.h:135
  1436. #, c-format
  1437. msgid "Good chunk checksum. hash=%s"
  1438. msgstr ""
  1439. #: src/message.h:136
  1440. #, c-format
  1441. msgid "Failed to load cookies from %s"
  1442. msgstr ""
  1443. #: src/message.h:137
  1444. #, c-format
  1445. msgid ""
  1446. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1447. "support disabled."
  1448. msgstr ""
  1449. #: src/message.h:138
  1450. msgid "Logging started."
  1451. msgstr ""
  1452. #: src/message.h:139
  1453. msgid "Specify at least one URL."
  1454. msgstr ""
  1455. #: src/message.h:140
  1456. msgid "daemon failed."
  1457. msgstr ""
  1458. #: src/message.h:141
  1459. #, c-format
  1460. msgid "Verification finished successfully. file=%s"
  1461. msgstr ""
  1462. #: src/message.h:142
  1463. #, c-format
  1464. msgid "Checksum error detected. file=%s"
  1465. msgstr ""
  1466. #: src/message.h:143
  1467. #, c-format
  1468. msgid "Incomplete range specified. %s"
  1469. msgstr ""
  1470. #: src/message.h:144
  1471. #, c-format
  1472. msgid "Failed to convert string into value: %s"
  1473. msgstr ""
  1474. #: src/message.h:145
  1475. msgid "Resource not found"
  1476. msgstr ""
  1477. #: src/message.h:146
  1478. #, c-format
  1479. msgid "File already exists. Renamed to %s."
  1480. msgstr ""
  1481. #: src/message.h:147
  1482. msgid "Cannot parse metalink XML file. XML may be malformed."
  1483. msgstr ""
  1484. #: src/message.h:148
  1485. #, c-format
  1486. msgid "Too small payload size for %s, size=%lu."
  1487. msgstr ""
  1488. #: src/message.h:149
  1489. #, c-format
  1490. msgid ""
  1491. "Removed the defunct control file %s because the download file %s doesn't "
  1492. "exist."
  1493. msgstr ""
  1494. #: src/message.h:150
  1495. #, c-format
  1496. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1497. msgstr ""
  1498. #: src/message.h:151
  1499. #, c-format
  1500. msgid "Missing %s in torrent metainfo."
  1501. msgstr ""
  1502. #: src/message.h:152
  1503. msgid "Tracker returned null data."
  1504. msgstr ""
  1505. #: src/message.h:153
  1506. msgid "Windows socket library initialization failed"
  1507. msgstr ""
  1508. #: src/message.h:154
  1509. #, c-format
  1510. msgid "%ld second(s) has passed. Stopping application."
  1511. msgstr ""
  1512. #: src/message.h:155
  1513. #, c-format
  1514. msgid ""
  1515. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1516. msgstr ""
  1517. #: src/message.h:157
  1518. #, c-format
  1519. msgid "Saving signature as %s failed. Maybe file already exists."
  1520. msgstr ""
  1521. #: src/message.h:160
  1522. #, c-format
  1523. msgid "Failed to open ServerStat file %s for read."
  1524. msgstr ""
  1525. #: src/message.h:161
  1526. #, c-format
  1527. msgid "ServerStat file %s loaded successfully."
  1528. msgstr ""
  1529. #: src/message.h:162
  1530. #, c-format
  1531. msgid "Failed to read ServerStat from %s."
  1532. msgstr ""
  1533. #: src/message.h:165
  1534. #, c-format
  1535. msgid "Failed to open ServerStat file %s for write."
  1536. msgstr ""
  1537. #: src/message.h:166
  1538. #, c-format
  1539. msgid "ServerStat file %s saved successfully."
  1540. msgstr ""
  1541. #: src/message.h:167
  1542. #, c-format
  1543. msgid "Failed to write ServerStat to %s."
  1544. msgstr ""
  1545. #: src/message.h:170
  1546. #, c-format
  1547. msgid "Failed to establish connection, cause: %s"
  1548. msgstr ""
  1549. #: src/message.h:171
  1550. #, c-format
  1551. msgid "Network problem has occurred. cause:%s"
  1552. msgstr ""
  1553. #: src/message.h:173
  1554. #, c-format
  1555. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1556. msgstr ""
  1557. #: src/message.h:175
  1558. #, c-format
  1559. msgid ""
  1560. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  1561. "certificate option."
  1562. msgstr ""
  1563. #: src/message.h:177
  1564. msgid "No certificate found."
  1565. msgstr ""
  1566. #: src/message.h:178
  1567. msgid "Hostname not match."
  1568. msgstr ""
  1569. #: src/message.h:179
  1570. msgid "No files to download."
  1571. msgstr ""
  1572. #: src/message.h:181
  1573. msgid ""
  1574. "You may encounter the certificate verification error with HTTPS server. See "
  1575. "--ca-certificate and --check-certificate option."
  1576. msgstr ""
  1577. #: src/message.h:183
  1578. #, c-format
  1579. msgid "Printing the contents of file '%s'..."
  1580. msgstr ""
  1581. #: src/message.h:184
  1582. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1583. msgstr ""
  1584. #: src/message.h:189
  1585. #, c-format
  1586. msgid "Is '%s' a file?"
  1587. msgstr ""
  1588. #: src/message.h:190
  1589. #, c-format
  1590. msgid "Failed to find given interface %s, cause: %s"
  1591. msgstr ""
  1592. #: src/message.h:192
  1593. #, c-format
  1594. msgid "Saved metadata as %s."
  1595. msgstr ""
  1596. #: src/message.h:193
  1597. #, c-format
  1598. msgid "Saving metadata as %s failed. Maybe file already exists."
  1599. msgstr ""
  1600. #: src/message.h:195
  1601. #, c-format
  1602. msgid "Detected directory traversal directive in %s"
  1603. msgstr ""
  1604. #: src/message.h:199
  1605. msgid "Timeout."
  1606. msgstr ""
  1607. #: src/message.h:200
  1608. msgid "Invalid chunk size."
  1609. msgstr ""
  1610. #: src/message.h:201
  1611. #, c-format
  1612. msgid "Too large chunk. size=%d"
  1613. msgstr ""
  1614. #: src/message.h:202
  1615. msgid "Invalid header."
  1616. msgstr ""
  1617. #: src/message.h:203
  1618. msgid "Invalid response."
  1619. msgstr ""
  1620. #: src/message.h:204
  1621. msgid "No header found."
  1622. msgstr ""
  1623. #: src/message.h:205
  1624. msgid "No status header."
  1625. msgstr ""
  1626. #: src/message.h:206
  1627. msgid "Proxy connection failed."
  1628. msgstr ""
  1629. #: src/message.h:207
  1630. msgid "Connection failed."
  1631. msgstr ""
  1632. #: src/message.h:208
  1633. #, c-format
  1634. msgid ""
  1635. "The requested filename and the previously registered one are not same. "
  1636. "Expected:%s Actual:%s"
  1637. msgstr ""
  1638. #: src/message.h:209
  1639. #, c-format
  1640. msgid "The response status is not successful. status=%d"
  1641. msgstr ""
  1642. #: src/message.h:210
  1643. #, c-format
  1644. msgid "Too large file size. size=%s"
  1645. msgstr ""
  1646. #: src/message.h:211
  1647. #, c-format
  1648. msgid "Transfer encoding %s is not supported."
  1649. msgstr ""
  1650. #: src/message.h:212
  1651. #, c-format
  1652. msgid "SSL initialization failed: %s"
  1653. msgstr ""
  1654. #: src/message.h:213
  1655. msgid "SSL I/O error"
  1656. msgstr ""
  1657. #: src/message.h:214
  1658. msgid "SSL protocol error"
  1659. msgstr ""
  1660. #: src/message.h:215
  1661. #, c-format
  1662. msgid "SSL unknown error %d"
  1663. msgstr ""
  1664. #: src/message.h:216
  1665. #, c-format
  1666. msgid "SSL initialization failed: OpenSSL connect error %d"
  1667. msgstr ""
  1668. #: src/message.h:217
  1669. #, c-format
  1670. msgid "Size mismatch Expected:%s Actual:%s"
  1671. msgstr ""
  1672. #: src/message.h:218
  1673. msgid "Authorization failed."
  1674. msgstr ""
  1675. #: src/message.h:219
  1676. msgid "Got EOF from the server."
  1677. msgstr ""
  1678. #: src/message.h:220
  1679. msgid "Got EOF from peer."
  1680. msgstr ""
  1681. #: src/message.h:221
  1682. msgid "Malformed meta info."
  1683. msgstr ""
  1684. #: src/message.h:223
  1685. #, c-format
  1686. msgid "Failed to open the file %s, cause: %s"
  1687. msgstr ""
  1688. #: src/message.h:224
  1689. #, c-format
  1690. msgid "Failed to write into the file %s, cause: %s"
  1691. msgstr ""
  1692. #: src/message.h:225
  1693. #, c-format
  1694. msgid "Failed to read from the file %s, cause: %s"
  1695. msgstr ""
  1696. #: src/message.h:226
  1697. msgid "Failed to read data from disk."
  1698. msgstr ""
  1699. #: src/message.h:227
  1700. #, c-format
  1701. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1702. msgstr ""
  1703. #: src/message.h:228
  1704. #, c-format
  1705. msgid "Failed to seek the file %s, cause: %s"
  1706. msgstr ""
  1707. #: src/message.h:229
  1708. #, c-format
  1709. msgid "The offset is out of range, offset=%s"
  1710. msgstr ""
  1711. #: src/message.h:230
  1712. #, c-format
  1713. msgid "%s is not a directory."
  1714. msgstr ""
  1715. #: src/message.h:231
  1716. #, c-format
  1717. msgid "Failed to make the directory %s, cause: %s"
  1718. msgstr ""
  1719. #: src/message.h:235
  1720. #, c-format
  1721. msgid "Failed to open a socket, cause: %s"
  1722. msgstr ""
  1723. #: src/message.h:236
  1724. #, c-format
  1725. msgid "Failed to set a socket option, cause: %s"
  1726. msgstr ""
  1727. #: src/message.h:237
  1728. #, c-format
  1729. msgid "Failed to set a socket as blocking, cause: %s"
  1730. msgstr ""
  1731. #: src/message.h:238
  1732. #, c-format
  1733. msgid "Failed to set a socket as non-blocking, cause: %s"
  1734. msgstr ""
  1735. #: src/message.h:239
  1736. #, c-format
  1737. msgid "Failed to bind a socket, cause: %s"
  1738. msgstr ""
  1739. #: src/message.h:240
  1740. #, c-format
  1741. msgid "Failed to listen to a socket, cause: %s"
  1742. msgstr ""
  1743. #: src/message.h:241
  1744. #, c-format
  1745. msgid "Failed to accept a peer connection, cause: %s"
  1746. msgstr ""
  1747. #: src/message.h:242
  1748. #, c-format
  1749. msgid "Failed to get the name of socket, cause: %s"
  1750. msgstr ""
  1751. #: src/message.h:243
  1752. #, c-format
  1753. msgid "Failed to get the name of connected peer, cause: %s"
  1754. msgstr ""
  1755. #: src/message.h:244
  1756. #, c-format
  1757. msgid "Failed to resolve the hostname %s, cause: %s"
  1758. msgstr ""
  1759. #: src/message.h:245
  1760. #, c-format
  1761. msgid "Failed to connect to the host %s, cause: %s"
  1762. msgstr ""
  1763. #: src/message.h:246
  1764. #, c-format
  1765. msgid "Failed to check whether the socket is writable, cause: %s"
  1766. msgstr ""
  1767. #: src/message.h:247
  1768. #, c-format
  1769. msgid "Failed to check whether the socket is readable, cause: %s"
  1770. msgstr ""
  1771. #: src/message.h:248
  1772. #, c-format
  1773. msgid "Failed to send data, cause: %s"
  1774. msgstr ""
  1775. #: src/message.h:249
  1776. #, c-format
  1777. msgid "Failed to receive data, cause: %s"
  1778. msgstr ""
  1779. #: src/message.h:250
  1780. #, c-format
  1781. msgid "Failed to peek data, cause: %s"
  1782. msgstr ""
  1783. #: src/message.h:251
  1784. #, c-format
  1785. msgid "Unknown socket error %d (0x%x)"
  1786. msgstr ""
  1787. #: src/message.h:252
  1788. #, c-format
  1789. msgid "File %s exists, but %s does not exist."
  1790. msgstr ""
  1791. #: src/message.h:254
  1792. #, c-format
  1793. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  1794. msgstr ""
  1795. #: src/message.h:255
  1796. #, c-format
  1797. msgid "Invalid ID=%d for %s. It should be %d."
  1798. msgstr ""
  1799. #: src/message.h:256
  1800. #, c-format
  1801. msgid ""
  1802. "Chunk checksum validation failed. checksumIndex=%lu, offset=%s, expectedHash="
  1803. "%s, actualHash=%s"
  1804. msgstr ""
  1805. #: src/message.h:257
  1806. msgid "Download aborted."
  1807. msgstr ""
  1808. #: src/message.h:258
  1809. #, c-format
  1810. msgid "File %s is being downloaded by other command."
  1811. msgstr ""
  1812. #: src/message.h:259
  1813. msgid "Insufficient checksums."
  1814. msgstr ""
  1815. #: src/message.h:260
  1816. #, c-format
  1817. msgid "Tracker returned failure reason: %s"
  1818. msgstr ""
  1819. #: src/message.h:261
  1820. msgid "Flooding detected."
  1821. msgstr ""
  1822. #: src/message.h:263
  1823. #, c-format
  1824. msgid ""
  1825. "Drop connection because no request/piece messages were exchanged in a "
  1826. "certain period(%ld seconds)."
  1827. msgstr ""
  1828. #: src/message.h:265
  1829. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1830. msgstr ""
  1831. #: src/message.h:266
  1832. #, c-format
  1833. msgid "No such file entry %s"
  1834. msgstr ""
  1835. #: src/message.h:267
  1836. #, c-format
  1837. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1838. msgstr ""
  1839. #: src/message.h:268
  1840. msgid "No HttpRequestEntry found."
  1841. msgstr ""
  1842. #: src/message.h:269
  1843. #, c-format
  1844. msgid "Got %d status, but no location header provided."
  1845. msgstr ""
  1846. #: src/message.h:270
  1847. #, c-format
  1848. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1849. msgstr ""
  1850. #: src/message.h:271
  1851. msgid "No file matched with your preference."
  1852. msgstr ""
  1853. #: src/message.h:272
  1854. msgid "Exception caught"
  1855. msgstr ""
  1856. #: src/message.h:273
  1857. #, c-format
  1858. msgid "Max payload length exceeded or invalid. length = %u"
  1859. msgstr ""
  1860. #: src/message.h:274
  1861. #, c-format
  1862. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1863. msgstr ""
  1864. #: src/BtSetup.cc:212
  1865. msgid "Errors occurred while binding port.\n"
  1866. msgstr ""
  1867. #~ msgid "must be either 'true' or 'false'."
  1868. #~ msgstr "لا تحتمل إلا قيمتين، إما'true' or 'false' ، صائب أو خاطئ."
  1869. #~ msgid "must be between %s and %s."
  1870. #~ msgstr "يجب أن تكون بين %s و %s."
  1871. #~ msgid "must be smaller than or equal to %s."
  1872. #~ msgstr "يجب أن تكون أصغر من أو تساوي %s."
  1873. #~ msgid "must be greater than or equal to %s."
  1874. #~ msgstr "يجب أن تكون أكبر من أو تساوي %s."
  1875. #~ msgid "must be a number."
  1876. #~ msgstr "يجب أن تكون رقما."
  1877. #~ msgid "must be smaller than or equal to %.1f."
  1878. #~ msgstr "يجب أن تكون أصغر من أو تساوي %.1f."
  1879. #~ msgid "must be between %.1f and %.1f."
  1880. #~ msgstr "يجب أن تكون بين %.1f و %.1f."
  1881. #~ msgid "must be greater than or equal to %.1f."
  1882. #~ msgstr "يجب أن تكون أكبر من أو تساوي %.1f."
  1883. #~ msgid "must be one of the following:"
  1884. #~ msgstr "يجب أن تكون واحد من بين التالي:"
  1885. #~ msgid "Unrecognized format"
  1886. #~ msgstr "صيغة مجهولة"
  1887. #~ msgid "unrecognized proxy format"
  1888. #~ msgstr "صيغة حاجب (بروكسي) غير معروفة"