fr.po 125 KB

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