fr.po 129 KB

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