he.po 85 KB

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