bg.po 106 KB

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