he.po 78 KB

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