he.po 65 KB

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