fr.po 114 KB

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