ar.po 66 KB

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