ar.po 74 KB

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