fr.po 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Tatsuhiro Tsujikawa
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2 0.11.2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2010-04-26 23:00+0900\n"
  11. "PO-Revision-Date: 2009-12-06 18:07+0900\n"
  12. "Last-Translator: <<g33ky>> <Unknown>\n"
  13. "Language-Team: Fran&ccedil;ais\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-12-06 08:32+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:222
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr ""
  23. "Séquence d'arrêt débutée... Pressez Ctrl-C une nouvelle fois pour un arrêt "
  24. "d'urgence."
  25. #: src/DownloadEngine.cc:228
  26. msgid "Emergency shutdown sequence commencing..."
  27. msgstr "Séquence d'arrêt d'urgence débutée..."
  28. #: src/MultiUrlRequestInfo.cc:103
  29. msgid "aria2 will resume download if the transfer is restarted."
  30. msgstr "aria2c va recommencer ce téléchargement si le transfert est relancé."
  31. #: src/MultiUrlRequestInfo.cc:105
  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. "En cas d'érreurs, merci de lire le fichier log. Voir l'option '-l' pour plus "
  37. "d'informations."
  38. #: src/RequestGroupMan.cc:633
  39. msgid "Download Results:"
  40. msgstr "Résultats du téléchargement:"
  41. #: src/RequestGroupMan.cc:693
  42. msgid "Status Legend:"
  43. msgstr "Légende du statut:"
  44. #: src/OptionHandler.cc:38
  45. msgid " Default: "
  46. msgstr " Par défaut: "
  47. #: src/OptionHandler.cc:39
  48. msgid " Tags: "
  49. msgstr " Signets: "
  50. #: src/OptionHandler.cc:40
  51. msgid " Possible Values: "
  52. msgstr " Valeurs possibles: "
  53. #: src/OptionHandlerImpl.h:137
  54. msgid "must be either 'true' or 'false'."
  55. msgstr "doit impérativement être 'vrai' ou 'faux'"
  56. #: src/OptionHandlerImpl.h:171 src/OptionHandlerImpl.h:220
  57. #, c-format
  58. msgid "must be between %s and %s."
  59. msgstr "doit être compris entre %s et %s"
  60. #: src/OptionHandlerImpl.h:217
  61. #, c-format
  62. msgid "must be smaller than or equal to %s."
  63. msgstr "doit être plus petit ou égal à %s"
  64. #: src/OptionHandlerImpl.h:223
  65. #, c-format
  66. msgid "must be greater than or equal to %s."
  67. msgstr "doit être plus grand ou égal à %s"
  68. #: src/OptionHandlerImpl.h:226 src/OptionHandlerImpl.h:304
  69. msgid "must be a number."
  70. msgstr "doit être un nombre."
  71. #: src/OptionHandlerImpl.h:295
  72. #, c-format
  73. msgid "must be smaller than or equal to %.1f."
  74. msgstr "doit être plus petit ou égal à %.1f."
  75. #: src/OptionHandlerImpl.h:298
  76. #, c-format
  77. msgid "must be between %.1f and %.1f."
  78. msgstr "doit être compris entre %.1f et %.1f."
  79. #: src/OptionHandlerImpl.h:301
  80. #, c-format
  81. msgid "must be greater than or equal to %.1f."
  82. msgstr "doit être plus grand ou égal à %.1f."
  83. #: src/OptionHandlerImpl.h:479
  84. msgid "must be one of the following:"
  85. msgstr "doit être l'une de ces valeurs suivantes:"
  86. #: src/OptionHandlerImpl.h:529 src/OptionHandlerImpl.h:664
  87. msgid "unrecognized proxy format"
  88. msgstr "type de proxy non reconnu"
  89. #: src/usage_text.h:37
  90. msgid ""
  91. " -d, --dir=DIR The directory to store the downloaded file."
  92. msgstr " -d, --dir=DIR Le dossier pour enregistrer le fichier."
  93. #: src/usage_text.h:39
  94. #, fuzzy
  95. msgid ""
  96. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  97. " option is used, this option is ignored."
  98. msgstr ""
  99. " -l, --log=LOG Le chemin du fichier pour enregistrer le log. "
  100. "Si '-' est spécifié,\n"
  101. " le log est redirigé vers stdout."
  102. #: src/usage_text.h:42
  103. msgid ""
  104. " -l, --log=LOG The file name of the log file. If '-' is\n"
  105. " specified, log is written to stdout."
  106. msgstr ""
  107. " -l, --log=LOG Le chemin du fichier pour enregistrer le log. "
  108. "Si '-' est spécifié,\n"
  109. " le log est redirigé vers stdout."
  110. #: src/usage_text.h:45
  111. msgid ""
  112. " -D, --daemon Run as daemon. The current working directory "
  113. "will\n"
  114. " be changed to \"/\" and standard input, "
  115. "standard\n"
  116. " output and standard error will be redirected "
  117. "to\n"
  118. " \"/dev/null\"."
  119. msgstr ""
  120. #: src/usage_text.h:50
  121. msgid ""
  122. " -s, --split=N Download a file using N connections. If more\n"
  123. " than N URLs are given, first N URLs are used "
  124. "and\n"
  125. " remaining URLs are used for backup. If less "
  126. "than\n"
  127. " N URLs are given, those URLs are used more "
  128. "than\n"
  129. " once so that N connections total are made\n"
  130. " simultaneously. Please see -j option too.\n"
  131. " Please note that in Metalink download, this\n"
  132. " option has no effect and use -C option instead."
  133. msgstr ""
  134. " -s, --split=N Télécharge un fichier, utilisant N connections. Si plus\n"
  135. " de N URLs sont spécifiées, la première URL est "
  136. "utilisée,\n"
  137. " les suivantes seront utilisées en secours. Si "
  138. "moins de\n"
  139. " N URLs sont fournies, ces URLs seront "
  140. "utilisées plus\n"
  141. " d'une fois de sorte que N connexions totales "
  142. "seront initiées\n"
  143. " simultanément. Voir également l'option -j.\n"
  144. " Noter que dans le cas de téléchargement par "
  145. "Metalink, cette\n"
  146. " option est sans effet, utiliser donc l'option -"
  147. "C à la place."
  148. #: src/usage_text.h:59
  149. msgid ""
  150. " --retry-wait=SEC Set the seconds to wait to retry after an "
  151. "error\n"
  152. " has occured."
  153. msgstr ""
  154. " --retry-wait=SEC Indique le nombre de secondes à attendre "
  155. "avant\n"
  156. " de réessayer après qu'une érreur "
  157. "soit survenue."
  158. #: src/usage_text.h:62
  159. msgid " -t, --timeout=SEC Set timeout in seconds."
  160. msgstr " -t, --timeout=SEC Indique le délai d'expiration en secondes."
  161. #: src/usage_text.h:64
  162. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  163. msgstr ""
  164. " -m, --max-tries=N Indique le nombre d'éssais. 0 indiquant sans limites."
  165. #: src/usage_text.h:66
  166. #, fuzzy
  167. msgid ""
  168. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  169. " previously defined proxy, use \"\".\n"
  170. " See also --all-proxy option.\n"
  171. " This affects all URLs."
  172. msgstr ""
  173. " --http-proxy=PROXY Utilise ce serveur proxy pour le HTTP.\n"
  174. " Voir aussi l'option \"--all-proxy\".\n"
  175. " Cela affecte toutes les URLs."
  176. #: src/usage_text.h:71
  177. #, fuzzy
  178. msgid ""
  179. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  180. " previously defined proxy, use \"\".\n"
  181. " See also --all-proxy option.\n"
  182. " This affects all URLs."
  183. msgstr ""
  184. " --https-proxy=PROXY Utilise ce serveur proxy pour le HTTPS.\n"
  185. " Voir aussi l'option \"--all-proxy\".\n"
  186. " Cela affecte toutes les URLs."
  187. #: src/usage_text.h:76
  188. #, fuzzy
  189. msgid ""
  190. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  191. "previously\n"
  192. " defined proxy, use \"\".\n"
  193. " See also --all-proxy option.\n"
  194. " This affects all URLs."
  195. msgstr ""
  196. " --ftp-proxy=PROXY Utiliser ce proxy pour FTP.\n"
  197. " Voir également l'option --all-proxy.\n"
  198. " Ceci affecte toutes les URLs."
  199. #: src/usage_text.h:81
  200. #, fuzzy
  201. msgid ""
  202. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  203. "erase\n"
  204. " previously defined proxy, use \"\".\n"
  205. " You can override this setting and specify a\n"
  206. " proxy server for a particular protocol using\n"
  207. " --http-proxy, --https-proxy and --ftp-proxy\n"
  208. " options.\n"
  209. " This affects all URLs."
  210. msgstr ""
  211. " --all-proxy=PROXY Utiliser ce proxy pour tous les protocoles.\n"
  212. " Vous pouvez remplacer ce paramètre et "
  213. "spécifier un\n"
  214. " serveur de proxy pour un protocole spécifique "
  215. "en utilisant\n"
  216. " les options --http-proxy, --https-proxy et --"
  217. "ftp-proxy\n"
  218. " Ceci affecte toutes les URLs."
  219. #: src/usage_text.h:89
  220. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  221. msgstr ""
  222. " --http-user=USER Permets de définir un utilisateur HTTP. Ceci affecte "
  223. "toutes les URLs."
  224. #: src/usage_text.h:91
  225. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  226. msgstr ""
  227. " --http-passwd=PASSWD Permets de définir un mot de passe HTTP. Ceci affecte "
  228. "toutes les URLs."
  229. #: src/usage_text.h:93
  230. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  231. msgstr ""
  232. " --proxy-method=METHOD Permet de choisir la méthode à utiliser dans "
  233. "les requêtes de proxy."
  234. #: src/usage_text.h:95
  235. msgid " --referer=REFERER Set Referer. This affects all URLs."
  236. msgstr ""
  237. " --referer=REFERER Définir le Référant. Ceci affecte tous les "
  238. "URLs."
  239. #: src/usage_text.h:97
  240. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  241. msgstr ""
  242. " --ftp-user=USER Indique le nom de l'utilisateur FTP.\n"
  243. " ATTENTION ! cela affecte toutes "
  244. "les URLs !"
  245. #: src/usage_text.h:99
  246. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  247. msgstr ""
  248. " --ftp-passwd=PASSWD Indique le mot de passe FTP de l'utilisateur.\n"
  249. " ATTENTION ! cela affecte toutes "
  250. "les URLs !"
  251. #: src/usage_text.h:101
  252. msgid " --ftp-type=TYPE Set FTP transfer type."
  253. msgstr " --ftp-type=TYPE Indique le type de transfert FTP."
  254. #: src/usage_text.h:103
  255. msgid ""
  256. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  257. "given,\n"
  258. " the active mode will be used."
  259. msgstr ""
  260. " -p, --ftp-pasv[=true|false] Utiliser le mode passif en FTP. Si 'false' est "
  261. "indiqué,\n"
  262. " le mode actif sera utilisé."
  263. #: src/usage_text.h:106
  264. msgid ""
  265. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  266. "than\n"
  267. " or equal to this value(bytes per sec).\n"
  268. " 0 means aria2 does not have a lowest speed "
  269. "limit.\n"
  270. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  271. " This option does not affect BitTorrent "
  272. "downloads."
  273. msgstr ""
  274. " --lowest-speed-limit=SPEED Ferme les connection si la vitesse de "
  275. "téléchargement est inférieure ou\n"
  276. " égale à cette valeur (en bytes par secondes).\n"
  277. " 0 indique que Aria2 n'aura pas de limite de "
  278. "vitesse minimale de téléchargement.\n"
  279. " Vous pouvez indiquer les valeurs en K ou M (1K "
  280. "= 1024, 1M = 1024K).\n"
  281. " Cette option n'affecte pas les téléchargements "
  282. "via BitTorrent."
  283. #: src/usage_text.h:112
  284. msgid ""
  285. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  286. "sec.\n"
  287. " 0 means unrestricted.\n"
  288. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  289. " To limit the download speed per download, use\n"
  290. " --max-download-limit option."
  291. msgstr ""
  292. " --max-overall-download-limit=SPEED Définit la vitesse maximale de "
  293. "téléchargement en bytes/sec.\n"
  294. " 0 indique sans limitation.\n"
  295. " Vous pouvez indiquer les valeurs en K ou M (1K "
  296. "= 1024, 1M = 1024K).\n"
  297. " Afin de limiter la vitesse maximale par "
  298. "téléchargement, utiliser\n"
  299. " l'option --max-download-limit."
  300. #: src/usage_text.h:118
  301. msgid ""
  302. " --max-download-limit=SPEED Set max download speed per each download in\n"
  303. " bytes/sec. 0 means unrestricted.\n"
  304. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  305. " To limit the overall download speed, use\n"
  306. " --max-overall-download-limit option."
  307. msgstr ""
  308. " --max-download-limit=SPEED Définit la vitesse de téléchargement maximale "
  309. "par téléchargement en\n"
  310. " bytes/sec. 0 indique sans limitation.\n"
  311. " Vous pouvez indiquer les valeurs en K ou M (1K "
  312. "= 1024, 1M = 1024K).\n"
  313. " Afin de limiter la vitesse globale de "
  314. "téléchargement, utiliser\n"
  315. " l'option --max-overall-download-limit."
  316. #: src/usage_text.h:124
  317. msgid ""
  318. " --file-allocation=METHOD Specify file allocation method.\n"
  319. " 'none' doesn't pre-allocate file space. "
  320. "'prealloc'\n"
  321. " pre-allocates file space before download "
  322. "begins.\n"
  323. " This may take some time depending on the size "
  324. "of\n"
  325. " the file.\n"
  326. " If you are using newer file systems such as "
  327. "ext4\n"
  328. " (with extents support), btrfs or xfs, 'falloc' "
  329. "is\n"
  330. " your best choice. It allocates large(few GiB)\n"
  331. " files almost instantly. Don't use 'falloc' "
  332. "with\n"
  333. " legacy file systems such as ext3 because it "
  334. "takes\n"
  335. " almost same time as 'prealloc' and it blocks "
  336. "aria2\n"
  337. " entirely until allocation finishes. 'falloc' "
  338. "may\n"
  339. " not be available if your system doesn't have\n"
  340. " posix_fallocate() function."
  341. msgstr ""
  342. " --file-allocation=METHOD Définit la méthode d'allocation de fichier.\n"
  343. " 'none' n'alloue pas d'espace disque par avance "
  344. "pour le fichier. 'prealloc'\n"
  345. " pré-alloue l'espace disque nécessaire avant "
  346. "que le téléchargement ne débute.\n"
  347. " Ceci peux prendre un certain temps, selon la "
  348. "taille\n"
  349. " du fichier.\n"
  350. " Si vous utilisez un système de fichiers "
  351. "récent, tel que de l'EXT4\n"
  352. " (avec la gestion des extensions), BTRFS ou "
  353. "XFS, 'falloc' sera l'option la\n"
  354. " plus recommandée. Elle alloue des fichiers de "
  355. "taille importante (plusieurs Gbs)\n"
  356. " de manière presque instantanée. Ne pas "
  357. "utiliser 'falloc' avec des systèmes\n"
  358. " de fichiers compatibles tels que EXT3, car le "
  359. "temps d'allocation d'espace disque\n"
  360. " serais identique qu'avec l'utilisation du "
  361. "paramètre 'prealloc'. Par ailleurs, celà bloquerais\n"
  362. " Aria2 jusqu'à ce que l'allocation soit "
  363. "achevée. 'falloc' pourrais ne pas être disponible si\n"
  364. " votre système ne prends pas en charge la "
  365. "fonction posix_fallocate()."
  366. #: src/usage_text.h:139
  367. msgid ""
  368. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  369. " size is smaller than SIZE.\n"
  370. " You can append K or M(1K = 1024, 1M = 1024K)."
  371. msgstr ""
  372. " --no-file-allocation-limit=SIZE Aucune allocation de fichier ne sera faite "
  373. "pour les fichiers dont\n"
  374. " la taille est plus petite que SIZE.\n"
  375. " Vous pouvez ajouter K ou M(1K = 1024, 1M = "
  376. "1024K)."
  377. #: src/usage_text.h:143
  378. msgid ""
  379. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  380. "while\n"
  381. " allocating files.\n"
  382. " Turn off if you encounter any error"
  383. msgstr ""
  384. " --enable-direct-io[=true|false] Active l'accès direct au disque qui diminue "
  385. "l'usage du CPU pendant\n"
  386. " l'allocation des fichiers.\n"
  387. " Désactivé-le si vous rencontrer un quelconque "
  388. "problème."
  389. #: src/usage_text.h:147
  390. #, fuzzy
  391. msgid ""
  392. " --allow-overwrite=true|false Restart download from scratch if the\n"
  393. " corresponding control file doesn't exist. "
  394. "See\n"
  395. " also --auto-file-renaming option."
  396. msgstr ""
  397. " --allow-overwrite=true|false Si false est indiqué, alors qu'un fichier "
  398. "existe déjà mais\n"
  399. " que le fichier de contrôle correspondant "
  400. "(nomdefichier.aria2) n'existe pas,\n"
  401. " Aria2 ne téléchargera pas à nouveau le "
  402. "fichier. Voir également l'option --auto-file-renaming."
  403. #: src/usage_text.h:151
  404. msgid ""
  405. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  406. "download\n"
  407. " when a piece length is different from one in\n"
  408. " a control file. If true is given, you can "
  409. "proceed\n"
  410. " but some download progress will be lost."
  411. msgstr ""
  412. " --allow-piece-length-change=true|false Si false est choisi, aria2 annule le "
  413. "téléchargement\n"
  414. " quand la longueur d'une pièce est différente "
  415. "d'une autre dans\n"
  416. " un fichier de contrôle. Si true est choisi, "
  417. "vous pouvez continuer\n"
  418. " mais certaines progressions du téléchargement "
  419. "seront perdues."
  420. #: src/usage_text.h:156
  421. msgid ""
  422. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  423. "sequentially\n"
  424. " and download each URI in a separate session, "
  425. "like\n"
  426. " the usual command-line download utilities."
  427. msgstr ""
  428. " -Z, --force-sequential[=true|false] Récupère les URIs par le terminal de "
  429. "manière séquentielle\n"
  430. " et télécharge chaque URI dans une session "
  431. "séparée, tout comme l'utilitaire\n"
  432. " en ligne de commande habituel."
  433. #: src/usage_text.h:160
  434. msgid ""
  435. " --auto-file-renaming[=true|false] Rename file name if the same file "
  436. "already\n"
  437. " exists. This option works only in http(s)/ftp\n"
  438. " download.\n"
  439. " The new file name has a dot and a number"
  440. "(1..9999)\n"
  441. " appended."
  442. msgstr ""
  443. " --auto-file-renaming[=true|false] Renomme le fichier si le même fichier "
  444. "existe\n"
  445. " déjà. Cette option ne fonctionne qu'en "
  446. "téléchargement via http(s)\n"
  447. " ou ftp.\n"
  448. " Le fichier une fois renommé aura un point (.) "
  449. "et un nombre\n"
  450. " (1..9999)."
  451. #: src/usage_text.h:166
  452. msgid ""
  453. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  454. " You can specify set of parts:\n"
  455. " http://{sv1,sv2,sv3}/foo.iso\n"
  456. " Also you can specify numeric sequences with "
  457. "step\n"
  458. " counter:\n"
  459. " http://host/image[000-100:2].img\n"
  460. " A step counter can be omitted.\n"
  461. " If all URIs do not point to the same file, "
  462. "such\n"
  463. " as the second example above, -Z option is\n"
  464. " required."
  465. msgstr ""
  466. " -P, --parameterized-uri[=true|false] Activer le support URI paramétré.\n"
  467. " Vous pouvez spécifier un ensemble d'éléments:\n"
  468. " http://{sv1,sv2,sv3}/foo.iso\n"
  469. " Vous pouvez également spécifier une séquence "
  470. "numérique avec \n"
  471. " un compteur d'étapes:\n"
  472. " http://host/image[000-100:2].img\n"
  473. " Un compteur d'étapes n'est pas obligatoire.\n"
  474. " Si toutes les URI ne pointent pas vers le même "
  475. "fichier, tel\n"
  476. " que dans le second exemple, l'option -Z est \n"
  477. " requise."
  478. #: src/usage_text.h:177
  479. msgid ""
  480. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  481. msgstr ""
  482. " --enable-http-keep-alive[=true|false] Active ou non les connexions "
  483. "persistantes de HTTP/1.1"
  484. #: src/usage_text.h:179
  485. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  486. msgstr ""
  487. " --enable-http-pipelining[=true|false] Active le \"HTTP/1.1 pipelining\"."
  488. #: src/usage_text.h:181
  489. msgid ""
  490. " -V, --check-integrity[=true|false] Check file integrity by validating "
  491. "piece\n"
  492. " hashes. This option has effect only in "
  493. "BitTorrent\n"
  494. " and Metalink downloads with chunk checksums.\n"
  495. " Use this option to re-download a damaged "
  496. "portion\n"
  497. " of a file. See also --bt-hash-check-seed "
  498. "option."
  499. msgstr ""
  500. " -V, --check-integrity[=true|false] Contrôle l'intégrité du fichier en "
  501. "validant\n"
  502. " le hash de chaque morceau. Cette option n'as "
  503. "d'effet que pour les \n"
  504. " téléchargements BitTorrent et par Metalink "
  505. "avec somme de contrôle des segments. \n"
  506. " Utiliser cette option afin de re-télécharger "
  507. "un ensemble ou un fichier endommagé.\n"
  508. " Voir également l'option --bt-hash-check-seed."
  509. #: src/usage_text.h:187
  510. msgid ""
  511. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  512. " --check-integrity option and file is "
  513. "complete,\n"
  514. " continue to seed file. If you want to check "
  515. "file\n"
  516. " and download it only when it is damaged or\n"
  517. " incomplete, set this option to false.\n"
  518. " This option has effect only on BitTorrent\n"
  519. " download."
  520. msgstr ""
  521. " --bt-hash-check-seed[=true|false] Si 'true' est spécifié, une fois le "
  522. "contrôle du hash effectué\n"
  523. " en utilisant --check-integrity et que le "
  524. "fichier est terminé, continuer de seeder.\n"
  525. " Si vous souhaitez contrôler le fichier et le "
  526. "télécharger seulement s'il est endommagé\n"
  527. " ou incomplet, définir cette option sur "
  528. "'false'.\n"
  529. " Cette option n'est effective que lors de "
  530. "téléchargements via BitTorrent."
  531. #: src/usage_text.h:195
  532. msgid ""
  533. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  534. "calculating\n"
  535. " checksum while downloading a file if chunk\n"
  536. " checksums are provided."
  537. msgstr ""
  538. " --realtime-chunk-checksum=true|false Valide les segments de données en "
  539. "calculant\n"
  540. " les sommes de contrôle pendant le "
  541. "téléchargement d'un fichier\n"
  542. " si la fonction est supportée."
  543. #: src/usage_text.h:199
  544. msgid ""
  545. " -c, --continue Continue downloading a partially downloaded\n"
  546. " file. Use this option to resume a download\n"
  547. " started by a web browser or another program\n"
  548. " which downloads files sequentially from the\n"
  549. " beginning. Currently this option is only\n"
  550. " applicable to http(s)/ftp downloads."
  551. msgstr ""
  552. " -c, --continue Continuer le téléchargement d'un fichier "
  553. "téléchargé partiellement\n"
  554. " Utilisez cette option pour reprendre un "
  555. "téléchargement commencé par\n"
  556. " un navigateur ou n'importe quel autre "
  557. "programme\n"
  558. " qui télécharge des fichiers de manière "
  559. "séquencielle du début\n"
  560. " En ce moment cette option s'applique aux\n"
  561. " téléchargements http(s)/ftp."
  562. #: src/usage_text.h:206
  563. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  564. msgstr ""
  565. " -U, --user-agent=USER_AGENT Définit le nom du programme pour les "
  566. "téléchargements http(s)."
  567. #: src/usage_text.h:208
  568. msgid " -n, --no-netrc Disables netrc support."
  569. msgstr " -n, --no-netrc Désactiver le support netrc."
  570. #: src/usage_text.h:210
  571. msgid ""
  572. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  573. " multiple URIs for a single entity: separate\n"
  574. " URIs on a single line using the TAB "
  575. "character.\n"
  576. " Reads input from stdin when '-' is specified.\n"
  577. " The additional out and dir options can be\n"
  578. " specified after each line of URIs. This "
  579. "optional\n"
  580. " line must start with white space(s). See "
  581. "INPUT\n"
  582. " FILE section of man page for details."
  583. msgstr ""
  584. #: src/usage_text.h:219
  585. msgid ""
  586. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  587. "for\n"
  588. " every static (HTTP/FTP) URL, torrent and "
  589. "metalink.\n"
  590. " See also -s and -C options."
  591. msgstr ""
  592. " -j, --max-concurrent-downloads=N Définit le nombre maximum de "
  593. "télachargements simultanés\n"
  594. " pour chaque (HTTP/FTP) URL, Torrent, ou "
  595. "Metalink.\n"
  596. " Voir également les options -s et -C."
  597. #: src/usage_text.h:223
  598. msgid ""
  599. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  600. "format\n"
  601. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  602. msgstr ""
  603. " --load-cookies=FILE Charge les cookies (compatible Firefox3 et\n"
  604. " Mozilla/Firefox(1.x/2.x)/Netscape)."
  605. #: src/usage_text.h:226
  606. msgid ""
  607. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  608. "x)/\n"
  609. " Netscape format. If FILE already exists, it "
  610. "is\n"
  611. " overwritten. Session Cookies are also saved "
  612. "and\n"
  613. " their expiry values are treated as 0."
  614. msgstr ""
  615. " --save-cookies=FICHIER Sauvegarde les cookies vers FICHIER au format "
  616. "Mozilla / Firefox (1.x/2.x) / Netscape.\n"
  617. " Si FICHIER existe déjà, il sera remplacé. Les "
  618. "cookies de session sont également sauvegardés\n"
  619. " et leur valeur d'expiration sera remise à 0."
  620. #: src/usage_text.h:231
  621. msgid ""
  622. " -S, --show-files Print file listing of .torrent or .metalink "
  623. "file\n"
  624. " and exit. More detailed information will be "
  625. "listed\n"
  626. " in case of torrent file."
  627. msgstr ""
  628. " -S, --show-files Afficher la liste de fichiers .torrent ou .metalink\n"
  629. " et quitter. Des informations plus détaillés "
  630. "seront listées\n"
  631. " dans le cas de fichier torrent."
  632. #: src/usage_text.h:235
  633. msgid ""
  634. " --select-file=INDEX... Set file to download by specifying its index.\n"
  635. " You can find the file index using the\n"
  636. " --show-files option. Multiple indexes can be\n"
  637. " specified by using ',', for example: \"3,6\".\n"
  638. " You can also use '-' to specify a range: \"1-5"
  639. "\".\n"
  640. " ',' and '-' can be used together.\n"
  641. " When used with the -M option, index may vary\n"
  642. " depending on the query(see --metalink-* "
  643. "options)."
  644. msgstr ""
  645. " --select-file=INDEX... Définit le fichier à télécharger en spécifiant son "
  646. "index.\n"
  647. " Vous pouvez trouver l'index de fichiers en "
  648. "utilisant l'option --show-files. Plusieurs indexs peuvent être spécifiés \n"
  649. " en utilisant par exemple \"3,6\". Vous pouvez "
  650. "également utiliser '-' pour spécifier un ensemble : \"1-5\".\n"
  651. " ',' et '-' peuvent être utilisés "
  652. "simultanément. Lorsque utilisé avec l'option -M, l'index peux varier selon "
  653. "la requête (voir\n"
  654. " l'option --metalink)."
  655. #: src/usage_text.h:244
  656. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  657. msgstr ""
  658. " -T, --torrent-file=TORRENT_FILE Le chemin complet du fichier .torrent."
  659. #: src/usage_text.h:246
  660. msgid ""
  661. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  662. " whose suffix is .torrent or content type is\n"
  663. " application/x-bittorrent is downloaded, aria2\n"
  664. " parses it as a torrent file and downloads "
  665. "files\n"
  666. " mentioned in it.\n"
  667. " If mem is specified, a torrent file is not\n"
  668. " written to the disk, but is just kept in "
  669. "memory.\n"
  670. " If false is specified, the action mentioned "
  671. "above\n"
  672. " is not taken."
  673. msgstr ""
  674. " --follow-torrent=true|false|mem Si true ou mem est spécifié, quand un "
  675. "fichier\n"
  676. " dont le suffixe est .torrent ou dont le type\n"
  677. " de contenu est application/x-bittorrent est "
  678. "téléchargé, aria2 le\n"
  679. " considère comme un fichier \"torrent\" et "
  680. "télécharge les fichiers\n"
  681. " mentionnés dedans.\n"
  682. " Si mem est spécifié, le fichiertorrent n'est "
  683. "pas\n"
  684. " écrit sur le disque, mais est juste gardé en "
  685. "mémoire.\n"
  686. " Si false est spécifié, l'action mentionné ci-"
  687. "dessus\n"
  688. " n'est pas appliquée."
  689. #: src/usage_text.h:256
  690. msgid ""
  691. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  692. " mentioned in .torrent file."
  693. msgstr ""
  694. " --direct-file-mapping=true|false Lis et écris directement vers chaque "
  695. "fichier\n"
  696. " mentionné dans le fichier .torrent."
  697. #: src/usage_text.h:259
  698. msgid ""
  699. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  700. " Multiple ports can be specified by using ',',\n"
  701. " for example: \"6881,6885\". You can also use "
  702. "'-'\n"
  703. " to specify a range: \"6881-6999\". ',' and '-' "
  704. "can\n"
  705. " be used together."
  706. msgstr ""
  707. " --listen-port=PORT... Définit le nombre de port TCP pour les "
  708. "téléchargements BitTorrent.\n"
  709. " Plusieurs ports peuvent être spécifiés en "
  710. "utilisant ',',\n"
  711. " par exemple: \"6881,6885\". Vous pouvez aussi "
  712. "utiliser '-'\n"
  713. " pour spécifier une rangée: \"6881-6999\". ',' "
  714. "et '-' peuvent\n"
  715. " être utilisés ensemble."
  716. #: src/usage_text.h:265
  717. msgid ""
  718. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  719. "sec.\n"
  720. " 0 means unrestricted.\n"
  721. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  722. " To limit the upload speed per torrent, use\n"
  723. " --max-upload-limit option."
  724. msgstr ""
  725. " --max-overall-upload-limit=SPEED Définis la vitesse maximale d'envoi en "
  726. "bytes/sec.\n"
  727. " 0 signifie aucune limite.\n"
  728. " Vous pouvez spécifier K ou M(1K = 1024, 1M = "
  729. "1024K).\n"
  730. " Afin de limiter la vitesse d'envoi par "
  731. "torrent, utiliser\n"
  732. " l'option --max-upload-limit."
  733. #: src/usage_text.h:271
  734. msgid ""
  735. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  736. " bytes/sec. 0 means unrestricted.\n"
  737. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  738. " To limit the overall upload speed, use\n"
  739. " --max-overall-upload-limit option."
  740. msgstr ""
  741. " -u, --max-upload-limit=SPEED Définir la vitesse maximum d'upload par "
  742. "torrent en\n"
  743. " bytes/sec. 0 indique aucune restriction.\n"
  744. " Vous pouvez indiquer en K ou M (1K = 1024, 1M "
  745. "= 1024K).\n"
  746. " Afin de limiter la vitesse globale, utiliser "
  747. "l'option --max-overall-limit."
  748. #: src/usage_text.h:277
  749. msgid ""
  750. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  751. " --seed-ratio option."
  752. msgstr ""
  753. " --seed-time=MINUTES Définir le temps de partage en minutes. "
  754. "Consultez aussi\n"
  755. " l'option --seed-ratio."
  756. #: src/usage_text.h:280
  757. msgid ""
  758. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  759. " until share ratio reaches RATIO.\n"
  760. " You are strongly encouraged to specify equals "
  761. "or\n"
  762. " more than 1.0 here. Specify 0.0 if you intend "
  763. "to\n"
  764. " do seeding regardless of share ratio.\n"
  765. " If --seed-time option is specified along with\n"
  766. " this option, seeding ends when at least one "
  767. "of\n"
  768. " the conditions is satisfied."
  769. msgstr ""
  770. " --seed-ratio=RATIO Spécifier le ratio de partage. Alimente les torrents "
  771. "achevés\n"
  772. " jusqu'à ce que le ratio atteigne RATIO.\n"
  773. " Il est fortement recommandé de spécifier une "
  774. "valeur égale ou\n"
  775. " supérieure à 1 ici. Spécifier 0.0 si vous "
  776. "souhaitez\n"
  777. " alimenter le partage sans tenir compte du "
  778. "ratio.\n"
  779. " Si l'option --seed-time est spécifiée "
  780. "parallèlement à\n"
  781. " cette option, l'alimentation prends fin une "
  782. "fois l'une des\n"
  783. " conditions remplie."
  784. #: src/usage_text.h:289
  785. msgid ""
  786. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  787. "in\n"
  788. " BitTorrent is 20 byte length. If more than 20\n"
  789. " bytes are specified, only first 20 bytes are\n"
  790. " used. If less than 20 bytes are specified, "
  791. "random\n"
  792. " byte data are added to make its length 20 "
  793. "bytes."
  794. msgstr ""
  795. " --peer-id-prefix=PEER_ID_PREFIX Spécifie le préfixe de l'identifiant de "
  796. "noeud. L'identifiant de nœud\n"
  797. " en BitTorrent a une longueur de 20 bytes. Si "
  798. "plus de 20 bytes sont spécifiés, seulement\n"
  799. " les 20 premiers bytes sont utilisés. Si moins "
  800. "de 20 bytes sont spécifiés, des données\n"
  801. " aléatoires en bytes sont ajoutées afin de "
  802. "compléter la séquence jusqu'à ce qu'elle\n"
  803. " atteigne 20 bytes."
  804. #: src/usage_text.h:295
  805. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  806. msgstr ""
  807. " --enable-peer-exchange[=true|false] Active ou non le \"Peer Exchange"
  808. "\" (PEX)."
  809. #: src/usage_text.h:297
  810. msgid " --enable-dht[=true|false] Enable DHT functionality."
  811. msgstr " --enable-dht[=true|false] Active ou non la fonctionnalité \"DHT\"."
  812. #: src/usage_text.h:299
  813. msgid ""
  814. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  815. " Multiple ports can be specified by using ',',\n"
  816. " for example: \"6881,6885\". You can also use "
  817. "'-'\n"
  818. " to specify a range: \"6881-6999\". ',' and '-' "
  819. "can\n"
  820. " be used together."
  821. msgstr ""
  822. " --dht-listen-port=PORT... Configure le port d'écoute UDP pour le DHT.\n"
  823. " De multiples port peuvent être spécifiés en "
  824. "utilisant une\n"
  825. " virgule (ex: \"6881,6885\". Vous pouvez aussi "
  826. "utiliser '-'\n"
  827. " pour spécifier une rangée: \"6881-6999\". ',' "
  828. "et '-' peuvent\n"
  829. " être utilisée simultanément."
  830. #: src/usage_text.h:305
  831. msgid ""
  832. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  833. " network."
  834. msgstr ""
  835. " --dht-entry-point=HOST:PORT Configure le host et le port comme un point "
  836. "d'entrée au réseau DHT."
  837. #: src/usage_text.h:308
  838. msgid ""
  839. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  840. msgstr ""
  841. " --dht-file-path=PATH Change le chemin d'accès du fichier \"DHT\"."
  842. #: src/usage_text.h:310
  843. msgid ""
  844. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  845. " If several encryption methods are provided by "
  846. "a\n"
  847. " peer, aria2 chooses the lowest one which "
  848. "satisfies\n"
  849. " the given level."
  850. msgstr ""
  851. " --bt-min-crypto-level=plain|arc4 Définis le niveau minimum de la méthode de "
  852. "cryptage.\n"
  853. " Si plusieurs méthodes de cryptage sont "
  854. "fournies par\n"
  855. " nœud, Aria2 sélectionnes le niveau le plus "
  856. "bas, remplissant\n"
  857. " les conditions du niveau donné."
  858. #: src/usage_text.h:315
  859. msgid ""
  860. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  861. " establish connection with legacy BitTorrent\n"
  862. " handshake. Thus aria2 always uses Obfuscation\n"
  863. " handshake."
  864. msgstr ""
  865. " --bt-require-crypto=true|false Si \"true\" est choisit, aria2 n'accepte\n"
  866. " et n'établit pas de connexions non cryptées.\n"
  867. " Sinon aria2 utilise toujours des connexions "
  868. "cryptées."
  869. #: src/usage_text.h:320
  870. msgid ""
  871. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  872. " torrent is lower than SPEED, aria2 "
  873. "temporarily\n"
  874. " increases the number of peers to try for more\n"
  875. " download speed. Configuring this option with "
  876. "your\n"
  877. " preferred download speed can increase your\n"
  878. " download speed in some cases.\n"
  879. " You can append K or M(1K = 1024, 1M = 1024K)."
  880. msgstr ""
  881. #: src/usage_text.h:328
  882. msgid ""
  883. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  884. "each\n"
  885. " BitTorrent download."
  886. msgstr ""
  887. " --bt-max-open-files=NUM Specifies le nombre maximum de fichiers "
  888. "ouverts pour\n"
  889. " chaque téléchargement BitTorrent."
  890. #: src/usage_text.h:331
  891. msgid ""
  892. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  893. " verifying piece hashes."
  894. msgstr ""
  895. " --bt-seed-unverified[=true|false] Partage (seed) les fichiers précédemment "
  896. "téléchargés sans vérifier les \"hash\" des fichiers."
  897. #: src/usage_text.h:334
  898. msgid ""
  899. " --bt-max-peers=NUM Specify the maximum number of peers per "
  900. "torrent.\n"
  901. " 0 means unlimited.\n"
  902. " See also --bt-request-peer-speed-limit option."
  903. msgstr ""
  904. " --bt-max-peers=NUM Spécifier le nombre maximum de peers par torrent.\n"
  905. " 0 indique illimités.\n"
  906. " Voir également l'option --bt-request-peer-"
  907. "speed-limit."
  908. #: src/usage_text.h:338
  909. #, fuzzy
  910. msgid ""
  911. " -M, --metalink-file=METALINK_FILE The file path to the .metalink file. "
  912. "Reads\n"
  913. " input from stdin when '-' is specified."
  914. msgstr ""
  915. " -M, --metalink-file=METALINK_FILE Le chemin vers le fichier .metalink."
  916. #: src/usage_text.h:341
  917. msgid ""
  918. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  919. " simultaneously. Some Metalinks regulate the\n"
  920. " number of servers to connect. aria2 strictly\n"
  921. " respects them. This means that if Metalink "
  922. "defines\n"
  923. " the maxconnections attribute lower than\n"
  924. " NUM_SERVERS, then aria2 uses the value of\n"
  925. " maxconnections attribute instead of "
  926. "NUM_SERVERS.\n"
  927. " See also -s and -j options."
  928. msgstr ""
  929. " -C, --metalink-servers=NUM_SERVERS Permets de spécifier le nombre de "
  930. "serveurs auxquels se connecter\n"
  931. " simultanément. Certains Metalinks régulent "
  932. "automatiquement ce nombre. Aria2 \n"
  933. " respecte strictement ce paramètre. Celà "
  934. "signifie que si un Metalink définit l'attribut\n"
  935. " 'maxconnections' à une valeur en dessous de "
  936. "NUM_SERVERS, Aria2 utilisera la valeur de\n"
  937. " 'maxconnections' au lieu de NUM_SERVERS. Voir "
  938. "également les options -s et -j."
  939. #: src/usage_text.h:350
  940. msgid " --metalink-version=VERSION The version of the file to download."
  941. msgstr " --metalink-version=VERSION La version du fichier à télécharger."
  942. #: src/usage_text.h:352
  943. msgid " --metalink-language=LANGUAGE The language of the file to download."
  944. msgstr " --metalink-language=LANGUAGE La langua du fichier à télécharger."
  945. #: src/usage_text.h:354
  946. msgid ""
  947. " --metalink-os=OS The operating system of the file to download."
  948. msgstr ""
  949. " --metalink-os=OS Le système d'exploitation auquel est destiné "
  950. "le fichier."
  951. #: src/usage_text.h:356
  952. msgid ""
  953. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  954. " A comma-delimited list of locations is\n"
  955. " acceptable."
  956. msgstr ""
  957. " --metalink-location=LOCATION[,...] L'emplacement du serveur préféré.\n"
  958. " Une liste de noms séparés par virgule peut "
  959. "être utilisée."
  960. #: src/usage_text.h:360
  961. msgid ""
  962. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  963. "'none'\n"
  964. " if you don't have any preferred protocol."
  965. msgstr ""
  966. " --metalink-prefered-protocol=PROTO Spécifie un protocole préféré. Indiquer "
  967. "'none'\n"
  968. " si vous n'avez pas de préférence."
  969. #: src/usage_text.h:363
  970. msgid ""
  971. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  972. " whose suffix is .metalink or content type of\n"
  973. " application/metalink+xml is downloaded, aria2\n"
  974. " parses it as a metalink file and downloads "
  975. "files\n"
  976. " mentioned in it.\n"
  977. " If mem is specified, a metalink file is not\n"
  978. " written to the disk, but is just kept in "
  979. "memory.\n"
  980. " If false is specified, the action mentioned "
  981. "above\n"
  982. " is not taken."
  983. msgstr ""
  984. " --follow-metalink=true|false|mem Si 'true' est indiqué, lorsqu'un fichier\n"
  985. " ayant pour suffixe .metalink ou un contenu "
  986. "mime de type application/metalink+xml\n"
  987. " est téléchargé, Aria2 considère qu'il s'agit "
  988. "d'un fichier Metalink et télécharge le fichier\n"
  989. " indiqué.\n"
  990. " Si 'mem' est spécifié, un Metalink n'est pas "
  991. "écrit sur le disque, mais simplement\n"
  992. " conservé en mémoire.\n"
  993. " Si 'false' est spécifié, Aria2 ne suivra pas "
  994. "le Metalink."
  995. #: src/usage_text.h:373
  996. msgid ""
  997. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  998. " protocols are available for a mirror in a "
  999. "metalink\n"
  1000. " file, aria2 uses one of them.\n"
  1001. " Use --metalink-preferred-protocol option to\n"
  1002. " specify the preference of protocol."
  1003. msgstr ""
  1004. " --metalink-enable-unique-protocol=true|false Si true est sélectionné et que "
  1005. "plusieurs\n"
  1006. " protocoles sont disponible pour un miroir dans "
  1007. "un fichier\n"
  1008. " metalink, aria2 utilise l'un d'eux.\n"
  1009. " Utilisez l'option --metalink-preferred-"
  1010. "protocol pour\n"
  1011. " spécifier les préférences du protocole."
  1012. #: src/usage_text.h:379
  1013. msgid " -v, --version Print the version number and exit."
  1014. msgstr " -v, --version"
  1015. #: src/usage_text.h:381
  1016. msgid ""
  1017. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  1018. " The help messages are classified with tags. A "
  1019. "tag\n"
  1020. " starts with \"#\". For example, type \"--"
  1021. "help=#http\"\n"
  1022. " to get the usage for the options tagged with\n"
  1023. " \"#http\". If non-tag word is given, print the "
  1024. "usage\n"
  1025. " for the options whose name includes that word."
  1026. msgstr ""
  1027. #: src/usage_text.h:388
  1028. msgid " --no-conf Disable loading aria2.conf file."
  1029. msgstr " --no-conf Désactive le chargement du fichier aria2.conf ."
  1030. #: src/usage_text.h:390
  1031. msgid ""
  1032. " --conf-path=PATH Change the configuration file path to PATH."
  1033. msgstr ""
  1034. " --conf-path=PATH Change l'emplacement du fichier de configuration vers PATH."
  1035. #: src/usage_text.h:392
  1036. msgid ""
  1037. " --stop=SEC Stop application after SEC seconds has "
  1038. "passed.\n"
  1039. " If 0 is given, this feature is disabled."
  1040. msgstr ""
  1041. " --stop=SEC Stoppe l'application après \"SEC\" seconde"
  1042. "(s).\n"
  1043. " Si la valeur est égale à 0 cette fonction est "
  1044. "inactive."
  1045. #: src/usage_text.h:395
  1046. msgid ""
  1047. " --header=HEADER Append HEADER to HTTP request header. You can "
  1048. "use\n"
  1049. " this option repeatedly to specify more than "
  1050. "one\n"
  1051. " header:\n"
  1052. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  1053. "9J1\"\n"
  1054. " http://host/file"
  1055. msgstr ""
  1056. " --header=HEADER Ajoute l'en-tête \"HEADER\" à l'en-tête HTTP.\n"
  1057. " Vous pouvez utiliser cette option autant de "
  1058. "fois que \n"
  1059. " nécessaire en fonction de vos besoins.\n"
  1060. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  1061. "9J1\"\n"
  1062. " http://host/file"
  1063. #: src/usage_text.h:401
  1064. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  1065. msgstr " -q, --quiet[=true|false] Mode silencieux. Aucun message d'état."
  1066. #: src/usage_text.h:403
  1067. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  1068. msgstr ""
  1069. " --async-dns[=true|false] Active ou non la fonction \"asynchronous DNS"
  1070. "\" (\"requetes DNS en mode multithread\")."
  1071. #: src/usage_text.h:405
  1072. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  1073. msgstr " --ftp-reuse-connection[=true|false] Réutilise la connexion en FTP."
  1074. #: src/usage_text.h:407
  1075. msgid ""
  1076. " --summary-interval=SEC Set interval to output download progress "
  1077. "summary.\n"
  1078. " Setting 0 suppresses the output."
  1079. msgstr ""
  1080. " --summary-interval=SEC Configure l'intervalle d'affichage du résumé "
  1081. "régulier de la progression des téléchargements.\n"
  1082. " Mettre 0 pour ne pas l'afficher dans la "
  1083. "console."
  1084. #: src/usage_text.h:410
  1085. msgid " --log-level=LEVEL Set log level to output."
  1086. msgstr ""
  1087. " --log-level=LEVEL Configure le niveau de détail du fichier log "
  1088. "en sortie."
  1089. #: src/usage_text.h:412
  1090. msgid ""
  1091. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  1092. "the\n"
  1093. " remote HTTP/FTP server and if it is "
  1094. "available,\n"
  1095. " apply it to the local file."
  1096. msgstr ""
  1097. " -R, --remote-time[=true|false] Récupère en HTTP ou FTP la date et l'heure "
  1098. "du fichier distant\n"
  1099. " et l'appliquer comme valeur par "
  1100. "défaut au fichier local."
  1101. #: src/usage_text.h:416
  1102. msgid ""
  1103. " --connect-timeout=SEC Set the connect timeout in seconds to "
  1104. "establish\n"
  1105. " connection to HTTP/FTP/proxy server. After "
  1106. "the\n"
  1107. " connection is established, this option makes "
  1108. "no\n"
  1109. " effect and --timeout option is used instead."
  1110. msgstr ""
  1111. " --connect-timeout=SEC Définit le paramètre de délai d'attente en secondes "
  1112. "pour établir\n"
  1113. " une connection à un serveur HTTP/FTP/Proxy. "
  1114. "Une fois la connection établie,\n"
  1115. " cette option n'as pas d'autre usage et le "
  1116. "paramètre --timeout est utilisé."
  1117. #: src/usage_text.h:421
  1118. msgid ""
  1119. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  1120. "the\n"
  1121. " remote HTTP/FTP servers NUM times without "
  1122. "getting\n"
  1123. " a single byte, then force the download to "
  1124. "fail.\n"
  1125. " Specify 0 to disable this option.\n"
  1126. " This options is effective only when using\n"
  1127. " HTTP/FTP servers."
  1128. msgstr ""
  1129. " --max-file-not-found=NUM Si Aria2 reçois un statut 'file not found' depuis "
  1130. "le serveur\n"
  1131. " HTTP/FTP distant au nombre de NUM sans "
  1132. "recevoir un seul byte, celà cause\n"
  1133. " un échec du téléchargement. Définir NUM à 0 "
  1134. "afin de désactiver cette option.\n"
  1135. " Cette option est effective seulement sur des "
  1136. "serveurs de type HTTP/FTP."
  1137. #: src/usage_text.h:428
  1138. msgid ""
  1139. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  1140. " If 'inorder' is given, URI is tried in the "
  1141. "order\n"
  1142. " appeared in the URI list.\n"
  1143. " If 'feedback' is given, aria2 uses download "
  1144. "speed\n"
  1145. " observed in the previous downloads and choose\n"
  1146. " fastest server in the URI list. This also\n"
  1147. " effectively skips dead mirrors. The observed\n"
  1148. " download speed is a part of performance "
  1149. "profile\n"
  1150. " of servers mentioned in --server-stat-of and\n"
  1151. " --server-stat-if options.\n"
  1152. " If 'adaptive' is given, selects one of the "
  1153. "best\n"
  1154. " mirrors for the first and reserved "
  1155. "connections.\n"
  1156. " For supplementary ones, it returns mirrors "
  1157. "which\n"
  1158. " has not been tested yet, and if each of them "
  1159. "has\n"
  1160. " already been tested, returns mirrors which has "
  1161. "to\n"
  1162. " be tested again. Otherwise, it doesn't select\n"
  1163. " anymore mirrors. Like 'feedback', it uses a\n"
  1164. " performance profile of servers."
  1165. msgstr ""
  1166. #: src/usage_text.h:447
  1167. msgid ""
  1168. " --server-stat-of=FILE Specify the filename to which performance "
  1169. "profile\n"
  1170. " of the servers is saved. You can load saved "
  1171. "data\n"
  1172. " using --server-stat-if option."
  1173. msgstr ""
  1174. " --server-stat-of=FILE Spécifie le nom de fichier dans lequel le profil de "
  1175. "performance\n"
  1176. " des serveurs est sauvegardé. Vous pouvez "
  1177. "charger les données \n"
  1178. " sauvegardées en utilisant l'option --server-"
  1179. "stat-if."
  1180. #: src/usage_text.h:451
  1181. msgid ""
  1182. " --server-stat-if=FILE Specify the filename to load performance "
  1183. "profile\n"
  1184. " of the servers. The loaded data will be used "
  1185. "in\n"
  1186. " some URI selector such as 'feedback'.\n"
  1187. " See also --uri-selector option"
  1188. msgstr ""
  1189. " --server-stat-if=FILE Spécifie le fichier de profil de performance des "
  1190. "serveurs\n"
  1191. " à charger. Les données chargées seront "
  1192. "utilisées dans certains sélecteurs\n"
  1193. " d'URI à titre de 'feedback'.\n"
  1194. " Voir également l'option --uri-selector."
  1195. #: src/usage_text.h:456
  1196. msgid ""
  1197. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  1198. " performance profile of the servers since the "
  1199. "last\n"
  1200. " contact to them."
  1201. msgstr ""
  1202. " --server-stat-timeout=SEC Spécifie le délai d'attente en secondes pour "
  1203. "invalider\n"
  1204. " le profil de performance des serveurs depuis "
  1205. "leur dernière connexion."
  1206. #: src/usage_text.h:460
  1207. msgid ""
  1208. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  1209. "seconds.\n"
  1210. " If 0 is given, a control file is not saved "
  1211. "during\n"
  1212. " download. aria2 saves a control file when it "
  1213. "stops\n"
  1214. " regardless of the value."
  1215. msgstr ""
  1216. #: src/usage_text.h:465
  1217. msgid ""
  1218. " --certificate=FILE Use the client certificate in FILE.\n"
  1219. " The certificate must be in PEM format.\n"
  1220. " You may use --private-key option to specify "
  1221. "the\n"
  1222. " private key."
  1223. msgstr ""
  1224. " --certificate=FILE Utiliser le certificat client présent dans le fichier "
  1225. "FILE.\n"
  1226. " Le certificat doit être au format PEM.\n"
  1227. " Vous pouvez utiliser l'option --private-key "
  1228. "afin de\n"
  1229. " spécifier la clé privée."
  1230. #: src/usage_text.h:470
  1231. msgid ""
  1232. " --private-key=FILE Use the private key in FILE.\n"
  1233. " The private key must be decrypted and in PEM\n"
  1234. " format. See also --certificate option."
  1235. msgstr ""
  1236. " --private-key=FILE Utiliser le fichier de clé privée nommé FILE.\n"
  1237. " La clé privée doit être décryptée et au format "
  1238. "PEM.\n"
  1239. " Voir également l'option --certificate."
  1240. #: src/usage_text.h:474
  1241. msgid ""
  1242. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1243. "verify\n"
  1244. " the peers. The certificate file must be in "
  1245. "PEM\n"
  1246. " format and can contain multiple CA "
  1247. "certificates.\n"
  1248. " Use --check-certificate option to enable\n"
  1249. " verification."
  1250. msgstr ""
  1251. #: src/usage_text.h:480
  1252. msgid ""
  1253. " --check-certificate[=true|false] Verify the peer using certificates "
  1254. "specified\n"
  1255. " in --ca-certificate option."
  1256. msgstr ""
  1257. " --check-certificate[=true|false] Vérifie les nœuds utilisant le certificat "
  1258. "spécifié\n"
  1259. " dans l'option --ca-certificate."
  1260. #: src/usage_text.h:483
  1261. msgid ""
  1262. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  1263. " network address with or without CIDR block "
  1264. "where\n"
  1265. " proxy should not be used."
  1266. msgstr ""
  1267. #: src/usage_text.h:487
  1268. msgid ""
  1269. " --use-head[=true|false] Use HEAD method for the first request to the "
  1270. "HTTP\n"
  1271. " server."
  1272. msgstr ""
  1273. #: src/usage_text.h:490
  1274. msgid " --event-poll=POLL Specify the method for polling events."
  1275. msgstr ""
  1276. #: src/usage_text.h:492
  1277. msgid ""
  1278. " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  1279. "listen\n"
  1280. " to."
  1281. msgstr ""
  1282. " --xml-rpc-listen-port=PORT Spécifie le port sur lequel le serveur XML-RPC "
  1283. "va écouter."
  1284. #: src/usage_text.h:495
  1285. msgid ""
  1286. " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  1287. " It is strongly recommended to set username "
  1288. "and\n"
  1289. " password using --xml-rpc-user and --xml-rpc-"
  1290. "passwd\n"
  1291. " option. See also --xml-rpc-listen-port option."
  1292. msgstr ""
  1293. " --enable-xml-rpc[=true|false] Active le serveur XML-RPC.\n"
  1294. " Il est fortement recommandé de définir un nom "
  1295. "d'utilisateur et un\n"
  1296. " mot de passe en utilisant les options --xms-"
  1297. "rpc-user et --xms-rpc-passwd.\n"
  1298. " Voir également l'option --xml-rpc-listen-port."
  1299. #: src/usage_text.h:500
  1300. msgid ""
  1301. " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If aria2\n"
  1302. " detects the request is more than SIZE bytes, "
  1303. "it\n"
  1304. " drops connection."
  1305. msgstr ""
  1306. " --xml-rpc-max-request-size=SIZE Définit la taille maximale de requête XML-"
  1307. "RPC. Si Aria2\n"
  1308. " détecte une requête supérieure à une taille de "
  1309. "SIZE bytes, la connection est fermée."
  1310. #: src/usage_text.h:504
  1311. msgid " --xml-rpc-user=USER Set XML-RPC user."
  1312. msgstr " --xml-rpc-user=USER Définit l'utilisateur XML-RPC"
  1313. #: src/usage_text.h:506
  1314. msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  1315. msgstr " --xml-rpc-passwd=PASSWD Définit le mot de passe XML-RPC"
  1316. #: src/usage_text.h:508
  1317. msgid ""
  1318. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1319. "a\n"
  1320. " BitTorrent tracker. Although this function is\n"
  1321. " named 'external', it can accept any kind of "
  1322. "IP\n"
  1323. " addresses."
  1324. msgstr ""
  1325. #: src/usage_text.h:513
  1326. msgid ""
  1327. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1328. "it\n"
  1329. " is requested by the server. If false is set, "
  1330. "then\n"
  1331. " authorization header is always sent to the "
  1332. "server.\n"
  1333. " There is an exception: if username and "
  1334. "password\n"
  1335. " are embedded in URI, authorization header is\n"
  1336. " always sent to the server regardless of this\n"
  1337. " option."
  1338. msgstr ""
  1339. #: src/usage_text.h:521
  1340. msgid ""
  1341. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1342. "can\n"
  1343. " find the file index using the --show-files "
  1344. "option.\n"
  1345. " PATH is a relative path to the path specified "
  1346. "in\n"
  1347. " --dir option. You can use this option "
  1348. "multiple\n"
  1349. " times."
  1350. msgstr ""
  1351. #: src/usage_text.h:527
  1352. msgid ""
  1353. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1354. "the\n"
  1355. " remote file is available and doesn't download\n"
  1356. " data. This option has effect on HTTP/FTP "
  1357. "download.\n"
  1358. " BitTorrent downloads are canceled if true is\n"
  1359. " specified."
  1360. msgstr ""
  1361. #: src/usage_text.h:533
  1362. msgid ""
  1363. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1364. " requests. This completely overrides interval "
  1365. "value\n"
  1366. " and aria2 just uses this value and ignores "
  1367. "the\n"
  1368. " min interval and interval value in the "
  1369. "response of\n"
  1370. " tracker. If 0 is set, aria2 determines "
  1371. "interval\n"
  1372. " based on the response of tracker and the "
  1373. "download\n"
  1374. " progress."
  1375. msgstr ""
  1376. #: src/usage_text.h:541
  1377. msgid ""
  1378. " --on-download-complete=COMMAND Set the command to be executed when "
  1379. "download\n"
  1380. " completes.\n"
  1381. " See --on-download-start option for the\n"
  1382. " requirement of COMMAND.\n"
  1383. " See also --on-download-stop option."
  1384. msgstr ""
  1385. #: src/usage_text.h:547
  1386. msgid ""
  1387. " --on-download-start=COMMAND Set the command to be executed when download\n"
  1388. " starts up. COMMAND must take just one argument "
  1389. "and\n"
  1390. " GID is passed to COMMAND as a first argument."
  1391. msgstr ""
  1392. " --on-download-start=COMMAND Spécifie la commande devant être exécutée\n"
  1393. " lorsque le téléchargement démarre. COMMAND ne "
  1394. "doit utiliser qu'un seul argument et\n"
  1395. " le GID est mentionné dans COMMAND en tant "
  1396. "qu'argument primaire."
  1397. #: src/usage_text.h:551
  1398. #, fuzzy
  1399. msgid ""
  1400. " --on-download-pause=COMMAND Set the command to be executed when download\n"
  1401. " is paused.\n"
  1402. " See --on-download-start option for the\n"
  1403. " requirement of COMMAND."
  1404. msgstr ""
  1405. " --on-download-start=COMMAND Spécifie la commande devant être exécutée\n"
  1406. " lorsque le téléchargement démarre. COMMAND ne "
  1407. "doit utiliser qu'un seul argument et\n"
  1408. " le GID est mentionné dans COMMAND en tant "
  1409. "qu'argument primaire."
  1410. #: src/usage_text.h:556
  1411. msgid ""
  1412. " --on-download-error=COMMAND Set the command to be executed when download\n"
  1413. " aborts due to error.\n"
  1414. " See --on-download-start option for the\n"
  1415. " requirement of COMMAND.\n"
  1416. " See also --on-download-stop option."
  1417. msgstr ""
  1418. #: src/usage_text.h:562
  1419. msgid ""
  1420. " --on-download-stop=COMMAND Set the command to be executed when download\n"
  1421. " stops. You can override the command to be "
  1422. "executed\n"
  1423. " for particular download result using\n"
  1424. " --on-download-complete and --on-download-"
  1425. "error. If\n"
  1426. " they are specified, command specified in this\n"
  1427. " option is not executed.\n"
  1428. " See --on-download-start option for the\n"
  1429. " requirement of COMMAND."
  1430. msgstr ""
  1431. #: src/usage_text.h:571
  1432. msgid ""
  1433. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1434. "0 in\n"
  1435. " consecutive SEC seconds. If 0 is given, this\n"
  1436. " feature is disabled."
  1437. msgstr ""
  1438. " --bt-stop-timeout=SEC Stoppe le téléchargement BitTorrent si la vitesse "
  1439. "atteints 0 en\n"
  1440. " SEC secondes consécutives. Si 0 est défini, "
  1441. "cette\n"
  1442. " fonctionnalité est désactivée."
  1443. #: src/usage_text.h:575
  1444. msgid ""
  1445. " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on all\n"
  1446. " network interfaces. If false is given, listen "
  1447. "only\n"
  1448. " on local loopback interface."
  1449. msgstr ""
  1450. " --xml-rpc-listen-all[=true|false] Ecoutes les requêtes entrantes XML-RPC "
  1451. "sur\n"
  1452. " toutes les interfaces réseau. Si l'argument "
  1453. "'false' est fourni, l'écoute\n"
  1454. " ne sera effective que sur l'interface de "
  1455. "boucle locale."
  1456. #: src/usage_text.h:579
  1457. msgid ""
  1458. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1459. "last\n"
  1460. " pieces of each file first. This is useful for\n"
  1461. " previewing files. The argument can contain 2\n"
  1462. " keywords:head and tail. To include both "
  1463. "keywords,\n"
  1464. " they must be separated by comma. These "
  1465. "keywords\n"
  1466. " can take one parameter, SIZE. For example, if\n"
  1467. " head=SIZE is specified, pieces in the range "
  1468. "of\n"
  1469. " first SIZE bytes of each file get higher "
  1470. "priority.\n"
  1471. " tail=SIZE means the range of last SIZE bytes "
  1472. "of\n"
  1473. " each file. SIZE can include K or M(1K = 1024, "
  1474. "1M =\n"
  1475. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1476. msgstr ""
  1477. #: src/usage_text.h:591
  1478. msgid ""
  1479. " --interface=INTERFACE Bind sockets to given interface. You can "
  1480. "specify\n"
  1481. " interface name, IP address and hostname."
  1482. msgstr ""
  1483. #: src/usage_text.h:594
  1484. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1485. msgstr ""
  1486. #: src/usage_text.h:596
  1487. #, fuzzy
  1488. msgid ""
  1489. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1490. "has\n"
  1491. " effect only when BitTorrent Magnet URI is "
  1492. "used.\n"
  1493. " The filename is hex encoded info hash with "
  1494. "suffix\n"
  1495. " .torrent. The directory to be saved is the "
  1496. "same\n"
  1497. " directory where download file is saved. If "
  1498. "the\n"
  1499. " same file already exists, metadata is not "
  1500. "saved.\n"
  1501. " See also --bt-metadata-only option."
  1502. msgstr ""
  1503. " --bt-hash-check-seed[=true|false] Si 'true' est spécifié, une fois le "
  1504. "contrôle du hash effectué\n"
  1505. " en utilisant --check-integrity et que le "
  1506. "fichier est terminé, continuer de seeder.\n"
  1507. " Si vous souhaitez contrôler le fichier et le "
  1508. "télécharger seulement s'il est endommagé\n"
  1509. " ou incomplet, définir cette option sur "
  1510. "'false'.\n"
  1511. " Cette option n'est effective que lors de "
  1512. "téléchargements via BitTorrent."
  1513. #: src/usage_text.h:604
  1514. msgid ""
  1515. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1516. "cache\n"
  1517. " header to avoid cached content. If false is\n"
  1518. " given, these headers are not sent and you can "
  1519. "add\n"
  1520. " Cache-Control header with a directive you "
  1521. "like\n"
  1522. " using --header option."
  1523. msgstr ""
  1524. #: src/usage_text.h:610
  1525. #, fuzzy
  1526. msgid ""
  1527. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1528. "described\n"
  1529. " in metadata will not be downloaded. This "
  1530. "option\n"
  1531. " has effect only when BitTorrent Magnet URI is\n"
  1532. " used. See also --bt-save-metadata option."
  1533. msgstr ""
  1534. " --server-stat-if=FILE Spécifie le fichier de profil de performance des "
  1535. "serveurs\n"
  1536. " à charger. Les données chargées seront "
  1537. "utilisées dans certains sélecteurs\n"
  1538. " d'URI à titre de 'feedback'.\n"
  1539. " Voir également l'option --uri-selector."
  1540. #: src/usage_text.h:615
  1541. msgid ""
  1542. " --human-readable[=true|false] Print sizes and speed in human readable "
  1543. "format\n"
  1544. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1545. msgstr ""
  1546. #: src/usage_text.h:618
  1547. #, fuzzy
  1548. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1549. msgstr " --enable-dht[=true|false] Active ou non la fonctionnalité \"DHT\"."
  1550. #: src/usage_text.h:620
  1551. #, fuzzy
  1552. msgid ""
  1553. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1554. "If\n"
  1555. " this option is not specified, the default\n"
  1556. " interface is chosen. You can specify "
  1557. "interface\n"
  1558. " name and IP address."
  1559. msgstr ""
  1560. " --certificate=FILE Utiliser le certificat client présent dans le fichier "
  1561. "FILE.\n"
  1562. " Le certificat doit être au format PEM.\n"
  1563. " Vous pouvez utiliser l'option --private-key "
  1564. "afin de\n"
  1565. " spécifier la clé privée."
  1566. #: src/usage_text.h:625
  1567. #, fuzzy
  1568. msgid ""
  1569. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1570. " left."
  1571. msgstr ""
  1572. " --bt-seed-unverified[=true|false] Partage (seed) les fichiers précédemment "
  1573. "téléchargés sans vérifier les \"hash\" des fichiers."
  1574. #: src/usage_text.h:628
  1575. #, fuzzy
  1576. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1577. msgstr " --xml-rpc-user=USER Définit l'utilisateur XML-RPC"
  1578. #: src/usage_text.h:630
  1579. #, fuzzy
  1580. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1581. msgstr " --xml-rpc-passwd=PASSWD Définit le mot de passe XML-RPC"
  1582. #: src/usage_text.h:632
  1583. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1584. msgstr ""
  1585. #: src/usage_text.h:634
  1586. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1587. msgstr ""
  1588. #: src/usage_text.h:636
  1589. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1590. msgstr ""
  1591. #: src/usage_text.h:638
  1592. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1593. msgstr ""
  1594. #: src/usage_text.h:640
  1595. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1596. msgstr ""
  1597. #: src/usage_text.h:642
  1598. #, fuzzy
  1599. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1600. msgstr ""
  1601. " --ftp-passwd=PASSWD Indique le mot de passe FTP de l'utilisateur.\n"
  1602. " ATTENTION ! cela affecte toutes "
  1603. "les URLs !"
  1604. #: src/usage_text.h:644
  1605. #, fuzzy
  1606. msgid ""
  1607. " --remove-control-file[=true|false] Remove control file before download. "
  1608. "Using\n"
  1609. " with --allow-overwrite=true, download always\n"
  1610. " starts from scratch. This will be useful for\n"
  1611. " users behind proxy server which disables "
  1612. "resume."
  1613. msgstr ""
  1614. " --allow-piece-length-change=true|false Si false est choisi, aria2 annule le "
  1615. "téléchargement\n"
  1616. " quand la longueur d'une pièce est différente "
  1617. "d'une autre dans\n"
  1618. " un fichier de contrôle. Si true est choisi, "
  1619. "vous pouvez continuer\n"
  1620. " mais certaines progressions du téléchargement "
  1621. "seront perdues."
  1622. #: src/usage_text.h:649
  1623. #, fuzzy
  1624. msgid ""
  1625. " --always-resume[=true|false] Always resume download. If true is given, "
  1626. "aria2\n"
  1627. " always tries to resume download and if resume "
  1628. "is\n"
  1629. " not possible, aborts download. If false is "
  1630. "given,\n"
  1631. " when all given URIs do not support resume or\n"
  1632. " aria2 encounters N URIs which does not "
  1633. "support\n"
  1634. " resume (N is the value specified using\n"
  1635. " --max-resume-failure-tries option), aria2\n"
  1636. " downloads file from scratch.\n"
  1637. " See --max-resume-failure-tries option."
  1638. msgstr ""
  1639. " --follow-torrent=true|false|mem Si true ou mem est spécifié, quand un "
  1640. "fichier\n"
  1641. " dont le suffixe est .torrent ou dont le type\n"
  1642. " de contenu est application/x-bittorrent est "
  1643. "téléchargé, aria2 le\n"
  1644. " considère comme un fichier \"torrent\" et "
  1645. "télécharge les fichiers\n"
  1646. " mentionnés dedans.\n"
  1647. " Si mem est spécifié, le fichiertorrent n'est "
  1648. "pas\n"
  1649. " écrit sur le disque, mais est juste gardé en "
  1650. "mémoire.\n"
  1651. " Si false est spécifié, l'action mentionné ci-"
  1652. "dessus\n"
  1653. " n'est pas appliquée."
  1654. #: src/usage_text.h:659
  1655. msgid ""
  1656. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1657. " downloads file from scratch when aria2 detects "
  1658. "N\n"
  1659. " number of URIs that does not support resume. "
  1660. "If N\n"
  1661. " is 0, aria2 downloads file from scratch when "
  1662. "all\n"
  1663. " given URIs do not support resume.\n"
  1664. " See --always-resume option."
  1665. msgstr ""
  1666. #: src/usage_text.h:666
  1667. #, fuzzy
  1668. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1669. msgstr " -t, --timeout=SEC Indique le délai d'expiration en secondes."
  1670. #: src/usage_text.h:668
  1671. #, fuzzy
  1672. msgid ""
  1673. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1674. " establish connection to tracker. After the\n"
  1675. " connection is established, this option makes "
  1676. "no\n"
  1677. " effect and --bt-tracker-timeout option is "
  1678. "used\n"
  1679. " instead."
  1680. msgstr ""
  1681. " --connect-timeout=SEC Définit le paramètre de délai d'attente en secondes "
  1682. "pour établir\n"
  1683. " une connection à un serveur HTTP/FTP/Proxy. "
  1684. "Une fois la connection établie,\n"
  1685. " cette option n'as pas d'autre usage et le "
  1686. "paramètre --timeout est utilisé."
  1687. #: src/usage_text.h:674
  1688. #, fuzzy
  1689. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1690. msgstr " -t, --timeout=SEC Indique le délai d'expiration en secondes."
  1691. #: src/usage_text.h:676
  1692. msgid ""
  1693. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1694. "header\n"
  1695. " and inflate response if remote server "
  1696. "responds\n"
  1697. " with 'Content-Encoding: gzip' or\n"
  1698. " 'Content-Encoding: deflate'."
  1699. msgstr ""
  1700. #: src/usage_text.h:681
  1701. #, fuzzy
  1702. msgid ""
  1703. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1704. "exit.\n"
  1705. " You can pass this output file to aria2c with -"
  1706. "i\n"
  1707. " option on restart. Please note that downloads\n"
  1708. " added by aria2.addTorrent and aria2."
  1709. "addMetalink\n"
  1710. " XML-RPC method are not saved."
  1711. msgstr ""
  1712. " --connect-timeout=SEC Définit le paramètre de délai d'attente en secondes "
  1713. "pour établir\n"
  1714. " une connection à un serveur HTTP/FTP/Proxy. "
  1715. "Une fois la connection établie,\n"
  1716. " cette option n'as pas d'autre usage et le "
  1717. "paramètre --timeout est utilisé."
  1718. #: src/version_usage.cc:57
  1719. msgid " version "
  1720. msgstr " version "
  1721. #: src/version_usage.cc:80
  1722. #, c-format
  1723. msgid "Report bugs to %s"
  1724. msgstr "Faire part des bugs à %s"
  1725. #: src/version_usage.cc:85
  1726. #, fuzzy
  1727. msgid ""
  1728. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1729. msgstr ""
  1730. "Syntaxe : aria2c [OPTIONS] [URL | FICHIER_TORRENT | FICHIER_METALINK]..."
  1731. #: src/version_usage.cc:92
  1732. msgid "Printing all options."
  1733. msgstr "Afficher toutes les options."
  1734. #: src/version_usage.cc:94
  1735. #, c-format
  1736. msgid "Printing options tagged with '%s'."
  1737. msgstr "Afficher toutes les options marquées avec '%s'."
  1738. #: src/version_usage.cc:98
  1739. #, c-format
  1740. msgid "See -h option to know other command-line options(%s)."
  1741. msgstr ""
  1742. "Regardez l'option -h pour connaître les autres options en ligne de commande(%"
  1743. "s)."
  1744. #: src/version_usage.cc:103 src/version_usage.cc:115
  1745. msgid "Options:"
  1746. msgstr "Options:"
  1747. #: src/version_usage.cc:112
  1748. #, c-format
  1749. msgid "Printing options whose name includes '%s'."
  1750. msgstr ""
  1751. #: src/version_usage.cc:120
  1752. #, c-format
  1753. msgid "No option matching with '%s'."
  1754. msgstr "Aucune option correspondant à '%s'."
  1755. #: src/version_usage.cc:128
  1756. #, fuzzy
  1757. msgid ""
  1758. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1759. "all\n"
  1760. " URIs must point to the same file or downloading will fail."
  1761. msgstr ""
  1762. " Vous pouvez spécifier plusieurs URLs. A moins que vous ne spécifiez "
  1763. "l'option -Z, toutes les URLs doivent\n"
  1764. " faire référence au même fichier ou sinon le téléchargement échouera."
  1765. #: src/version_usage.cc:130
  1766. #, fuzzy
  1767. msgid ""
  1768. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1769. " metalink files stored in a local drive. Please note that they are always\n"
  1770. " treated as a separate download."
  1771. msgstr ""
  1772. " Vous pouvez spécifier un nombre infini de fichiers torrent ou metalink \n"
  1773. "Notez bien qu'ils seront toujours traités comme des téléchargements \n"
  1774. "séparés."
  1775. #: src/version_usage.cc:135
  1776. msgid ""
  1777. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1778. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1779. "time,\n"
  1780. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1781. "file\n"
  1782. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1783. "ends\n"
  1784. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1785. "and\n"
  1786. " 'path' in torrent are added to form a URI for each file."
  1787. msgstr ""
  1788. #: src/version_usage.cc:142
  1789. #, fuzzy
  1790. msgid ""
  1791. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1792. " contains \"&\" or any characters that have special meaning in shell."
  1793. msgstr ""
  1794. " Vérifiez que l'URL est quoté avec des guillemets simple (') ou double (\") "
  1795. "surtout si elle\n"
  1796. " contient \"&\" ou tout autre caractère ayant un sens dans le shell."
  1797. #: src/version_usage.cc:146
  1798. msgid "Refer to man page for more information."
  1799. msgstr "Merci de vous reférer au manuel pour plus d'information."
  1800. #: src/message.h:57
  1801. #, fuzzy, c-format
  1802. msgid "GID#%s - Download has already completed: %s"
  1803. msgstr "#%d - Ce téléchargement est déjà complet: %s"
  1804. #: src/message.h:102
  1805. #, c-format
  1806. msgid "Unrecognized URI or unsupported protocol: %s"
  1807. msgstr "URI non reconnue ou protocole non supporté: %s"
  1808. #: src/message.h:103
  1809. #, c-format
  1810. msgid "Tracker returned warning message: %s"
  1811. msgstr "Le tracker a retourné le méssage d'alerte suivant: %s"
  1812. #: src/message.h:104
  1813. #, c-format
  1814. msgid "The segment file %s exists."
  1815. msgstr "Le fichier segment %s existe."
  1816. #: src/message.h:105
  1817. #, c-format
  1818. msgid "The segment file %s does not exist."
  1819. msgstr "Le fichier segment %s n'existe pas."
  1820. #: src/message.h:106
  1821. #, c-format
  1822. msgid "Saving the segment file %s"
  1823. msgstr "Sauvegarde du fichier segment %s"
  1824. #: src/message.h:107
  1825. msgid "The segment file was saved successfully."
  1826. msgstr "Le fichier segment a été sauvegardé avec succès."
  1827. #: src/message.h:108
  1828. #, c-format
  1829. msgid "Loading the segment file %s."
  1830. msgstr "Chargement du fichier segment %s."
  1831. #: src/message.h:109
  1832. msgid "The segment file was loaded successfully."
  1833. msgstr "Le segment a été chargé avec succès."
  1834. #: src/message.h:110
  1835. msgid "No URI to download. Download aborted."
  1836. msgstr "Aucune URI à télécharger."
  1837. #: src/message.h:111
  1838. #, c-format
  1839. msgid ""
  1840. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1841. "canceled in order to prevent your file from being truncated to 0. If you are "
  1842. "sure to download the file all over again, then delete it or add --allow-"
  1843. "overwrite=true option and restart aria2."
  1844. msgstr ""
  1845. "Le fichier %s existe, mais un fichier de contrôle (*.aria2) n'existe pas. Le "
  1846. "télechargement a été annulé pour éviter que votre fichier ne soit tronqué à "
  1847. "0. Si vous êtes sûr de vouloir télécharger le fichier encore une fois, alors "
  1848. "éffacez-le ou ajoutez l'option --allow-overwrite=true puis redémarrez aria2."
  1849. #: src/message.h:112
  1850. #, c-format
  1851. msgid "Allocating file %s, %s bytes"
  1852. msgstr "Allocation du fichier %s, %s octets"
  1853. #: src/message.h:113
  1854. msgid "File not found"
  1855. msgstr "Fichier non trouvé"
  1856. #: src/message.h:114
  1857. msgid "Not a directory"
  1858. msgstr "Ce n'est pas un dossier"
  1859. #: src/message.h:115
  1860. #, c-format
  1861. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1862. msgstr ""
  1863. "La taille de la somme de contôle est insuffisante. checksumLength=%d, "
  1864. "numChecksum=%d"
  1865. #: src/message.h:116
  1866. #, c-format
  1867. msgid "Writing file %s"
  1868. msgstr "En train d'écrire le fichier %s"
  1869. #: src/message.h:117
  1870. msgid "No peer list received."
  1871. msgstr "Aucune liste de peer reçcue."
  1872. #: src/message.h:118
  1873. #, c-format
  1874. msgid "Adding peer %s:%d"
  1875. msgstr "Ajout d'un peer %s: %d"
  1876. #: src/message.h:119
  1877. #, c-format
  1878. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1879. msgstr "Effacement de la pièce index utilisée=%d, fillRate(%%)=%d<=%d"
  1880. #: src/message.h:120
  1881. msgid "Download of selected files was complete."
  1882. msgstr "Le téléchargement des fichiers sélectionnés est terminé."
  1883. #: src/message.h:121
  1884. msgid "The download was complete."
  1885. msgstr "Le téléchargement est terminé."
  1886. #: src/message.h:122
  1887. #, c-format
  1888. msgid "Removed %d have entries."
  1889. msgstr "Removed %d have entries."
  1890. #: src/message.h:123
  1891. #, c-format
  1892. msgid "Validating file %s"
  1893. msgstr "Validation du fichier %s"
  1894. #: src/message.h:124
  1895. #, c-format
  1896. msgid "%d seconds to allocate %s byte(s)"
  1897. msgstr "%d secondes pour allouer %s octet(s)"
  1898. #: src/message.h:127
  1899. #, c-format
  1900. msgid "Metalink: Queueing %s for download."
  1901. msgstr "Metalink: place en file d'attente %s pour un téléchargement."
  1902. #: src/message.h:128
  1903. #, c-format
  1904. msgid "Download complete: %s"
  1905. msgstr "Téléchargement terminé: %s"
  1906. #: src/message.h:129
  1907. msgid "Seeding is over."
  1908. msgstr "Le partage (seeding) est terminé"
  1909. #: src/message.h:130
  1910. msgid "No chunk to verify."
  1911. msgstr "No chunk to verify."
  1912. #: src/message.h:131
  1913. #, c-format
  1914. msgid "Good chunk checksum. hash=%s"
  1915. msgstr "Somme de contrôle du chunk OK. hash=%s"
  1916. #: src/message.h:132
  1917. #, c-format
  1918. msgid "Failed to load cookies from %s"
  1919. msgstr "Impossible d'ouvrir les cookies depuis %s"
  1920. #: src/message.h:133
  1921. #, c-format
  1922. msgid ""
  1923. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1924. "support disabled."
  1925. msgstr ""
  1926. "le fichier .netrc %s n'a pas les bonnes permissions. Il devrait être 600. "
  1927. "Lesupport de ce fichier n'est donc pas pris en compte."
  1928. #: src/message.h:134
  1929. msgid "Logging started."
  1930. msgstr "Identification commencée."
  1931. #: src/message.h:135
  1932. msgid "Specify at least one URL."
  1933. msgstr "Spécifiez au moins une URL."
  1934. #: src/message.h:136
  1935. msgid "daemon failed."
  1936. msgstr "Le service a échoué."
  1937. #: src/message.h:137
  1938. #, c-format
  1939. msgid "Verification finished successfully. file=%s"
  1940. msgstr "La vérification s'est bien passée. fichier=%s"
  1941. #: src/message.h:138
  1942. #, c-format
  1943. msgid "Checksum error detected. file=%s"
  1944. msgstr "Erreur d'intégrité détectée. fichier=%s"
  1945. #: src/message.h:139
  1946. #, c-format
  1947. msgid "Incomplete range specified. %s"
  1948. msgstr "Rangée spécifiée incomplete. %s"
  1949. #: src/message.h:140
  1950. #, c-format
  1951. msgid "Failed to convert string into value: %s"
  1952. msgstr "Erreur lors de la conversion de la chaîne en valeur: %s"
  1953. #: src/message.h:141
  1954. msgid "Resource not found"
  1955. msgstr "Ressource introuvable"
  1956. #: src/message.h:142
  1957. #, c-format
  1958. msgid "File already exists. Renamed to %s."
  1959. msgstr "Le fichier existe déjà. Renommé en %s"
  1960. #: src/message.h:143
  1961. msgid "Cannot parse metalink XML file. XML may be malformed."
  1962. msgstr ""
  1963. "Impossible de réaliser l'analyse syntaxique du fichier metalink XML. Ce "
  1964. "dernier peut avoir été mal formé."
  1965. #: src/message.h:144
  1966. #, c-format
  1967. msgid "Too small payload size for %s, size=%d."
  1968. msgstr ""
  1969. "Taille de la charge utile (\"payload\") trop petite pour %s, taille=%d."
  1970. #: src/message.h:145
  1971. #, c-format
  1972. msgid ""
  1973. "Removed the defunct control file %s because the download file %s doesn't "
  1974. "exist."
  1975. msgstr ""
  1976. "Le fichier de contrôle défectueux %s a été supprimé car le fichier "
  1977. "téléchargé %s n'existe pas."
  1978. #: src/message.h:146
  1979. #, c-format
  1980. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1981. msgstr "Votre ratio de partage était de %.1f, envoyé/téléchargé=%sB/%sB"
  1982. #: src/message.h:147
  1983. #, c-format
  1984. msgid "Missing %s in torrent metainfo."
  1985. msgstr "%s manquant dans le metainfo du torrent."
  1986. #: src/message.h:148
  1987. msgid "Tracker returned null data."
  1988. msgstr "Le tracker n'a retourné aucune donnée."
  1989. #: src/message.h:149
  1990. msgid "Windows socket library initialization failed"
  1991. msgstr "L'initialisation de la librairie socket Windows a échoué."
  1992. #: src/message.h:150
  1993. #, c-format
  1994. msgid "%d second(s) has passed. Stopping application."
  1995. msgstr "%d seconde(s) sont passée(s). Arrêt de l'applicatiion"
  1996. #: src/message.h:151
  1997. #, c-format
  1998. msgid ""
  1999. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  2000. msgstr ""
  2001. "Signature sauvegardée en tant que %s. Merci de noter que aria2 ne vérifie "
  2002. "pas les signatures."
  2003. #: src/message.h:153
  2004. #, c-format
  2005. msgid "Saving signature as %s failed. Maybe file already exists."
  2006. msgstr ""
  2007. "La sauvegarde de la signature en tant que %s a echouée. Peut-être que le "
  2008. "fichier existe déjà ?"
  2009. #: src/message.h:156
  2010. #, c-format
  2011. msgid "Failed to open ServerStat file %s for read."
  2012. msgstr "Impossible d'ouvrir le fichier ServerStat %s en lecture."
  2013. #: src/message.h:157
  2014. #, c-format
  2015. msgid "ServerStat file %s loaded successfully."
  2016. msgstr "Le fichier ServerStat %s a été chargé correctement."
  2017. #: src/message.h:158
  2018. #, c-format
  2019. msgid "Failed to read ServerStat from %s."
  2020. msgstr "Impossible de lire le fichier ServerStat depuis %s."
  2021. #: src/message.h:161
  2022. #, c-format
  2023. msgid "Failed to open ServerStat file %s for write."
  2024. msgstr "Impossible d'écrire le fichier %s"
  2025. #: src/message.h:162
  2026. #, c-format
  2027. msgid "ServerStat file %s saved successfully."
  2028. msgstr "Le fichier ServerStat %s a été correctement chargée."
  2029. #: src/message.h:163
  2030. #, c-format
  2031. msgid "Failed to write ServerStat to %s."
  2032. msgstr "Impossible d'écrire le fichier ServerStat vers %s."
  2033. #: src/message.h:166
  2034. #, c-format
  2035. msgid "Failed to establish connection, cause: %s"
  2036. msgstr "Impossible d'établir une connexion, la cause est: %s"
  2037. #: src/message.h:167
  2038. #, c-format
  2039. msgid "Network problem has occurred. cause:%s"
  2040. msgstr "Un problème réseau a été detecté. La cause est: %s"
  2041. #: src/message.h:169
  2042. #, c-format
  2043. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  2044. msgstr ""
  2045. #: src/message.h:171
  2046. #, c-format
  2047. msgid "Certificate verification failed. Cause: %s"
  2048. msgstr "Vérification du certificat échouée. Cause: %s"
  2049. #: src/message.h:172
  2050. msgid "No certificate found."
  2051. msgstr "Aucun certificat trouvé."
  2052. #: src/message.h:173
  2053. msgid "Hostname not match."
  2054. msgstr "Le nom d'hôte ne corresponds pas."
  2055. #: src/message.h:174
  2056. msgid "No files to download."
  2057. msgstr "Pas de fichiers à télécharger."
  2058. #: src/message.h:176
  2059. msgid ""
  2060. "You may encounter the certificate verification error with HTTPS server. See "
  2061. "--ca-certificate and --check-certificate option."
  2062. msgstr ""
  2063. #: src/message.h:178
  2064. #, c-format
  2065. msgid "Printing the contents of file '%s'..."
  2066. msgstr "Impression en cours du contenu du fichier '%s'..."
  2067. #: src/message.h:179
  2068. msgid "This file is neither Torrent nor Metalink file. Skipping."
  2069. msgstr "Ce fichier n'est ni un Torrent ou un Metalink. Ignorer."
  2070. #: src/message.h:184
  2071. #, c-format
  2072. msgid "Is '%s' a file?"
  2073. msgstr "Est-ce que '%s' est un fichier ?"
  2074. #: src/message.h:185
  2075. #, c-format
  2076. msgid "Failed to find given interface %s, cause: %s"
  2077. msgstr ""
  2078. #: src/message.h:187
  2079. #, c-format
  2080. msgid "Saved metadata as %s."
  2081. msgstr ""
  2082. #: src/message.h:188
  2083. #, fuzzy, c-format
  2084. msgid "Saving metadata as %s failed. Maybe file already exists."
  2085. msgstr ""
  2086. "La sauvegarde de la signature en tant que %s a echouée. Peut-être que le "
  2087. "fichier existe déjà ?"
  2088. #: src/message.h:190
  2089. #, c-format
  2090. msgid "Detected directory traversal directive in %s"
  2091. msgstr ""
  2092. #: src/message.h:192
  2093. msgid "Timeout."
  2094. msgstr "Temps d'attente dépassé (timeout)"
  2095. #: src/message.h:193
  2096. msgid "Invalid chunk size."
  2097. msgstr "Taille de block invalide"
  2098. #: src/message.h:194
  2099. #, c-format
  2100. msgid "Too large chunk. size=%d"
  2101. msgstr "Bloc trop grand. taille=%d"
  2102. #: src/message.h:195
  2103. msgid "Invalid header."
  2104. msgstr "En-tête invalide"
  2105. #: src/message.h:196
  2106. msgid "Invalid response."
  2107. msgstr "Réponse invalide"
  2108. #: src/message.h:197
  2109. msgid "No header found."
  2110. msgstr "Aucun en-tête trouvé"
  2111. #: src/message.h:198
  2112. msgid "No status header."
  2113. msgstr "Aucun en-tête de status."
  2114. #: src/message.h:199
  2115. msgid "Proxy connection failed."
  2116. msgstr "La connexion proxy a échoué."
  2117. #: src/message.h:200
  2118. msgid "Connection failed."
  2119. msgstr "La connexion a échoué."
  2120. #: src/message.h:201
  2121. #, c-format
  2122. msgid ""
  2123. "The requested filename and the previously registered one are not same. "
  2124. "Expected:%s Actual:%s"
  2125. msgstr ""
  2126. "Le fichié demandé et celui enregistré précédemment sont différents. Taille "
  2127. "du fichier attendue: %s En réalité: %s"
  2128. #: src/message.h:202
  2129. #, c-format
  2130. msgid "The response status is not successful. status=%d"
  2131. msgstr "La réponse a échoué. Status=%d"
  2132. #: src/message.h:203
  2133. #, c-format
  2134. msgid "Too large file size. size=%s"
  2135. msgstr "Fichier trop grand. Taille=%s"
  2136. #: src/message.h:204
  2137. #, c-format
  2138. msgid "Transfer encoding %s is not supported."
  2139. msgstr "Le type de transfert %s n'est pas supporté."
  2140. #: src/message.h:205
  2141. #, c-format
  2142. msgid "SSL initialization failed: %s"
  2143. msgstr "L'initialisation SSL a échouée: %s"
  2144. #: src/message.h:206
  2145. msgid "SSL I/O error"
  2146. msgstr "Erreur E/S SSL"
  2147. #: src/message.h:207
  2148. msgid "SSL protocol error"
  2149. msgstr "erreur de protocole SSL"
  2150. #: src/message.h:208
  2151. #, c-format
  2152. msgid "SSL unknown error %d"
  2153. msgstr "érreur SSL inconnue %d"
  2154. #: src/message.h:209
  2155. #, c-format
  2156. msgid "SSL initialization failed: OpenSSL connect error %d"
  2157. msgstr "L'initialisation SSL a échouée: érreur de connexion OpenSSL SSL %d"
  2158. #: src/message.h:210
  2159. #, c-format
  2160. msgid "Size mismatch Expected:%s Actual:%s"
  2161. msgstr "La taille ne coïncide pas. Attendue: %s En réalité: %s"
  2162. #: src/message.h:211
  2163. msgid "Authorization failed."
  2164. msgstr "L'autorisation a échoué."
  2165. #: src/message.h:212
  2166. msgid "Got EOF from the server."
  2167. msgstr "Obtenir la fin du fichier (EOF) du serveur."
  2168. #: src/message.h:213
  2169. msgid "Got EOF from peer."
  2170. msgstr "Obtenir la fin du fichier (EOF) du partenaire."
  2171. #: src/message.h:214
  2172. msgid "Malformed meta info."
  2173. msgstr "Métainfos malformées."
  2174. #: src/message.h:216
  2175. #, c-format
  2176. msgid "Failed to open the file %s, cause: %s"
  2177. msgstr "Impossible d'ouvrir le fichier %s, cause: %s"
  2178. #: src/message.h:217
  2179. #, c-format
  2180. msgid "Failed to write into the file %s, cause: %s"
  2181. msgstr "Impossible d'écrire le fichier %s, cause: %s"
  2182. #: src/message.h:218
  2183. #, c-format
  2184. msgid "Failed to read from the file %s, cause: %s"
  2185. msgstr "Impossible de lire le fichier %s, cause: %s"
  2186. #: src/message.h:219
  2187. msgid "Failed to read data from disk."
  2188. msgstr "Impossible de lire les données depuis le disque."
  2189. #: src/message.h:220
  2190. #, c-format
  2191. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2192. msgstr ""
  2193. "Impossible de calculer la somme SHA1 du ou d'une partie du fichier %s, "
  2194. "cause: %s"
  2195. #: src/message.h:221
  2196. #, c-format
  2197. msgid "Failed to seek the file %s, cause: %s"
  2198. msgstr "Impossible de chercher le fichier %s, cause: %s"
  2199. #: src/message.h:222
  2200. #, c-format
  2201. msgid "The offset is out of range, offset=%s"
  2202. msgstr "Le décalage est trop grand, décalage=%s"
  2203. #: src/message.h:223
  2204. #, c-format
  2205. msgid "%s is not a directory."
  2206. msgstr "%s n'est pas un dossier"
  2207. #: src/message.h:224
  2208. #, c-format
  2209. msgid "Failed to make the directory %s, cause: %s"
  2210. msgstr "Impossible de créer le dossier %s, cause: %s"
  2211. #: src/message.h:225
  2212. #, c-format
  2213. msgid "Failed to open the segment file %s, cause: %s"
  2214. msgstr "Impossible d'ouvrir le fichier de segment %s, cause: %s"
  2215. #: src/message.h:226
  2216. #, c-format
  2217. msgid "Failed to write into the segment file %s, cause: %s"
  2218. msgstr "Impossible d'écrire dans le fichier de segment %s, cause: %s"
  2219. #: src/message.h:227
  2220. #, c-format
  2221. msgid "Failed to read from the segment file %s, cause: %s"
  2222. msgstr "Impossible de lire à partir du fichier de segment %s, cause: %s"
  2223. #: src/message.h:229
  2224. #, c-format
  2225. msgid "Failed to open a socket, cause: %s"
  2226. msgstr "Impossible d'ouvrir une connexion socket, cause: %s"
  2227. #: src/message.h:230
  2228. #, c-format
  2229. msgid "Failed to set a socket option, cause: %s"
  2230. msgstr "Impossible de définir une option de connexion socket, cause: %s"
  2231. #: src/message.h:231
  2232. #, c-format
  2233. msgid "Failed to set a socket as blocking, cause: %s"
  2234. msgstr "Failed to set a socket as blocking, cause: %s"
  2235. #: src/message.h:232
  2236. #, c-format
  2237. msgid "Failed to set a socket as non-blocking, cause: %s"
  2238. msgstr "Failed to set a socket as non-blocking, cause: %s"
  2239. #: src/message.h:233
  2240. #, c-format
  2241. msgid "Failed to bind a socket, cause: %s"
  2242. msgstr "Impossible d'unir une connexion socket, cause: %s"
  2243. #: src/message.h:234
  2244. #, c-format
  2245. msgid "Failed to listen to a socket, cause: %s"
  2246. msgstr "Impossible d'écouter une connexion socket, cause: %s"
  2247. #: src/message.h:235
  2248. #, c-format
  2249. msgid "Failed to accept a peer connection, cause: %s"
  2250. msgstr "Impossible d'accepter une connexion à un autre ordinateur, cause: %s"
  2251. #: src/message.h:236
  2252. #, c-format
  2253. msgid "Failed to get the name of socket, cause: %s"
  2254. msgstr "Impossible de récupérer le nom de la connexion socket, cause: %s"
  2255. #: src/message.h:237
  2256. #, c-format
  2257. msgid "Failed to get the name of connected peer, cause: %s"
  2258. msgstr "Impossible d'obtenir le nom de l'autre ordinateur, cause: %s"
  2259. #: src/message.h:238
  2260. #, c-format
  2261. msgid "Failed to resolve the hostname %s, cause: %s"
  2262. msgstr "Impossible de récupérer le nom de l'hôte %s, cause: %s"
  2263. #: src/message.h:239
  2264. #, c-format
  2265. msgid "Failed to connect to the host %s, cause: %s"
  2266. msgstr "Impossible de se connecter à l'hôte %s, cause: %s"
  2267. #: src/message.h:240
  2268. #, c-format
  2269. msgid "Failed to check whether the socket is writable, cause: %s"
  2270. msgstr ""
  2271. "Impossible de vérifier si la connexion socket est inscriptible, cause: %s"
  2272. #: src/message.h:241
  2273. #, c-format
  2274. msgid "Failed to check whether the socket is readable, cause: %s"
  2275. msgstr "Impossible de vérifier si la connexion socket est lisible, cause: %s"
  2276. #: src/message.h:242
  2277. #, c-format
  2278. msgid "Failed to send data, cause: %s"
  2279. msgstr "Impossible d'envoyer les données, cause: %s"
  2280. #: src/message.h:243
  2281. #, c-format
  2282. msgid "Failed to receive data, cause: %s"
  2283. msgstr "Impossible de recevoir les données, cause: %s"
  2284. #: src/message.h:244
  2285. #, c-format
  2286. msgid "Failed to peek data, cause: %s"
  2287. msgstr "Impossible de lire les données, cause: %s"
  2288. #: src/message.h:245
  2289. #, c-format
  2290. msgid "Unknown socket error %d (0x%x)"
  2291. msgstr "Erreur de socket inconnue %d (0x%x)"
  2292. #: src/message.h:246
  2293. #, c-format
  2294. msgid "File %s exists, but %s does not exist."
  2295. msgstr "Le fichier %s existe, mais %s n'existe pas"
  2296. #: src/message.h:247
  2297. #, c-format
  2298. msgid "Invalid payload size for %s, size=%d. It should be %d."
  2299. msgstr "Taille du fichier %s invalide, taille=%d. Il devrait faire %d."
  2300. #: src/message.h:248
  2301. #, c-format
  2302. msgid "Invalid ID=%d for %s. It should be %d."
  2303. msgstr "ID invalide=%d pour %s. Ça devrait être %d."
  2304. #: src/message.h:249
  2305. #, c-format
  2306. msgid ""
  2307. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  2308. "s, actualHash=%s"
  2309. msgstr ""
  2310. "La validation du bloc a échoué. Hash=%d, décalage=%s, Hash attendu=%s, Hash ="
  2311. "%s"
  2312. #: src/message.h:250
  2313. msgid "Download aborted."
  2314. msgstr "Téléchargement interrompu."
  2315. #: src/message.h:251
  2316. #, c-format
  2317. msgid "File %s is being downloaded by other command."
  2318. msgstr ""
  2319. "Le fichier %s est déjà en train d'être téléchargé par une autre commande."
  2320. #: src/message.h:252
  2321. msgid "Insufficient checksums."
  2322. msgstr "Somme de vérification insuffisante."
  2323. #: src/message.h:253
  2324. #, c-format
  2325. msgid "Tracker returned failure reason: %s"
  2326. msgstr "Le Tracker a retourné le message d'alerte suivant: %s"
  2327. #: src/message.h:254
  2328. msgid "Flooding detected."
  2329. msgstr ""
  2330. "Réception d'une quantité anormalement élevée de données (\"flood\") détectée."
  2331. #: src/message.h:255
  2332. #, c-format
  2333. msgid ""
  2334. "Drop connection because no request/piece messages were exchanged in a "
  2335. "certain period(%d seconds)."
  2336. msgstr ""
  2337. "Coupure de connexion demandée car aucune pièce ou message n'ont été "
  2338. "échangées pendant un certain temps (%d secondes)."
  2339. #: src/message.h:256
  2340. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2341. msgstr ""
  2342. "Les informations du hash contenu dans le fichier torrent ne correspondent "
  2343. "pas à celles du fichier .aria2 ."
  2344. #: src/message.h:257
  2345. #, c-format
  2346. msgid "No such file entry %s"
  2347. msgstr "Aucune entrée de ce type %s"
  2348. #: src/message.h:258
  2349. #, c-format
  2350. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2351. msgstr "La vitesse de téléchargement est trop lente: %d <= %d(B/s), hôte:%s"
  2352. #: src/message.h:259
  2353. msgid "No HttpRequestEntry found."
  2354. msgstr "Aucune en-tête trouvée."
  2355. #: src/message.h:260
  2356. #, c-format
  2357. msgid "Got %d status, but no location header provided."
  2358. msgstr "Obtention du status %d, mais aucune en-tête de location proposée."
  2359. #: src/message.h:261
  2360. #, c-format
  2361. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2362. msgstr "Champ de l'en-tête invalide. Requête: %s-%s/%s, Réponse: %s-%s/%s"
  2363. #: src/message.h:262
  2364. msgid "No file matched with your preference."
  2365. msgstr "Aucun fichier ne correspond à votre préférence"
  2366. #: src/message.h:263
  2367. msgid "Exception caught"
  2368. msgstr "Exception détectée"
  2369. #: src/message.h:264
  2370. #, c-format
  2371. msgid "Max payload length exceeded or invalid. length = %u"
  2372. msgstr ""
  2373. "La longueur maximale du \"payload\" est excédentaire ou invalide. Longueur = "
  2374. "%u"
  2375. #: src/message.h:265
  2376. #, c-format
  2377. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2378. msgstr ""
  2379. "Taille de fichier invalide. Ne peut continuer le téléchargement %s: local %"
  2380. "s, distant %s"
  2381. #: src/BtSetup.cc:171
  2382. msgid "Errors occurred while binding port.\n"
  2383. msgstr "La jonction du port a engendré des erreurs.\n"
  2384. #~ msgid "CUID#%d - The download for one segment completed successfully."
  2385. #~ msgstr "CUID#%d - Le téléchargement d'un segment est complet."
  2386. #~ msgid "CUID#%d - No segment available."
  2387. #~ msgstr "CUID#%d - Pas de segment disponible."
  2388. #~ msgid "CUID#%d - Connecting to %s:%d"
  2389. #~ msgstr "CUID#%d - Connexion à %s:%d"
  2390. #~ msgid ""
  2391. #~ "CUID#%d - The segment changed. We send the request again with new Range "
  2392. #~ "header."
  2393. #~ msgstr ""
  2394. #~ "CUID#%d - Le segment a changé. Nous envoyons une nouvelle requête sur "
  2395. #~ "l'en-tête."
  2396. #~ msgid "CUID#%d - Redirecting to %s"
  2397. #~ msgstr "CUID#%d - Redirection vers %s"
  2398. #~ msgid ""
  2399. #~ "CUID#%d - Requesting:\n"
  2400. #~ "%s"
  2401. #~ msgstr ""
  2402. #~ "CUID#%d - Demande:\n"
  2403. #~ "%s"
  2404. #~ msgid ""
  2405. #~ "CUID#%d - Response received:\n"
  2406. #~ "%s"
  2407. #~ msgstr ""
  2408. #~ "CUID#%d - Réponse reçue:\n"
  2409. #~ "%s"
  2410. #~ msgid "CUID#%d - Download aborted. URI=%s"
  2411. #~ msgstr "CUID#%d - Téléchargement stoppé;. URI=%s"
  2412. #~ msgid "CUID#%d - Restarting the download. URI=%s"
  2413. #~ msgstr "CUID#%d - Redémarrage du téléchargement. URI=%s"
  2414. #~ msgid "CUID#%d - Download aborted."
  2415. #~ msgstr "CUID#%d - Téléchargement stoppé."
  2416. #~ msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  2417. #~ msgstr "CUID#%d - %d tentatives sans succès. Téléchargement intérrompu."
  2418. #~ msgid "CUID#%d - we got new piece. index=%d"
  2419. #~ msgstr "CUID#%d - Nous avons une nouvelle partie. index=%d"
  2420. #~ msgid "CUID#%d - we got wrong piece. index=%d"
  2421. #~ msgstr "CUID#%d - Nous avons une partie mauvaise. index=%d"
  2422. #~ msgid "CUID#%d - Download not complete: %s"
  2423. #~ msgstr "CUID#%d - Téléchargement incomplet: %s"
  2424. #~ msgid "CUID#%d - Good checksum: %s"
  2425. #~ msgstr "CUID#%d - Somme de contrôle correcte: %s"
  2426. #~ msgid "CUID#%d - Bad checksum: %s"
  2427. #~ msgstr "CUID#%d - Somme de contrôle incorrecte: %s"
  2428. #~ msgid "CUID#%d - Resolving hostname %s"
  2429. #~ msgstr "CUID#%d - Résolution du nom de domaine %s"
  2430. #~ msgid "CUID#%d - Name resolution complete: %s -> %s"
  2431. #~ msgstr "CUID#%d - Résolution du nom complète: %s -> %s"
  2432. #~ msgid "CUID#%d - Name resolution for %s failed:%s"
  2433. #~ msgstr "CUID#%d - La résolution du nom pour %s a échoué:%s"
  2434. #~ msgid "CUID#%d - DNS cache hit: %s -> %s"
  2435. #~ msgstr "CUID#%d - Le cache DNS vous donne cette valeur: %s -> %s"
  2436. #~ msgid "CUID#%d - Abort requested."
  2437. #~ msgstr "CUID#%d - Arrêt demandé."
  2438. #~ msgid "CUID#%d - Connecting to the peer %s"
  2439. #~ msgstr "CUID#%d - Connexion au peer %s"
  2440. #~ msgid ""
  2441. #~ "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  2442. #~ "blockIndex=%d"
  2443. #~ msgstr ""
  2444. #~ "CUID#%d - Pièce reçue. index=%d, commencement=%d, taille=%d, offset=%llu, "
  2445. #~ "blockIndex=%d"
  2446. #~ msgid "CUID#%d - Piece bitfield %s"
  2447. #~ msgstr "CUID#%d - Piece bitfield %s"
  2448. #~ msgid ""
  2449. #~ "CUID#%d - Reject piece message in queue because the peer has been choked. "
  2450. #~ "index=%d, begin=%d, length=%d"
  2451. #~ msgstr ""
  2452. #~ "CUID#%d - Rejet du message de la pièce dans la queue suite à une "
  2453. #~ "reception d'un message d'annulation. index=%d, begin=%d, length=%d"
  2454. #~ msgid ""
  2455. #~ "CUID#%d - Reject piece message in queue because cancel message received. "
  2456. #~ "index=%d, begin=%d, length=%d"
  2457. #~ msgstr ""
  2458. #~ "CUID#%d - Rejet du message de la pièce dans la queue suite à une "
  2459. #~ "reception d'un message d'annulation. index=%d, begin=%d, length=%d"
  2460. #~ msgid "CUID#%d - Exception caught while validating file integrity."
  2461. #~ msgstr ""
  2462. #~ "CUID#%d - \"Exception caught\" lors de la validation de l'intégrité du "
  2463. #~ "fichier."
  2464. #~ msgid "CUID#%d - Interested in the peer"
  2465. #~ msgstr "CUID#%d - Intéréssé par le peer"
  2466. #~ msgid "CUID#%d - Not interested in the peer"
  2467. #~ msgstr "CUID#%d - Non intéréssé par le peer"
  2468. #~ msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  2469. #~ msgstr ""
  2470. #~ "CUID#%d - Effacement de l'index de l'entrée demandée=%d, blockIndex=%d"
  2471. #~ msgid ""
  2472. #~ "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  2473. #~ "got choked."
  2474. #~ msgstr ""
  2475. #~ "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  2476. #~ "got choked"
  2477. #~ msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  2478. #~ msgstr ""
  2479. #~ "CUID#%d - Effacement de l'entrée blockIndex=%d demandée suite à une "
  2480. #~ "expiration du temps d'attente (\"timeout\")."
  2481. #~ msgid ""
  2482. #~ "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  2483. #~ "acquired."
  2484. #~ msgstr ""
  2485. #~ "CUID#%d - Effacement de l'entrée blockIndex=%d demandée car le bloc a été "
  2486. #~ "acquis."
  2487. #~ msgid "CUID#%d - Fast extension enabled."
  2488. #~ msgstr "CUID#%d - Extension rapide activée."
  2489. #~ msgid "CUID#%d - Extended Messaging enabled."
  2490. #~ msgstr "CUID#%d - Messagerie étendue activée."
  2491. #~ msgid "CUID#%d - Exception caught while allocating file space."
  2492. #~ msgstr ""
  2493. #~ "CUID#%d - Erreur rencontrée lors de la création du fichier durant son "
  2494. #~ "allocation"
  2495. #~ msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  2496. #~ msgstr ""
  2497. #~ "CUID#%d - Content-Disposition détecté. Utilisation de %s comme nom de "
  2498. #~ "fichier."
  2499. #~ msgid "CUID#%d - Peer %s:%d banned."
  2500. #~ msgstr "CUID#%d - le peer %s:%d est banni."
  2501. #~ msgid "CUID#%d - Using port %d for accepting new connections"
  2502. #~ msgstr ""
  2503. #~ "CUID#%d - Utilisation du port %d pour accepter de nouvellesconnexions"
  2504. #~ msgid "CUID#%d - An error occurred while binding port=%d"
  2505. #~ msgstr "CUID#%d - La jonction du port a engendré une erreur=%d"
  2506. #~ msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  2507. #~ msgstr ""
  2508. #~ "CUID#%d - Connection entrante en cours, ajout de la nouvelle commande "
  2509. #~ "CUID#%d"
  2510. #~ msgid "CUID#%d - Error in accepting connection"
  2511. #~ msgstr "CUID#%d - Erreur lors de l'acceptation de la connection"
  2512. #~ msgid "CUID#%d - Error occurred while processing tracker response."
  2513. #~ msgstr ""
  2514. #~ "CUID#%d - Une érreur s'est produite durant le traitement de la réponse du "
  2515. #~ "tracker."
  2516. #~ msgid "CUID#%d - Cannot create tracker request."
  2517. #~ msgstr "CUID#%d - Impossible de créer la requête du tracker."
  2518. #~ msgid "CUID#%d - Creating new tracker request command #%d"
  2519. #~ msgstr "CUID#%d - Creating new tracker request command #%d"
  2520. #~ msgid "CUID#%d - The peer is DHT-enabled."
  2521. #~ msgstr "CUID#%d - Ce peer a activé le DHT."
  2522. #~ msgid "Dispatching FileAllocationCommand for CUID#%d."
  2523. #~ msgstr "Dispatching FileAllocationCommand for CUID#%d."
  2524. #~ msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  2525. #~ msgstr "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  2526. #~ msgid " -o, --out=FILE The file name of the downloaded file."
  2527. #~ msgstr ""
  2528. #~ " -o, --out=FILE Le nom de fichier pour le fichier "
  2529. #~ "téléchargé."
  2530. #~ msgid "CUID#%d - Unregistering cuid from segmentManager."
  2531. #~ msgstr "CUID#%d - Suppression du CUID dans le gestionnaire de segment."
  2532. #~ msgid " -D, --daemon Run as daemon."
  2533. #~ msgstr " -D, --daemon Exécuter en tant que service."