fr.po 135 KB

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