fr.po 115 KB

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