fr.po 118 KB

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