ar.po 67 KB

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