fr.po 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141
  1. # translation of apt to French
  2. # Advanced Package Transfer - APT message translation catalog
  3. # French messages
  4. #
  5. # Pierre Machard <pmachard@tuxfamily.org>, 2002,2003,2004.
  6. # Christian Perrier <bubulle@debian.org>, 2004-2005, 2006, 2007, 2008, 2009.
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: fr\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2009-11-27 00:15+0100\n"
  12. "PO-Revision-Date: 2009-09-27 19:36+0200\n"
  13. "Last-Translator: Christian Perrier <bubulle@debian.org>\n"
  14. "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Generator: Lokalize 1.0\n"
  19. "Plural-Forms: Plural-Forms: nplurals=2; plural=n>1;\n"
  20. #: cmdline/apt-cache.cc:141
  21. #, c-format
  22. msgid "Package %s version %s has an unmet dep:\n"
  23. msgstr "Le paquet %s de version %s contient une dépendance absente :\n"
  24. #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644
  25. #: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021
  26. #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575
  27. #, c-format
  28. msgid "Unable to locate package %s"
  29. msgstr "Impossible de trouver le paquet %s"
  30. #: cmdline/apt-cache.cc:245
  31. msgid "Total package names: "
  32. msgstr "Nombre total de paquets : "
  33. #: cmdline/apt-cache.cc:285
  34. msgid " Normal packages: "
  35. msgstr " Paquets ordinaires : "
  36. #: cmdline/apt-cache.cc:286
  37. msgid " Pure virtual packages: "
  38. msgstr " Paquets entièrement virtuels : "
  39. #: cmdline/apt-cache.cc:287
  40. msgid " Single virtual packages: "
  41. msgstr " Paquets virtuels simples : "
  42. #: cmdline/apt-cache.cc:288
  43. msgid " Mixed virtual packages: "
  44. msgstr " Paquets virtuels mixtes : "
  45. #: cmdline/apt-cache.cc:289
  46. msgid " Missing: "
  47. msgstr " Manquants : "
  48. #: cmdline/apt-cache.cc:291
  49. msgid "Total distinct versions: "
  50. msgstr "Nombre de versions distinctes : "
  51. #: cmdline/apt-cache.cc:293
  52. msgid "Total distinct descriptions: "
  53. msgstr "Nombre de descriptions distinctes : "
  54. #: cmdline/apt-cache.cc:295
  55. msgid "Total dependencies: "
  56. msgstr "Nombre de dépendances : "
  57. #: cmdline/apt-cache.cc:298
  58. msgid "Total ver/file relations: "
  59. msgstr "Nombre de relations version/fichier : "
  60. #: cmdline/apt-cache.cc:300
  61. msgid "Total Desc/File relations: "
  62. msgstr "Nombre de relations description/fichier : "
  63. #: cmdline/apt-cache.cc:302
  64. msgid "Total Provides mappings: "
  65. msgstr "Nombre de relations « Provides » : "
  66. #: cmdline/apt-cache.cc:314
  67. msgid "Total globbed strings: "
  68. msgstr "Nombre de motifs rationnels : "
  69. #: cmdline/apt-cache.cc:328
  70. msgid "Total dependency version space: "
  71. msgstr "Espace occupé par les versions des dépendances : "
  72. #: cmdline/apt-cache.cc:333
  73. msgid "Total slack space: "
  74. msgstr "Espace disque gaspillé : "
  75. #: cmdline/apt-cache.cc:341
  76. msgid "Total space accounted for: "
  77. msgstr "Total de l'espace attribué : "
  78. #: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221
  79. #, c-format
  80. msgid "Package file %s is out of sync."
  81. msgstr "Fichier %s désynchronisé."
  82. #: cmdline/apt-cache.cc:1297
  83. msgid "You must give exactly one pattern"
  84. msgstr "Vous devez fournir exactement un motif"
  85. #: cmdline/apt-cache.cc:1451
  86. msgid "No packages found"
  87. msgstr "Aucun paquet n'a été trouvé"
  88. #: cmdline/apt-cache.cc:1528
  89. msgid "Package files:"
  90. msgstr "Fichiers du paquet :"
  91. #: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622
  92. msgid "Cache is out of sync, can't x-ref a package file"
  93. msgstr "Le cache est désynchronisé, impossible de référencer un fichier"
  94. #. Show any packages have explicit pins
  95. #: cmdline/apt-cache.cc:1549
  96. msgid "Pinned packages:"
  97. msgstr "Paquets étiquetés :"
  98. #: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602
  99. msgid "(not found)"
  100. msgstr "(non trouvé)"
  101. #. Installed version
  102. #: cmdline/apt-cache.cc:1582
  103. msgid " Installed: "
  104. msgstr " Installé : "
  105. #: cmdline/apt-cache.cc:1584 cmdline/apt-cache.cc:1592
  106. msgid "(none)"
  107. msgstr "(aucun)"
  108. #. Candidate Version
  109. #: cmdline/apt-cache.cc:1589
  110. msgid " Candidate: "
  111. msgstr " Candidat : "
  112. #: cmdline/apt-cache.cc:1599
  113. msgid " Package pin: "
  114. msgstr " Étiquette de paquet : "
  115. #. Show the priority tables
  116. #: cmdline/apt-cache.cc:1608
  117. msgid " Version table:"
  118. msgstr " Table de version :"
  119. #: cmdline/apt-cache.cc:1623
  120. #, c-format
  121. msgid " %4i %s\n"
  122. msgstr " %4i %s\n"
  123. #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70
  124. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
  125. #: cmdline/apt-get.cc:2653 cmdline/apt-sortpkgs.cc:144
  126. #, c-format
  127. msgid "%s %s for %s compiled on %s %s\n"
  128. msgstr "%s %s pour %s compilé sur %s %s\n"
  129. #: cmdline/apt-cache.cc:1725
  130. msgid ""
  131. "Usage: apt-cache [options] command\n"
  132. " apt-cache [options] add file1 [file2 ...]\n"
  133. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  134. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  135. "\n"
  136. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  137. "cache files, and query information from them\n"
  138. "\n"
  139. "Commands:\n"
  140. " add - Add a package file to the source cache\n"
  141. " gencaches - Build both the package and source cache\n"
  142. " showpkg - Show some general information for a single package\n"
  143. " showsrc - Show source records\n"
  144. " stats - Show some basic statistics\n"
  145. " dump - Show the entire file in a terse form\n"
  146. " dumpavail - Print an available file to stdout\n"
  147. " unmet - Show unmet dependencies\n"
  148. " search - Search the package list for a regex pattern\n"
  149. " show - Show a readable record for the package\n"
  150. " depends - Show raw dependency information for a package\n"
  151. " rdepends - Show reverse dependency information for a package\n"
  152. " pkgnames - List the names of all packages in the system\n"
  153. " dotty - Generate package graphs for GraphViz\n"
  154. " xvcg - Generate package graphs for xvcg\n"
  155. " policy - Show policy settings\n"
  156. "\n"
  157. "Options:\n"
  158. " -h This help text.\n"
  159. " -p=? The package cache.\n"
  160. " -s=? The source cache.\n"
  161. " -q Disable progress indicator.\n"
  162. " -i Show only important deps for the unmet command.\n"
  163. " -c=? Read this configuration file\n"
  164. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  165. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  166. msgstr ""
  167. "Usage : apt-cache [options] commande\n"
  168. " apt-cache [options] add fichier1 [fichier2 ...]\n"
  169. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  170. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  171. "\n"
  172. "apt-cache est un outil de bas niveau pour manipuler les fichiers de cache\n"
  173. "pour les binaires, et pour en obtenir des informations.\n"
  174. "\n"
  175. "Commandes :\n"
  176. " add - Ajoute un paquet au cache source\n"
  177. " gencaches - Construit le cache des sources et celui des binaires\n"
  178. " showpkg - Affiche quelques informations générales pour un unique paquet\n"
  179. " showsrc - Affiche les enregistrements des sources\n"
  180. " stats - Affiche quelques statistiques de base\n"
  181. " dump - Affiche la totalité des fichiers dans un formulaire succinct\n"
  182. " dumpavail - Affiche une liste de fichiers disponibles sur la sortie "
  183. "standard\n"
  184. " unmet - Affiche les dépendances manquantes\n"
  185. " search - Cherche une expression rationnelle dans la liste des paquets\n"
  186. " show - Affiche la description du paquet\n"
  187. " depends - Affiche toutes les dépendances d'un paquet\n"
  188. " rdepends - Affiche les dépendances inverses d'un paquet\n"
  189. " pkgnames - Liste le nom de tous les paquets du système\n"
  190. " dotty - Génère un graphe des paquets pour GraphViz\n"
  191. " xvcg - Génère un graphe des paquets pour xvcg\n"
  192. " policy - Affiche l'étiquetage (Pin) en vigueur\n"
  193. "\n"
  194. "Options :\n"
  195. " -h Ce texte d'aide\n"
  196. " -p=? Le cache des paquets\n"
  197. " -s=? Le cache des sources\n"
  198. " -q Enlève l'indicateur de progression\n"
  199. " -i Affiche seulement les dépendances importantes pour la commande "
  200. "« unmet »\n"
  201. " -c=? Lit ce fichier de configuration\n"
  202. " -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n"
  203. "Regardez les pages de manuel de apt-cache(8) et apt.conf(5) pour plus\n"
  204. "d'informations.\n"
  205. #: cmdline/apt-cdrom.cc:77
  206. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  207. msgstr ""
  208. "Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »"
  209. #: cmdline/apt-cdrom.cc:92
  210. msgid "Please insert a Disc in the drive and press enter"
  211. msgstr ""
  212. "Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée"
  213. #: cmdline/apt-cdrom.cc:114
  214. msgid "Repeat this process for the rest of the CDs in your set."
  215. msgstr ""
  216. "Veuillez répéter cette opération pour tous les disques de votre jeu de "
  217. "cédéroms."
  218. #: cmdline/apt-config.cc:41
  219. msgid "Arguments not in pairs"
  220. msgstr "Les arguments ne sont pas en parité"
  221. #: cmdline/apt-config.cc:76
  222. msgid ""
  223. "Usage: apt-config [options] command\n"
  224. "\n"
  225. "apt-config is a simple tool to read the APT config file\n"
  226. "\n"
  227. "Commands:\n"
  228. " shell - Shell mode\n"
  229. " dump - Show the configuration\n"
  230. "\n"
  231. "Options:\n"
  232. " -h This help text.\n"
  233. " -c=? Read this configuration file\n"
  234. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  235. msgstr ""
  236. "Usage : apt-config [options] commande\n"
  237. "\n"
  238. "apt-config est un outil simple pour lire le fichier de configuration d'APT\n"
  239. "\n"
  240. "Commandes :\n"
  241. " shell - Mode console\n"
  242. " dump - Affiche la configuration\n"
  243. "\n"
  244. "Options :\n"
  245. " -h Ce texte d'aide\n"
  246. " -c=? Lit ce fichier de configuration\n"
  247. " -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n"
  248. #: cmdline/apt-extracttemplates.cc:98
  249. #, c-format
  250. msgid "%s not a valid DEB package."
  251. msgstr "%s n'est pas un paquet Debian valide."
  252. #: cmdline/apt-extracttemplates.cc:232
  253. msgid ""
  254. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  255. "\n"
  256. "apt-extracttemplates is a tool to extract config and template info\n"
  257. "from debian packages\n"
  258. "\n"
  259. "Options:\n"
  260. " -h This help text\n"
  261. " -t Set the temp dir\n"
  262. " -c=? Read this configuration file\n"
  263. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  264. msgstr ""
  265. "Usage : apt-extracttemplates fichier1 [fichier2 ...]\n"
  266. "\n"
  267. "apt-extracttemplates est un outil pour extraire la configuration et les\n"
  268. "informations des gabarits des paquets Debian\n"
  269. "\n"
  270. "Options :\n"
  271. " -h Ce texte d'aide\n"
  272. " -t Place le répertoire temporaire\n"
  273. " -c=? Lit ce fichier de configuration\n"
  274. " -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n"
  275. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830
  276. #, c-format
  277. msgid "Unable to write to %s"
  278. msgstr "Impossible d'écrire sur %s"
  279. #: cmdline/apt-extracttemplates.cc:310
  280. msgid "Cannot get debconf version. Is debconf installed?"
  281. msgstr ""
  282. "Impossible d'obtenir la version de debconf. Est-ce que debconf est installé ?"
  283. #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
  284. msgid "Package extension list is too long"
  285. msgstr "La liste d'extension du paquet est trop longue"
  286. #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
  287. #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
  288. #: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
  289. #, c-format
  290. msgid "Error processing directory %s"
  291. msgstr "Erreur lors du traitement du répertoire %s"
  292. #: ftparchive/apt-ftparchive.cc:251
  293. msgid "Source extension list is too long"
  294. msgstr "La liste d'extension des sources est trop grande"
  295. #: ftparchive/apt-ftparchive.cc:368
  296. msgid "Error writing header to contents file"
  297. msgstr "Erreur lors de l'écriture de l'en-tête du fichier contenu"
  298. #: ftparchive/apt-ftparchive.cc:398
  299. #, c-format
  300. msgid "Error processing contents %s"
  301. msgstr "Erreur du traitement du contenu %s"
  302. #: ftparchive/apt-ftparchive.cc:553
  303. msgid ""
  304. "Usage: apt-ftparchive [options] command\n"
  305. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  306. " sources srcpath [overridefile [pathprefix]]\n"
  307. " contents path\n"
  308. " release path\n"
  309. " generate config [groups]\n"
  310. " clean config\n"
  311. "\n"
  312. "apt-ftparchive generates index files for Debian archives. It supports\n"
  313. "many styles of generation from fully automated to functional replacements\n"
  314. "for dpkg-scanpackages and dpkg-scansources\n"
  315. "\n"
  316. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  317. "Package file contains the contents of all the control fields from\n"
  318. "each package as well as the MD5 hash and filesize. An override file\n"
  319. "is supported to force the value of Priority and Section.\n"
  320. "\n"
  321. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  322. "The --source-override option can be used to specify a src override file\n"
  323. "\n"
  324. "The 'packages' and 'sources' command should be run in the root of the\n"
  325. "tree. BinaryPath should point to the base of the recursive search and \n"
  326. "override file should contain the override flags. Pathprefix is\n"
  327. "appended to the filename fields if present. Example usage from the \n"
  328. "Debian archive:\n"
  329. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  330. " dists/potato/main/binary-i386/Packages\n"
  331. "\n"
  332. "Options:\n"
  333. " -h This help text\n"
  334. " --md5 Control MD5 generation\n"
  335. " -s=? Source override file\n"
  336. " -q Quiet\n"
  337. " -d=? Select the optional caching database\n"
  338. " --no-delink Enable delinking debug mode\n"
  339. " --contents Control contents file generation\n"
  340. " -c=? Read this configuration file\n"
  341. " -o=? Set an arbitrary configuration option"
  342. msgstr ""
  343. "Usage : apt-ftparchive [options] commande\n"
  344. "Commandes : paquets binarypath [fichier d'« override » [chemin du préfixe]]\n"
  345. " sources srcpath [fichier d'« override » [chemin du préfixe]]\n"
  346. " contents path\n"
  347. " release path\n"
  348. " generate config [groupes]\n"
  349. " clean config\n"
  350. "\n"
  351. "apt-ftparchive génère des fichiers d'index pour les archives Debian. Il\n"
  352. "supporte de nombreux types de génération, d'une automatisation complète à\n"
  353. "des remplacements fonctionnels pour dpkg-scanpackages et dpkg-scansources\n"
  354. "\n"
  355. "apt-ftparchive génère les fichiers de paquets à partir d'un arbre de .debs.\n"
  356. "Le fichier des paquets contient les contenus de tous les champs de contrôle\n"
  357. "de chaque paquet aussi bien que les hachés MD5 et la taille du fichier. Un\n"
  358. "fichier d'« override » est accepté pour forcer la valeur des priorités et\n"
  359. "des sections\n"
  360. "\n"
  361. "De façon similaire, apt-ftparchive génère des fichiers de source à partir\n"
  362. "d'un arbre de .dscs. L'option --source-override peut être employée pour\n"
  363. "spécifier un fichier src d'« override »\n"
  364. "\n"
  365. "Les commandes « packages » et « sources » devraient être démarrées à la\n"
  366. "racine de l'arbre. « BinaryPath » devrait pointer sur la base d'une\n"
  367. "recherche récursive et le fichier d'« override » devrait contenir les\n"
  368. "drapeaux d'annulation. « Pathprefix » est ajouté au champ du non de\n"
  369. "fichier s'il est présent. Exemple d'utilisation d'archive Debian :\n"
  370. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  371. " dists/potato/main/binary-i386/Packages\n"
  372. "\n"
  373. "Options :\n"
  374. " -h Ce texte d'aide\n"
  375. " --md5 Contrôle la génération des MD5\n"
  376. " -s=? Fichier d'« override » pour les sources\n"
  377. " -q Silencieux\n"
  378. " -d=? Sélectionne la base de données optionnelle de cache\n"
  379. " --no-delink Permet le mode de débogage délié\n"
  380. " --contents Contrôle la génération de fichier\n"
  381. " -c=? Lit ce fichier de configuration\n"
  382. " -o=? Place une option de configuration arbitraire"
  383. #: ftparchive/apt-ftparchive.cc:759
  384. msgid "No selections matched"
  385. msgstr "Aucune sélection ne correspond"
  386. #: ftparchive/apt-ftparchive.cc:832
  387. #, c-format
  388. msgid "Some files are missing in the package file group `%s'"
  389. msgstr ""
  390. "Quelques fichiers sont manquants dans le groupe de fichiers de paquets « %s »"
  391. #: ftparchive/cachedb.cc:43
  392. #, c-format
  393. msgid "DB was corrupted, file renamed to %s.old"
  394. msgstr "Base de données corrompue, fichier renommé en %s.old"
  395. #: ftparchive/cachedb.cc:61
  396. #, c-format
  397. msgid "DB is old, attempting to upgrade %s"
  398. msgstr "Base de données ancienne, tentative de mise à jour de %s\""
  399. #: ftparchive/cachedb.cc:72
  400. msgid ""
  401. "DB format is invalid. If you upgraded from a older version of apt, please "
  402. "remove and re-create the database."
  403. msgstr ""
  404. "Le format de la base de données n'est pas valable. Si vous mettez APT à "
  405. "jour, veuillez supprimer puis recréer la base de données."
  406. #: ftparchive/cachedb.cc:77
  407. #, c-format
  408. msgid "Unable to open DB file %s: %s"
  409. msgstr "Impossible d'ouvrir le fichier de base de données %s : %s"
  410. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  411. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  412. #, c-format
  413. msgid "Failed to stat %s"
  414. msgstr "Impossible de statuer %s"
  415. #: ftparchive/cachedb.cc:238
  416. msgid "Archive has no control record"
  417. msgstr "L'archive n'a pas d'enregistrement de contrôle"
  418. #: ftparchive/cachedb.cc:444
  419. msgid "Unable to get a cursor"
  420. msgstr "Impossible d'obtenir un curseur"
  421. #: ftparchive/writer.cc:76
  422. #, c-format
  423. msgid "W: Unable to read directory %s\n"
  424. msgstr "A : Impossible de lire le contenu du répertoire %s\n"
  425. #: ftparchive/writer.cc:81
  426. #, c-format
  427. msgid "W: Unable to stat %s\n"
  428. msgstr "A : Impossible de statuer %s\n"
  429. #: ftparchive/writer.cc:132
  430. msgid "E: "
  431. msgstr "E : "
  432. #: ftparchive/writer.cc:134
  433. msgid "W: "
  434. msgstr "A : "
  435. #: ftparchive/writer.cc:141
  436. msgid "E: Errors apply to file "
  437. msgstr "E : des erreurs sont survenues sur le fichier "
  438. #: ftparchive/writer.cc:158 ftparchive/writer.cc:188
  439. #, c-format
  440. msgid "Failed to resolve %s"
  441. msgstr "Impossible de résoudre %s"
  442. #: ftparchive/writer.cc:170
  443. msgid "Tree walking failed"
  444. msgstr "Échec du parcours de l'arbre"
  445. #: ftparchive/writer.cc:195
  446. #, c-format
  447. msgid "Failed to open %s"
  448. msgstr "Impossible d'ouvrir %s"
  449. #: ftparchive/writer.cc:254
  450. #, c-format
  451. msgid " DeLink %s [%s]\n"
  452. msgstr " Délier %s [%s]\n"
  453. #: ftparchive/writer.cc:262
  454. #, c-format
  455. msgid "Failed to readlink %s"
  456. msgstr "Impossible de lire le lien %s"
  457. #: ftparchive/writer.cc:266
  458. #, c-format
  459. msgid "Failed to unlink %s"
  460. msgstr "Impossible de délier %s"
  461. #: ftparchive/writer.cc:273
  462. #, c-format
  463. msgid "*** Failed to link %s to %s"
  464. msgstr "*** Impossible de lier %s à %s"
  465. #: ftparchive/writer.cc:283
  466. #, c-format
  467. msgid " DeLink limit of %sB hit.\n"
  468. msgstr " Seuil de delink de %so atteint.\n"
  469. #: ftparchive/writer.cc:388
  470. msgid "Archive had no package field"
  471. msgstr "L'archive ne possède pas de champ de paquet"
  472. #: ftparchive/writer.cc:396 ftparchive/writer.cc:627
  473. #, c-format
  474. msgid " %s has no override entry\n"
  475. msgstr "%s ne possède pas d'entrée « override »\n"
  476. #: ftparchive/writer.cc:457 ftparchive/writer.cc:715
  477. #, c-format
  478. msgid " %s maintainer is %s not %s\n"
  479. msgstr " le responsable de %s est %s et non %s\n"
  480. #: ftparchive/writer.cc:637
  481. #, c-format
  482. msgid " %s has no source override entry\n"
  483. msgstr " %s ne possède pas d'entrée « source override »\n"
  484. #: ftparchive/writer.cc:641
  485. #, c-format
  486. msgid " %s has no binary override entry either\n"
  487. msgstr " %s ne possède pas également pas d'entrée « binary override »\n"
  488. #: ftparchive/contents.cc:321
  489. #, c-format
  490. msgid "Internal error, could not locate member %s"
  491. msgstr "Erreur interne, ne peut localiser la partie %s"
  492. #: ftparchive/contents.cc:358 ftparchive/contents.cc:389
  493. msgid "realloc - Failed to allocate memory"
  494. msgstr "realloc - Échec de l'allocation de mémoire"
  495. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  496. #, c-format
  497. msgid "Unable to open %s"
  498. msgstr "Impossible d'ouvrir %s"
  499. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  500. #, c-format
  501. msgid "Malformed override %s line %lu #1"
  502. msgstr "Entrée « override » %s mal formée ligne %lu n° 1"
  503. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  504. #, c-format
  505. msgid "Malformed override %s line %lu #2"
  506. msgstr "Entrée « override » %s mal formée %lu n° 2"
  507. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  508. #, c-format
  509. msgid "Malformed override %s line %lu #3"
  510. msgstr "Entrée « override » %s mal formée %lu n° 3"
  511. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  512. #, c-format
  513. msgid "Failed to read the override file %s"
  514. msgstr "Impossible de lire le fichier d'« override » %s"
  515. #: ftparchive/multicompress.cc:72
  516. #, c-format
  517. msgid "Unknown compression algorithm '%s'"
  518. msgstr "Algorithme de compression « %s » inconnu"
  519. #: ftparchive/multicompress.cc:102
  520. #, c-format
  521. msgid "Compressed output %s needs a compression set"
  522. msgstr "La sortie compressée %s a besoin d'un ensemble de compression"
  523. #: ftparchive/multicompress.cc:169 methods/rsh.cc:91
  524. msgid "Failed to create IPC pipe to subprocess"
  525. msgstr "Impossible de créer le tube IPC sur le sous-processus"
  526. #: ftparchive/multicompress.cc:195
  527. msgid "Failed to create FILE*"
  528. msgstr "Impossible de créer FILE*"
  529. #: ftparchive/multicompress.cc:198
  530. msgid "Failed to fork"
  531. msgstr "Échec du fork"
  532. #: ftparchive/multicompress.cc:212
  533. msgid "Compress child"
  534. msgstr "Fils compressé"
  535. #: ftparchive/multicompress.cc:235
  536. #, c-format
  537. msgid "Internal error, failed to create %s"
  538. msgstr "Erreur interne, impossible de créer %s"
  539. #: ftparchive/multicompress.cc:286
  540. msgid "Failed to create subprocess IPC"
  541. msgstr "Impossible de créer un sous-processus IPC"
  542. #: ftparchive/multicompress.cc:321
  543. msgid "Failed to exec compressor "
  544. msgstr "Impossible d'exécuter la compression "
  545. #: ftparchive/multicompress.cc:360
  546. msgid "decompressor"
  547. msgstr "décompacteur"
  548. #: ftparchive/multicompress.cc:403
  549. msgid "IO to subprocess/file failed"
  550. msgstr "Échec d'entrée/sortie du sous-processus sur le fichier"
  551. #: ftparchive/multicompress.cc:455
  552. msgid "Failed to read while computing MD5"
  553. msgstr "Impossible de lire lors du calcul de la somme MD5"
  554. #: ftparchive/multicompress.cc:472
  555. #, c-format
  556. msgid "Problem unlinking %s"
  557. msgstr "Problème en déliant %s"
  558. #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
  559. #, c-format
  560. msgid "Failed to rename %s to %s"
  561. msgstr "Impossible de changer le nom %s en %s"
  562. #: cmdline/apt-get.cc:127
  563. msgid "Y"
  564. msgstr "O"
  565. #: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1718
  566. #, c-format
  567. msgid "Regex compilation error - %s"
  568. msgstr "Erreur de compilation de l'expression rationnelle - %s"
  569. #: cmdline/apt-get.cc:244
  570. msgid "The following packages have unmet dependencies:"
  571. msgstr "Les paquets suivants contiennent des dépendances non satisfaites :"
  572. #: cmdline/apt-get.cc:334
  573. #, c-format
  574. msgid "but %s is installed"
  575. msgstr "mais %s est installé"
  576. #: cmdline/apt-get.cc:336
  577. #, c-format
  578. msgid "but %s is to be installed"
  579. msgstr "mais %s devra être installé"
  580. #: cmdline/apt-get.cc:343
  581. msgid "but it is not installable"
  582. msgstr "mais il n'est pas installable"
  583. #: cmdline/apt-get.cc:345
  584. msgid "but it is a virtual package"
  585. msgstr "mais c'est un paquet virtuel"
  586. #: cmdline/apt-get.cc:348
  587. msgid "but it is not installed"
  588. msgstr "mais il n'est pas installé"
  589. #: cmdline/apt-get.cc:348
  590. msgid "but it is not going to be installed"
  591. msgstr "mais ne sera pas installé"
  592. #: cmdline/apt-get.cc:353
  593. msgid " or"
  594. msgstr " ou"
  595. #: cmdline/apt-get.cc:382
  596. msgid "The following NEW packages will be installed:"
  597. msgstr "Les NOUVEAUX paquets suivants seront installés :"
  598. #: cmdline/apt-get.cc:408
  599. msgid "The following packages will be REMOVED:"
  600. msgstr "Les paquets suivants seront ENLEVÉS :"
  601. #: cmdline/apt-get.cc:430
  602. msgid "The following packages have been kept back:"
  603. msgstr "Les paquets suivants ont été conservés :"
  604. #: cmdline/apt-get.cc:451
  605. msgid "The following packages will be upgraded:"
  606. msgstr "Les paquets suivants seront mis à jour :"
  607. #: cmdline/apt-get.cc:472
  608. msgid "The following packages will be DOWNGRADED:"
  609. msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :"
  610. #: cmdline/apt-get.cc:492
  611. msgid "The following held packages will be changed:"
  612. msgstr "Les paquets retenus suivants seront changés :"
  613. #: cmdline/apt-get.cc:545
  614. #, c-format
  615. msgid "%s (due to %s) "
  616. msgstr "%s (en raison de %s) "
  617. #: cmdline/apt-get.cc:553
  618. msgid ""
  619. "WARNING: The following essential packages will be removed.\n"
  620. "This should NOT be done unless you know exactly what you are doing!"
  621. msgstr ""
  622. "ATTENTION : Les paquets essentiels suivants vont être enlevés.\n"
  623. "Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n"
  624. "que vous êtes en train de faire."
  625. #: cmdline/apt-get.cc:584
  626. #, c-format
  627. msgid "%lu upgraded, %lu newly installed, "
  628. msgstr "%lu mis à jour, %lu nouvellement installés, "
  629. #: cmdline/apt-get.cc:588
  630. #, c-format
  631. msgid "%lu reinstalled, "
  632. msgstr "%lu réinstallés, "
  633. #: cmdline/apt-get.cc:590
  634. #, c-format
  635. msgid "%lu downgraded, "
  636. msgstr "%lu remis à une version inférieure, "
  637. #: cmdline/apt-get.cc:592
  638. #, c-format
  639. msgid "%lu to remove and %lu not upgraded.\n"
  640. msgstr "%lu à enlever et %lu non mis à jour.\n"
  641. #: cmdline/apt-get.cc:596
  642. #, c-format
  643. msgid "%lu not fully installed or removed.\n"
  644. msgstr "%lu partiellement installés ou enlevés.\n"
  645. #: cmdline/apt-get.cc:669
  646. msgid "Correcting dependencies..."
  647. msgstr "Correction des dépendances..."
  648. #: cmdline/apt-get.cc:672
  649. msgid " failed."
  650. msgstr " a échoué."
  651. #: cmdline/apt-get.cc:675
  652. msgid "Unable to correct dependencies"
  653. msgstr "Impossible de corriger les dépendances"
  654. #: cmdline/apt-get.cc:678
  655. msgid "Unable to minimize the upgrade set"
  656. msgstr "Impossible de minimiser le nombre des paquets mis à jour"
  657. #: cmdline/apt-get.cc:680
  658. msgid " Done"
  659. msgstr " Fait"
  660. #: cmdline/apt-get.cc:684
  661. msgid "You might want to run `apt-get -f install' to correct these."
  662. msgstr "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes."
  663. #: cmdline/apt-get.cc:687
  664. msgid "Unmet dependencies. Try using -f."
  665. msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f."
  666. #: cmdline/apt-get.cc:712
  667. msgid "WARNING: The following packages cannot be authenticated!"
  668. msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés."
  669. #: cmdline/apt-get.cc:716
  670. msgid "Authentication warning overridden.\n"
  671. msgstr "Avertissement d'authentification ignoré.\n"
  672. #: cmdline/apt-get.cc:723
  673. msgid "Install these packages without verification [y/N]? "
  674. msgstr "Faut-il installer ces paquets sans vérification (o/N) ? "
  675. #: cmdline/apt-get.cc:725
  676. msgid "Some packages could not be authenticated"
  677. msgstr "Certains paquets n'ont pas pu être authentifiés"
  678. #: cmdline/apt-get.cc:734 cmdline/apt-get.cc:890
  679. msgid "There are problems and -y was used without --force-yes"
  680. msgstr "Il y a des problèmes et -y a été employé sans --force-yes"
  681. #: cmdline/apt-get.cc:775
  682. msgid "Internal error, InstallPackages was called with broken packages!"
  683. msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés."
  684. #: cmdline/apt-get.cc:784
  685. msgid "Packages need to be removed but remove is disabled."
  686. msgstr ""
  687. "Les paquets doivent être enlevés mais la désinstallation est désactivée."
  688. #: cmdline/apt-get.cc:795
  689. msgid "Internal error, Ordering didn't finish"
  690. msgstr "Erreur interne. Le tri a été interrompu."
  691. #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2060 cmdline/apt-get.cc:2093
  692. msgid "Unable to lock the download directory"
  693. msgstr "Impossible de verrouiller le répertoire de téléchargement"
  694. #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2141 cmdline/apt-get.cc:2394
  695. #: apt-pkg/cachefile.cc:65
  696. msgid "The list of sources could not be read."
  697. msgstr "La liste des sources ne peut être lue."
  698. #: cmdline/apt-get.cc:836
  699. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  700. msgstr ""
  701. "Étrangement, les tailles ne correspondent pas. Veuillez le signaler par "
  702. "courriel à apt@packages.debian.org."
  703. #: cmdline/apt-get.cc:841
  704. #, c-format
  705. msgid "Need to get %sB/%sB of archives.\n"
  706. msgstr "Il est nécessaire de prendre %so/%so dans les archives.\n"
  707. #: cmdline/apt-get.cc:844
  708. #, c-format
  709. msgid "Need to get %sB of archives.\n"
  710. msgstr "Il est nécessaire de prendre %so dans les archives.\n"
  711. #: cmdline/apt-get.cc:849
  712. #, c-format
  713. msgid "After this operation, %sB of additional disk space will be used.\n"
  714. msgstr ""
  715. "Après cette opération, %so d'espace disque supplémentaires seront utilisés.\n"
  716. #: cmdline/apt-get.cc:852
  717. #, c-format
  718. msgid "After this operation, %sB disk space will be freed.\n"
  719. msgstr "Après cette opération, %so d'espace disque seront libérés.\n"
  720. #: cmdline/apt-get.cc:867 cmdline/apt-get.cc:870 cmdline/apt-get.cc:2237
  721. #: cmdline/apt-get.cc:2240
  722. #, c-format
  723. msgid "Couldn't determine free space in %s"
  724. msgstr "Impossible de déterminer l'espace disponible sur %s"
  725. #: cmdline/apt-get.cc:880
  726. #, c-format
  727. msgid "You don't have enough free space in %s."
  728. msgstr "Pas assez d'espace disponible sur %s"
  729. #: cmdline/apt-get.cc:896 cmdline/apt-get.cc:916
  730. msgid "Trivial Only specified but this is not a trivial operation."
  731. msgstr ""
  732. "L'option --trivial-only a été indiquée mais il ne s'agit pas d'une opération "
  733. "triviale."
  734. # The space before the exclamation mark must not be a non-breaking space; this
  735. # sentence is supposed to be typed by a user who cannot see the difference.
  736. #: cmdline/apt-get.cc:898
  737. msgid "Yes, do as I say!"
  738. msgstr "Oui, faites ce que je vous dis !"
  739. #: cmdline/apt-get.cc:900
  740. #, c-format
  741. msgid ""
  742. "You are about to do something potentially harmful.\n"
  743. "To continue type in the phrase '%s'\n"
  744. " ?] "
  745. msgstr ""
  746. "Vous êtes sur le point de faire quelque chose de potentiellement dangereux\n"
  747. "Pour continuer, tapez la phrase « %s »\n"
  748. " ?]"
  749. #: cmdline/apt-get.cc:906 cmdline/apt-get.cc:925
  750. msgid "Abort."
  751. msgstr "Annulation."
  752. #: cmdline/apt-get.cc:921
  753. msgid "Do you want to continue [Y/n]? "
  754. msgstr "Souhaitez-vous continuer [O/n] ? "
  755. #: cmdline/apt-get.cc:993 cmdline/apt-get.cc:2291 apt-pkg/algorithms.cc:1389
  756. #, c-format
  757. msgid "Failed to fetch %s %s\n"
  758. msgstr "Impossible de récupérer %s %s\n"
  759. #: cmdline/apt-get.cc:1011
  760. msgid "Some files failed to download"
  761. msgstr "Certains fichiers n'ont pu être téléchargés."
  762. #: cmdline/apt-get.cc:1012 cmdline/apt-get.cc:2300
  763. msgid "Download complete and in download only mode"
  764. msgstr "Téléchargement achevé et dans le mode téléchargement uniquement"
  765. #: cmdline/apt-get.cc:1018
  766. msgid ""
  767. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  768. "missing?"
  769. msgstr ""
  770. "Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-"
  771. "get update ou essayer avec --fix-missing ?"
  772. #: cmdline/apt-get.cc:1022
  773. msgid "--fix-missing and media swapping is not currently supported"
  774. msgstr ""
  775. "l'option --fix-missing et l'échange de support ne sont pas encore reconnus."
  776. #: cmdline/apt-get.cc:1027
  777. msgid "Unable to correct missing packages."
  778. msgstr "Impossible de corriger le fait que les paquets manquent."
  779. #: cmdline/apt-get.cc:1028
  780. msgid "Aborting install."
  781. msgstr "Annulation de l'installation."
  782. #: cmdline/apt-get.cc:1086
  783. #, c-format
  784. msgid "Note, selecting %s instead of %s\n"
  785. msgstr "Note, sélection de %s au lieu de %s\n"
  786. #: cmdline/apt-get.cc:1097
  787. #, c-format
  788. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  789. msgstr "Passe %s, il est déjà installé et la mise à jour n'est pas prévue.\n"
  790. #: cmdline/apt-get.cc:1115
  791. #, c-format
  792. msgid "Package %s is not installed, so not removed\n"
  793. msgstr "Le paquet %s n'est pas installé, et ne peut donc être supprimé\n"
  794. #: cmdline/apt-get.cc:1126
  795. #, c-format
  796. msgid "Package %s is a virtual package provided by:\n"
  797. msgstr "Le paquet %s est un paquet virtuel fourni par :\n"
  798. #: cmdline/apt-get.cc:1138
  799. msgid " [Installed]"
  800. msgstr " [Installé]"
  801. #: cmdline/apt-get.cc:1143
  802. msgid "You should explicitly select one to install."
  803. msgstr "Vous devez explicitement sélectionner un paquet à installer."
  804. #: cmdline/apt-get.cc:1148
  805. #, c-format
  806. msgid ""
  807. "Package %s is not available, but is referred to by another package.\n"
  808. "This may mean that the package is missing, has been obsoleted, or\n"
  809. "is only available from another source\n"
  810. msgstr ""
  811. "Aucune version du paquet %s n'est disponible, mais il existe dans la base\n"
  812. "de données. Cela signifie en général que le paquet est manquant, qu'il est "
  813. "devenu obsolète\n"
  814. "ou qu'il n'est disponible que sur une autre source\n"
  815. #: cmdline/apt-get.cc:1167
  816. msgid "However the following packages replace it:"
  817. msgstr "Cependant les paquets suivants le remplacent :"
  818. #: cmdline/apt-get.cc:1170
  819. #, c-format
  820. msgid "Package %s has no installation candidate"
  821. msgstr "Aucun paquet ne correspond au paquet %s"
  822. #: cmdline/apt-get.cc:1190
  823. #, c-format
  824. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  825. msgstr ""
  826. "La réinstallation de %s est impossible, il ne peut pas être téléchargé.\n"
  827. #: cmdline/apt-get.cc:1198
  828. #, c-format
  829. msgid "%s is already the newest version.\n"
  830. msgstr "%s est déjà la plus récente version disponible.\n"
  831. #: cmdline/apt-get.cc:1227
  832. #, c-format
  833. msgid "Release '%s' for '%s' was not found"
  834. msgstr "La version « %s » de « %s » est introuvable"
  835. #: cmdline/apt-get.cc:1229
  836. #, c-format
  837. msgid "Version '%s' for '%s' was not found"
  838. msgstr "La version « %s » de « %s » n'a pu être trouvée"
  839. #: cmdline/apt-get.cc:1235
  840. #, c-format
  841. msgid "Selected version %s (%s) for %s\n"
  842. msgstr "Version choisie %s (%s) pour %s\n"
  843. #. if (VerTag.empty() == false && Last == 0)
  844. #: cmdline/apt-get.cc:1305 cmdline/apt-get.cc:1367
  845. #, c-format
  846. msgid "Ignore unavailable version '%s' of package '%s'"
  847. msgstr ""
  848. #: cmdline/apt-get.cc:1307
  849. #, c-format
  850. msgid "Ignore unavailable target release '%s' of package '%s'"
  851. msgstr ""
  852. #: cmdline/apt-get.cc:1332
  853. #, fuzzy, c-format
  854. msgid "Picking '%s' as source package instead of '%s'\n"
  855. msgstr "Impossible de localiser la liste des paquets sources %s"
  856. #: cmdline/apt-get.cc:1383
  857. msgid "The update command takes no arguments"
  858. msgstr "La commande de mise à jour ne prend pas d'argument"
  859. #: cmdline/apt-get.cc:1396
  860. msgid "Unable to lock the list directory"
  861. msgstr "Impossible de verrouiller le répertoire de liste"
  862. #: cmdline/apt-get.cc:1452
  863. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  864. msgstr ""
  865. "Aucune suppression n'est sensée se produire : impossible de lancer "
  866. "« Autoremover »"
  867. #: cmdline/apt-get.cc:1501
  868. msgid ""
  869. "The following packages were automatically installed and are no longer "
  870. "required:"
  871. msgstr ""
  872. "Les paquets suivants ont été installés automatiquement et ne sont plus "
  873. "nécessaires :"
  874. #: cmdline/apt-get.cc:1503
  875. #, c-format
  876. msgid "%lu packages were automatically installed and are no longer required.\n"
  877. msgstr ""
  878. "%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n"
  879. #: cmdline/apt-get.cc:1504
  880. msgid "Use 'apt-get autoremove' to remove them."
  881. msgstr "Veuillez utiliser « apt-get autoremove » pour les supprimer."
  882. #: cmdline/apt-get.cc:1509
  883. msgid ""
  884. "Hmm, seems like the AutoRemover destroyed something which really\n"
  885. "shouldn't happen. Please file a bug report against apt."
  886. msgstr ""
  887. "Il semble que l'outil de suppression automatique (« Autoremover ») ait\n"
  888. "supprimé quelque chose, ce qui est inattendu. Veuillez envoyer un\n"
  889. "rapport de bogue pour le paquet « apt »."
  890. #.
  891. #. if (Packages == 1)
  892. #. {
  893. #. c1out << endl;
  894. #. c1out <<
  895. #. _("Since you only requested a single operation it is extremely likely that\n"
  896. #. "the package is simply not installable and a bug report against\n"
  897. #. "that package should be filed.") << endl;
  898. #. }
  899. #.
  900. #: cmdline/apt-get.cc:1512 cmdline/apt-get.cc:1802
  901. msgid "The following information may help to resolve the situation:"
  902. msgstr "L'information suivante devrait vous aider à résoudre la situation : "
  903. #: cmdline/apt-get.cc:1516
  904. msgid "Internal Error, AutoRemover broke stuff"
  905. msgstr ""
  906. "Erreur interne, l'outil de suppression automatique a cassé quelque chose."
  907. #: cmdline/apt-get.cc:1535
  908. msgid "Internal error, AllUpgrade broke stuff"
  909. msgstr "Erreur interne, AllUpgrade a cassé le boulot !"
  910. #: cmdline/apt-get.cc:1590
  911. #, c-format
  912. msgid "Couldn't find task %s"
  913. msgstr "Impossible de trouver la tâche %s"
  914. #: cmdline/apt-get.cc:1705 cmdline/apt-get.cc:1741
  915. #, c-format
  916. msgid "Couldn't find package %s"
  917. msgstr "Impossible de trouver le paquet %s"
  918. #: cmdline/apt-get.cc:1728
  919. #, c-format
  920. msgid "Note, selecting %s for regex '%s'\n"
  921. msgstr "Note, sélectionne %s pour l'expression rationnelle « %s »\n"
  922. #: cmdline/apt-get.cc:1759
  923. #, c-format
  924. msgid "%s set to manually installed.\n"
  925. msgstr "%s passé en « installé manuellement ».\n"
  926. #: cmdline/apt-get.cc:1772
  927. msgid "You might want to run `apt-get -f install' to correct these:"
  928. msgstr "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :"
  929. #: cmdline/apt-get.cc:1775
  930. msgid ""
  931. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  932. "solution)."
  933. msgstr ""
  934. "Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n"
  935. "(ou indiquez une solution)."
  936. #: cmdline/apt-get.cc:1787
  937. msgid ""
  938. "Some packages could not be installed. This may mean that you have\n"
  939. "requested an impossible situation or if you are using the unstable\n"
  940. "distribution that some required packages have not yet been created\n"
  941. "or been moved out of Incoming."
  942. msgstr ""
  943. "Certains paquets ne peuvent être installés. Ceci peut signifier\n"
  944. "que vous avez demandé l'impossible, ou bien, si vous utilisez\n"
  945. "la distribution unstable, que certains paquets n'ont pas encore\n"
  946. "été créés ou ne sont pas sortis d'Incoming."
  947. #: cmdline/apt-get.cc:1805
  948. msgid "Broken packages"
  949. msgstr "Paquets défectueux"
  950. #: cmdline/apt-get.cc:1834
  951. msgid "The following extra packages will be installed:"
  952. msgstr "Les paquets supplémentaires suivants seront installés : "
  953. #: cmdline/apt-get.cc:1923
  954. msgid "Suggested packages:"
  955. msgstr "Paquets suggérés :"
  956. #: cmdline/apt-get.cc:1924
  957. msgid "Recommended packages:"
  958. msgstr "Paquets recommandés :"
  959. #: cmdline/apt-get.cc:1953
  960. msgid "Calculating upgrade... "
  961. msgstr "Calcul de la mise à jour... "
  962. #: cmdline/apt-get.cc:1956 methods/ftp.cc:707 methods/connect.cc:112
  963. msgid "Failed"
  964. msgstr "Échec"
  965. #: cmdline/apt-get.cc:1961
  966. msgid "Done"
  967. msgstr "Fait"
  968. #: cmdline/apt-get.cc:2028 cmdline/apt-get.cc:2036
  969. msgid "Internal error, problem resolver broke stuff"
  970. msgstr ""
  971. "Erreur interne, la tentative de résolution du problème a cassé certaines "
  972. "parties"
  973. #: cmdline/apt-get.cc:2136
  974. msgid "Must specify at least one package to fetch source for"
  975. msgstr "Vous devez spécifier au moins un paquet source"
  976. #: cmdline/apt-get.cc:2166 cmdline/apt-get.cc:2412
  977. #, c-format
  978. msgid "Unable to find a source package for %s"
  979. msgstr "Impossible de trouver une source de paquet pour %s"
  980. #: cmdline/apt-get.cc:2215
  981. #, c-format
  982. msgid "Skipping already downloaded file '%s'\n"
  983. msgstr "Saut du téléchargement du fichier « %s », déjà téléchargé\n"
  984. #: cmdline/apt-get.cc:2250
  985. #, c-format
  986. msgid "You don't have enough free space in %s"
  987. msgstr "Pas assez d'espace disponible sur %s"
  988. #: cmdline/apt-get.cc:2256
  989. #, c-format
  990. msgid "Need to get %sB/%sB of source archives.\n"
  991. msgstr "Nécessité de prendre %so/%so dans les sources.\n"
  992. #: cmdline/apt-get.cc:2259
  993. #, c-format
  994. msgid "Need to get %sB of source archives.\n"
  995. msgstr "Nécessité de prendre %so dans les sources.\n"
  996. #: cmdline/apt-get.cc:2265
  997. #, c-format
  998. msgid "Fetch source %s\n"
  999. msgstr "Récupération des sources %s\n"
  1000. #: cmdline/apt-get.cc:2296
  1001. msgid "Failed to fetch some archives."
  1002. msgstr "Échec lors de la récupération de quelques archives."
  1003. #: cmdline/apt-get.cc:2324
  1004. #, c-format
  1005. msgid "Skipping unpack of already unpacked source in %s\n"
  1006. msgstr "Saut du décompactage des paquets sources déjà décompactés dans %s\n"
  1007. #: cmdline/apt-get.cc:2336
  1008. #, c-format
  1009. msgid "Unpack command '%s' failed.\n"
  1010. msgstr "La commande de décompactage « %s » a échoué.\n"
  1011. #: cmdline/apt-get.cc:2337
  1012. #, c-format
  1013. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1014. msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n"
  1015. #: cmdline/apt-get.cc:2354
  1016. #, c-format
  1017. msgid "Build command '%s' failed.\n"
  1018. msgstr "La commande de construction « %s » a échoué.\n"
  1019. #: cmdline/apt-get.cc:2373
  1020. msgid "Child process failed"
  1021. msgstr "Échec du processus fils"
  1022. #: cmdline/apt-get.cc:2389
  1023. msgid "Must specify at least one package to check builddeps for"
  1024. msgstr ""
  1025. "Il faut spécifier au moins un paquet pour vérifier les dépendances de "
  1026. "construction"
  1027. #: cmdline/apt-get.cc:2417
  1028. #, c-format
  1029. msgid "Unable to get build-dependency information for %s"
  1030. msgstr "Impossible d'obtenir les dépendances de construction pour %s"
  1031. #: cmdline/apt-get.cc:2437
  1032. #, c-format
  1033. msgid "%s has no build depends.\n"
  1034. msgstr "%s n'a pas de dépendance de construction.\n"
  1035. #: cmdline/apt-get.cc:2489
  1036. #, c-format
  1037. msgid ""
  1038. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1039. "found"
  1040. msgstr ""
  1041. "La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s ne "
  1042. "peut être trouvé"
  1043. #: cmdline/apt-get.cc:2542
  1044. #, c-format
  1045. msgid ""
  1046. "%s dependency for %s cannot be satisfied because no available versions of "
  1047. "package %s can satisfy version requirements"
  1048. msgstr ""
  1049. "La dépendance %s vis-à-vis de %s ne peut être satisfaite car aucune version "
  1050. "du paquet %s ne peut satisfaire à la version requise"
  1051. #: cmdline/apt-get.cc:2578
  1052. #, c-format
  1053. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1054. msgstr ""
  1055. "Impossible de satisfaire la dépendance %s pour %s : le paquet installé %s "
  1056. "est trop récent"
  1057. #: cmdline/apt-get.cc:2605
  1058. #, c-format
  1059. msgid "Failed to satisfy %s dependency for %s: %s"
  1060. msgstr "Impossible de satisfaire les dépendances %s pour %s : %s"
  1061. #: cmdline/apt-get.cc:2621
  1062. #, c-format
  1063. msgid "Build-dependencies for %s could not be satisfied."
  1064. msgstr ""
  1065. "Les dépendances de compilation pour %s ne peuvent pas être satisfaites."
  1066. #: cmdline/apt-get.cc:2626
  1067. msgid "Failed to process build dependencies"
  1068. msgstr "Impossible d'activer les dépendances de construction"
  1069. #: cmdline/apt-get.cc:2658
  1070. msgid "Supported modules:"
  1071. msgstr "Modules reconnus :"
  1072. #: cmdline/apt-get.cc:2699
  1073. msgid ""
  1074. "Usage: apt-get [options] command\n"
  1075. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1076. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1077. "\n"
  1078. "apt-get is a simple command line interface for downloading and\n"
  1079. "installing packages. The most frequently used commands are update\n"
  1080. "and install.\n"
  1081. "\n"
  1082. "Commands:\n"
  1083. " update - Retrieve new lists of packages\n"
  1084. " upgrade - Perform an upgrade\n"
  1085. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1086. " remove - Remove packages\n"
  1087. " autoremove - Remove automatically all unused packages\n"
  1088. " purge - Remove packages and config files\n"
  1089. " source - Download source archives\n"
  1090. " build-dep - Configure build-dependencies for source packages\n"
  1091. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1092. " dselect-upgrade - Follow dselect selections\n"
  1093. " clean - Erase downloaded archive files\n"
  1094. " autoclean - Erase old downloaded archive files\n"
  1095. " check - Verify that there are no broken dependencies\n"
  1096. "\n"
  1097. "Options:\n"
  1098. " -h This help text.\n"
  1099. " -q Loggable output - no progress indicator\n"
  1100. " -qq No output except for errors\n"
  1101. " -d Download only - do NOT install or unpack archives\n"
  1102. " -s No-act. Perform ordering simulation\n"
  1103. " -y Assume Yes to all queries and do not prompt\n"
  1104. " -f Attempt to correct a system with broken dependencies in place\n"
  1105. " -m Attempt to continue if archives are unlocatable\n"
  1106. " -u Show a list of upgraded packages as well\n"
  1107. " -b Build the source package after fetching it\n"
  1108. " -V Show verbose version numbers\n"
  1109. " -c=? Read this configuration file\n"
  1110. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1111. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1112. "pages for more information and options.\n"
  1113. " This APT has Super Cow Powers.\n"
  1114. msgstr ""
  1115. "Usage : apt-get [options] commandes\n"
  1116. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1117. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1118. "\n"
  1119. "apt-get est une interface simple en ligne de commande servant à\n"
  1120. "télécharger et à installer les paquets. Les commandes les plus\n"
  1121. "fréquemment employées sont update et install.\n"
  1122. "\n"
  1123. "Commandes :\n"
  1124. " update - Récupère les nouvelles listes de paquets\n"
  1125. " upgrade - Réalise une mise à jour\n"
  1126. " install - Installe de nouveaux paquets (pkg1 est libc6 et non libc6.deb)\n"
  1127. " remove - Supprime des paquets\n"
  1128. " autoremove - Supprime tous les paquets installés automatiquement\n"
  1129. " purge - Supprime des paquets et leurs fichiers de configuration\n"
  1130. " source - Télécharge les archives de sources\n"
  1131. " build-dep - Configure build-dependencies pour les paquets sources\n"
  1132. " dist-upgrade - Met à jour la distribution, reportez-vous à apt-get(8)\n"
  1133. " dselect-upgrade - Suit les sélections de dselect\n"
  1134. " clean - Supprime dans le cache local tous les fichiers téléchargés\n"
  1135. " autoclean - Supprime dans le cache local les fichiers inutiles\n"
  1136. " check - Vérifie qu'il n'y a pas de rupture de dépendances\n"
  1137. "\n"
  1138. "Options :\n"
  1139. " -h Ce texte d'aide\n"
  1140. " -q Message de sortie enregistrable - aucun indicateur de progression\n"
  1141. " -qq Aucun message de sortie, exceptés les messages d'erreur\n"
  1142. " -d Simple téléchargement - n'installe pas ou ne décompacte pas les "
  1143. "archives\n"
  1144. " -s N'agit pas. Réalise uniquement une simulation de commande\n"
  1145. " -y Répond oui à toutes les questions et n'interroge pas l'utilisateur\n"
  1146. " -f Tente de poursuivre si le contrôle d'intégrité échoue\n"
  1147. " -m Tente de poursuivre si les archives ne sont pas localisables\n"
  1148. " -u Affiche une liste des paquets mis à jour\n"
  1149. " -b Construit la source du paquet après l'avoir récupérée\n"
  1150. " -V Affiche les numéros des versions de façon détaillée\n"
  1151. " -c=? Lit ce fichier de configuration\n"
  1152. " -o=? Place une option de configuration arbitraire, ex. -o dir::cache=/tmp\n"
  1153. "Reportez-vous aux pages de manuels d'apt-get(8), sources.list(5) et\n"
  1154. "apt.conf(5) pour plus d'informations et d'option.\n"
  1155. " Cet APT a les « Super Cow Powers »\n"
  1156. #: cmdline/apt-get.cc:2866
  1157. msgid ""
  1158. "NOTE: This is only a simulation!\n"
  1159. " apt-get needs root privileges for real execution.\n"
  1160. " Keep also in mind that locking is deactivated,\n"
  1161. " so don't depend on the relevance to the real current situation!"
  1162. msgstr ""
  1163. "NOTE: Ceci n'est qu'une simulation !\n"
  1164. " apt-get a besoin des privilèges du superutilisateur pour pouvoir "
  1165. "vraiment fonctionner.\n"
  1166. " Veuillez aussi noter que le verrouillage est désactivé,\n"
  1167. " et la situation n'est donc pas forcément représentative de la "
  1168. "réalité !"
  1169. #: cmdline/acqprogress.cc:55
  1170. msgid "Hit "
  1171. msgstr "Atteint "
  1172. #: cmdline/acqprogress.cc:79
  1173. msgid "Get:"
  1174. msgstr "Réception de : "
  1175. #: cmdline/acqprogress.cc:110
  1176. msgid "Ign "
  1177. msgstr "Ign "
  1178. #: cmdline/acqprogress.cc:114
  1179. msgid "Err "
  1180. msgstr "Err "
  1181. #: cmdline/acqprogress.cc:135
  1182. #, c-format
  1183. msgid "Fetched %sB in %s (%sB/s)\n"
  1184. msgstr "%so réceptionnés en %s (%so/s)\n"
  1185. #: cmdline/acqprogress.cc:225
  1186. #, c-format
  1187. msgid " [Working]"
  1188. msgstr " [En cours]"
  1189. #: cmdline/acqprogress.cc:271
  1190. #, c-format
  1191. msgid ""
  1192. "Media change: please insert the disc labeled\n"
  1193. " '%s'\n"
  1194. "in the drive '%s' and press enter\n"
  1195. msgstr ""
  1196. "Changement de support : veuillez insérer le disque\n"
  1197. "« %s »\n"
  1198. "dans le lecteur « %s » et appuyez sur la touche Entrée\n"
  1199. #: cmdline/apt-sortpkgs.cc:86
  1200. msgid "Unknown package record!"
  1201. msgstr "Enregistrement de paquet inconnu !"
  1202. #: cmdline/apt-sortpkgs.cc:150
  1203. msgid ""
  1204. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1205. "\n"
  1206. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1207. "to indicate what kind of file it is.\n"
  1208. "\n"
  1209. "Options:\n"
  1210. " -h This help text\n"
  1211. " -s Use source file sorting\n"
  1212. " -c=? Read this configuration file\n"
  1213. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1214. msgstr ""
  1215. "Usage : apt-sortpkgs [options] fichier1 [fichier2 ...]\n"
  1216. "\n"
  1217. "apt-sortpkgs est un outil simple pour trier les paquets. L'option -s est\n"
  1218. "employée pour indiquer le type de fichier dont il s'agit.\n"
  1219. "\n"
  1220. "Options :\n"
  1221. " -h Ce texte d'aide\n"
  1222. " -s Trie le fichier source\n"
  1223. " -c=? Lit ce fichier de configuration\n"
  1224. " -o=? Place une option de configuration arbitraire, p. ex. -o dir::cache=/"
  1225. "tmp\n"
  1226. #: dselect/install:32
  1227. msgid "Bad default setting!"
  1228. msgstr "Mauvais paramètre par défaut !"
  1229. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1230. #: dselect/install:105 dselect/update:45
  1231. msgid "Press enter to continue."
  1232. msgstr "Veuillez appuyer sur Entrée pour continuer."
  1233. #: dselect/install:91
  1234. msgid "Do you want to erase any previously downloaded .deb files?"
  1235. msgstr "Voulez-vous effacer les fichiers .deb précédemment téléchargés ?"
  1236. #: dselect/install:101
  1237. msgid "Some errors occurred while unpacking. Packages that were installed"
  1238. msgstr "Quelques erreurs sont apparues lors du décompactage. Les paquets qui"
  1239. #: dselect/install:102
  1240. msgid "will be configured. This may result in duplicate errors"
  1241. msgstr ""
  1242. "ont été installés vont être configurés . Il peut en résulter d'autres erreurs"
  1243. #: dselect/install:103
  1244. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1245. msgstr ""
  1246. "ou des erreurs provoquées par les dépendances manquantes. C'est bénin, "
  1247. "seules les erreurs."
  1248. #: dselect/install:104
  1249. msgid ""
  1250. "above this message are important. Please fix them and run [I]nstall again"
  1251. msgstr ""
  1252. "précédant ce message sont importantes. Veuillez les corriger et\n"
  1253. "démarrer l'[I]nstallation une nouvelle fois."
  1254. #: dselect/update:30
  1255. msgid "Merging available information"
  1256. msgstr "Fusion des informations disponibles"
  1257. #: apt-inst/contrib/extracttar.cc:114
  1258. msgid "Failed to create pipes"
  1259. msgstr "Échec de création de tubes"
  1260. #: apt-inst/contrib/extracttar.cc:141
  1261. msgid "Failed to exec gzip "
  1262. msgstr "Impossible d'exécuter gzip "
  1263. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1264. msgid "Corrupted archive"
  1265. msgstr "Archive corrompue"
  1266. #: apt-inst/contrib/extracttar.cc:193
  1267. msgid "Tar checksum failed, archive corrupted"
  1268. msgstr "Échec dans la somme de contrôle de tar, l'archive est corrompue"
  1269. #: apt-inst/contrib/extracttar.cc:296
  1270. #, c-format
  1271. msgid "Unknown TAR header type %u, member %s"
  1272. msgstr "Type d'en-tête %u inconnu pour TAR, partie %s"
  1273. #: apt-inst/contrib/arfile.cc:70
  1274. msgid "Invalid archive signature"
  1275. msgstr "Signature d'archive invalide"
  1276. #: apt-inst/contrib/arfile.cc:78
  1277. msgid "Error reading archive member header"
  1278. msgstr "Erreur de lecture de l'en-tête du membre d'archive"
  1279. #: apt-inst/contrib/arfile.cc:90
  1280. #, c-format
  1281. msgid "Invalid archive member header %s"
  1282. msgstr "En-tête du membre d'archive %s non valable"
  1283. #: apt-inst/contrib/arfile.cc:102
  1284. msgid "Invalid archive member header"
  1285. msgstr "En-tête du membre d'archive non-valable"
  1286. #: apt-inst/contrib/arfile.cc:128
  1287. msgid "Archive is too short"
  1288. msgstr "L'archive est trop petite"
  1289. #: apt-inst/contrib/arfile.cc:132
  1290. msgid "Failed to read the archive headers"
  1291. msgstr "Échec de la lecture des en-têtes d'archive"
  1292. #: apt-inst/filelist.cc:380
  1293. msgid "DropNode called on still linked node"
  1294. msgstr "DropNode appelé sur un nœud toujours lié"
  1295. #: apt-inst/filelist.cc:412
  1296. msgid "Failed to locate the hash element!"
  1297. msgstr "Impossible de situer l'élément haché !"
  1298. #: apt-inst/filelist.cc:459
  1299. msgid "Failed to allocate diversion"
  1300. msgstr "Échec lors de l'allocation de la déviation"
  1301. #: apt-inst/filelist.cc:464
  1302. msgid "Internal error in AddDiversion"
  1303. msgstr "Erreur interne dans AddDiversion"
  1304. #: apt-inst/filelist.cc:477
  1305. #, c-format
  1306. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1307. msgstr "Essaye d'écraser une déviation, %s -> %s et %s/%s"
  1308. #: apt-inst/filelist.cc:506
  1309. #, c-format
  1310. msgid "Double add of diversion %s -> %s"
  1311. msgstr "Addition double d'une déviation %s -> %s"
  1312. #: apt-inst/filelist.cc:549
  1313. #, c-format
  1314. msgid "Duplicate conf file %s/%s"
  1315. msgstr "Fichier de configuration en double %s/%s"
  1316. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1317. #, c-format
  1318. msgid "Failed to write file %s"
  1319. msgstr "Erreur d'écriture du fichier %s"
  1320. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1321. #, c-format
  1322. msgid "Failed to close file %s"
  1323. msgstr "Échec de clôture du fichier %s"
  1324. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1325. #, c-format
  1326. msgid "The path %s is too long"
  1327. msgstr "Le chemin %s est trop long"
  1328. #: apt-inst/extract.cc:124
  1329. #, c-format
  1330. msgid "Unpacking %s more than once"
  1331. msgstr "Veuillez décompresser %s plus d'une fois"
  1332. #: apt-inst/extract.cc:134
  1333. #, c-format
  1334. msgid "The directory %s is diverted"
  1335. msgstr "Le répertoire %s est détourné"
  1336. #: apt-inst/extract.cc:144
  1337. #, c-format
  1338. msgid "The package is trying to write to the diversion target %s/%s"
  1339. msgstr "Le paquet est en train d'essayer d'écrire sur la cible détournée %s/%s"
  1340. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1341. msgid "The diversion path is too long"
  1342. msgstr "Le chemin de déviation est trop long"
  1343. #: apt-inst/extract.cc:240
  1344. #, c-format
  1345. msgid "The directory %s is being replaced by a non-directory"
  1346. msgstr "Le répertoire %s va être remplacé par un non-répertoire"
  1347. #: apt-inst/extract.cc:280
  1348. msgid "Failed to locate node in its hash bucket"
  1349. msgstr "Échec pour localiser le nœud dans la table de hachage"
  1350. #: apt-inst/extract.cc:284
  1351. msgid "The path is too long"
  1352. msgstr "Le chemin est trop long"
  1353. #: apt-inst/extract.cc:414
  1354. #, c-format
  1355. msgid "Overwrite package match with no version for %s"
  1356. msgstr "Écrase la correspondance de paquet sans version pour %s "
  1357. #: apt-inst/extract.cc:431
  1358. #, c-format
  1359. msgid "File %s/%s overwrites the one in the package %s"
  1360. msgstr "Le fichier %s/%s écrase celui inclus dans le paquet %s"
  1361. #. Only warn if there are no sources.list.d.
  1362. #. Only warn if there is no sources.list file.
  1363. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843
  1364. #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166
  1365. #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419
  1366. #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33
  1367. #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287
  1368. #, c-format
  1369. msgid "Unable to read %s"
  1370. msgstr "Impossible de lire %s"
  1371. #: apt-inst/extract.cc:491
  1372. #, c-format
  1373. msgid "Unable to stat %s"
  1374. msgstr "Impossible de statuer pour %s."
  1375. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1376. #, c-format
  1377. msgid "Failed to remove %s"
  1378. msgstr "Impossible de supprimer %s"
  1379. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1380. #, c-format
  1381. msgid "Unable to create %s"
  1382. msgstr "Impossible de créer %s"
  1383. #: apt-inst/deb/dpkgdb.cc:114
  1384. #, c-format
  1385. msgid "Failed to stat %sinfo"
  1386. msgstr "Impossible de statuer pour %sinfo"
  1387. #: apt-inst/deb/dpkgdb.cc:119
  1388. msgid "The info and temp directories need to be on the same filesystem"
  1389. msgstr ""
  1390. "Les répertoires info et temp doivent se trouver sur le même système de "
  1391. "fichiers"
  1392. #. Build the status cache
  1393. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763
  1394. #: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837
  1395. #: apt-pkg/pkgcachegen.cc:961
  1396. msgid "Reading package lists"
  1397. msgstr "Lecture des listes de paquets"
  1398. #: apt-inst/deb/dpkgdb.cc:176
  1399. #, c-format
  1400. msgid "Failed to change to the admin dir %sinfo"
  1401. msgstr "Impossible de changer pour le répertoire d'administration %sinfo"
  1402. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1403. #: apt-inst/deb/dpkgdb.cc:444
  1404. msgid "Internal error getting a package name"
  1405. msgstr "Erreur interne lors de l'obtention d'un nom de paquet"
  1406. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1407. msgid "Reading file listing"
  1408. msgstr "Lecture de la liste de fichiers"
  1409. #: apt-inst/deb/dpkgdb.cc:212
  1410. #, c-format
  1411. msgid ""
  1412. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1413. "then make it empty and immediately re-install the same version of the "
  1414. "package!"
  1415. msgstr ""
  1416. "Impossible d'ouvrir le fichier de liste « %sinfo/%s ». Si vous ne parvenez "
  1417. "pas à restaurer ce fichier, veuillez le vider et réinstaller immédiatement "
  1418. "la même version du paquet !"
  1419. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1420. #, c-format
  1421. msgid "Failed reading the list file %sinfo/%s"
  1422. msgstr "Échec de la lecture du fichier de liste %sinfo/%s"
  1423. #: apt-inst/deb/dpkgdb.cc:262
  1424. msgid "Internal error getting a node"
  1425. msgstr "Erreur interne lors de l'obtention d'un Nœud"
  1426. #: apt-inst/deb/dpkgdb.cc:305
  1427. #, c-format
  1428. msgid "Failed to open the diversions file %sdiversions"
  1429. msgstr "Impossible d'ouvrir le fichier des déviations %sdiversions "
  1430. #: apt-inst/deb/dpkgdb.cc:320
  1431. msgid "The diversion file is corrupted"
  1432. msgstr "Le fichier des déviations est corrompu"
  1433. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1434. #: apt-inst/deb/dpkgdb.cc:337
  1435. #, c-format
  1436. msgid "Invalid line in the diversion file: %s"
  1437. msgstr "Ligne invalide dans le fichier des déviations : %s"
  1438. #: apt-inst/deb/dpkgdb.cc:358
  1439. msgid "Internal error adding a diversion"
  1440. msgstr "Erreur interne en ajoutant une déviation"
  1441. #: apt-inst/deb/dpkgdb.cc:379
  1442. msgid "The pkg cache must be initialized first"
  1443. msgstr "Le cache des paquets doit être initialisé en premier"
  1444. #: apt-inst/deb/dpkgdb.cc:439
  1445. #, c-format
  1446. msgid "Failed to find a Package: header, offset %lu"
  1447. msgstr "Impossible de trouver un en-tête « Package: », décalage %lu"
  1448. #: apt-inst/deb/dpkgdb.cc:461
  1449. #, c-format
  1450. msgid "Bad ConfFile section in the status file. Offset %lu"
  1451. msgstr "Mauvaise section « ConfFile » dans le fichier « status ». Décalage %lu"
  1452. #: apt-inst/deb/dpkgdb.cc:466
  1453. #, c-format
  1454. msgid "Error parsing MD5. Offset %lu"
  1455. msgstr "Erreur lors du traitement de la somme MD5. Décalage %lu"
  1456. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1457. #, c-format
  1458. msgid "This is not a valid DEB archive, missing '%s' member"
  1459. msgstr "Ce n'est pas une archive DEB valide, partie « %s » manquante"
  1460. #: apt-inst/deb/debfile.cc:50
  1461. #, c-format
  1462. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1463. msgstr ""
  1464. "Ce n'est pas une archive DEB valide, elle n'a pas de membre « %s », « %s » ou "
  1465. "« %s »"
  1466. #: apt-inst/deb/debfile.cc:110
  1467. #, c-format
  1468. msgid "Couldn't change to %s"
  1469. msgstr "Impossible d'accéder à %s"
  1470. #: apt-inst/deb/debfile.cc:140
  1471. msgid "Internal error, could not locate member"
  1472. msgstr "Erreur interne, ne peut localiser le membre"
  1473. #: apt-inst/deb/debfile.cc:173
  1474. msgid "Failed to locate a valid control file"
  1475. msgstr "Impossible de localiser un fichier de contrôle valide"
  1476. #: apt-inst/deb/debfile.cc:258
  1477. msgid "Unparsable control file"
  1478. msgstr "Fichier de contrôle non traitable"
  1479. #: methods/cdrom.cc:200
  1480. #, c-format
  1481. msgid "Unable to read the cdrom database %s"
  1482. msgstr "Impossible de lire la base de données %s du cédérom"
  1483. #: methods/cdrom.cc:209
  1484. msgid ""
  1485. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1486. "cannot be used to add new CD-ROMs"
  1487. msgstr ""
  1488. "Veuillez utiliser apt-cdrom afin de faire reconnaître ce cédérom par votre "
  1489. "APT. apt-get update ne peut être employé pour ajouter de nouveaux cédéroms"
  1490. #: methods/cdrom.cc:219
  1491. msgid "Wrong CD-ROM"
  1492. msgstr "Mauvais cédérom"
  1493. #: methods/cdrom.cc:245
  1494. #, c-format
  1495. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1496. msgstr ""
  1497. "Impossible de démonter le cédérom dans %s, il doit toujours être en cours "
  1498. "d'utilisation."
  1499. #: methods/cdrom.cc:250
  1500. msgid "Disk not found."
  1501. msgstr "Disque non trouvé."
  1502. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264
  1503. msgid "File not found"
  1504. msgstr "Fichier non trouvé"
  1505. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1506. #: methods/rred.cc:483 methods/rred.cc:492
  1507. msgid "Failed to stat"
  1508. msgstr "Impossible de statuer"
  1509. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:489
  1510. msgid "Failed to set modification time"
  1511. msgstr "Impossible de modifier l'heure "
  1512. #: methods/file.cc:44
  1513. msgid "Invalid URI, local URIS must not start with //"
  1514. msgstr "Liens invalides, les liens locaux ne doivent pas débuter avec //"
  1515. #. Login must be before getpeername otherwise dante won't work.
  1516. #: methods/ftp.cc:167
  1517. msgid "Logging in"
  1518. msgstr "Connexion en cours"
  1519. #: methods/ftp.cc:173
  1520. msgid "Unable to determine the peer name"
  1521. msgstr "Impossible de déterminer le nom de la machine distante"
  1522. #: methods/ftp.cc:178
  1523. msgid "Unable to determine the local name"
  1524. msgstr "Impossible de déterminer le nom local"
  1525. #: methods/ftp.cc:209 methods/ftp.cc:237
  1526. #, c-format
  1527. msgid "The server refused the connection and said: %s"
  1528. msgstr "Le serveur a refusé notre connexion et a répondu : %s"
  1529. #: methods/ftp.cc:215
  1530. #, c-format
  1531. msgid "USER failed, server said: %s"
  1532. msgstr "USER incorrect, le serveur a répondu : %s"
  1533. #: methods/ftp.cc:222
  1534. #, c-format
  1535. msgid "PASS failed, server said: %s"
  1536. msgstr "PASS incorrect, le serveur a répondu : %s"
  1537. #: methods/ftp.cc:242
  1538. msgid ""
  1539. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1540. "is empty."
  1541. msgstr ""
  1542. "Un serveur proxy a été spécifié, mais aucun script de connexion, Acquire::"
  1543. "ftp::ProxyLogin est vide."
  1544. #: methods/ftp.cc:270
  1545. #, c-format
  1546. msgid "Login script command '%s' failed, server said: %s"
  1547. msgstr ""
  1548. "La commande « %s » du script de connexion a échoué, le serveur a répondu : %s"
  1549. #: methods/ftp.cc:296
  1550. #, c-format
  1551. msgid "TYPE failed, server said: %s"
  1552. msgstr "Échec de TYPE, le serveur a répondu : %s"
  1553. #: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226
  1554. msgid "Connection timeout"
  1555. msgstr "Dépassement du délai de connexion"
  1556. #: methods/ftp.cc:340
  1557. msgid "Server closed the connection"
  1558. msgstr "Le serveur a fermé la connexion"
  1559. #: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190
  1560. msgid "Read error"
  1561. msgstr "Erreur de lecture"
  1562. #: methods/ftp.cc:350 methods/rsh.cc:197
  1563. msgid "A response overflowed the buffer."
  1564. msgstr "Une réponse a fait déborder le tampon."
  1565. #: methods/ftp.cc:367 methods/ftp.cc:379
  1566. msgid "Protocol corruption"
  1567. msgstr "Corruption du protocole"
  1568. #: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232
  1569. msgid "Write error"
  1570. msgstr "Erreur d'écriture"
  1571. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1572. msgid "Could not create a socket"
  1573. msgstr "Impossible de créer un connecteur"
  1574. #: methods/ftp.cc:703
  1575. msgid "Could not connect data socket, connection timed out"
  1576. msgstr ""
  1577. "Impossible de se connecter sur le port de données, délai de connexion dépassé"
  1578. #: methods/ftp.cc:709
  1579. msgid "Could not connect passive socket."
  1580. msgstr "Impossible de se connecter au port en mode passif."
  1581. #: methods/ftp.cc:727
  1582. msgid "getaddrinfo was unable to get a listening socket"
  1583. msgstr "gettaddrinfo n'a pu obtenir un port d'écoute"
  1584. #: methods/ftp.cc:741
  1585. msgid "Could not bind a socket"
  1586. msgstr "Impossible de se connecter à un port"
  1587. #: methods/ftp.cc:745
  1588. msgid "Could not listen on the socket"
  1589. msgstr "Impossible d'écouter sur le port"
  1590. #: methods/ftp.cc:752
  1591. msgid "Could not determine the socket's name"
  1592. msgstr "Impossible de déterminer le nom du port"
  1593. #: methods/ftp.cc:784
  1594. msgid "Unable to send PORT command"
  1595. msgstr "Impossible d'envoyer la commande PORT"
  1596. #: methods/ftp.cc:794
  1597. #, c-format
  1598. msgid "Unknown address family %u (AF_*)"
  1599. msgstr "Famille d'adresses %u inconnue (AF_*)"
  1600. #: methods/ftp.cc:803
  1601. #, c-format
  1602. msgid "EPRT failed, server said: %s"
  1603. msgstr "EPRT a échoué, le serveur a répondu : %s"
  1604. #: methods/ftp.cc:823
  1605. msgid "Data socket connect timed out"
  1606. msgstr "Délai de connexion au port de données dépassé"
  1607. #: methods/ftp.cc:830
  1608. msgid "Unable to accept connection"
  1609. msgstr "Impossible d'accepter une connexion"
  1610. #: methods/ftp.cc:869 methods/http.cc:997 methods/rsh.cc:303
  1611. msgid "Problem hashing file"
  1612. msgstr "Problème de hachage du fichier"
  1613. #: methods/ftp.cc:882
  1614. #, c-format
  1615. msgid "Unable to fetch file, server said '%s'"
  1616. msgstr "Impossible de récupérer le fichier, le serveur a répondu « %s »"
  1617. #: methods/ftp.cc:897 methods/rsh.cc:322
  1618. msgid "Data socket timed out"
  1619. msgstr "Pas de réponse du port données dans les délais"
  1620. #: methods/ftp.cc:927
  1621. #, c-format
  1622. msgid "Data transfer failed, server said '%s'"
  1623. msgstr "Le transfert de données a échoué, le serveur a répondu « %s »"
  1624. #. Get the files information
  1625. #: methods/ftp.cc:1002
  1626. msgid "Query"
  1627. msgstr "Requête"
  1628. #: methods/ftp.cc:1114
  1629. msgid "Unable to invoke "
  1630. msgstr "Impossible d'invoquer "
  1631. #: methods/connect.cc:70
  1632. #, c-format
  1633. msgid "Connecting to %s (%s)"
  1634. msgstr "Connexion à %s (%s)"
  1635. #: methods/connect.cc:81
  1636. #, c-format
  1637. msgid "[IP: %s %s]"
  1638. msgstr "[IP : %s %s]"
  1639. #: methods/connect.cc:90
  1640. #, c-format
  1641. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1642. msgstr "Impossible de créer de connexion pour %s (f=%u t=%u p=%u)"
  1643. #: methods/connect.cc:96
  1644. #, c-format
  1645. msgid "Cannot initiate the connection to %s:%s (%s)."
  1646. msgstr "Impossible d'initialiser la connexion à %s: %s (%s)."
  1647. #: methods/connect.cc:104
  1648. #, c-format
  1649. msgid "Could not connect to %s:%s (%s), connection timed out"
  1650. msgstr "Connexion à %s: %s (%s) impossible, délai de connexion dépassé"
  1651. #: methods/connect.cc:119
  1652. #, c-format
  1653. msgid "Could not connect to %s:%s (%s)."
  1654. msgstr "Connexion à %s: %s (%s) impossible."
  1655. #. We say this mainly because the pause here is for the
  1656. #. ssh connection that is still going
  1657. #: methods/connect.cc:147 methods/rsh.cc:425
  1658. #, c-format
  1659. msgid "Connecting to %s"
  1660. msgstr "Connexion à %s"
  1661. #: methods/connect.cc:165 methods/connect.cc:184
  1662. #, c-format
  1663. msgid "Could not resolve '%s'"
  1664. msgstr "Ne parvient pas à résoudre « %s »"
  1665. #: methods/connect.cc:190
  1666. #, c-format
  1667. msgid "Temporary failure resolving '%s'"
  1668. msgstr "Erreur temporaire de résolution de « %s »"
  1669. #: methods/connect.cc:193
  1670. #, fuzzy, c-format
  1671. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1672. msgstr ""
  1673. "Quelque chose d'imprévisible est survenu lors de la détermination de « %s:%"
  1674. "s » (%i)"
  1675. #: methods/connect.cc:240
  1676. #, c-format
  1677. msgid "Unable to connect to %s:%s:"
  1678. msgstr "Impossible de se connecter à %s:%s :"
  1679. #: methods/gpgv.cc:71
  1680. #, c-format
  1681. msgid "Couldn't access keyring: '%s'"
  1682. msgstr "Impossible d'accéder au porte-clés : « %s »"
  1683. #: methods/gpgv.cc:107
  1684. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1685. msgstr ""
  1686. "E: liste de paramètres trop longue pour Acquire::gpgv::Options. Abandon."
  1687. #: methods/gpgv.cc:223
  1688. msgid ""
  1689. "Internal error: Good signature, but could not determine key fingerprint?!"
  1690. msgstr ""
  1691. "Erreur interne : signature correcte, mais il est impossible de déterminer "
  1692. "l'empreinte de la clé."
  1693. #: methods/gpgv.cc:228
  1694. msgid "At least one invalid signature was encountered."
  1695. msgstr "Au moins une signature non valable a été rencontrée."
  1696. #: methods/gpgv.cc:232
  1697. #, c-format
  1698. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1699. msgstr ""
  1700. "Impossible d'exécuter « %s » pour contrôler la signature\n"
  1701. "(veuillez vérifier si gpgv est installé)."
  1702. #: methods/gpgv.cc:237
  1703. msgid "Unknown error executing gpgv"
  1704. msgstr "Erreur inconnue à l'exécution de gpgv"
  1705. #: methods/gpgv.cc:271 methods/gpgv.cc:278
  1706. msgid "The following signatures were invalid:\n"
  1707. msgstr "Les signatures suivantes ne sont pas valables :\n"
  1708. #: methods/gpgv.cc:285
  1709. msgid ""
  1710. "The following signatures couldn't be verified because the public key is not "
  1711. "available:\n"
  1712. msgstr ""
  1713. "Les signatures suivantes n'ont pas pu être vérifiées car la clé publique "
  1714. "n'est pas disponible :\n"
  1715. #: methods/gzip.cc:64
  1716. #, c-format
  1717. msgid "Couldn't open pipe for %s"
  1718. msgstr "Ne parvient pas à ouvrir le tube pour %s"
  1719. #: methods/gzip.cc:109
  1720. #, c-format
  1721. msgid "Read error from %s process"
  1722. msgstr "Erreur de lecture du processus %s"
  1723. #: methods/http.cc:384
  1724. msgid "Waiting for headers"
  1725. msgstr "Attente des fichiers d'en-tête"
  1726. #: methods/http.cc:530
  1727. #, c-format
  1728. msgid "Got a single header line over %u chars"
  1729. msgstr "J'ai une simple ligne d'en-tête au-dessus du caractère %u"
  1730. #: methods/http.cc:538
  1731. msgid "Bad header line"
  1732. msgstr "Mauvaise ligne d'en-tête"
  1733. #: methods/http.cc:557 methods/http.cc:564
  1734. msgid "The HTTP server sent an invalid reply header"
  1735. msgstr "Le serveur http a envoyé une réponse dont l'en-tête est invalide"
  1736. #: methods/http.cc:593
  1737. msgid "The HTTP server sent an invalid Content-Length header"
  1738. msgstr "Le serveur http a envoyé un en-tête « Content-Length » invalide"
  1739. #: methods/http.cc:608
  1740. msgid "The HTTP server sent an invalid Content-Range header"
  1741. msgstr "Le serveur http a envoyé un en-tête « Content-Range » invalide"
  1742. #: methods/http.cc:610
  1743. msgid "This HTTP server has broken range support"
  1744. msgstr "Ce serveur http possède un support des limites non-valide"
  1745. #: methods/http.cc:634
  1746. msgid "Unknown date format"
  1747. msgstr "Format de date inconnu"
  1748. #: methods/http.cc:788
  1749. msgid "Select failed"
  1750. msgstr "Sélection défaillante"
  1751. #: methods/http.cc:793
  1752. msgid "Connection timed out"
  1753. msgstr "Délai de connexion dépassé"
  1754. #: methods/http.cc:816
  1755. msgid "Error writing to output file"
  1756. msgstr "Erreur d'écriture du fichier de sortie"
  1757. #: methods/http.cc:847
  1758. msgid "Error writing to file"
  1759. msgstr "Erreur d'écriture sur un fichier"
  1760. #: methods/http.cc:875
  1761. msgid "Error writing to the file"
  1762. msgstr "Erreur d'écriture sur le fichier"
  1763. #: methods/http.cc:889
  1764. msgid "Error reading from server. Remote end closed connection"
  1765. msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion"
  1766. #: methods/http.cc:891
  1767. msgid "Error reading from server"
  1768. msgstr "Erreur de lecture du serveur"
  1769. #: methods/http.cc:982 apt-pkg/contrib/mmap.cc:233
  1770. msgid "Failed to truncate file"
  1771. msgstr "Échec de la troncature du fichier"
  1772. #: methods/http.cc:1147
  1773. msgid "Bad header data"
  1774. msgstr "Mauvais en-tête de donnée"
  1775. #: methods/http.cc:1164 methods/http.cc:1219
  1776. msgid "Connection failed"
  1777. msgstr "Échec de la connexion"
  1778. #: methods/http.cc:1311
  1779. msgid "Internal error"
  1780. msgstr "Erreur interne"
  1781. #: apt-pkg/contrib/mmap.cc:76
  1782. msgid "Can't mmap an empty file"
  1783. msgstr "Impossible de mapper un fichier vide en mémoire"
  1784. #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:202
  1785. #, c-format
  1786. msgid "Couldn't make mmap of %lu bytes"
  1787. msgstr "Impossible de réaliser un mapping de %lu octets en mémoire"
  1788. #: apt-pkg/contrib/mmap.cc:252
  1789. #, c-format
  1790. msgid ""
  1791. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1792. "Current value: %lu. (man 5 apt.conf)"
  1793. msgstr ""
  1794. "La zone dynamique d'allocation mémoire (« Dynamic MMap ») n'a plus de place. "
  1795. "Vous devriez augmenter la taille de APT::Cache-Limit, dont la valeur "
  1796. "actuelle est de %lu (voir « man 5 apt.conf »)."
  1797. #: apt-pkg/contrib/mmap.cc:347
  1798. #, c-format
  1799. msgid ""
  1800. "The size of a MMap has already reached the defined limit of %lu bytes,abort "
  1801. "the try to grow the MMap."
  1802. msgstr ""
  1803. #. d means days, h means hours, min means minutes, s means seconds
  1804. #: apt-pkg/contrib/strutl.cc:346
  1805. #, c-format
  1806. msgid "%lid %lih %limin %lis"
  1807. msgstr "%lid %lih %limin %lis"
  1808. #. h means hours, min means minutes, s means seconds
  1809. #: apt-pkg/contrib/strutl.cc:353
  1810. #, c-format
  1811. msgid "%lih %limin %lis"
  1812. msgstr "%lih %limin %lis"
  1813. #. min means minutes, s means seconds
  1814. #: apt-pkg/contrib/strutl.cc:360
  1815. #, c-format
  1816. msgid "%limin %lis"
  1817. msgstr "%limin %lis"
  1818. #. s means seconds
  1819. #: apt-pkg/contrib/strutl.cc:365
  1820. #, c-format
  1821. msgid "%lis"
  1822. msgstr "%lis"
  1823. #: apt-pkg/contrib/strutl.cc:1040
  1824. #, c-format
  1825. msgid "Selection %s not found"
  1826. msgstr "La sélection %s n'a pu être trouvée"
  1827. #: apt-pkg/contrib/configuration.cc:458
  1828. #, c-format
  1829. msgid "Unrecognized type abbreviation: '%c'"
  1830. msgstr "Type d'abréviation non reconnue : « %c »"
  1831. #: apt-pkg/contrib/configuration.cc:516
  1832. #, c-format
  1833. msgid "Opening configuration file %s"
  1834. msgstr "Ouverture du fichier de configuration %s"
  1835. #: apt-pkg/contrib/configuration.cc:684
  1836. #, c-format
  1837. msgid "Syntax error %s:%u: Block starts with no name."
  1838. msgstr "Erreur syntaxique %s:%u : le bloc commence sans aucun nom."
  1839. #: apt-pkg/contrib/configuration.cc:703
  1840. #, c-format
  1841. msgid "Syntax error %s:%u: Malformed tag"
  1842. msgstr "Erreur syntaxique %s:%u : balise mal formée"
  1843. #: apt-pkg/contrib/configuration.cc:720
  1844. #, c-format
  1845. msgid "Syntax error %s:%u: Extra junk after value"
  1846. msgstr "Erreur syntaxique %s:%u : valeur suivie de choses illicites"
  1847. #: apt-pkg/contrib/configuration.cc:760
  1848. #, c-format
  1849. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1850. msgstr ""
  1851. "Erreur syntaxique %s:%u : ces directives ne peuvent être appliquées qu'au "
  1852. "niveau le plus haut"
  1853. #: apt-pkg/contrib/configuration.cc:767
  1854. #, c-format
  1855. msgid "Syntax error %s:%u: Too many nested includes"
  1856. msgstr "Erreur syntaxique %s:%u: trop de niveaux d'imbrication d'includes"
  1857. #: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776
  1858. #, c-format
  1859. msgid "Syntax error %s:%u: Included from here"
  1860. msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici"
  1861. #: apt-pkg/contrib/configuration.cc:780
  1862. #, c-format
  1863. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1864. msgstr "Erreur syntaxique %s:%u : directive « %s » non tolérée"
  1865. #: apt-pkg/contrib/configuration.cc:831
  1866. #, c-format
  1867. msgid "Syntax error %s:%u: Extra junk at end of file"
  1868. msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier"
  1869. #: apt-pkg/contrib/progress.cc:153
  1870. #, c-format
  1871. msgid "%c%s... Error!"
  1872. msgstr "%c%s... Erreur !"
  1873. #: apt-pkg/contrib/progress.cc:155
  1874. #, c-format
  1875. msgid "%c%s... Done"
  1876. msgstr "%c%s... Fait"
  1877. #: apt-pkg/contrib/cmndline.cc:77
  1878. #, c-format
  1879. msgid "Command line option '%c' [from %s] is not known."
  1880. msgstr "L'option « %c » de la ligne de commande [d'origine %s] est inconnue."
  1881. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1882. #: apt-pkg/contrib/cmndline.cc:119
  1883. #, c-format
  1884. msgid "Command line option %s is not understood"
  1885. msgstr "L'option %s de la ligne de commande n'est pas reconnue"
  1886. #: apt-pkg/contrib/cmndline.cc:124
  1887. #, c-format
  1888. msgid "Command line option %s is not boolean"
  1889. msgstr "L'option %s de la ligne de commande n'est pas une valeur booléenne"
  1890. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1891. #, c-format
  1892. msgid "Option %s requires an argument."
  1893. msgstr "L'option %s nécessite un argument."
  1894. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1895. #, c-format
  1896. msgid "Option %s: Configuration item specification must have an =<val>."
  1897. msgstr "Option %s : l'item configuration doit être spécifiée avec un =<val>."
  1898. #: apt-pkg/contrib/cmndline.cc:234
  1899. #, c-format
  1900. msgid "Option %s requires an integer argument, not '%s'"
  1901. msgstr "L'option %s prend un nombre entier en argument, et non « %s »"
  1902. #: apt-pkg/contrib/cmndline.cc:265
  1903. #, c-format
  1904. msgid "Option '%s' is too long"
  1905. msgstr "L'option « %s » est trop longue"
  1906. #: apt-pkg/contrib/cmndline.cc:298
  1907. #, c-format
  1908. msgid "Sense %s is not understood, try true or false."
  1909. msgstr "La signification %s n'est pas comprise, veuillez essayer vrai ou faux."
  1910. #: apt-pkg/contrib/cmndline.cc:348
  1911. #, c-format
  1912. msgid "Invalid operation %s"
  1913. msgstr "L'opération %s n'est pas valable"
  1914. #: apt-pkg/contrib/cdromutl.cc:52
  1915. #, c-format
  1916. msgid "Unable to stat the mount point %s"
  1917. msgstr "Impossible de localiser le point de montage %s"
  1918. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187
  1919. #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39
  1920. #, c-format
  1921. msgid "Unable to change to %s"
  1922. msgstr "Impossible d'accéder à %s"
  1923. #: apt-pkg/contrib/cdromutl.cc:195
  1924. msgid "Failed to stat the cdrom"
  1925. msgstr "Impossible d'accéder au cédérom."
  1926. #: apt-pkg/contrib/fileutl.cc:149
  1927. #, c-format
  1928. msgid "Not using locking for read only lock file %s"
  1929. msgstr "Verrou non utilisé pour le fichier %s en lecture seule"
  1930. #: apt-pkg/contrib/fileutl.cc:154
  1931. #, c-format
  1932. msgid "Could not open lock file %s"
  1933. msgstr "Impossible d'ouvrir le fichier verrou %s"
  1934. #: apt-pkg/contrib/fileutl.cc:172
  1935. #, c-format
  1936. msgid "Not using locking for nfs mounted lock file %s"
  1937. msgstr "Verrou non utilisé pour le fichier %s se situant sur une partition nfs"
  1938. #: apt-pkg/contrib/fileutl.cc:176
  1939. #, c-format
  1940. msgid "Could not get lock %s"
  1941. msgstr "Impossible de verrouiller %s"
  1942. #: apt-pkg/contrib/fileutl.cc:444
  1943. #, c-format
  1944. msgid "Waited for %s but it wasn't there"
  1945. msgstr "A attendu %s mais il n'était pas présent"
  1946. #: apt-pkg/contrib/fileutl.cc:456
  1947. #, c-format
  1948. msgid "Sub-process %s received a segmentation fault."
  1949. msgstr "Le sous-processus %s a commis une violation d'accès mémoire"
  1950. #: apt-pkg/contrib/fileutl.cc:458
  1951. #, c-format
  1952. msgid "Sub-process %s received signal %u."
  1953. msgstr "Le sous-processus %s a reçu le signal %u"
  1954. #: apt-pkg/contrib/fileutl.cc:462
  1955. #, c-format
  1956. msgid "Sub-process %s returned an error code (%u)"
  1957. msgstr "Le sous-processus %s a renvoyé un code d'erreur (%u)"
  1958. #: apt-pkg/contrib/fileutl.cc:464
  1959. #, c-format
  1960. msgid "Sub-process %s exited unexpectedly"
  1961. msgstr "Le sous-processus %s s'est arrêté prématurément"
  1962. #: apt-pkg/contrib/fileutl.cc:508
  1963. #, c-format
  1964. msgid "Could not open file %s"
  1965. msgstr "Impossible de verrouiller %s"
  1966. #: apt-pkg/contrib/fileutl.cc:564
  1967. #, c-format
  1968. msgid "read, still have %lu to read but none left"
  1969. msgstr "lu(s), %lu restant à lire, mais rien n'est disponible"
  1970. #: apt-pkg/contrib/fileutl.cc:594
  1971. #, c-format
  1972. msgid "write, still have %lu to write but couldn't"
  1973. msgstr "écrit(s), %lu restant à écrire, mais l'écriture est impossible"
  1974. #: apt-pkg/contrib/fileutl.cc:669
  1975. msgid "Problem closing the file"
  1976. msgstr "Problème de fermeture du fichier"
  1977. #: apt-pkg/contrib/fileutl.cc:675
  1978. msgid "Problem unlinking the file"
  1979. msgstr "Problème d'effacement du fichier"
  1980. #: apt-pkg/contrib/fileutl.cc:686
  1981. msgid "Problem syncing the file"
  1982. msgstr "Problème de synchronisation du fichier"
  1983. #: apt-pkg/pkgcache.cc:133
  1984. msgid "Empty package cache"
  1985. msgstr "Cache des paquets vide"
  1986. #: apt-pkg/pkgcache.cc:139
  1987. msgid "The package cache file is corrupted"
  1988. msgstr "Le fichier de cache des paquets est corrompu"
  1989. #: apt-pkg/pkgcache.cc:144
  1990. msgid "The package cache file is an incompatible version"
  1991. msgstr "Le fichier de cache des paquets a une version incompatible"
  1992. #: apt-pkg/pkgcache.cc:149
  1993. #, c-format
  1994. msgid "This APT does not support the versioning system '%s'"
  1995. msgstr "Cet APT ne supporte pas le système de version « %s »"
  1996. #: apt-pkg/pkgcache.cc:154
  1997. msgid "The package cache was built for a different architecture"
  1998. msgstr "Le cache des paquets a été construit pour une architecture différente"
  1999. #: apt-pkg/pkgcache.cc:225
  2000. msgid "Depends"
  2001. msgstr "Dépend"
  2002. #: apt-pkg/pkgcache.cc:225
  2003. msgid "PreDepends"
  2004. msgstr "Pré-Dépend"
  2005. #: apt-pkg/pkgcache.cc:225
  2006. msgid "Suggests"
  2007. msgstr "Suggère"
  2008. #: apt-pkg/pkgcache.cc:226
  2009. msgid "Recommends"
  2010. msgstr "Recommande"
  2011. #: apt-pkg/pkgcache.cc:226
  2012. msgid "Conflicts"
  2013. msgstr "Est en conflit avec"
  2014. #: apt-pkg/pkgcache.cc:226
  2015. msgid "Replaces"
  2016. msgstr "Remplace"
  2017. #: apt-pkg/pkgcache.cc:227
  2018. msgid "Obsoletes"
  2019. msgstr "Rend obsolète"
  2020. #: apt-pkg/pkgcache.cc:227
  2021. msgid "Breaks"
  2022. msgstr "Casse"
  2023. #: apt-pkg/pkgcache.cc:227
  2024. msgid "Enhances"
  2025. msgstr "Améliore"
  2026. #: apt-pkg/pkgcache.cc:238
  2027. msgid "important"
  2028. msgstr "important"
  2029. #: apt-pkg/pkgcache.cc:238
  2030. msgid "required"
  2031. msgstr "nécessaire"
  2032. #: apt-pkg/pkgcache.cc:238
  2033. msgid "standard"
  2034. msgstr "standard"
  2035. #: apt-pkg/pkgcache.cc:239
  2036. msgid "optional"
  2037. msgstr "optionnel"
  2038. #: apt-pkg/pkgcache.cc:239
  2039. msgid "extra"
  2040. msgstr "supplémentaire"
  2041. #: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152
  2042. msgid "Building dependency tree"
  2043. msgstr "Construction de l'arbre des dépendances"
  2044. #: apt-pkg/depcache.cc:124
  2045. msgid "Candidate versions"
  2046. msgstr "Versions possibles"
  2047. #: apt-pkg/depcache.cc:153
  2048. msgid "Dependency generation"
  2049. msgstr "Génération des dépendances"
  2050. #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197
  2051. msgid "Reading state information"
  2052. msgstr "Lecture des informations d'état"
  2053. #: apt-pkg/depcache.cc:223
  2054. #, c-format
  2055. msgid "Failed to open StateFile %s"
  2056. msgstr "Impossible d'ouvrir le fichier d'état %s"
  2057. #: apt-pkg/depcache.cc:229
  2058. #, c-format
  2059. msgid "Failed to write temporary StateFile %s"
  2060. msgstr "Erreur d'écriture du fichier d'état temporaire %s"
  2061. #: apt-pkg/tagfile.cc:102
  2062. #, c-format
  2063. msgid "Unable to parse package file %s (1)"
  2064. msgstr "Impossible de traiter le fichier %s (1)"
  2065. #: apt-pkg/tagfile.cc:189
  2066. #, c-format
  2067. msgid "Unable to parse package file %s (2)"
  2068. msgstr "Impossible de traiter le fichier %s (2)"
  2069. #: apt-pkg/sourcelist.cc:90
  2070. #, c-format
  2071. msgid "Malformed line %lu in source list %s (URI)"
  2072. msgstr "Ligne %lu mal formée dans le fichier de source %s (URI)"
  2073. #: apt-pkg/sourcelist.cc:92
  2074. #, c-format
  2075. msgid "Malformed line %lu in source list %s (dist)"
  2076. msgstr "Ligne %lu mal formée dans la liste de sources %s (distribution)"
  2077. #: apt-pkg/sourcelist.cc:95
  2078. #, c-format
  2079. msgid "Malformed line %lu in source list %s (URI parse)"
  2080. msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de l'URI)"
  2081. #: apt-pkg/sourcelist.cc:101
  2082. #, c-format
  2083. msgid "Malformed line %lu in source list %s (absolute dist)"
  2084. msgstr ""
  2085. "Ligne %lu mal formée dans la liste des sources %s (distribution absolue)"
  2086. #: apt-pkg/sourcelist.cc:108
  2087. #, c-format
  2088. msgid "Malformed line %lu in source list %s (dist parse)"
  2089. msgstr ""
  2090. "Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)"
  2091. #: apt-pkg/sourcelist.cc:206
  2092. #, c-format
  2093. msgid "Opening %s"
  2094. msgstr "Ouverture de %s"
  2095. #: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445
  2096. #, c-format
  2097. msgid "Line %u too long in source list %s."
  2098. msgstr "La ligne %u du fichier des listes de sources %s est trop longue."
  2099. #: apt-pkg/sourcelist.cc:243
  2100. #, c-format
  2101. msgid "Malformed line %u in source list %s (type)"
  2102. msgstr "Ligne %u mal formée dans la liste des sources %s (type)"
  2103. #: apt-pkg/sourcelist.cc:247
  2104. #, c-format
  2105. msgid "Type '%s' is not known on line %u in source list %s"
  2106. msgstr "Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s"
  2107. #: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258
  2108. #, c-format
  2109. msgid "Malformed line %u in source list %s (vendor id)"
  2110. msgstr ""
  2111. "Ligne %u mal formée dans la liste des sources %s (identifiant du fournisseur)"
  2112. #: apt-pkg/packagemanager.cc:321 apt-pkg/packagemanager.cc:576
  2113. #, c-format
  2114. msgid ""
  2115. "Could not perform immediate configuration on '%s'.Please see man 5 apt.conf "
  2116. "under APT::Immediate-Configure for details. (%d)"
  2117. msgstr ""
  2118. #: apt-pkg/packagemanager.cc:437
  2119. #, c-format
  2120. msgid ""
  2121. "This installation run will require temporarily removing the essential "
  2122. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2123. "you really want to do it, activate the APT::Force-LoopBreak option."
  2124. msgstr ""
  2125. "Cette installation va temporairement nécessiter l'enlèvement du paquet "
  2126. "essentiel %s en raison d'une boucle entre les champs Conflicts et Pre-"
  2127. "Depends. C'est souvent une mauvaise chose, mais si vous souhaitez réellement "
  2128. "le faire, activez l'option APT::Force-LoopBreak."
  2129. #: apt-pkg/packagemanager.cc:475
  2130. #, c-format
  2131. msgid ""
  2132. "Could not perform immediate configuration on already unpacked '%s'.Please "
  2133. "see man 5 apt.conf under APT::Immediate-Configure for details."
  2134. msgstr ""
  2135. #: apt-pkg/pkgrecords.cc:32
  2136. #, c-format
  2137. msgid "Index file type '%s' is not supported"
  2138. msgstr "Le type de fichier d'index « %s » n'est pas accepté"
  2139. #: apt-pkg/algorithms.cc:248
  2140. #, c-format
  2141. msgid ""
  2142. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2143. msgstr ""
  2144. "Le paquet %s doit être réinstallé, mais il est impossible de trouver son "
  2145. "archive."
  2146. #: apt-pkg/algorithms.cc:1138
  2147. msgid ""
  2148. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2149. "held packages."
  2150. msgstr ""
  2151. "Erreur, pkgProblemResolver::Resolve a généré des ruptures, ce qui a pu être "
  2152. "causé par les paquets devant être gardés en l'état."
  2153. #: apt-pkg/algorithms.cc:1140
  2154. msgid "Unable to correct problems, you have held broken packages."
  2155. msgstr ""
  2156. "Impossible de corriger les problèmes, des paquets défectueux sont en mode "
  2157. "« garder en l'état »."
  2158. #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417
  2159. msgid ""
  2160. "Some index files failed to download, they have been ignored, or old ones "
  2161. "used instead."
  2162. msgstr ""
  2163. "Le téléchargement de quelques fichiers d'index a échoué, ils ont été "
  2164. "ignorés, ou les anciens ont été utilisés à la place."
  2165. #: apt-pkg/acquire.cc:60
  2166. #, c-format
  2167. msgid "Lists directory %spartial is missing."
  2168. msgstr "Le répertoire %spartial pour les listes n'existe pas."
  2169. #: apt-pkg/acquire.cc:64
  2170. #, c-format
  2171. msgid "Archive directory %spartial is missing."
  2172. msgstr "Le répertoire d'archive %spartial n'existe pas."
  2173. #. only show the ETA if it makes sense
  2174. #. two days
  2175. #: apt-pkg/acquire.cc:826
  2176. #, c-format
  2177. msgid "Retrieving file %li of %li (%s remaining)"
  2178. msgstr "Téléchargement du fichier %li sur %li (%s restant)"
  2179. #: apt-pkg/acquire.cc:828
  2180. #, c-format
  2181. msgid "Retrieving file %li of %li"
  2182. msgstr "Téléchargement du fichier %li sur %li"
  2183. #: apt-pkg/acquire-worker.cc:110
  2184. #, c-format
  2185. msgid "The method driver %s could not be found."
  2186. msgstr "Le pilote pour la méthode %s n'a pu être trouvé."
  2187. #: apt-pkg/acquire-worker.cc:159
  2188. #, c-format
  2189. msgid "Method %s did not start correctly"
  2190. msgstr "La méthode %s n'a pas démarré correctement"
  2191. #: apt-pkg/acquire-worker.cc:413
  2192. #, c-format
  2193. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2194. msgstr ""
  2195. "Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la "
  2196. "touche Entrée."
  2197. #: apt-pkg/init.cc:132
  2198. #, c-format
  2199. msgid "Packaging system '%s' is not supported"
  2200. msgstr "Le système de paquet « %s » n'est pas supporté"
  2201. #: apt-pkg/init.cc:148
  2202. msgid "Unable to determine a suitable packaging system type"
  2203. msgstr "Impossible de déterminer un type du système de paquets adéquat"
  2204. #: apt-pkg/clean.cc:56
  2205. #, c-format
  2206. msgid "Unable to stat %s."
  2207. msgstr "Impossible de localiser %s."
  2208. #: apt-pkg/srcrecords.cc:44
  2209. msgid "You must put some 'source' URIs in your sources.list"
  2210. msgstr ""
  2211. "Vous devez insérer quelques adresses « sources » dans votre sources.list"
  2212. #: apt-pkg/cachefile.cc:71
  2213. msgid "The package lists or status file could not be parsed or opened."
  2214. msgstr ""
  2215. "Les listes de paquets ou le fichier « status » ne peuvent être analysés ou "
  2216. "lus."
  2217. #: apt-pkg/cachefile.cc:75
  2218. msgid "You may want to run apt-get update to correct these problems"
  2219. msgstr "Vous pouvez lancer « apt-get update » pour corriger ces problèmes."
  2220. #: apt-pkg/policy.cc:347
  2221. #, c-format
  2222. msgid "Invalid record in the preferences file %s, no Package header"
  2223. msgstr ""
  2224. "Enregistrement non valable dans le fichier de préférences %s, aucune entrée "
  2225. "« Package »."
  2226. #: apt-pkg/policy.cc:369
  2227. #, c-format
  2228. msgid "Did not understand pin type %s"
  2229. msgstr "Étiquette %s inconnue"
  2230. #: apt-pkg/policy.cc:377
  2231. msgid "No priority (or zero) specified for pin"
  2232. msgstr "Aucune priorité (ou zéro) n'a été spécifiée pour l'étiquette"
  2233. #: apt-pkg/pkgcachegen.cc:74
  2234. msgid "Cache has an incompatible versioning system"
  2235. msgstr "Le cache possède un système de version incompatible"
  2236. #: apt-pkg/pkgcachegen.cc:117
  2237. #, c-format
  2238. msgid "Error occurred while processing %s (NewPackage)"
  2239. msgstr "Erreur apparue lors du traitement de %s (NewPackage)"
  2240. #: apt-pkg/pkgcachegen.cc:132
  2241. #, c-format
  2242. msgid "Error occurred while processing %s (UsePackage1)"
  2243. msgstr "Erreur apparue lors du traitement de %s (UsePackage1)"
  2244. #: apt-pkg/pkgcachegen.cc:166
  2245. #, c-format
  2246. msgid "Error occurred while processing %s (NewFileDesc1)"
  2247. msgstr "Erreur apparue lors du traitement de %s (NewFileDesc1)"
  2248. #: apt-pkg/pkgcachegen.cc:191
  2249. #, c-format
  2250. msgid "Error occurred while processing %s (UsePackage2)"
  2251. msgstr "Erreur apparue lors du traitement de %s (UsePackage2)"
  2252. #: apt-pkg/pkgcachegen.cc:195
  2253. #, c-format
  2254. msgid "Error occurred while processing %s (NewFileVer1)"
  2255. msgstr "Erreur apparue lors du traitement de %s (NewFileVer1)"
  2256. #: apt-pkg/pkgcachegen.cc:226
  2257. #, c-format
  2258. msgid "Error occurred while processing %s (NewVersion1)"
  2259. msgstr "Erreur apparue lors du traitement de %s (NewVersion1)"
  2260. #: apt-pkg/pkgcachegen.cc:230
  2261. #, c-format
  2262. msgid "Error occurred while processing %s (UsePackage3)"
  2263. msgstr "Erreur apparue lors du traitement de %s (UsePackage3)"
  2264. #: apt-pkg/pkgcachegen.cc:234
  2265. #, c-format
  2266. msgid "Error occurred while processing %s (NewVersion2)"
  2267. msgstr "Erreur apparue lors du traitement de %s (NewVersion2)"
  2268. #: apt-pkg/pkgcachegen.cc:258
  2269. #, c-format
  2270. msgid "Error occurred while processing %s (NewFileDesc2)"
  2271. msgstr "Erreur apparue lors du traitement de %s (NewFileDesc2)"
  2272. #: apt-pkg/pkgcachegen.cc:264
  2273. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2274. msgstr ""
  2275. "Vous avez dépassé le nombre de noms de paquets que cette version d'APT est "
  2276. "capable de traiter."
  2277. #: apt-pkg/pkgcachegen.cc:267
  2278. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2279. msgstr ""
  2280. "Vous avez dépassé le nombre de versions que cette version d'APT est capable "
  2281. "de traiter."
  2282. #: apt-pkg/pkgcachegen.cc:270
  2283. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2284. msgstr ""
  2285. "Vous avez dépassé le nombre de descriptions que cette version d'APT est "
  2286. "capable de traiter."
  2287. #: apt-pkg/pkgcachegen.cc:273
  2288. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2289. msgstr ""
  2290. "Vous avez dépassé le nombre de dépendances que cette version d'APT est "
  2291. "capable de traiter."
  2292. #: apt-pkg/pkgcachegen.cc:301
  2293. #, c-format
  2294. msgid "Error occurred while processing %s (FindPkg)"
  2295. msgstr "Erreur apparue lors du traitement de %s (FindPkg)"
  2296. #: apt-pkg/pkgcachegen.cc:314
  2297. #, c-format
  2298. msgid "Error occurred while processing %s (CollectFileProvides)"
  2299. msgstr "Erreur apparue lors du traitement de %s (CollectFileProvides)"
  2300. #: apt-pkg/pkgcachegen.cc:320
  2301. #, c-format
  2302. msgid "Package %s %s was not found while processing file dependencies"
  2303. msgstr ""
  2304. "Le paquet %s %s n'a pu être trouvé lors du traitement des dépendances des "
  2305. "fichiers"
  2306. #: apt-pkg/pkgcachegen.cc:693
  2307. #, c-format
  2308. msgid "Couldn't stat source package list %s"
  2309. msgstr "Impossible de localiser la liste des paquets sources %s"
  2310. #: apt-pkg/pkgcachegen.cc:778
  2311. msgid "Collecting File Provides"
  2312. msgstr "Assemblage des fichiers listés dans les champs Provides"
  2313. #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914
  2314. msgid "IO Error saving source cache"
  2315. msgstr ""
  2316. "Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources"
  2317. #: apt-pkg/acquire-item.cc:128
  2318. #, c-format
  2319. msgid "rename failed, %s (%s -> %s)."
  2320. msgstr "impossible de changer le nom, %s (%s -> %s)."
  2321. #: apt-pkg/acquire-item.cc:396
  2322. msgid "MD5Sum mismatch"
  2323. msgstr "Somme de contrôle MD5 incohérente"
  2324. #: apt-pkg/acquire-item.cc:657 apt-pkg/acquire-item.cc:1419
  2325. msgid "Hash Sum mismatch"
  2326. msgstr "Somme de contrôle de hachage incohérente"
  2327. #: apt-pkg/acquire-item.cc:1114
  2328. msgid "There is no public key available for the following key IDs:\n"
  2329. msgstr ""
  2330. "Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n"
  2331. #: apt-pkg/acquire-item.cc:1224
  2332. #, c-format
  2333. msgid ""
  2334. "I wasn't able to locate a file for the %s package. This might mean you need "
  2335. "to manually fix this package. (due to missing arch)"
  2336. msgstr ""
  2337. "Impossible de localiser un fichier du paquet %s. Cela signifie que vous "
  2338. "devrez corriger ce paquet vous-même (absence d'architecture)."
  2339. #: apt-pkg/acquire-item.cc:1283
  2340. #, c-format
  2341. msgid ""
  2342. "I wasn't able to locate file for the %s package. This might mean you need to "
  2343. "manually fix this package."
  2344. msgstr ""
  2345. "Impossible de localiser un fichier du paquet %s. Cela signifie que vous "
  2346. "devrez corriger ce paquet vous-même."
  2347. #: apt-pkg/acquire-item.cc:1324
  2348. #, c-format
  2349. msgid ""
  2350. "The package index files are corrupted. No Filename: field for package %s."
  2351. msgstr ""
  2352. "Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » "
  2353. "pour le paquet %s."
  2354. #: apt-pkg/acquire-item.cc:1411
  2355. msgid "Size mismatch"
  2356. msgstr "Taille incohérente"
  2357. #: apt-pkg/indexrecords.cc:40
  2358. #, c-format
  2359. msgid "Unable to parse Release file %s"
  2360. msgstr "Impossible d'analyser le fichier Release %s"
  2361. #: apt-pkg/indexrecords.cc:47
  2362. #, c-format
  2363. msgid "No sections in Release file %s"
  2364. msgstr "Pas de sections dans le fichier Release %s"
  2365. #: apt-pkg/indexrecords.cc:81
  2366. #, c-format
  2367. msgid "No Hash entry in Release file %s"
  2368. msgstr "Pas d'entrée de hachage dans le fichier Release %s"
  2369. #: apt-pkg/vendorlist.cc:66
  2370. #, c-format
  2371. msgid "Vendor block %s contains no fingerprint"
  2372. msgstr "Le bloc de fournisseur %s ne comporte pas d'empreinte"
  2373. #: apt-pkg/cdrom.cc:525
  2374. #, c-format
  2375. msgid ""
  2376. "Using CD-ROM mount point %s\n"
  2377. "Mounting CD-ROM\n"
  2378. msgstr ""
  2379. "Utilisation du point de montage %s pour le cédérom\n"
  2380. "Montage du cédérom\n"
  2381. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622
  2382. msgid "Identifying.. "
  2383. msgstr "Identification..."
  2384. #: apt-pkg/cdrom.cc:559
  2385. #, c-format
  2386. msgid "Stored label: %s\n"
  2387. msgstr "Étiquette stockée : %s\n"
  2388. #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836
  2389. msgid "Unmounting CD-ROM...\n"
  2390. msgstr "Démontage du cédérom...\n"
  2391. #: apt-pkg/cdrom.cc:585
  2392. #, c-format
  2393. msgid "Using CD-ROM mount point %s\n"
  2394. msgstr "Utilisation du point de montage %s pour le cédérom\n"
  2395. #: apt-pkg/cdrom.cc:603
  2396. msgid "Unmounting CD-ROM\n"
  2397. msgstr "Démontage du cédérom\n"
  2398. #: apt-pkg/cdrom.cc:607
  2399. msgid "Waiting for disc...\n"
  2400. msgstr "Attente du disque...\n"
  2401. #. Mount the new CDROM
  2402. #: apt-pkg/cdrom.cc:615
  2403. msgid "Mounting CD-ROM...\n"
  2404. msgstr "Montage du cédérom...\n"
  2405. #: apt-pkg/cdrom.cc:633
  2406. msgid "Scanning disc for index files..\n"
  2407. msgstr "Examen du disque à la recherche de fichiers d'index...\n"
  2408. #: apt-pkg/cdrom.cc:673
  2409. #, c-format
  2410. msgid ""
  2411. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2412. "zu signatures\n"
  2413. msgstr ""
  2414. "%zu index de paquets trouvés, %zu index de sources, %zu index de traductions "
  2415. "et %zu signatures\n"
  2416. #: apt-pkg/cdrom.cc:684
  2417. msgid ""
  2418. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2419. "wrong architecture?"
  2420. msgstr ""
  2421. "Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian "
  2422. "ou bien l'architecture est-elle incorrecte."
  2423. #: apt-pkg/cdrom.cc:710
  2424. #, c-format
  2425. msgid "Found label '%s'\n"
  2426. msgstr "Étiquette « %s » trouvée\n"
  2427. #: apt-pkg/cdrom.cc:739
  2428. msgid "That is not a valid name, try again.\n"
  2429. msgstr "Ce nom n'est pas valable, veuillez recommencer.\n"
  2430. #: apt-pkg/cdrom.cc:755
  2431. #, c-format
  2432. msgid ""
  2433. "This disc is called: \n"
  2434. "'%s'\n"
  2435. msgstr ""
  2436. "Ce disque s'appelle :\n"
  2437. "« %s »\n"
  2438. #: apt-pkg/cdrom.cc:759
  2439. msgid "Copying package lists..."
  2440. msgstr "Copie des listes de paquets..."
  2441. #: apt-pkg/cdrom.cc:785
  2442. msgid "Writing new source list\n"
  2443. msgstr "Écriture de la nouvelle liste de sources\n"
  2444. #: apt-pkg/cdrom.cc:794
  2445. msgid "Source list entries for this disc are:\n"
  2446. msgstr "Les entrées de listes de sources pour ce disque sont :\n"
  2447. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835
  2448. #, c-format
  2449. msgid "Wrote %i records.\n"
  2450. msgstr "%i enregistrements écrits.\n"
  2451. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837
  2452. #, c-format
  2453. msgid "Wrote %i records with %i missing files.\n"
  2454. msgstr "%i enregistrements écrits avec %i fichiers manquants.\n"
  2455. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840
  2456. #, c-format
  2457. msgid "Wrote %i records with %i mismatched files\n"
  2458. msgstr "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n"
  2459. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843
  2460. #, c-format
  2461. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2462. msgstr ""
  2463. "%i enregistrements écrits avec %i fichiers manquants et %i qui ne "
  2464. "correspondent pas\n"
  2465. #: apt-pkg/deb/dpkgpm.cc:49
  2466. #, c-format
  2467. msgid "Installing %s"
  2468. msgstr "Installation de %s"
  2469. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660
  2470. #, c-format
  2471. msgid "Configuring %s"
  2472. msgstr "Configuration de %s"
  2473. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667
  2474. #, c-format
  2475. msgid "Removing %s"
  2476. msgstr "Suppression de %s"
  2477. #: apt-pkg/deb/dpkgpm.cc:52
  2478. #, c-format
  2479. msgid "Running post-installation trigger %s"
  2480. msgstr "Exécution des actions différées (« trigger ») de %s"
  2481. #: apt-pkg/deb/dpkgpm.cc:557
  2482. #, c-format
  2483. msgid "Directory '%s' missing"
  2484. msgstr "Répertoire %s inexistant"
  2485. #: apt-pkg/deb/dpkgpm.cc:653
  2486. #, c-format
  2487. msgid "Preparing %s"
  2488. msgstr "Préparation de %s"
  2489. #: apt-pkg/deb/dpkgpm.cc:654
  2490. #, c-format
  2491. msgid "Unpacking %s"
  2492. msgstr "Décompression de %s"
  2493. #: apt-pkg/deb/dpkgpm.cc:659
  2494. #, c-format
  2495. msgid "Preparing to configure %s"
  2496. msgstr "Préparation de la configuration de %s"
  2497. #: apt-pkg/deb/dpkgpm.cc:661
  2498. #, c-format
  2499. msgid "Installed %s"
  2500. msgstr "%s installé"
  2501. #: apt-pkg/deb/dpkgpm.cc:666
  2502. #, c-format
  2503. msgid "Preparing for removal of %s"
  2504. msgstr "Préparation de la suppression de %s"
  2505. #: apt-pkg/deb/dpkgpm.cc:668
  2506. #, c-format
  2507. msgid "Removed %s"
  2508. msgstr "%s supprimé"
  2509. #: apt-pkg/deb/dpkgpm.cc:673
  2510. #, c-format
  2511. msgid "Preparing to completely remove %s"
  2512. msgstr "Préparation de la suppression complète de %s"
  2513. #: apt-pkg/deb/dpkgpm.cc:674
  2514. #, c-format
  2515. msgid "Completely removed %s"
  2516. msgstr "%s complètement supprimé"
  2517. #: apt-pkg/deb/dpkgpm.cc:878
  2518. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2519. msgstr ""
  2520. "Impossible d'écrire le journal, échec d'openpty()\n"
  2521. "(/dev/pts est-il monté ?)\n"
  2522. #: apt-pkg/deb/dpkgpm.cc:907
  2523. msgid "Running dpkg"
  2524. msgstr "Exécution de dpkg"
  2525. #: apt-pkg/deb/debsystem.cc:70
  2526. #, c-format
  2527. msgid ""
  2528. "Unable to lock the administration directory (%s), is another process using "
  2529. "it?"
  2530. msgstr ""
  2531. "Impossible de verrouiller le répertoire d'administration (%s). Il est "
  2532. "possible qu'un autre processus l'utilise."
  2533. #: apt-pkg/deb/debsystem.cc:73
  2534. #, c-format
  2535. msgid "Unable to lock the administration directory (%s), are you root?"
  2536. msgstr ""
  2537. "Impossible de verrouiller le répertoire d'administration (%s). Avez-vous les "
  2538. "privilèges du superutilisateur ?"
  2539. #: apt-pkg/deb/debsystem.cc:82
  2540. msgid ""
  2541. "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct "
  2542. "the problem. "
  2543. msgstr ""
  2544. "dpkg a été interrompu. Il est nécessaire d'utiliser « dpkg --configure -a » "
  2545. "pour corriger le problème."
  2546. #: apt-pkg/deb/debsystem.cc:100
  2547. msgid "Not locked"
  2548. msgstr "Non verrouillé"
  2549. #: methods/rred.cc:465
  2550. #, c-format
  2551. msgid ""
  2552. "Could not patch %s with mmap and with file operation usage - the patch seems "
  2553. "to be corrupt."
  2554. msgstr ""
  2555. #: methods/rred.cc:470
  2556. #, c-format
  2557. msgid ""
  2558. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  2559. "to be corrupt."
  2560. msgstr ""
  2561. #: methods/rsh.cc:330
  2562. msgid "Connection closed prematurely"
  2563. msgstr "Connexion fermée prématurément"
  2564. #~ msgid "No source package '%s' picking '%s' instead\n"
  2565. #~ msgstr "Pas de paquet source « %s ». Utilisation de « %s » à la place\n"
  2566. #~ msgid "Could not patch file"
  2567. #~ msgstr "Impossible de corriger le fichier"
  2568. #~ msgid "%4i %s\n"
  2569. #~ msgstr "%4i %s\n"
  2570. #~ msgid "Processing triggers for %s"
  2571. #~ msgstr "Traitement des déclencheurs (« triggers ») pour %s"
  2572. #~ msgid "Dynamic MMap ran out of room"
  2573. #~ msgstr "La zone dynamique d'allocation mémoire n'a plus de place"