fr.po 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132
  1. # Translation of dpkg scripts messages templates to French
  2. # Copyright (C) 2007 Frédéric Bothamy <frederic.bothamy@free.fr>
  3. # This file is distributed under the same license as the dpkg package.
  4. #
  5. # Frédéric Bothamy <frederic.bothamy@free.fr>, 2005-2007.
  6. # Christian Perrier <bubulle@debian.org>, 2008.
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: \n"
  10. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  11. "POT-Creation-Date: 2008-05-12 08:17+0300\n"
  12. "PO-Revision-Date: 2008-05-21 19:32+0200\n"
  13. "Last-Translator: Christian Perrier <bubulle@debian.org>\n"
  14. "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=n>1;\n"
  19. "X-Generator: KBabel 1.11.4\n"
  20. #: scripts/822-date.pl:12
  21. msgid "Usage: 822-date"
  22. msgstr "Usage : 822-date"
  23. #: scripts/822-date.pl:14
  24. msgid "This program is deprecated. Please use 'date -R' instead."
  25. msgstr "Ce programme est obsolète. Veuillez utiliser à la place « date -R »."
  26. #: scripts/dpkg-architecture.pl:35 scripts/dpkg-buildpackage.pl:22
  27. #: scripts/dpkg-distaddfile.pl:18 scripts/dpkg-genchanges.pl:89
  28. #: scripts/dpkg-gencontrol.pl:46 scripts/dpkg-gensymbols.pl:30
  29. #: scripts/dpkg-parsechangelog.pl:19 scripts/dpkg-scanpackages.pl:51
  30. #: scripts/dpkg-scansources.pl:96 scripts/dpkg-shlibdeps.pl:455
  31. #: scripts/dpkg-source.pl:338 scripts/changelog/debian.pl:19
  32. #, perl-format
  33. msgid "Debian %s version %s.\n"
  34. msgstr "Debian %s version %s.\n"
  35. #: scripts/dpkg-architecture.pl:37
  36. msgid ""
  37. "\n"
  38. "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  39. "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  40. msgstr ""
  41. "\n"
  42. "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  43. "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  44. #: scripts/dpkg-architecture.pl:41 scripts/dpkg-buildpackage.pl:29
  45. #: scripts/dpkg-distaddfile.pl:23 scripts/dpkg-genchanges.pl:95
  46. #: scripts/dpkg-gencontrol.pl:52 scripts/dpkg-gensymbols.pl:36
  47. #: scripts/dpkg-parsechangelog.pl:25 scripts/dpkg-shlibdeps.pl:464
  48. #: scripts/dpkg-source.pl:344 scripts/changelog/debian.pl:24
  49. msgid ""
  50. "\n"
  51. "This is free software; see the GNU General Public Licence version 2 or\n"
  52. "later for copying conditions. There is NO warranty.\n"
  53. msgstr ""
  54. "\n"
  55. "Ce logiciel est un logiciel libre. Voyez la licence « GNU General Public "
  56. "Licence »\n"
  57. "dans la version 2 ou une version supérieure pour les conditions de copie. Il "
  58. "n'y a PAS de garantie.\n"
  59. #: scripts/dpkg-architecture.pl:49
  60. #, perl-format
  61. msgid ""
  62. "Usage: %s [<option> ...] [<action>]\n"
  63. "\n"
  64. "Options:\n"
  65. " -a<debian-arch> set current Debian architecture.\n"
  66. " -t<gnu-system> set current GNU system type.\n"
  67. " -L list valid architectures.\n"
  68. " -f force flag (override variables set in environment).\n"
  69. "\n"
  70. "Actions:\n"
  71. " -l list variables (default).\n"
  72. " -e<debian-arch> compare with current Debian architecture.\n"
  73. " -i<arch-alias> check if current Debian architecture is <arch-alias>.\n"
  74. " -q<variable> prints only the value of <variable>.\n"
  75. " -s print command to set environment variables.\n"
  76. " -u print command to unset environment variables.\n"
  77. " -c <command> set environment and run the command in it.\n"
  78. " --help show this help message.\n"
  79. " --version show the version.\n"
  80. msgstr ""
  81. "Usage : %s [<option> ...] [<action>]\n"
  82. "\n"
  83. "Options :\n"
  84. " -a<debian-arch> définir l'architecture Debian en cours.\n"
  85. " -t<gnu-system> définir le type du système GNU en cours.\n"
  86. " -L lister les architectures valables.\n"
  87. " -f forçage, annuler les variables définies par "
  88. "l'environnement.\n"
  89. "\n"
  90. "Actions :\n"
  91. " -l lister les variables (défaut).\n"
  92. " -e<debian-arch> comparer avec l'architecture Debian en cours.\n"
  93. " -i<arch-alias> vérifier que l'architecture Debian en cours est <arch-"
  94. "alias>.\n"
  95. " -q<variable> afficher seulement la valeur de <variable>.\n"
  96. " -s afficher la commande pour définir les variables "
  97. "d'environnement.\n"
  98. " -u afficher la commande pour annuler les variables "
  99. "d'environnement.\n"
  100. " -c <commande> mettre en place l'environnement et exécuter la "
  101. "commande.\n"
  102. " --help afficher ce message d'aide.\n"
  103. " --version afficher la version.\n"
  104. #: scripts/dpkg-architecture.pl:120 scripts/dpkg-distaddfile.pl:51
  105. #: scripts/dpkg-genchanges.pl:185 scripts/dpkg-gencontrol.pl:119
  106. #: scripts/dpkg-gensymbols.pl:102 scripts/dpkg-parsechangelog.pl:99
  107. #: scripts/dpkg-shlibdeps.pl:101
  108. #, perl-format
  109. msgid "unknown option `%s'"
  110. msgstr "option inconnue « %s »"
  111. #: scripts/dpkg-architecture.pl:143
  112. #, perl-format
  113. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  114. msgstr ""
  115. "architecture Debian inconnue %s, vous devez aussi indiquer le type du "
  116. "système GNU "
  117. #: scripts/dpkg-architecture.pl:150
  118. #, perl-format
  119. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  120. msgstr ""
  121. "type du système GNU inconnu %s, vous devez aussi indiquer l'architecture "
  122. "Debian "
  123. #: scripts/dpkg-architecture.pl:157
  124. #, perl-format
  125. msgid "unknown default GNU system type for Debian architecture %s"
  126. msgstr "type du système GNU par défaut inconnu pour l'architecture Debian %s"
  127. #: scripts/dpkg-architecture.pl:160
  128. #, perl-format
  129. msgid ""
  130. "Default GNU system type %s for Debian arch %s does not match specified GNU "
  131. "system type %s"
  132. msgstr ""
  133. "Le type par défaut du système GNU %s pour l'architecture Debian %s ne "
  134. "correspond pas au type du système GNU indiqué %s"
  135. #: scripts/dpkg-architecture.pl:171
  136. #, perl-format
  137. msgid "Specified GNU system type %s does not match gcc system type %s."
  138. msgstr "le type du système GNU indiqué %s ne correspond pas au type de gcc %s"
  139. #: scripts/dpkg-architecture.pl:210
  140. #, perl-format
  141. msgid "%s is not a supported variable name"
  142. msgstr "%s n'est pas le nom d'une variable reconnue"
  143. #: scripts/dpkg-buildpackage.pl:24
  144. msgid ""
  145. "\n"
  146. "Copyright (C) 1996 Ian Jackson.\n"
  147. "Copyright (C) 2000 Wichert Akkerman\n"
  148. "Copyright (C) 2007 Frank Lichtenheld"
  149. msgstr ""
  150. "\n"
  151. "Copyright (C) 1996 Ian Jackson.\n"
  152. "Copyright (C) 2000 Wichert Akkerman.\n"
  153. "Copyright (C) 2007 Frank Lichtenheld."
  154. #: scripts/dpkg-buildpackage.pl:36
  155. #, perl-format
  156. msgid ""
  157. "\n"
  158. "Usage: %s [<options> ...]\n"
  159. "\n"
  160. "Options:\n"
  161. " -r<gain-root-command>\n"
  162. " command to gain root privileges (default is fakeroot).\n"
  163. " -R<rules> rules file to execute (default is debian/rules).\n"
  164. " -p<sign-command>\n"
  165. " -d do not check build dependencies and conflicts.\n"
  166. " -D check build dependencies and conflicts.\n"
  167. " -j[<number>] specify jobs to run simultaneously } passed to debian/"
  168. "rules\n"
  169. " -k<keyid> the key to use for signing.\n"
  170. " -sgpg the sign-command is called like GPG.\n"
  171. " -spgp the sign-command is called like PGP.\n"
  172. " -us unsigned source.\n"
  173. " -uc unsigned changes.\n"
  174. " -a<arch> Debian architecture we build for (implies -d).\n"
  175. " -b binary-only, do not build source. } also passed to\n"
  176. " -B binary-only, no arch-indep files. } dpkg-genchanges\n"
  177. " -A binary-only, only arch-indep files. }\n"
  178. " -S source only, no binary files. }\n"
  179. " -t<system> set GNU system type. } passed to dpkg-"
  180. "architecture\n"
  181. " -v<version> changes since version <version>. }\n"
  182. " -m<maint> maintainer for package is <maint>. }\n"
  183. " -e<maint> maintainer for release is <maint>. } only passed\n"
  184. " -C<descfile> changes are described in <descfile>. } to dpkg-genchanges\n"
  185. " -si (default) src includes orig for rev. 0 or 1. }\n"
  186. " -sa uploaded src always includes orig. }\n"
  187. " -sd uploaded src is diff and .dsc only. }\n"
  188. " -sn force Debian native source format. }\n"
  189. " -s[sAkurKUR] see dpkg-source for explanation. } only passed\n"
  190. " -z<level> compression level of source } to dpkg-source\n"
  191. " -Z(gz|bz2|lzma) compression to use for source }\n"
  192. " -nc do not clean source tree (implies -b).\n"
  193. " -tc clean source tree when finished.\n"
  194. " -ap add pause before starting signature process.\n"
  195. " -E turn certain warnings into errors. } passed to\n"
  196. " -W when -E is turned on, -W turns it off. } dpkg-source\n"
  197. " -i[<regex>] ignore diffs of files matching regex. } only passed\n"
  198. " -I[<pattern>] filter out files when building tarballs. } to dpkg-source\n"
  199. " --admindir=<directory>\n"
  200. " change the administrative directory.\n"
  201. " -h, --help show this help message.\n"
  202. " --version show the version.\n"
  203. msgstr ""
  204. "\n"
  205. "Usage : %s [<options> ...]\n"
  206. "\n"
  207. "Options :\n"
  208. " -r<commande-gain-root>\n"
  209. " commande pour obtenir les privilèges administrateur\n"
  210. " (par défaut, fakeroot).\n"
  211. " -R<rules> fichier rules à exécuter (par défaut, debian/rules).\n"
  212. " -p<commande-sign>\n"
  213. " -d ne pas vérifier les dépendances de construction et les "
  214. "conflits.\n"
  215. " -D vérifier les dépendances de construction et les conflits.\n"
  216. " -j[<nombre>] spécifier le nombre de tâches à exécuter simultanément } "
  217. "passé to debian/rules\n"
  218. " -k<id-clé> clé à utiliser pour signature.\n"
  219. " -sgpg la commande de signature est appelée comme GPG.\n"
  220. " -spgp la commande de signature est appelée comme PGP.\n"
  221. " -us fichier source non signé.\n"
  222. " -uc fichier changes non signé.\n"
  223. " -a<arch> architecture Debian de construction (implique -d).\n"
  224. " -b binaire uniquement, ne pas construire } également\n"
  225. " les sources. } } passé\n"
  226. " -B binaire uniquement, pas de fichier } à\n"
  227. " « arch-indep ». } dpkg-\n"
  228. " -A binaire uniquement, seulement les } genchanges\n"
  229. " fichiers « arch-indep » }\n"
  230. " -S source uniquement, pas de fichiers }\n"
  231. " binaires. }\n"
  232. " -t<système> définit le type système GNU. } passé à dpkg-"
  233. "architecture\n"
  234. " -v<version> changements depuis la version <version>. }\n"
  235. " -m<resp> le responsable pour le paquet est <resp>. }\n"
  236. " -e<resp> le responsable pour la publication est <resp>. } "
  237. "uniquement passé\n"
  238. " -C<fichier-desc> les changements sont décrits dans <fichier-desc>. } à "
  239. "dpkg-genchanges\n"
  240. " -si (défaut) src inclut l'orig pour les révisions 0 ou 1. }\n"
  241. " -sa le source envoyé inclut toujours l'orig. }\n"
  242. " -sd le source envoyé ne comprend que le diff et le .dsc. }\n"
  243. " -sn force le format source natif Debian. }\n"
  244. " -s[sAkurKUR] voir dpkg-source pour l'explication. } seulement "
  245. "passé\n"
  246. " -z<niveau> niveau de compression des sources } à dpkg-source\n"
  247. " -Z(gz|bz2|lzma) compression à utiliser pour les sources }\n"
  248. " -nc ne pas nettoyer l'arborescence des sources (implique -b).\n"
  249. " -tc nettoyer l'arborescence des source à la fin.\n"
  250. " -ap ajouter une pause avant de lancer le processus de "
  251. "signature.\n"
  252. " -E transforme certains avertissements en erreurs. } passé à\n"
  253. " -W quand -E est activé, -W le désactive. } dpkg-"
  254. "source\n"
  255. " -i[<regex>] ignorer les différences de fichiers correspondant à "
  256. "regex. } uniquement passé\n"
  257. " -I[<format>] filtrer les fichiers lors de la construction des "
  258. "tarballs. } à dpkg-source\n"
  259. " --admindir=<répertoire>\n"
  260. " changer le répertoire d'administration.\n"
  261. " -h, --help afficher ce message d'aide.\n"
  262. " --version afficher la version.\n"
  263. #: scripts/dpkg-buildpackage.pl:155 scripts/dpkg-buildpackage.pl:165
  264. #: scripts/dpkg-buildpackage.pl:172 scripts/dpkg-buildpackage.pl:179
  265. #: scripts/dpkg-buildpackage.pl:185
  266. #, perl-format
  267. msgid "cannot combine %s and %s"
  268. msgstr "impossible de combiner %s et %s"
  269. #: scripts/dpkg-buildpackage.pl:204
  270. #, perl-format
  271. msgid "unknown option or argument %s"
  272. msgstr "option ou paramètre inconnu %s"
  273. #: scripts/dpkg-buildpackage.pl:209
  274. msgid "using a gain-root-command while being root"
  275. msgstr ""
  276. "utilisation d'une commande pour obtenir les privilèges administrateur en "
  277. "tant qu'administrateur"
  278. #: scripts/dpkg-buildpackage.pl:215
  279. msgid ""
  280. "fakeroot not found, either install the fakeroot\n"
  281. "package, specify a command with the -r option, or run this as root"
  282. msgstr ""
  283. "fakeroot non trouvé, veuillez soit installer le paquet fakeroot,\n"
  284. "soit spécifier une commande avec l'option -r ou exécuter cette\n"
  285. "commande en tant qu'administrateur"
  286. #: scripts/dpkg-buildpackage.pl:219
  287. #, perl-format
  288. msgid "gain-root-commmand '%s' not found"
  289. msgstr "commande pour obtenir les privilèges administrateur « %s » non trouvée"
  290. #: scripts/dpkg-buildpackage.pl:238
  291. msgid "unknown sign command, assuming pgp style interface"
  292. msgstr "commande de signature inconnue, suppose une interface de style pgp"
  293. #: scripts/dpkg-buildpackage.pl:241
  294. msgid "PGP support is deprecated (see README.feature-removal-schedule)"
  295. msgstr "La gestion de PGP est obsolète (voir le fichier README.feature-removal-schedule)."
  296. #: scripts/dpkg-buildpackage.pl:269
  297. #, perl-format
  298. msgid "%s: use %s from environment: %s\n"
  299. msgstr "%s: utiliser %s depuis l'environnement : %s\n"
  300. #: scripts/dpkg-buildpackage.pl:273
  301. #, perl-format
  302. msgid "%s: set %s to default value: %s\n"
  303. msgstr "%s: place %s à la valeur par défaut : %s\n"
  304. #: scripts/dpkg-buildpackage.pl:286
  305. msgid "source package"
  306. msgstr "paquet source"
  307. #: scripts/dpkg-buildpackage.pl:287
  308. msgid "source version"
  309. msgstr "version source"
  310. #: scripts/dpkg-buildpackage.pl:296
  311. msgid "source changed by"
  312. msgstr "source changé en"
  313. #: scripts/dpkg-buildpackage.pl:324
  314. msgid "host architecture"
  315. msgstr "architecture hôte"
  316. #: scripts/dpkg-buildpackage.pl:340
  317. msgid "Build dependencies/conflicts unsatisfied; aborting."
  318. msgstr "Dépendances de construction et conflits non satisfaits ; échec."
  319. #: scripts/dpkg-buildpackage.pl:341
  320. msgid "(Use -d flag to override.)"
  321. msgstr "(Utilisez l'option -d pour forcer.)"
  322. #: scripts/dpkg-buildpackage.pl:344
  323. msgid "This is currently a non-fatal warning with -S, but"
  324. msgstr "Ceci est actuellement un avertissement sans conséquence avec -S, mais"
  325. #: scripts/dpkg-buildpackage.pl:345
  326. msgid "will probably become fatal in the future."
  327. msgstr "deviendra fatal dans le futur."
  328. #: scripts/dpkg-buildpackage.pl:369
  329. msgid "Press the return key to start signing process\n"
  330. msgstr "Appuyez sur Return pour commencer le processus de signature\n"
  331. #: scripts/dpkg-buildpackage.pl:376
  332. msgid "Failed to sign .dsc and .changes file"
  333. msgstr "Échec de signature des fichiers .dsc et .changes"
  334. #: scripts/dpkg-buildpackage.pl:397 scripts/dpkg-buildpackage.pl:401
  335. #: scripts/dpkg-buildpackage.pl:414
  336. msgid "write changes file"
  337. msgstr "écriture du fichier changes"
  338. #: scripts/dpkg-buildpackage.pl:413
  339. msgid "dpkg-genchanges"
  340. msgstr "dpkg-genchanges"
  341. #: scripts/dpkg-buildpackage.pl:421
  342. msgid "source only upload: Debian-native package"
  343. msgstr "envoi de source uniquement : paquet Debian natif"
  344. #: scripts/dpkg-buildpackage.pl:423
  345. msgid "source only, diff-only upload (original source NOT included)"
  346. msgstr ""
  347. "source uniquement, envoi du fichier diff uniquement (aucune inclusion du "
  348. "code source d'origine)"
  349. #: scripts/dpkg-buildpackage.pl:425
  350. msgid "source only upload (original source is included)"
  351. msgstr "envoi du source seulement (inclusion du code source d'origine)"
  352. #: scripts/dpkg-buildpackage.pl:428 scripts/dpkg-buildpackage.pl:436
  353. msgid "full upload (original source is included)"
  354. msgstr "envoi complet (inclusion du code source d'origine)"
  355. #: scripts/dpkg-buildpackage.pl:430
  356. msgid "binary only upload (no source included)"
  357. msgstr "envoi d'un binaire seulement (aucune inclusion de code source)"
  358. #: scripts/dpkg-buildpackage.pl:432
  359. msgid "full upload; Debian-native package (full source is included)"
  360. msgstr "envoi complet ; paquet Debian natif (inclusion du code source complet)"
  361. #: scripts/dpkg-buildpackage.pl:434
  362. msgid "binary and diff upload (original source NOT included)"
  363. msgstr ""
  364. "envoi d'un binaire et du fichier diff (aucune inclusion du code source "
  365. "d'origine)"
  366. #: scripts/dpkg-buildpackage.pl:441
  367. msgid "Failed to sign .changes file"
  368. msgstr "Échec de signature du fichier .changes"
  369. #: scripts/dpkg-buildpackage.pl:465
  370. #, perl-format
  371. msgid "unable to determine %s"
  372. msgstr "impossible de déterminer %s"
  373. #: scripts/dpkg-checkbuilddeps.pl:19
  374. #, perl-format
  375. msgid ""
  376. "Usage: %s [<option> ...] [<control-file>]\n"
  377. "\n"
  378. "Options:\n"
  379. " control-file control file to process (default: debian/control).\n"
  380. " -B binary-only, ignore -Indep.\n"
  381. " -d build-deps use given string as build dependencies instead of\n"
  382. " retrieving them from control file\n"
  383. " -c build-conf use given string for build conflicts instead of\n"
  384. " retrieving them from control file\n"
  385. " --admindir=<directory>\n"
  386. " change the administrative directory.\n"
  387. " -h show this help message.\n"
  388. msgstr ""
  389. "Usage : %s [<option> ...] [<fichier_de_contrôle>]\n"
  390. "\n"
  391. "Options :\n"
  392. " fichier_de_contrôle fichier_de_contrôle à utiliser (défaut : debian/"
  393. "control).\n"
  394. " -d build-deps utiliser la chaîne indiquée comme dépendances de construction\n"
  395. " (« build deps ») au lieu de celles du fichier control\n"
  396. " -c build-conf utiliser la chaîne indiquée comme conflit de construction\n"
  397. " (« build conflicts ») au lieu de celles du fichier control\n"
  398. " -B binaire seul, ignore -Indep.\n"
  399. " --admindir=<répertoire>\n"
  400. " change le répertoire d'administration.\n"
  401. " -h afficher ce message d'aide.\n"
  402. #: scripts/dpkg-checkbuilddeps.pl:84
  403. #, perl-format
  404. msgid "%s: Unmet build dependencies: "
  405. msgstr "%s : dépendances de construction non trouvées : "
  406. #: scripts/dpkg-checkbuilddeps.pl:88
  407. #, perl-format
  408. msgid "%s: Build conflicts: "
  409. msgstr "%s : conflits de construction du paquet : "
  410. #: scripts/dpkg-checkbuilddeps.pl:164 scripts/dpkg-gencontrol.pl:243
  411. #: scripts/dpkg-gencontrol.pl:250 scripts/dpkg-source.pl:173
  412. #, perl-format
  413. msgid "error occurred while parsing %s"
  414. msgstr "erreur rencontrée lors de l'analyse de %s"
  415. #: scripts/dpkg-distaddfile.pl:20
  416. msgid ""
  417. "\n"
  418. "Copyright (C) 1996 Ian Jackson."
  419. msgstr ""
  420. "\n"
  421. "Copyright (C) 1996 Ian Jackson."
  422. #: scripts/dpkg-distaddfile.pl:31
  423. #, perl-format
  424. msgid ""
  425. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  426. "\n"
  427. "Options:\n"
  428. " -f<fileslistfile> write files here instead of debian/files.\n"
  429. " -h, --help show this help message.\n"
  430. " --version show the version.\n"
  431. msgstr ""
  432. "Usage : %s [<option>...] <fichier> <section> <priorité>\n"
  433. "\n"
  434. "Options :\n"
  435. " -f <fichier_des_fichiers> lister les fichiers dans ce fichier plutôt "
  436. "que debian/files.\n"
  437. " -h, --help afficher ce message d'aide.\n"
  438. " --version afficher la version.\n"
  439. #: scripts/dpkg-distaddfile.pl:55
  440. msgid "need exactly a filename, section and priority"
  441. msgstr "Il est demandé exactement un fichier, une section et une priorité"
  442. #: scripts/dpkg-distaddfile.pl:59
  443. msgid "filename, section and priority may contain no whitespace"
  444. msgstr "fichier, section et priorité ne peuvent contenir d'espace"
  445. #: scripts/dpkg-distaddfile.pl:62 scripts/dpkg-gencontrol.pl:319
  446. msgid "open new files list file"
  447. msgstr "ouverture du nouveau fichier des fichiers"
  448. #: scripts/dpkg-distaddfile.pl:67 scripts/dpkg-gencontrol.pl:330
  449. msgid "copy old entry to new files list file"
  450. msgstr "copie de l'ancienne entrée dans le nouveau fichier des fichiers"
  451. #: scripts/dpkg-distaddfile.pl:70 scripts/dpkg-gencontrol.pl:334
  452. msgid "read old files list file"
  453. msgstr "lecture du nouveau fichier des fichiers"
  454. #: scripts/dpkg-distaddfile.pl:73 scripts/dpkg-gencontrol.pl:344
  455. msgid "write new entry to new files list file"
  456. msgstr "écriture de la nouvelle entrée dans le nouveau fichier des fichiers"
  457. #: scripts/dpkg-distaddfile.pl:74 scripts/dpkg-gencontrol.pl:345
  458. msgid "close new files list file"
  459. msgstr "fermeture du nouveau fichier des fichiers"
  460. #: scripts/dpkg-genchanges.pl:91
  461. msgid ""
  462. "\n"
  463. "Copyright (C) 1996 Ian Jackson.\n"
  464. "Copyright (C) 2000,2001 Wichert Akkerman."
  465. msgstr ""
  466. "\n"
  467. "Copyright (C) 1996 Ian Jackson.\n"
  468. "Copyright (C) 2000,2001 Wichert Akkerman."
  469. #: scripts/dpkg-genchanges.pl:103
  470. #, perl-format
  471. msgid ""
  472. "Usage: %s [<option> ...]\n"
  473. "\n"
  474. "Options:\n"
  475. " -b binary-only build - no source files.\n"
  476. " -B arch-specific - no source or arch-indep files.\n"
  477. " -A only arch-indep - no source or arch-specific "
  478. "files.\n"
  479. " -S source-only upload.\n"
  480. " -c<controlfile> get control info from this file.\n"
  481. " -l<changelogfile> get per-version info from this file.\n"
  482. " -f<fileslistfile> get .deb files list from this file.\n"
  483. " -v<sinceversion> include all changes later than version.\n"
  484. " -C<changesdescription> use change description from this file.\n"
  485. " -m<maintainer> override control's maintainer value.\n"
  486. " -e<maintainer> override changelog's maintainer value.\n"
  487. " -u<uploadfilesdir> directory with files (default is `..').\n"
  488. " -si (default) src includes orig if new upstream.\n"
  489. " -sa source includes orig src.\n"
  490. " -sd source is diff and .dsc only.\n"
  491. " -q quiet - no informational messages on stderr.\n"
  492. " -F<changelogformat> force change log format.\n"
  493. " -V<name>=<value> set a substitution variable.\n"
  494. " -T<varlistfile> read variables here, not debian/substvars.\n"
  495. " -D<field>=<value> override or add a field and value.\n"
  496. " -U<field> remove a field.\n"
  497. " -h, --help show this help message.\n"
  498. " --version show the version.\n"
  499. msgstr ""
  500. "Usage : %s [<option> ...]\n"
  501. "\n"
  502. "Options :\n"
  503. " -b construction du binaire seul - pas de fichier\n"
  504. " source.\n"
  505. " -B spécifique à une arch. - pas de fichier source\n"
  506. " ou arch-indep.\n"
  507. " -A indépendant d'une arch. - pas de fichier "
  508. "source ou fichiers dépendant de l'arch.\n"
  509. " -S envoi (« upload ») de source seulement.\n"
  510. " -c<fichier_de_contrôle> obtenir les informations de contrôle dans ce\n"
  511. " fichier.\n"
  512. " -l<fichier_changelog> obtenir les informations de changelog dans "
  513. "ce fichier.\n"
  514. " -f<fichier_des_fichiers> obtenir la liste des fichiers .deb dans ce\n"
  515. " fichier.\n"
  516. " -v<depuis_version> inclure toutes les modifications depuis cette\n"
  517. " version.\n"
  518. " -C<changesdescription> utiliser la description des changements dans "
  519. "ce\n"
  520. " fichier.\n"
  521. " -m<responsable> remplacer la valeur pour le responsable dans "
  522. "le\n"
  523. " fichier control.\n"
  524. " -e<responsable> remplacer la valeur pour le responsable dans "
  525. "le\n"
  526. " fichier changelog.\n"
  527. " -u<uploadfilesdir> répertoire avec fichiers (par défaut c'est\n"
  528. " « .. »).\n"
  529. " -si (défaut) le source inclut un orig pour debian-revision "
  530. "0\n"
  531. " ou 1.\n"
  532. " -sa le source inclut un orig.\n"
  533. " -sd le source inclut seulement un diff et un .dsc.\n"
  534. " -q silence - pas d'information sur stderr.\n"
  535. " -F<changelogformat> modifier le format du changelog.\n"
  536. " -V<nom>=<valeur> définir une substitution de variable.\n"
  537. " -T<varlistfile> lire les variables dans ce fichier, pas dans\n"
  538. " debian/substvars.\n"
  539. " -D<champ>=<valeur> remplacer ou ajouter une paire champ / valeur.\n"
  540. " -U<champ> supprimer un champ.\n"
  541. " -h, --help afficher ce message d'aide.\n"
  542. " --version afficher la version.\n"
  543. #: scripts/dpkg-genchanges.pl:136 scripts/dpkg-genchanges.pl:139
  544. #: scripts/dpkg-genchanges.pl:143 scripts/dpkg-genchanges.pl:147
  545. #, perl-format
  546. msgid "cannot combine %s and -S"
  547. msgstr "impossible de combiner %s et -S"
  548. #: scripts/dpkg-genchanges.pl:141
  549. #, perl-format
  550. msgid "%s: arch-specific upload - not including arch-independent packages"
  551. msgstr ""
  552. "%s : envoi d'un paquet pour une architecture - n'inclut pas de paquet "
  553. "indépendant d'une architecture."
  554. #: scripts/dpkg-genchanges.pl:145
  555. #, perl-format
  556. msgid "%s: arch-indep upload - not including arch-specific packages"
  557. msgstr ""
  558. "%s : envoi d'un paquet indépendant de l'architecture - n'inclut pas de "
  559. "paquet spécifique d'une architecture."
  560. #: scripts/dpkg-genchanges.pl:165 scripts/dpkg-source.pl:102
  561. #: scripts/dpkg-source.pl:105
  562. msgid "substvars support is deprecated (see README.feature-removal-schedule)"
  563. msgstr "La gestion de substvars est obsolète (voir le fichier README.feature-removal-schedule)."
  564. #: scripts/dpkg-genchanges.pl:211
  565. #, perl-format
  566. msgid "the current version (%s) is smaller than the previous one (%s)"
  567. msgstr "La version actuelle (%s) est inférieure à la version précédente (%s)"
  568. #: scripts/dpkg-genchanges.pl:216
  569. msgid "cannot read files list file"
  570. msgstr "impossible de lire le fichier des fichiers."
  571. #: scripts/dpkg-genchanges.pl:220
  572. #, perl-format
  573. msgid "duplicate files list entry for package %s (line %d)"
  574. msgstr "entrée en double dans le fichier des fichiers pour le paquet %s (ligne %d) "
  575. #: scripts/dpkg-genchanges.pl:228 scripts/dpkg-genchanges.pl:242
  576. #, perl-format
  577. msgid "duplicate files list entry for file %s (line %d)"
  578. msgstr "entrée en double dans le fichier des fichiers pour le fichier %s (ligne %d)"
  579. #: scripts/dpkg-genchanges.pl:248
  580. #, perl-format
  581. msgid "badly formed line in files list file, line %d"
  582. msgstr "ligne %d mal formée dans le fichier des fichiers"
  583. #: scripts/dpkg-genchanges.pl:269 scripts/dpkg-gencontrol.pl:160
  584. #: scripts/dpkg-source.pl:183
  585. msgid "general section of control info file"
  586. msgstr "section générale dans le fichier info"
  587. #: scripts/dpkg-genchanges.pl:295
  588. #, perl-format
  589. msgid "package %s in control file but not in files list"
  590. msgstr "paquet %s dans le fichier de contrôle mais pas dans le fichier des fichiers"
  591. #: scripts/dpkg-genchanges.pl:323 scripts/dpkg-gencontrol.pl:193
  592. #: scripts/dpkg-source.pl:224
  593. msgid "package's section of control info file"
  594. msgstr "section du paquet dans le fichier info"
  595. #: scripts/dpkg-genchanges.pl:340 scripts/dpkg-gencontrol.pl:210
  596. #: scripts/dpkg-source.pl:244
  597. msgid "parsed version of changelog"
  598. msgstr "version analysée du changelog"
  599. #: scripts/dpkg-genchanges.pl:346
  600. msgid "read changesdescription"
  601. msgstr "lecture de changesdescription"
  602. #: scripts/dpkg-genchanges.pl:357
  603. #, perl-format
  604. msgid "package %s listed in files list but not in control info"
  605. msgstr "paquet %s listé dans le fichier des fichiers mais pas dans le fichier info"
  606. #: scripts/dpkg-genchanges.pl:369
  607. #, perl-format
  608. msgid "missing Section for binary package %s; using '-'"
  609. msgstr "la section du paquet binaire %s manque ; utilisation de « - »"
  610. #: scripts/dpkg-genchanges.pl:371
  611. #, perl-format
  612. msgid "package %s has section %s in control file but %s in files list"
  613. msgstr ""
  614. "le paquet %s a une section %s dans le fichier de contrôle mais une section %"
  615. "s dans le fichier des fichiers"
  616. #: scripts/dpkg-genchanges.pl:378
  617. #, perl-format
  618. msgid "missing Priority for binary package %s; using '-'"
  619. msgstr "le champ « Priority » du paquet binaire %s manque ; utilisation de « - »"
  620. #: scripts/dpkg-genchanges.pl:380
  621. #, perl-format
  622. msgid "package %s has priority %s in control file but %s in files list"
  623. msgstr ""
  624. "le paquet %s a une priorité %s dans le fichier de contrôle mais une priorité "
  625. "%s dans le fichier des fichiers"
  626. #: scripts/dpkg-genchanges.pl:392
  627. msgid "missing Section for source files"
  628. msgstr "il manque la section pour les fichiers source"
  629. #: scripts/dpkg-genchanges.pl:397
  630. msgid "missing Priority for source files"
  631. msgstr "il manque la priorité pour les fichiers source"
  632. #: scripts/dpkg-genchanges.pl:402
  633. #, perl-format
  634. msgid "cannot open .dsc file %s"
  635. msgstr "impossible d'ouvrir le fichier .dsc %s"
  636. #: scripts/dpkg-genchanges.pl:405 scripts/Dpkg/Source/Package.pm:140
  637. #, perl-format
  638. msgid "source control file %s"
  639. msgstr "fichier de contrôle des sources %s"
  640. #: scripts/dpkg-genchanges.pl:415 scripts/Dpkg/Source/Package.pm:201
  641. #, perl-format
  642. msgid "Files field contains bad line `%s'"
  643. msgstr "le champ Files contient une ligne mal formée « %s »"
  644. #: scripts/dpkg-genchanges.pl:419 scripts/Dpkg/Checksums.pm:52
  645. #, perl-format
  646. msgid "Conflicting checksums `%s' and `%s' for file `%s'"
  647. msgstr "Sommes de contrôle en conflit : « %s » et « %s » pour le fichier « %s »"
  648. #: scripts/dpkg-genchanges.pl:424
  649. #, perl-format
  650. msgid "Conflicting sizes `%u' and `%u' for file `%s'"
  651. msgstr "Tailles en conflit : « %u » et « %u » pour le fichier « %s »"
  652. #: scripts/dpkg-genchanges.pl:457
  653. msgid "not including original source code in upload"
  654. msgstr "pas d'inclusion du code source original dans l'envoi (« upload »)"
  655. #: scripts/dpkg-genchanges.pl:462
  656. msgid "ignoring -sd option for native Debian package"
  657. msgstr "option -sd ignorée pour les paquets Debian pure souche"
  658. #: scripts/dpkg-genchanges.pl:464
  659. msgid "including full source code in upload"
  660. msgstr "inclusion du code source original dans l'envoi (« upload »)"
  661. #: scripts/dpkg-genchanges.pl:467
  662. msgid "binary-only upload - not including any source code"
  663. msgstr "envoi d'un binaire - aucune inclusion de code source"
  664. #: scripts/dpkg-genchanges.pl:471
  665. msgid "write original source message"
  666. msgstr "écriture du message source original"
  667. #: scripts/dpkg-genchanges.pl:521 scripts/Dpkg/Source/Package.pm:394
  668. #, perl-format
  669. msgid "missing information for critical output field %s"
  670. msgstr "il manque l'information pour l'important champ de sortie %s"
  671. #: scripts/dpkg-genchanges.pl:526 scripts/dpkg-gencontrol.pl:260
  672. #: scripts/dpkg-gencontrol.pl:263 scripts/Dpkg/Source/Package.pm:399
  673. #, perl-format
  674. msgid "missing information for output field %s"
  675. msgstr "il manque l'information pour le champ de sortie %s"
  676. #: scripts/dpkg-gencontrol.pl:48
  677. msgid ""
  678. "\n"
  679. "Copyright (C) 1996 Ian Jackson.\n"
  680. "Copyright (C) 2000,2002 Wichert Akkerman."
  681. msgstr ""
  682. "\n"
  683. "Copyright (C) 1996 Ian Jackson.\n"
  684. "Copyright (C) 2000,2002 Wichert Akkerman."
  685. #: scripts/dpkg-gencontrol.pl:60
  686. #, perl-format
  687. msgid ""
  688. "Usage: %s [<option> ...]\n"
  689. "\n"
  690. "Options:\n"
  691. " -p<package> print control file for package.\n"
  692. " -c<controlfile> get control info from this file.\n"
  693. " -l<changelogfile> get per-version info from this file.\n"
  694. " -F<changelogformat> force change log format.\n"
  695. " -v<forceversion> set version of binary package.\n"
  696. " -f<fileslistfile> write files here instead of debian/files.\n"
  697. " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
  698. " -n<filename> assume the package filename will be <filename>.\n"
  699. " -O write to stdout, not .../DEBIAN/control.\n"
  700. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  701. " -D<field>=<value> override or add a field and value.\n"
  702. " -U<field> remove a field.\n"
  703. " -V<name>=<value> set a substitution variable.\n"
  704. " -T<varlistfile> read variables here, not debian/substvars.\n"
  705. " -h, --help show this help message.\n"
  706. " --version show the version.\n"
  707. msgstr ""
  708. "Usage : %s [<option> ...]\n"
  709. "\n"
  710. "Options :\n"
  711. " -p<paquet> afficher le fichier de contrôle du paquet.\n"
  712. " -c<fichier_de_contrôle> obtenir les informations de contrôle dans ce "
  713. "fichier.\n"
  714. " -l<fichier_changelog> obtenir les informations de changelog dans ce "
  715. "fichier.\n"
  716. " -F<changelogformat> modifier le format du changelog.\n"
  717. " -v<forceversion> définir la version du paquet binaire.\n"
  718. " -f<fichier_des_fichiers> écrire liste des fichiers dans ce fichier, non "
  719. "dans debian/files.\n"
  720. " -P<packagebuilddir> répertoire temporaire de construction, au lieu "
  721. "de debian/tmp.\n"
  722. " -n<fichier> supposer que le nom du paquet sera <fichier>.\n"
  723. " -O écrire sur stdout, pas .../DEBIAN/control.\n"
  724. " -is, -ip, -isp, -ips options déconseillées, ignorées pour "
  725. "compatibilité.\n"
  726. " -D<champ>=<valeur> remplacer ou ajouter une paire champ / valeur.\n"
  727. " -U<champ> supprimer un champ.\n"
  728. " -V<nom>=<valeur> définir une substitution de variable.\n"
  729. " -T<varlistfile> lire les variables dans ce fichier, pas dans "
  730. "debian/substvars.\n"
  731. " -h, --help afficher ce message d'aide.\n"
  732. " --version afficher la version.\n"
  733. #: scripts/dpkg-gencontrol.pl:87 scripts/dpkg-gensymbols.pl:87
  734. #, perl-format
  735. msgid "Illegal package name `%s'"
  736. msgstr "nom de paquet %s non autorisé"
  737. #: scripts/dpkg-gencontrol.pl:136
  738. #, perl-format
  739. msgid "package %s not in control info"
  740. msgstr "le paquet %s n'est pas le fichier de contrôle"
  741. #: scripts/dpkg-gencontrol.pl:140 scripts/dpkg-gensymbols.pl:118
  742. #, perl-format
  743. msgid "must specify package since control info has many (%s)"
  744. msgstr "il faut indiquer un paquet car le fichier de contrôle contient plusieurs (%s)"
  745. #: scripts/dpkg-gencontrol.pl:177
  746. #, perl-format
  747. msgid "`%s' is not a legal architecture string."
  748. msgid_plural "`%s' are not legal architecture strings."
  749. msgstr[0] "« %s » n'est pas une architecture autorisée."
  750. msgstr[1] "« %s » ne sont pas des architectures autorisées."
  751. #: scripts/dpkg-gencontrol.pl:183
  752. #, perl-format
  753. msgid ""
  754. "current host architecture '%s' does not appear in package's architecture "
  755. "list (%s)"
  756. msgstr ""
  757. "l'actuelle architecture hôte « %s » n'apparaît pas dans la liste "
  758. "d'architecture du paquet (%s)"
  759. #: scripts/dpkg-gencontrol.pl:274
  760. #, perl-format
  761. msgid "%s package with udeb specific field %s"
  762. msgstr "paquet %s avec champ spécifique udeb %s"
  763. #: scripts/dpkg-gencontrol.pl:287
  764. msgid "fork for du"
  765. msgstr "fork pour du"
  766. #: scripts/dpkg-gencontrol.pl:290
  767. #, perl-format
  768. msgid "chdir for du to `%s'"
  769. msgstr "chdir pour du vers %s"
  770. #: scripts/dpkg-gencontrol.pl:291
  771. msgid "exec du"
  772. msgstr "exec du"
  773. #: scripts/dpkg-gencontrol.pl:298
  774. #, perl-format
  775. msgid "du in `%s'"
  776. msgstr "du dans %s"
  777. #: scripts/dpkg-gencontrol.pl:300
  778. #, perl-format
  779. msgid "du gave unexpected output `%s'"
  780. msgstr "résultat inattendu de du %s"
  781. #: scripts/dpkg-gencontrol.pl:332
  782. msgid "close old files list file"
  783. msgstr "fermeture de l'ancien fichier des fichiers"
  784. #: scripts/dpkg-gencontrol.pl:346
  785. msgid "install new files list file"
  786. msgstr "installation du nouveau fichier des fichiers"
  787. #: scripts/dpkg-gencontrol.pl:354
  788. #, perl-format
  789. msgid "cannot open new output control file `%s'"
  790. msgstr "impossible d'ouvrir nouveau fichier de sortie %s"
  791. #: scripts/dpkg-gencontrol.pl:365
  792. #, perl-format
  793. msgid "cannot install output control file `%s'"
  794. msgstr "impossible d'installer nouveau fichier de sortie %s"
  795. #: scripts/dpkg-gensymbols.pl:32
  796. msgid ""
  797. "\n"
  798. "Copyright (C) 2007 Raphael Hertzog.\n"
  799. msgstr ""
  800. "\n"
  801. "Copyright (C) 2007 Raphael Hertzog.\n"
  802. #: scripts/dpkg-gensymbols.pl:44
  803. #, perl-format
  804. msgid ""
  805. "Usage: %s [<option> ...]\n"
  806. "\n"
  807. "Options:\n"
  808. " -p<package> generate symbols file for package.\n"
  809. " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
  810. " -e<library> explicitely list libraries to scan.\n"
  811. " -v<version> version of the packages (defaults to\n"
  812. " version extracted from debian/changelog).\n"
  813. " -c<level> compare generated symbols file with the\n"
  814. " reference file in the debian directory.\n"
  815. "\t\t\t Fails if difference are too important\n"
  816. "\t\t\t (level goes from 0 for no check, to 4\n"
  817. "\t\t\t for all checks). By default checks at\n"
  818. "\t\t\t level 1.\n"
  819. " -I<file> force usage of <file> as reference symbols\n"
  820. " file instead of the default file.\n"
  821. " -O<file> write to <file>, not .../DEBIAN/symbols.\n"
  822. " -O write to stdout, not .../DEBIAN/symbols.\n"
  823. " -d display debug information during work.\n"
  824. " -h, --help show this help message.\n"
  825. " --version show the version.\n"
  826. msgstr ""
  827. "Usage : %s [<option> ...]\n"
  828. "\n"
  829. "Options :\n"
  830. " -p<paquet> générer le fichier des symboles pour ce paquet.\n"
  831. " -P<répconstrpaquet> répertoire de construction temporaire au lieu de "
  832. "debian/tmp.\n"
  833. " -e<bibliothèque> lister explicitement les bibliothèques à "
  834. "rechercher.\n"
  835. " -v<version> version des paquets (par défaut, la version "
  836. "extraite de\n"
  837. " debian/changelog).\n"
  838. " -c<niveau> comparer les symboles générés avec le fichier de "
  839. "référence\n"
  840. " dans le répertoire debian.\n"
  841. "\t\t\t Échoue si les différences sont trop importantes\n"
  842. "\t\t\t (le niveau va de 0 pour aucun contrôle à 4 pour tous\n"
  843. "\t\t\t les contrôles). Par défaut, le niveau de contrôle est 1.\n"
  844. " -I<fichier> forcer l'utilisation de <fichier> comme fichier "
  845. "de symboles\n"
  846. " de référence au lieu du fichier par défaut.\n"
  847. " -O<fichier> écrire dans <fichier> au lieu de .../DEBIAN/"
  848. "symbols.\n"
  849. " -O écrire dans la sortie standard au lieu de .../"
  850. "DEBIAN/symbols.\n"
  851. " -d afficher les informations de déboguage pendant le "
  852. "traitement.\n"
  853. " -h, --help afficher ce message d'aide.\n"
  854. " --version afficher la version.\n"
  855. #: scripts/dpkg-gensymbols.pl:147
  856. #, perl-format
  857. msgid "Can't read directory %s: %s"
  858. msgstr "Impossible de lire le répertoire %s : %s"
  859. #: scripts/dpkg-gensymbols.pl:162
  860. #, perl-format
  861. msgid "Objdump couldn't parse %s\n"
  862. msgstr "Objdump ne peut analyser %s\n"
  863. #: scripts/dpkg-gensymbols.pl:204
  864. #, perl-format
  865. msgid "new libraries appeared in the symbols file: %s"
  866. msgstr "nouvelles bibliothèques apparues dans le fichier des symboles : %s"
  867. #: scripts/dpkg-gensymbols.pl:208
  868. #, perl-format
  869. msgid "some libraries disappeared in the symbols file: %s"
  870. msgstr "certaines bibliothèques ont disparu du fichier des symboles : %s"
  871. #: scripts/dpkg-gensymbols.pl:216
  872. #, perl-format
  873. msgid "some new symbols appeared in the symbols file: %s"
  874. msgstr "certains nouveaux symboles sont apparus dans le fichier des symboles : %s"
  875. #: scripts/dpkg-gensymbols.pl:217 scripts/dpkg-gensymbols.pl:222
  876. msgid "see diff output below"
  877. msgstr "Veuillez consulter le fichier de différences ci-dessous"
  878. #: scripts/dpkg-gensymbols.pl:237
  879. #, perl-format
  880. msgid "some symbols disappeared in the symbols file: %s"
  881. msgstr "certains symboles ont disparu du fichier des symboles : %s"
  882. #: scripts/dpkg-gensymbols.pl:253
  883. #, perl-format
  884. msgid "%s doesn't match completely %s"
  885. msgstr "%s ne correspond pas complètement à %s"
  886. #: scripts/dpkg-gensymbols.pl:256
  887. #, perl-format
  888. msgid "no debian/symbols file used as basis for generating %s"
  889. msgstr "pas de fichier debian/symbols utilisé comme base pour générer %s"
  890. #: scripts/dpkg-parsechangelog.pl:21
  891. msgid ""
  892. "\n"
  893. "Copyright (C) 1996 Ian Jackson.\n"
  894. "Copyright (C) 2001 Wichert Akkerman"
  895. msgstr ""
  896. "\n"
  897. "Copyright (C) 1996 Ian Jackson.\n"
  898. "Copyright (C) 2001 Wichert Akkerman"
  899. #: scripts/dpkg-parsechangelog.pl:33
  900. #, perl-format
  901. msgid ""
  902. "Usage: %s [<option> ...]\n"
  903. "\n"
  904. "Options:\n"
  905. " -l<changelogfile> get per-version info from this file.\n"
  906. " -F<changelogformat> force change log format.\n"
  907. " -L<libdir> look for change log parsers in <libdir>.\n"
  908. " -h, --help show this help message.\n"
  909. " --version show the version.\n"
  910. "\n"
  911. "parser options:\n"
  912. " --format <outputformat> see man page for list of available\n"
  913. " output formats, defaults to 'dpkg'\n"
  914. " for compatibility with dpkg-dev\n"
  915. " --since, -s, -v <version> include all changes later than version\n"
  916. " --until, -u <version> include all changes earlier than version\n"
  917. " --from, -f <version> include all changes equal or later\n"
  918. " than version\n"
  919. " --to, -t <version> include all changes up to or equal\n"
  920. " than version\n"
  921. " --count, -c, -n <number> include <number> entries from the top\n"
  922. " (or the tail if <number> is lower than 0)\n"
  923. " --offset, -o <number> change the starting point for --count,\n"
  924. " counted from the top (or the tail if\n"
  925. " <number> is lower than 0)\n"
  926. " --all include all changes\n"
  927. msgstr ""
  928. "Utilisation: %s [<option> ...]\n"
  929. "\n"
  930. "Options:\n"
  931. " -l<fichier_changelog> obtenir de l'information slon la version dans ce\n"
  932. " fichier.\n"
  933. " -F<format_changelog> forcer le format du journal des changements.\n"
  934. " -L<libdir> rechercher les analyseurs de changements dans <libdir>.\n"
  935. " -h, --help afficher ce message d'aide.\n"
  936. " --version afficher la version.\n"
  937. "\n"
  938. "Options de l'analyseur:\n"
  939. " --format <format_sortie> consulter la page de manuel pour\n"
  940. " voir la page de manuel pour une liste\n"
  941. " des formats de sortie disponibles. Valeur\n"
  942. " par défaut : « dpkg » pour compatibilité\n"
  943. " avec « dpkg-dev »\n"
  944. " --since, -s, -v <version> inclure toutes les modifications depuis\n"
  945. " cette version\n"
  946. " --until, -u <version> inclure toutes les modifications antérieures\n"
  947. " à cette version\n"
  948. " --from, -f <version> inclure toutes les modifications depuis\n"
  949. " cette version incluse\n"
  950. " --to, -t <version> inclure toutes les modifications antérieures\n"
  951. " à cette version, incluse\n"
  952. " --count, -c, -n <nombre> inclure <nombre> entrées depuis le début\n"
  953. " (ou bien les dernières si <nombre> est inférieur à 0)\n"
  954. " --offset, -o <number> modifier le point de démarrage de --count,\n"
  955. " à partir du début (ou de la fin si\n"
  956. " <nombre> est inférieur à 0)\n"
  957. " --all inclure toutes les modifications\n"
  958. #: scripts/dpkg-parsechangelog.pl:103
  959. #, perl-format
  960. msgid "%s takes no non-option arguments"
  961. msgstr "%s ne prend pas de paramètre sans option"
  962. #: scripts/dpkg-scanpackages.pl:57
  963. #, perl-format
  964. msgid ""
  965. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  966. "Packages\n"
  967. "\n"
  968. "Options:\n"
  969. " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  970. " -u, --udeb scan for udebs (obsolete alias for -tudeb).\n"
  971. " -a, --arch <arch> architecture to scan for.\n"
  972. " -m, --multiversion allow multiple versions of a single package.\n"
  973. " -h, --help show this help message.\n"
  974. " --version show the version.\n"
  975. msgstr ""
  976. "Usage : %s [<option> ...] <rep-de-binaires> <fichier-d'override> [<chemin-à-"
  977. "préfixer>] >\n"
  978. "Paquets\n"
  979. "\n"
  980. "Options :\n"
  981. " -t, --type <type> recherche des paquets <type> (par défaut, « deb »).\n"
  982. " -u, --udeb recherche d'udebs (alias obsolète pour -tudeb).\n"
  983. " -a, --arch <arch> architecture à rechercher.\n"
  984. " -m, --multiversion permettre plusieurs versions d'un paquet.\n"
  985. " -h, --help afficher ce message d'aide.\n"
  986. " --version afficher la version.\n"
  987. #: scripts/dpkg-scanpackages.pl:73
  988. #, perl-format
  989. msgid "Couldn't open override file %s"
  990. msgstr "Impossible d'ouvrir le fichier d'override %s"
  991. #: scripts/dpkg-scanpackages.pl:99
  992. #, perl-format
  993. msgid " * Unconditional maintainer override for %s *"
  994. msgstr " * Annulation inconditionnelle du responsable pour %s *"
  995. #: scripts/dpkg-scanpackages.pl:115 scripts/dpkg-scansources.pl:507
  996. msgid "1 to 3 args expected\n"
  997. msgstr "de 1 à 3 paramètres attendus\n"
  998. #: scripts/dpkg-scanpackages.pl:138
  999. #, perl-format
  1000. msgid "Binary dir %s not found"
  1001. msgstr "Répertoire de binaires %s non trouvé"
  1002. #: scripts/dpkg-scanpackages.pl:140
  1003. #, perl-format
  1004. msgid "Override file %s not found"
  1005. msgstr "Fichier override %s non trouvé"
  1006. #: scripts/dpkg-scanpackages.pl:154
  1007. #, perl-format
  1008. msgid "Couldn't open %s for reading"
  1009. msgstr "Impossible de lire %s"
  1010. #: scripts/dpkg-scanpackages.pl:161
  1011. #, perl-format
  1012. msgid "Couldn't call dpkg-deb on %s: %s, skipping package"
  1013. msgstr "Impossible d'appeler dpkg-deb sur %s : %s, paquet sauté"
  1014. #: scripts/dpkg-scanpackages.pl:165
  1015. #, perl-format
  1016. msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
  1017. msgstr "« dpkg-deb -I %s control », sortie avec %d, paquet sauté"
  1018. #: scripts/dpkg-scanpackages.pl:179
  1019. #, perl-format
  1020. msgid ""
  1021. "Unprocessed text from %s control file; info:\n"
  1022. "%s / %s"
  1023. msgstr ""
  1024. "Texte non traité du fichier de contrôle %s ; info :\n"
  1025. "%s / %s"
  1026. #: scripts/dpkg-scanpackages.pl:183
  1027. #, perl-format
  1028. msgid "No Package field in control file of %s"
  1029. msgstr "Pas de champ Package dans le fichier de contrôle de %s"
  1030. #: scripts/dpkg-scanpackages.pl:190
  1031. #, perl-format
  1032. msgid ""
  1033. " ! Package %s (filename %s) is repeat but newer version;\n"
  1034. " used that one and ignored data from %s !\n"
  1035. msgstr ""
  1036. " ! Paquet %s (nom %s) répété, mais version plus récente ;\n"
  1037. " utilisation de celle-ci, données de %s ignorées !\n"
  1038. #: scripts/dpkg-scanpackages.pl:196
  1039. #, perl-format
  1040. msgid ""
  1041. " ! Package %s (filename %s) is repeat;\n"
  1042. " ignored that one and using data from %s !\n"
  1043. msgstr ""
  1044. " ! Paquet %s (nom %s) répété ;\n"
  1045. " version ignorée, utilisation des données de %s !\n"
  1046. #: scripts/dpkg-scanpackages.pl:203
  1047. #, perl-format
  1048. msgid " ! Package %s (filename %s) has Filename field!\n"
  1049. msgstr " ! Paquet %s (nom %s) a un champ Filename !\n"
  1050. #: scripts/dpkg-scanpackages.pl:213
  1051. #, perl-format
  1052. msgid "Strange text from 'md5sum < %s': '%s'"
  1053. msgstr "Texte étrange produit par « md5sum < %s » : « %s »"
  1054. #: scripts/dpkg-scanpackages.pl:216
  1055. #, perl-format
  1056. msgid "Couldn't stat %s"
  1057. msgstr "stat de %s impossible"
  1058. #: scripts/dpkg-scanpackages.pl:217
  1059. #, perl-format
  1060. msgid "file %s is empty"
  1061. msgstr "le fichier %s est vide"
  1062. #: scripts/dpkg-scanpackages.pl:263
  1063. msgid "Failed when writing stdout"
  1064. msgstr "Impossible d'écrire sur stdout"
  1065. #: scripts/dpkg-scanpackages.pl:266
  1066. msgid "Couldn't close stdout"
  1067. msgstr "Impossible de fermer stdout"
  1068. #: scripts/dpkg-scanpackages.pl:270
  1069. msgid "** Packages in archive but missing from override file: **"
  1070. msgstr "** Paquets dans l'archive mais pas dans le fichier d'override : **"
  1071. #: scripts/dpkg-scanpackages.pl:274
  1072. msgid " ++ Packages in override file with incorrect old maintainer value: ++"
  1073. msgstr ""
  1074. "++ Paquets dans le fichier d'override avec valeur incorrecte pour l'ancien "
  1075. "responsable : ++"
  1076. #: scripts/dpkg-scanpackages.pl:280
  1077. msgid " -- Packages specifying same maintainer as override file: --"
  1078. msgstr "-- Paquets indiquant le même responsable que le fichier d'override : --"
  1079. #: scripts/dpkg-scanpackages.pl:286
  1080. msgid " -- Packages in override file but not in archive: --"
  1081. msgstr "-- Paquets dans le fichier d'override mais pas dans l'archive : --"
  1082. #: scripts/dpkg-scanpackages.pl:291
  1083. #, perl-format
  1084. msgid " Wrote %s entries to output Packages file."
  1085. msgstr "%s entrées écrites dans le fichier Packages."
  1086. #: scripts/dpkg-scansources.pl:102
  1087. #, perl-format
  1088. msgid ""
  1089. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  1090. "Sources\n"
  1091. "\n"
  1092. "Options:\n"
  1093. " -n, --no-sort don't sort by package before outputting.\n"
  1094. " -s, --source-override <file>\n"
  1095. " use file for additional source overrides, "
  1096. "default\n"
  1097. " is regular override file with .src appended.\n"
  1098. " --debug turn debugging on.\n"
  1099. " --help show this help message.\n"
  1100. " --version show the version.\n"
  1101. "\n"
  1102. "See the man page for the full documentation.\n"
  1103. msgstr ""
  1104. "Usage : %s [<option> ...] <rep-de-binaires> <fichier-d'override> [<chemin-à-"
  1105. "préfixer>] >\n"
  1106. "Sources\n"
  1107. "\n"
  1108. "Options :\n"
  1109. " -n, --no-sort ne pas trier par paquet avant affichage\n"
  1110. " -s, --source-override <fichier>\n"
  1111. " utiliser fichier pour d'autres annulations, \n"
  1112. " par défaut c'est le fichier d'override normal qui "
  1113. "est utilisé.\n"
  1114. " --debug activer le débogage.\n"
  1115. " --help afficher ce message d'aide.\n"
  1116. " --version afficher la version.\n"
  1117. #: scripts/dpkg-scansources.pl:142
  1118. #, perl-format
  1119. msgid "error closing %s ($? %d, $! `%s')"
  1120. msgstr "erreur en fermant %s ($? %d, $! `%s')"
  1121. #: scripts/dpkg-scansources.pl:155
  1122. #, perl-format
  1123. msgid "can't read override file %s:"
  1124. msgstr "impossible de lire le fichier d'override %s :"
  1125. #: scripts/dpkg-scansources.pl:164
  1126. #, perl-format
  1127. msgid "invalid override entry at line %d (%d fields)"
  1128. msgstr "entrée invalide, ligne %d (champs %d)"
  1129. #: scripts/dpkg-scansources.pl:171
  1130. #, perl-format
  1131. msgid "ignoring duplicate override entry for %s at line %d"
  1132. msgstr "entrée en double %s ignorée, ligne %d"
  1133. #: scripts/dpkg-scansources.pl:177
  1134. #, perl-format
  1135. msgid "ignoring override entry for %s, invalid priority %s"
  1136. msgstr "entrée en double %s ignorée, priorité %s non valable"
  1137. #: scripts/dpkg-scansources.pl:196
  1138. msgid "error closing override file:"
  1139. msgstr "erreur en fermant le fichier d'override"
  1140. #: scripts/dpkg-scansources.pl:217
  1141. #, perl-format
  1142. msgid "can't read source override file %s:"
  1143. msgstr "impossible de lire le fichier d'override %s pour les sources :"
  1144. #: scripts/dpkg-scansources.pl:227
  1145. #, perl-format
  1146. msgid "invalid source override entry at line %d (%d fields)"
  1147. msgstr ""
  1148. "entrée invalide dans le fichier d'override pour les sources, ligne %d "
  1149. "(champs %d)"
  1150. #: scripts/dpkg-scansources.pl:236
  1151. #, perl-format
  1152. msgid "ignoring duplicate source override entry for %s at line %d"
  1153. msgstr ""
  1154. "entrée en double %s ignorée dans le fichier d'override pour les sources, "
  1155. "ligne %d"
  1156. #: scripts/dpkg-scansources.pl:243
  1157. msgid "error closing source override file:"
  1158. msgstr "erreur en fermant le fichier d'override pour les sources"
  1159. #: scripts/dpkg-scansources.pl:257
  1160. #, perl-format
  1161. msgid "%s has PGP start token but not end token"
  1162. msgstr "%s possède un début PGP mais pas de fin"
  1163. #: scripts/dpkg-scansources.pl:273
  1164. #, perl-format
  1165. msgid "can't read %s:"
  1166. msgstr "impossible de lire %s :"
  1167. #: scripts/dpkg-scansources.pl:279
  1168. #, perl-format
  1169. msgid "error doing fstat on %s:"
  1170. msgstr "erreur lors de fstat %s :"
  1171. #: scripts/dpkg-scansources.pl:287
  1172. #, perl-format
  1173. msgid "error reading from %s:"
  1174. msgstr "erreur en lisant %s :"
  1175. #: scripts/dpkg-scansources.pl:295 scripts/dpkg-scansources.pl:517
  1176. msgid "can't fork:"
  1177. msgstr "fork impossible :"
  1178. #: scripts/dpkg-scansources.pl:299
  1179. #, perl-format
  1180. msgid "can't dup %s:"
  1181. msgstr "dup %s impossible :"
  1182. #: scripts/dpkg-scansources.pl:300
  1183. #, perl-format
  1184. msgid "can't rewind %s:"
  1185. msgstr "impossible de rembobiner %s :"
  1186. #: scripts/dpkg-scansources.pl:301
  1187. msgid "can't exec md5sum:"
  1188. msgstr "exec md5sum impossible :"
  1189. #: scripts/dpkg-scansources.pl:310
  1190. #, perl-format
  1191. msgid "invalid md5 output for %s (%s)"
  1192. msgstr "résultat md5 non valable pour %s (%s)"
  1193. #: scripts/dpkg-scansources.pl:315
  1194. #, perl-format
  1195. msgid "error closing %s:"
  1196. msgstr "erreur en fermant %s :"
  1197. #: scripts/dpkg-scansources.pl:340
  1198. #, perl-format
  1199. msgid "%s invalid (contains blank line)"
  1200. msgstr "%s invalide (contient une ligne blanche)"
  1201. #: scripts/dpkg-scansources.pl:367
  1202. #, perl-format
  1203. msgid "invalid field in %s: %s"
  1204. msgstr "champ invalide dans %s : %s"
  1205. #: scripts/dpkg-scansources.pl:375
  1206. #, perl-format
  1207. msgid "duplicate source field in %s"
  1208. msgstr "champ source en double dans %s"
  1209. #: scripts/dpkg-scansources.pl:379
  1210. #, perl-format
  1211. msgid "invalid source field in %s"
  1212. msgstr "champ source invalide dans %s"
  1213. #: scripts/dpkg-scansources.pl:389
  1214. #, perl-format
  1215. msgid "duplicate binary field in %s"
  1216. msgstr "champ binary en double dans %s"
  1217. #: scripts/dpkg-scansources.pl:394
  1218. #, perl-format
  1219. msgid "no binary packages specified in %s"
  1220. msgstr "pas de paquets binaires indiqués dans %s"
  1221. #: scripts/dpkg-shlibdeps.pl:76
  1222. #, perl-format
  1223. msgid "administrative directory '%s' does not exist"
  1224. msgstr "répertoire d'administration %s n'existe pas"
  1225. #: scripts/dpkg-shlibdeps.pl:80
  1226. #, perl-format
  1227. msgid "unrecognised dependency field `%s'"
  1228. msgstr "champ de dépendance non reconnu « %s »"
  1229. #: scripts/dpkg-shlibdeps.pl:114
  1230. msgid "need at least one executable"
  1231. msgstr "au moins un exécutable est nécessaire"
  1232. #: scripts/dpkg-shlibdeps.pl:149
  1233. #, perl-format
  1234. msgid ""
  1235. "couldn't find library %s needed by %s (its RPATH is '%s').\n"
  1236. "Note: libraries are not searched in other binary packages that do not have "
  1237. "any shlibs or symbols file.\n"
  1238. "To help dpkg-shlibdeps find private libraries, you might need to set "
  1239. "LD_LIBRARY_PATH."
  1240. msgstr ""
  1241. "impossible de trouver la bibliothèque %s demandée par %s (son RPATH est « %"
  1242. "s »).\n"
  1243. "Note : les bibliothèques ne sont pas cherchées dans d'autres paquets "
  1244. "binaires qui n'ont pas de fichier shlibs ou de fichier de symboles.\n"
  1245. "Pour aider dpkg-shlibdeps à trouver des bibliothèques privées, vous devriez"
  1246. "définir LD_LIBRARY_PATH."
  1247. #: scripts/dpkg-shlibdeps.pl:219
  1248. #, perl-format
  1249. msgid "%s has an unexpected SONAME (%s)"
  1250. msgstr "%s utilise un SONAME inattendu (%s)"
  1251. #: scripts/dpkg-shlibdeps.pl:241
  1252. #, perl-format
  1253. msgid "no dependency information found for %s (used by %s)."
  1254. msgstr "pas d'informations de dépendance trouvées pour %s (utilisé par %s)."
  1255. #: scripts/dpkg-shlibdeps.pl:301
  1256. #, perl-format
  1257. msgid "symbol %s used by %s found in none of the libraries."
  1258. msgstr "symbole %s utilisé par %s trouvé dans aucune des bibliothèques."
  1259. #: scripts/dpkg-shlibdeps.pl:321
  1260. #, perl-format
  1261. msgid "%d other similar warnings have been skipped (use -v to see them all)."
  1262. msgstr ""
  1263. "%d autres avertissements semblables ont été sautés (utiliser -v pour les "
  1264. "voir tous)."
  1265. #: scripts/dpkg-shlibdeps.pl:342
  1266. #, perl-format
  1267. msgid "%s shouldn't be linked with %s (it uses none of its symbols)."
  1268. msgstr "%s ne devrait pas être lié avec %s (il n'utilise aucun de ses symboles)."
  1269. #: scripts/dpkg-shlibdeps.pl:355
  1270. #, perl-format
  1271. msgid ""
  1272. "dependency on %s could be avoided if \"%s\" were not uselessly linked "
  1273. "against it (they use none of its symbols)."
  1274. msgstr "la dépendance sur %s pourrait être évitée si « %s » n'y était pas lié sans nécessité (il n'utilise aucun de ses symboles)."
  1275. #: scripts/dpkg-shlibdeps.pl:368
  1276. #, perl-format
  1277. msgid "open new substvars file `%s'"
  1278. msgstr "ouverture du nouveau fichier substvars %s"
  1279. #: scripts/dpkg-shlibdeps.pl:371
  1280. #, perl-format
  1281. msgid "open old varlist file `%s' for reading"
  1282. msgstr "lecture de l'ancien fichier varlist %s"
  1283. #: scripts/dpkg-shlibdeps.pl:374
  1284. #, perl-format
  1285. msgid "copy old entry to new varlist file `%s'"
  1286. msgstr "copie d'une ancienne entrée dans le nouveau fichier varlist %s"
  1287. #: scripts/dpkg-shlibdeps.pl:437
  1288. #, perl-format
  1289. msgid "invalid dependency got generated: %s"
  1290. msgstr "Une dépendance non valable a été créée : %s"
  1291. #: scripts/dpkg-shlibdeps.pl:447
  1292. #, perl-format
  1293. msgid "install new varlist file `%s'"
  1294. msgstr "installation du nouveau fichier varlist %s"
  1295. #: scripts/dpkg-shlibdeps.pl:457
  1296. msgid ""
  1297. "\n"
  1298. "Copyright (C) 1996 Ian Jackson.\n"
  1299. "Copyright (C) 2000 Wichert Akkerman.\n"
  1300. "Copyright (C) 2006 Frank Lichtenheld.\n"
  1301. "Copyright (C) 2007 Raphael Hertzog.\n"
  1302. msgstr ""
  1303. "\n"
  1304. "Copyright (C) 1996 Ian Jackson.\n"
  1305. "Copyright (C) 2000 Wichert Akkerman.\n"
  1306. "Copyright (C) 2006 Frank Lichtenheld.\n"
  1307. "Copyright (C) 2007 Raphael Hertzog.\n"
  1308. #: scripts/dpkg-shlibdeps.pl:472
  1309. #, perl-format
  1310. msgid ""
  1311. "Usage: %s [<option> ...] <executable>|-e<executable> [<option> ...]\n"
  1312. "\n"
  1313. "Positional options (order is significant):\n"
  1314. " <executable> include dependencies for <executable>,\n"
  1315. " -e<executable> (use -e if <executable> starts with `-')\n"
  1316. " -d<dependencyfield> next executable(s) set shlibs:<dependencyfield>.\n"
  1317. "\n"
  1318. "Options:\n"
  1319. " -p<varnameprefix> set <varnameprefix>:* instead of shlibs:*.\n"
  1320. " -O print variable settings to stdout.\n"
  1321. " -L<localshlibsfile> shlibs override file, not debian/shlibs.local.\n"
  1322. " -T<varlistfile> update variables here, not debian/substvars.\n"
  1323. " -t<type> set package type (default is deb).\n"
  1324. " -x<package> exclude package from the generated dependencies.\n"
  1325. " -S<pkgbuilddir> search needed libraries in the given\n"
  1326. " package build directory first.\n"
  1327. " -v enable verbose mode (can be used multiple "
  1328. "times).\n"
  1329. " --ignore-missing-info don't fail if dependency information can't be "
  1330. "found.\n"
  1331. " --warnings=<value> define set of active warnings (see manual page).\n"
  1332. " --admindir=<directory> change the administrative directory.\n"
  1333. " -h, --help show this help message.\n"
  1334. " --version show the version.\n"
  1335. "\n"
  1336. "Dependency fields recognised are:\n"
  1337. " %s\n"
  1338. msgstr ""
  1339. "Usage : %s [<option> ...] <exécutable>|-e<exécutable> [<option> ...]\n"
  1340. "\n"
  1341. "Options à position (l'ordre est important) :\n"
  1342. " <exécutable> inclure les dépendances pour <exécutable>,\n"
  1343. " -e<exécutable> option -e si <exécutable> commence par « - »\n"
  1344. " -d<champ_dépendance> le prochain exécutable définit shlibs:"
  1345. "<champ_dépendance>\n"
  1346. "\n"
  1347. "Options :\n"
  1348. " -p<varnameprefix> définir <varnameprefix>:* au lieu de shlibs:"
  1349. "*.\n"
  1350. " -O afficher les variables définies sur stdout.\n"
  1351. " -L<localshlibsfile> fichier d'override pour shlibs, pas debian/"
  1352. "shlibs.local.\n"
  1353. " -T<varlistfile> mettre à jour les variables ici, pas debian/"
  1354. "substvars.\n"
  1355. " -t<type> définir le type de paquet (.deb par défaut).\n"
  1356. " -x<paquet> exclut le paquet des dépendances générées.\n"
  1357. " -S<pkgbuilddir> rechercher les bibliothèques nécessaires\n"
  1358. " dans le répertoire de construction indiqué\n"
  1359. " en premier lieu.\n"
  1360. " -v activer le mode bavard (peut être utilisé\n"
  1361. " plusieurs fois).\n"
  1362. " --ignore-missing-info ne pas échouer si les informations de\n"
  1363. " dépendance ne sont pas trouvées.\n"
  1364. " --warnings=<valeur> définir le jeu d'avertissements actifs\n"
  1365. " (voir la page de manuel).\n"
  1366. " --admindir=<répertoire> change le répertoire d'administration.\n"
  1367. " -h, --help afficher ce message d'aide.\n"
  1368. " --version afficher la version.\n"
  1369. "\n"
  1370. "Champs de dépendance reconnus :\n"
  1371. " %s\n"
  1372. #: scripts/dpkg-shlibdeps.pl:597
  1373. #, perl-format
  1374. msgid "Can't extract name and version from library name `%s'"
  1375. msgstr "Impossible d'extraire le nom et la version du nom de la bibliothèque « %s »"
  1376. #: scripts/dpkg-shlibdeps.pl:604
  1377. #, perl-format
  1378. msgid "unable to open shared libs info file `%s'"
  1379. msgstr "impossible d'ouvrir le fichier sur les bibliothèques partagées %s"
  1380. #: scripts/dpkg-shlibdeps.pl:610
  1381. #, perl-format
  1382. msgid "shared libs info file `%s' line %d: bad line `%s'"
  1383. msgstr ""
  1384. "fichier info sur les bibliothèques partagées « %s », ligne %d : ligne mal "
  1385. "formée « %s »"
  1386. #: scripts/dpkg-shlibdeps.pl:663
  1387. #, perl-format
  1388. msgid "cannot open file %s"
  1389. msgstr "impossible d'ouvrir le fichier %s"
  1390. #: scripts/dpkg-shlibdeps.pl:696
  1391. #, perl-format
  1392. msgid ""
  1393. "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
  1394. "identified due to lack of DEBIAN sub-directory in the root of package's "
  1395. "build tree"
  1396. msgstr ""
  1397. "$ORIGIN est utilisé dans le RPATH de %s et le répertoire correspondant n'a "
  1398. "pas pu être identifié en raison de l'absence de sous-répertoire DEBIAN dans "
  1399. "la racine de l'arborescence de construction du paquet"
  1400. #: scripts/dpkg-shlibdeps.pl:749
  1401. msgid "cannot fork for dpkg --search"
  1402. msgstr "fork impossible pour dpkg --search"
  1403. #: scripts/dpkg-shlibdeps.pl:756
  1404. msgid "cannot exec dpkg"
  1405. msgstr "impossible d'exécuter dpkg"
  1406. #: scripts/dpkg-shlibdeps.pl:761
  1407. msgid "diversions involved - output may be incorrect"
  1408. msgstr "détournements en jeu, la sortie peut être incorrecte"
  1409. #: scripts/dpkg-shlibdeps.pl:763
  1410. msgid "write diversion info to stderr"
  1411. msgstr "info sur le détournement envoyée sur stderr"
  1412. #: scripts/dpkg-shlibdeps.pl:767
  1413. #, perl-format
  1414. msgid "unknown output from dpkg --search: '%s'"
  1415. msgstr "résultat de dpkg --search inconnu : %s"
  1416. #: scripts/dpkg-source.pl:67 scripts/Dpkg/Source/Compressor.pm:35
  1417. #, perl-format
  1418. msgid "%s is not a supported compression"
  1419. msgstr "%s n'est pas une compression gérée"
  1420. #: scripts/dpkg-source.pl:73 scripts/Dpkg/Source/Compressor.pm:42
  1421. #: scripts/Dpkg/Source/Compressor.pm:68
  1422. #, perl-format
  1423. msgid "%s is not a compression level"
  1424. msgstr "%s n'est pas un niveau de compression"
  1425. #: scripts/dpkg-source.pl:114
  1426. msgid "-E and -W are deprecated, they are without effect"
  1427. msgstr "La gestion de -E et -W est obsolète (ces paramètres sont sans effet)"
  1428. #: scripts/dpkg-source.pl:126
  1429. msgid "need -x or -b"
  1430. msgstr "-x ou -b nécessaire"
  1431. #: scripts/dpkg-source.pl:132
  1432. msgid "-b needs a directory"
  1433. msgstr "répertoire nécessaire avec -b"
  1434. #: scripts/dpkg-source.pl:135
  1435. #, perl-format
  1436. msgid "cannot stat directory %s"
  1437. msgstr "« stat » du répertoire %s impossible"
  1438. #: scripts/dpkg-source.pl:137
  1439. #, perl-format
  1440. msgid "directory argument %s is not a directory"
  1441. msgstr "paramètre répertoire %s n'est pas un répertoire"
  1442. #: scripts/dpkg-source.pl:207
  1443. #, perl-format
  1444. msgid "`%s' is not a legal architecture string"
  1445. msgstr "%s n'est pas une architecture autorisée"
  1446. #: scripts/dpkg-source.pl:210
  1447. #, perl-format
  1448. msgid "architecture %s only allowed on its own (list for package %s is `%s')"
  1449. msgstr "architecture %s seulement autorisée toute seule (liste pour paquet %s est %s)"
  1450. #: scripts/dpkg-source.pl:257
  1451. #, perl-format
  1452. msgid "source format `%s' discarded: %s"
  1453. msgstr "format source « %s » abandonné : %s"
  1454. #: scripts/dpkg-source.pl:259
  1455. #, perl-format
  1456. msgid "using source format `%s'"
  1457. msgstr "utilisation du format source « %s »"
  1458. #: scripts/dpkg-source.pl:270 scripts/Dpkg/Source/Package/V1.pm:284
  1459. #: scripts/Dpkg/Source/Package/V1.pm:329 scripts/Dpkg/Source/Package/V2.pm:375
  1460. #: scripts/Dpkg/Source/Package/V3/bzr.pm:152
  1461. #: scripts/Dpkg/Source/Package/V3/native.pm:82
  1462. #: scripts/Dpkg/Source/Package/V3/git.pm:216
  1463. #, perl-format
  1464. msgid "building %s in %s"
  1465. msgstr "construction de %s dans %s"
  1466. #: scripts/dpkg-source.pl:282
  1467. msgid "-x needs at least one argument, the .dsc"
  1468. msgstr "-x demande au moins un paramètre, le fichier .dsc"
  1469. #: scripts/dpkg-source.pl:285
  1470. msgid "-x takes no more than two arguments"
  1471. msgstr "-x ne prend pas plus de deux paramètres"
  1472. #: scripts/dpkg-source.pl:289
  1473. msgid "-x needs the .dsc file as first argument, not a directory"
  1474. msgstr "-x demande le fichier .dsc comme premier paramètre, pas un répertoire"
  1475. #: scripts/dpkg-source.pl:305
  1476. #, perl-format
  1477. msgid "unpack target exists: %s"
  1478. msgstr "cible non compressée existe : %s"
  1479. #: scripts/dpkg-source.pl:314
  1480. #, perl-format
  1481. msgid "extracting unsigned source package (%s)"
  1482. msgstr "extraction d'un paquet source non signé (%s)"
  1483. #: scripts/dpkg-source.pl:323
  1484. #, perl-format
  1485. msgid "%s: extracting %s in %s"
  1486. msgstr "%s : extraction de %s dans %s"
  1487. #: scripts/dpkg-source.pl:332
  1488. msgid "only one of -x or -b allowed, and only once"
  1489. msgstr "une seule option -x ou -b autorisée, et une seule fois"
  1490. #: scripts/dpkg-source.pl:340
  1491. msgid ""
  1492. "\n"
  1493. "Copyright (C) 1996 Ian Jackson and Klee Dienes.\n"
  1494. "Copyright (C) 2008 Raphael Hertzog"
  1495. msgstr ""
  1496. "\n"
  1497. "Copyright (C) 1996 Ian Jackson et Klee Dienes.\n"
  1498. "Copyright (C) 2008 Raphael Hertzog"
  1499. #: scripts/dpkg-source.pl:352
  1500. #, perl-format
  1501. msgid ""
  1502. "Usage: %s [<option> ...] <command>\n"
  1503. "\n"
  1504. "Commands:\n"
  1505. " -x <filename>.dsc [<output-dir>]\n"
  1506. " extract source package.\n"
  1507. " -b <dir>\n"
  1508. " build source package.\n"
  1509. "\n"
  1510. "Build options:\n"
  1511. " -c<controlfile> get control info from this file.\n"
  1512. " -l<changelogfile> get per-version info from this file.\n"
  1513. " -F<changelogformat> force change log format.\n"
  1514. " -V<name>=<value> set a substitution variable.\n"
  1515. " -T<varlistfile> read variables here, not debian/substvars.\n"
  1516. " -D<field>=<value> override or add a .dsc field and value.\n"
  1517. " -U<field> remove a field.\n"
  1518. " -q quiet mode.\n"
  1519. " -i[<regexp>] filter out files to ignore diffs of\n"
  1520. " (defaults to: '%s').\n"
  1521. " -I[<pattern>] filter out files when building tarballs\n"
  1522. " (defaults to: %s).\n"
  1523. " -Z<compression> select compression to use (defaults to 'gzip',\n"
  1524. " supported are: %s).\n"
  1525. " -z<level> compression level to use (defaults to '9',\n"
  1526. " supported are: '1'-'9', 'best', 'fast')\n"
  1527. "\n"
  1528. "Extract options:\n"
  1529. " --no-copy don't copy .orig tarballs\n"
  1530. " --no-check don't check signature and checksums before\n"
  1531. " unpacking\n"
  1532. "\n"
  1533. "General options:\n"
  1534. " -h, --help show this help message.\n"
  1535. " --version show the version.\n"
  1536. "\n"
  1537. "More options are available but they depend on the source package format.\n"
  1538. "See dpkg-source(1) for more info.\n"
  1539. msgstr ""
  1540. "Utilisation : %s [<option> ...] <commande>\n"
  1541. "\n"
  1542. "Commandes :\n"
  1543. " -x <fichier>.dsc [<rep_sortie]\n"
  1544. " extraire le paquet source.\n"
  1545. " -b <rep>\n"
  1546. " construire le paquet source.\n"
  1547. "\n"
  1548. "Options de construction :\n"
  1549. " -c<fichier_de_contrôle> obtenir les informations de contrôle dans ce "
  1550. "fichier.\n"
  1551. " -l<fichier_changelog> obtenir les informations de changelog dans ce "
  1552. "fichier.\n"
  1553. " -F<changelogformat> modifier le format du changelog.\n"
  1554. " -V<nom>=<valeur> définir une substitution de variable.\n"
  1555. " -T<varlistfile> lire les variables dans ce fichier, pas dans "
  1556. "debian/substvars.\n"
  1557. " -D<champ>=<valeur> remplacer ou ajouter une paire champ / valeur.\n"
  1558. " -U<champ> supprimer un champ.\n"
  1559. " -q opération muette, ne pas afficher "
  1560. "d'avertissements.\n"
  1561. " -i[<regexp>] éliminer les fichiers à ignorer, défaut %s.\n"
  1562. " -I[<format>] éliminer des fichiers en construisant les "
  1563. "tarballs\n"
  1564. " (par défaut : %s).\n"
  1565. " -Z<compression> choisir la compression à utiliser (par défaut, "
  1566. "« gzip» ,\n"
  1567. " les valeurs gérées sont : %s).\n"
  1568. " -z<niveau> niveau de compression à utiliser (par défaut, "
  1569. "« 9 »,\n"
  1570. " les valeurs gérées sont : « 1 » - « 9 », « best », "
  1571. "« fast »)\n"
  1572. "\n"
  1573. "Options d'extraction :\n"
  1574. " -no-copy ne pas copier l'archive originale\n"
  1575. " -no-check ne pas contrôler la signature et les\n"
  1576. " sommes de contrôle avant de décompacter.\n"
  1577. "\n"
  1578. "Options générales :\n"
  1579. " -h, --help afficher ce message d'aide.\n"
  1580. " --version afficher la version.\n"
  1581. "\n"
  1582. "Des options supplémentaires sont disponibles mais dépendent du format de paquet source utilisé.\n"
  1583. "Veuillez consulter la page de manuel dpkg-source(1) pour plus d'informations.\n"
  1584. #: scripts/changelog/debian.pl:21
  1585. msgid ""
  1586. "\n"
  1587. "Copyright (C) 1996 Ian Jackson.\n"
  1588. "Copyright (C) 2005,2007 Frank Lichtenheld."
  1589. msgstr ""
  1590. "\n"
  1591. "Copyright (C) 1996 Ian Jackson.\n"
  1592. "Copyright (C) 2005,2007 Frank Lichtenheld."
  1593. #: scripts/changelog/debian.pl:32
  1594. #, perl-format
  1595. msgid ""
  1596. "Usage: %s [<option>...] [<changelogfile>]\n"
  1597. "\n"
  1598. "Options:\n"
  1599. " --help, -h print usage information\n"
  1600. " --version, -V print version information\n"
  1601. " --label, -l <file> name of the changelog file to\n"
  1602. " use in error messages\n"
  1603. " --file <file> changelog file to parse, defaults\n"
  1604. " to '-' (standard input)\n"
  1605. " --format <outputformat> see man page for list of available\n"
  1606. " output formats, defaults to 'dpkg'\n"
  1607. " for compatibility with dpkg-dev\n"
  1608. " --since, -s, -v <version> include all changes later than version\n"
  1609. " --until, -u <version> include all changes earlier than version\n"
  1610. " --from, -f <version> include all changes equal or later\n"
  1611. " than version\n"
  1612. " --to, -t <version> include all changes up to or equal\n"
  1613. " than version\n"
  1614. " --count, -c, -n <number> include <number> entries from the top\n"
  1615. " (or the tail if <number> is lower than 0)\n"
  1616. " --offset, -o <number> change the starting point for --count,\n"
  1617. " counted from the top (or the tail if\n"
  1618. " <number> is lower than 0)\n"
  1619. " --all include all changes\n"
  1620. msgstr ""
  1621. "Utilisation: %s [<option>...] [<fichier_changelog>]\n"
  1622. "\n"
  1623. "Options:\n"
  1624. " --help, -h afficher les informations d'utilisation\n"
  1625. " --version, -V afficher la version\n"
  1626. " --label, -l <fichier> nom du fichier de changements\n"
  1627. " à utiliser dans les messages d'erreur\n"
  1628. " --file <fichier> fichier de changement à analyser. La\n"
  1629. " valeur par défaut est « - » (entrée standard)\n"
  1630. " --format <format_sortie> voir la page de manuel pour la liste\n"
  1631. " des formats de sortie. La valeur par\n"
  1632. " défaut est « dpkg » pour compatibilité\n"
  1633. " avec dpkg-dev\n"
  1634. " --since, -s, -v <version> inclure toutes les modifications depuis\n"
  1635. " cette version\n"
  1636. " --until, -u <version> inclure toutes les modifications antérieures\n"
  1637. " à cette version\n"
  1638. " --from, -f <version> inclure toutes les modifications depuis\n"
  1639. " cette version incluse\n"
  1640. " --to, -t <version> inclure toutes les modifications antérieures\n"
  1641. " à cette version, incluse\n"
  1642. " --count, -c, -n <nombre> inclure <nombre> entrées depuis le début\n"
  1643. " (ou bien les dernières si <nombre> est inférieur à 0)\n"
  1644. " --offset, -o <number> modifier le point de démarrage de --count,\n"
  1645. " à partir du début (ou de la fin si\n"
  1646. " <nombre> est inférieur à 0)\n"
  1647. " --all inclure toutes les modifications\n"
  1648. #: scripts/changelog/debian.pl:71
  1649. #, perl-format
  1650. msgid "output format %s not supported"
  1651. msgstr "format de sortie %s non géré"
  1652. #: scripts/changelog/debian.pl:96
  1653. #, perl-format
  1654. msgid "more than one file specified (%s and %s)"
  1655. msgstr "plus d'un fichier indiqué (%s et %s)"
  1656. #: scripts/changelog/debian.pl:118
  1657. msgid "fatal error occured while parsing input"
  1658. msgstr "erreur fatale rencontrée lors de l'analyse de la saisie"
  1659. #: scripts/changelog/debian.pl:121
  1660. #, perl-format
  1661. msgid "fatal error occured while parsing %s"
  1662. msgstr "erreur fatale rencontrée lors de l'analyse de %s"
  1663. #: scripts/Dpkg/Arch.pm:69
  1664. msgid ""
  1665. "Couldn't determine gcc system type, falling back to default (native "
  1666. "compilation)"
  1667. msgstr ""
  1668. "impossible de déterminer le type de gcc utilisé, retour au système par "
  1669. "défaut (compilation native)"
  1670. #: scripts/Dpkg/Arch.pm:78
  1671. #, perl-format
  1672. msgid "Unknown gcc system type %s, falling back to default (native compilation)"
  1673. msgstr "type de gcc %s inconnu, retour au système par défaut (compilation native)"
  1674. #: scripts/Dpkg/Arch.pm:121
  1675. msgid "unable to open cputable"
  1676. msgstr "impossible d'ouvrir « cputable »"
  1677. #: scripts/Dpkg/Arch.pm:138
  1678. msgid "unable to open ostable"
  1679. msgstr "impossible d'ouvrir « ostable »"
  1680. #: scripts/Dpkg/Arch.pm:157
  1681. msgid "unable to open triplettable"
  1682. msgstr "impossible d'ouvrir « triplettable »"
  1683. #: scripts/Dpkg/Cdata.pm:78
  1684. #, perl-format
  1685. msgid "duplicate field %s found"
  1686. msgstr "champ %s en double"
  1687. #: scripts/Dpkg/Cdata.pm:84
  1688. msgid "continued value line not in field"
  1689. msgstr "la ligne continuée n'est pas dans le champ"
  1690. #: scripts/Dpkg/Cdata.pm:94
  1691. msgid "PGP signature not allowed here"
  1692. msgstr "Signature PGP non autorisée ici"
  1693. #: scripts/Dpkg/Cdata.pm:101
  1694. msgid "expected PGP signature, found EOF after blank line"
  1695. msgstr "signature PGP attendue, EOF après ligne blanche trouvé"
  1696. #: scripts/Dpkg/Cdata.pm:105
  1697. #, perl-format
  1698. msgid "expected PGP signature, found something else `%s'"
  1699. msgstr "signature PGP attendue, « %s » trouvé"
  1700. #: scripts/Dpkg/Cdata.pm:111
  1701. msgid "unfinished PGP signature"
  1702. msgstr "signature PGP non terminée"
  1703. #: scripts/Dpkg/Cdata.pm:115
  1704. msgid "line with unknown format (not field-colon-value)"
  1705. msgstr "ligne au format inconnu, format différent de « champ-virgule-valeur »"
  1706. #: scripts/Dpkg/Changelog.pm:170 scripts/Dpkg/Changelog.pm:172
  1707. #: scripts/Dpkg/ErrorHandling.pm:29
  1708. msgid "warning"
  1709. msgstr "avertissement"
  1710. #: scripts/Dpkg/Changelog.pm:170
  1711. #, perl-format
  1712. msgid ""
  1713. "%s(l%s): %s\n"
  1714. "LINE: %s"
  1715. msgstr ""
  1716. "%s(l%s): %s\n"
  1717. "LIGNE: %s"
  1718. #: scripts/Dpkg/Changelog.pm:172
  1719. #, perl-format
  1720. msgid "%s(l%s): %s"
  1721. msgstr "%s(l%s): %s"
  1722. #: scripts/Dpkg/Changelog.pm:182
  1723. msgid "fatal error"
  1724. msgstr "erreur fatale"
  1725. #: scripts/Dpkg/Changelog.pm:229
  1726. msgid "you can't combine 'count' or 'offset' with any other range option"
  1727. msgstr "impossible de combiner « count » et « offset » avec une autre option de limitation"
  1728. #: scripts/Dpkg/Changelog.pm:233
  1729. msgid "you can only specify one of 'from' and 'since', using 'since'"
  1730. msgstr "impossible d'indiquer « from » et « since » simultanément. « since » sera utilisé"
  1731. #: scripts/Dpkg/Changelog.pm:237
  1732. msgid "you can only specify one of 'to' and 'until', using 'until'"
  1733. msgstr "impossible d'indiquer « to » et « until » simultanément. « until » sera utilisé"
  1734. #: scripts/Dpkg/Changelog.pm:241
  1735. msgid "'since' option specifies most recent version, ignoring"
  1736. msgstr "l'option « since » indique la version la plus récente et est ignorée"
  1737. #: scripts/Dpkg/Changelog.pm:245
  1738. msgid "'until' option specifies oldest version, ignoring"
  1739. msgstr "l'option « until » indique la version la plus ancienne et est ignorée"
  1740. #: scripts/Dpkg/Changelog.pm:763
  1741. #, perl-format
  1742. msgid "tail of %s"
  1743. msgstr "fin de %s"
  1744. #: scripts/Dpkg/Changelog.pm:775
  1745. #, perl-format
  1746. msgid "format parser %s not executable"
  1747. msgstr "l'analyseur de format %s n'est pas exécutable"
  1748. #: scripts/Dpkg/Changelog.pm:778
  1749. #, perl-format
  1750. msgid "changelog format %s is unknown"
  1751. msgstr "format de fichier de changement %s inconnu"
  1752. #: scripts/Dpkg/Changelog.pm:795 scripts/Dpkg/IPC.pm:208
  1753. #, perl-format
  1754. msgid "fork for %s"
  1755. msgstr "fork for %s"
  1756. #: scripts/Dpkg/Changelog.pm:799 scripts/Dpkg/IPC.pm:226
  1757. #: scripts/Dpkg/Shlibs.pm:77 scripts/Dpkg/Shlibs/SymbolFile.pm:114
  1758. #: scripts/Dpkg/Source/Package.pm:129 scripts/Dpkg/Source/Package.pm:138
  1759. #, perl-format
  1760. msgid "cannot open %s"
  1761. msgstr "impossible d'ouvrir %s"
  1762. #: scripts/Dpkg/Changelog.pm:801
  1763. #, perl-format
  1764. msgid "cannot exec format parser: %s"
  1765. msgstr "impossible d'exécuter l'analyseur de format : %s"
  1766. #: scripts/Dpkg/Changelog.pm:806
  1767. msgid "output of changelog parser"
  1768. msgstr "affichage de l'analyseur de fichier de changements"
  1769. #: scripts/Dpkg/Changelog.pm:809
  1770. #, perl-format
  1771. msgid "changelog parser %s"
  1772. msgstr "analyseur de fichier de changements : %s"
  1773. #: scripts/Dpkg/Changelog/Debian.pm:101
  1774. #, perl-format
  1775. msgid "can't open file %s: %s"
  1776. msgstr "impossible d'ouvrir le fichier .%s : %s"
  1777. #: scripts/Dpkg/Changelog/Debian.pm:110
  1778. #, perl-format
  1779. msgid "can't load IO::String: %s"
  1780. msgstr "impossible de charger IO::String: %s"
  1781. #: scripts/Dpkg/Changelog/Debian.pm:117
  1782. msgid "no changelog file specified"
  1783. msgstr "pas de fichier de changement indiqué"
  1784. #: scripts/Dpkg/Changelog/Debian.pm:142
  1785. #, perl-format
  1786. msgid "found start of entry where expected %s"
  1787. msgstr "début d'une entrée trouvé, %s attendu"
  1788. #: scripts/Dpkg/Changelog/Debian.pm:167
  1789. #, perl-format
  1790. msgid "bad key-value after `;': `%s'"
  1791. msgstr "mauvaise clé-valeur après « ; » : %s"
  1792. #: scripts/Dpkg/Changelog/Debian.pm:171
  1793. #, perl-format
  1794. msgid "repeated key-value %s"
  1795. msgstr "clé-valeur répété %s"
  1796. #: scripts/Dpkg/Changelog/Debian.pm:175
  1797. msgid "badly formatted urgency value"
  1798. msgstr "valeur urgency mal formée"
  1799. #: scripts/Dpkg/Changelog/Debian.pm:186
  1800. #, perl-format
  1801. msgid "unknown key-value key %s - copying to XS-%s"
  1802. msgstr "clé clé-valeur inconnue %s, copie dans XS-%s"
  1803. #: scripts/Dpkg/Changelog/Debian.pm:217
  1804. msgid "badly formatted heading line"
  1805. msgstr "ligne d'en-tête mal formée"
  1806. #: scripts/Dpkg/Changelog/Debian.pm:221
  1807. #, perl-format
  1808. msgid "found trailer where expected %s"
  1809. msgstr "ligne de fin trouvée, attendu %s"
  1810. #: scripts/Dpkg/Changelog/Debian.pm:225 scripts/Dpkg/Changelog/Debian.pm:242
  1811. msgid "badly formatted trailer line"
  1812. msgstr "ligne de fin mal formée"
  1813. #: scripts/Dpkg/Changelog/Debian.pm:235
  1814. #, perl-format
  1815. msgid "couldn't parse date %s"
  1816. msgstr "impossible d'analyser la date %s"
  1817. #: scripts/Dpkg/Changelog/Debian.pm:251 scripts/Dpkg/Changelog/Debian.pm:266
  1818. #, perl-format
  1819. msgid "found change data where expected %s"
  1820. msgstr "changements trouvés, %s attendu"
  1821. #: scripts/Dpkg/Changelog/Debian.pm:284
  1822. #, perl-format
  1823. msgid "found blank line where expected %s"
  1824. msgstr "ligne blanche trouvée, attendu %s"
  1825. #: scripts/Dpkg/Changelog/Debian.pm:288 scripts/Dpkg/Changelog/Debian.pm:303
  1826. msgid "unrecognised line"
  1827. msgstr "ligne non reconnue"
  1828. #: scripts/Dpkg/Changelog/Debian.pm:312
  1829. #, perl-format
  1830. msgid "found eof where expected %s"
  1831. msgstr "fin de fichier trouvée, %s attendu"
  1832. #: scripts/Dpkg/Changelog/Debian.pm:323
  1833. #, perl-format
  1834. msgid "can't close file %s: %s"
  1835. msgstr "impossible de fermer le fichier %s : %s"
  1836. #: scripts/Dpkg/Checksums.pm:26
  1837. #, perl-format
  1838. msgid "checksum program gave bogus output `%s'"
  1839. msgstr "le programme de calcul de somme de contrôle a fourni un résultat anormal : « %s »"
  1840. #: scripts/Dpkg/Checksums.pm:37
  1841. #, perl-format
  1842. msgid "Unknown checksum algorithm `%s', ignoring"
  1843. msgstr "Algorithme de calcul de somme de contrôle %s inconnu et ignoré"
  1844. #: scripts/Dpkg/Checksums.pm:45
  1845. #, perl-format
  1846. msgid "Checksums-%s field contains bad line `%s'"
  1847. msgstr "Le champ Checksums-%s contient une ligne mal formée « %s »"
  1848. #: scripts/Dpkg/Checksums.pm:57
  1849. #, perl-format
  1850. msgid "Conflicting file sizes `%u' and `%u' for file `%s'"
  1851. msgstr "Conflit de taille de fichiers %u et %u pour le fichier %s"
  1852. #: scripts/Dpkg/Checksums.pm:81
  1853. #, perl-format
  1854. msgid "cannot fstat file %s"
  1855. msgstr "fstat impossible pour le fichier %s"
  1856. #: scripts/Dpkg/Checksums.pm:85
  1857. #, perl-format
  1858. msgid "File %s has size %u instead of expected %u"
  1859. msgstr "la taille du fichier %s est %u au lieu de %u attendu"
  1860. #: scripts/Dpkg/Checksums.pm:98
  1861. #, perl-format
  1862. msgid "File %s has checksum %s instead of expected %s (algorithm %s)"
  1863. msgstr "la somme de comdtrôle du fichier %s est %s au lieu de %s (algorithme %s)"
  1864. #: scripts/Dpkg/Control.pm:81 scripts/Dpkg/Shlibs/Objdump.pm:89
  1865. #: scripts/Dpkg/Source/CompressedFile.pm:131
  1866. #: scripts/Dpkg/Source/Package/V3/quilt.pm:77
  1867. #: scripts/Dpkg/Source/Package/V3/quilt.pm:234
  1868. #, perl-format
  1869. msgid "cannot read %s"
  1870. msgstr "impossible de lire %s"
  1871. #: scripts/Dpkg/Control.pm:86
  1872. msgid "first block lacks a source field"
  1873. msgstr "le premier bloc ne comporte pas de champ source"
  1874. #: scripts/Dpkg/Control.pm:93
  1875. msgid "block lacks a package field"
  1876. msgstr "le bloc ne comporte pas de champ de paquet"
  1877. #: scripts/Dpkg/Deps.pm:313
  1878. #, perl-format
  1879. msgid "can't parse dependency %s"
  1880. msgstr "impossible d'analyser la dépendance %s"
  1881. #: scripts/Dpkg/Deps.pm:626
  1882. #, perl-format
  1883. msgid "Dpkg::Deps::Simple can't evaluate implication with a %s!"
  1884. msgstr "Dpkg::Deps::Simple ne peut pas évaluer l'implication avec un %s!"
  1885. #: scripts/Dpkg/ErrorHandling.pm:24
  1886. msgid "info"
  1887. msgstr "info"
  1888. #: scripts/Dpkg/ErrorHandling.pm:43 scripts/Dpkg/ErrorHandling.pm:49
  1889. msgid "failure"
  1890. msgstr "échec"
  1891. #: scripts/Dpkg/ErrorHandling.pm:54 scripts/Dpkg/ErrorHandling.pm:59
  1892. msgid "error"
  1893. msgstr "erreur"
  1894. #: scripts/Dpkg/ErrorHandling.pm:64
  1895. msgid "internal error"
  1896. msgstr "erreur interne"
  1897. #: scripts/Dpkg/ErrorHandling.pm:71
  1898. #, perl-format
  1899. msgid "unknown information field '%s' in input data in %s"
  1900. msgstr "champ d'information inconnu « %s » dans les données d'entrée de %s"
  1901. #: scripts/Dpkg/ErrorHandling.pm:84
  1902. #, perl-format
  1903. msgid "%s gave error exit status %s"
  1904. msgstr "%s a produit une erreur de sortie de type %s"
  1905. #: scripts/Dpkg/ErrorHandling.pm:86
  1906. #, perl-format
  1907. msgid "%s died from signal %s"
  1908. msgstr "%s tué par le signal %s"
  1909. #: scripts/Dpkg/ErrorHandling.pm:88
  1910. #, perl-format
  1911. msgid "%s failed with unknown exit code %d"
  1912. msgstr "%s a échoué avec une erreur de sortie de type inconnu %d"
  1913. #: scripts/Dpkg/ErrorHandling.pm:105
  1914. #, perl-format
  1915. msgid "syntax error in %s at line %d: %s"
  1916. msgstr "erreur de syntaxe dans %s à la ligne %d : %s"
  1917. #: scripts/Dpkg/Fields.pm:231
  1918. #, perl-format
  1919. msgid "field %s has newline then non whitespace >%s<"
  1920. msgstr "le champ %s contient un caractère nouvelle ligne puis un caractère >%s<"
  1921. #: scripts/Dpkg/Fields.pm:234
  1922. #, perl-format
  1923. msgid "field %s has blank lines >%s<"
  1924. msgstr "le champ %s contient des lignes blanches >%s<"
  1925. #: scripts/Dpkg/Fields.pm:236
  1926. #, perl-format
  1927. msgid "field %s has trailing newline >%s<"
  1928. msgstr "le champ %s se termine par un caractère nouvelle ligne >%s<"
  1929. #: scripts/Dpkg/Fields.pm:244
  1930. msgid "write error on control data"
  1931. msgstr "erreur d'écriture sur des données de contrôle"
  1932. #: scripts/Dpkg/IPC.pm:172
  1933. msgid "invalid exec parameter in fork_and_exec()"
  1934. msgstr "paramètre exec non valable dans fork_and_exec()"
  1935. #: scripts/Dpkg/IPC.pm:190 scripts/Dpkg/IPC.pm:196 scripts/Dpkg/IPC.pm:202
  1936. #, perl-format
  1937. msgid "pipe for %s"
  1938. msgstr "pipe pour %s"
  1939. #: scripts/Dpkg/IPC.pm:221
  1940. #, perl-format
  1941. msgid "chdir to %s"
  1942. msgstr "chdir vers %s"
  1943. #: scripts/Dpkg/IPC.pm:228
  1944. msgid "reopen stdin"
  1945. msgstr "réouverture stdin"
  1946. #: scripts/Dpkg/IPC.pm:234 scripts/Dpkg/IPC.pm:242
  1947. #: scripts/Dpkg/Shlibs/SymbolFile.pm:181
  1948. #: scripts/Dpkg/Source/CompressedFile.pm:118
  1949. #: scripts/Dpkg/Source/Package.pm:412 scripts/Dpkg/Source/Package/V2.pm:180
  1950. #: scripts/Dpkg/Source/Package/V2.pm:393
  1951. #: scripts/Dpkg/Source/Package/V3/quilt.pm:120
  1952. #: scripts/Dpkg/Source/Package/V3/quilt.pm:224
  1953. #: scripts/Dpkg/Source/Package/V3/quilt.pm:227
  1954. #: scripts/Dpkg/Source/Package/V3/quilt.pm:237
  1955. #, perl-format
  1956. msgid "cannot write %s"
  1957. msgstr "impossible d'écrire %s"
  1958. #: scripts/Dpkg/IPC.pm:236 scripts/Dpkg/IPC.pm:244
  1959. msgid "reopen stdout"
  1960. msgstr "réouverture stdout"
  1961. #: scripts/Dpkg/IPC.pm:250
  1962. #, perl-format
  1963. msgid "exec %s"
  1964. msgstr "exec %s"
  1965. #: scripts/Dpkg/IPC.pm:306
  1966. msgid "child process"
  1967. msgstr "processus fils"
  1968. #: scripts/Dpkg/IPC.pm:307
  1969. msgid "no PID set, cannot wait end of process"
  1970. msgstr "pas de PID établi, impossible d'attendre la fin du processus"
  1971. #: scripts/Dpkg/IPC.pm:308
  1972. #, perl-format
  1973. msgid "wait for %s"
  1974. msgstr "attente de %s"
  1975. #: scripts/Dpkg/Shlibs/Objdump.pm:74
  1976. msgid "cannot fork for objdump"
  1977. msgstr "fork impossible pour objdump"
  1978. #: scripts/Dpkg/Shlibs/Objdump.pm:82
  1979. #, perl-format
  1980. msgid "objdump on `%s'"
  1981. msgstr "objdump sur %s"
  1982. #: scripts/Dpkg/Shlibs/Objdump.pm:148
  1983. #, perl-format
  1984. msgid "cannot fork %s"
  1985. msgstr "fork impossible pour %s"
  1986. #: scripts/Dpkg/Shlibs/Objdump.pm:189
  1987. #, perl-format
  1988. msgid "Couldn't parse dynamic relocation record: %s"
  1989. msgstr "Impossible d'analyser l'enregistrement d'allocation dynamique : %s"
  1990. #: scripts/Dpkg/Shlibs/Objdump.pm:299
  1991. #, perl-format
  1992. msgid "Couldn't parse dynamic symbol definition: %s"
  1993. msgstr "Impossible d'analyser la définition de symboles dynamique : %s"
  1994. #: scripts/Dpkg/Shlibs/SymbolFile.pm:120
  1995. #, perl-format
  1996. msgid "Symbol information must be preceded by a header (file %s, line %s)."
  1997. msgstr ""
  1998. "Les informations de symboles doivent être précédées par un en-tête (fichier %"
  1999. "s, ligne %s)."
  2000. #: scripts/Dpkg/Shlibs/SymbolFile.pm:130
  2001. #, perl-format
  2002. msgid "you can't use wildcards on unversioned symbols: %s"
  2003. msgstr "impossible d'utiliser des caractères génériques sur les symboles non versionnés : %s"
  2004. #: scripts/Dpkg/Shlibs/SymbolFile.pm:166
  2005. #, perl-format
  2006. msgid "Failed to parse a line in %s: %s"
  2007. msgstr "Impossible d'analyser une ligne dans %s : %s"
  2008. #: scripts/Dpkg/Shlibs/SymbolFile.pm:214
  2009. msgid "Can't merge symbols from objects without SONAME."
  2010. msgstr "Impossible de fusionner les symboles depuis des objets sans SONAME."
  2011. #: scripts/Dpkg/Source/Archive.pm:58
  2012. msgid "write on tar input"
  2013. msgstr "écriture sur l'entrée de tar"
  2014. #: scripts/Dpkg/Source/Archive.pm:83
  2015. msgid "close on tar input"
  2016. msgstr "écriture sur la sortie de tar"
  2017. #: scripts/Dpkg/Source/Archive.pm:133 scripts/Dpkg/Source/Package.pm:249
  2018. #: scripts/Dpkg/Source/Package/V2.pm:164
  2019. #, perl-format
  2020. msgid "cannot opendir %s"
  2021. msgstr "impossible d'ouvrir le répertoire %s"
  2022. #: scripts/Dpkg/Source/Archive.pm:140 scripts/Dpkg/Source/Archive.pm:144
  2023. #, perl-format
  2024. msgid "Unable to rename %s to %s"
  2025. msgstr "impossible de modifier %s en %s"
  2026. #: scripts/Dpkg/Source/Compressor.pm:61
  2027. #, perl-format
  2028. msgid "%s is not a supported compression method"
  2029. msgstr "%s n'est pas une méthode compression gérée"
  2030. #: scripts/Dpkg/Source/Compressor.pm:91
  2031. msgid "Dpkg::Source::Compressor can only start one subprocess at a time"
  2032. msgstr "Dpkg::Source::Compressor ne peut démarrer qu'un sous-processus à la fois"
  2033. #: scripts/Dpkg/Source/Functions.pm:20
  2034. #, perl-format
  2035. msgid "cannot stat directory %s (before removal)"
  2036. msgstr "stat du répertoire %s impossible (avant suppression)"
  2037. #: scripts/Dpkg/Source/Functions.pm:26
  2038. #, perl-format
  2039. msgid "unable to check for removal of dir `%s'"
  2040. msgstr "impossible de vérifier la suppression du répertoire %s"
  2041. #: scripts/Dpkg/Source/Functions.pm:28
  2042. #, perl-format
  2043. msgid "rm -rf failed to remove `%s'"
  2044. msgstr "rm -rf n'a pas supprimé %s"
  2045. #: scripts/Dpkg/Source/Patch.pm:64 scripts/Dpkg/Source/Package/V2.pm:304
  2046. msgid "binary file contents changed"
  2047. msgstr "contenu d'un fichier binaire modifié"
  2048. #: scripts/Dpkg/Source/Patch.pm:110
  2049. #, perl-format
  2050. msgid "file %s has no final newline (either original or modified version)"
  2051. msgstr ""
  2052. "fichier %s sans caractère nouvelle ligne terminal (soit l'original soit la "
  2053. "version modifiée)"
  2054. #: scripts/Dpkg/Source/Patch.pm:114
  2055. #, perl-format
  2056. msgid "unknown line from diff -u on %s: `%s'"
  2057. msgstr "ligne inconnue dans diff -u sur %s : `%s'"
  2058. #: scripts/Dpkg/Source/Patch.pm:117
  2059. msgid "failed to write"
  2060. msgstr "échec d'écriture"
  2061. #: scripts/Dpkg/Source/Patch.pm:127
  2062. #, perl-format
  2063. msgid "diff on %s"
  2064. msgstr "diff sur %s"
  2065. #: scripts/Dpkg/Source/Patch.pm:152 scripts/Dpkg/Source/Patch.pm:171
  2066. #: scripts/Dpkg/Source/Patch.pm:209 scripts/Dpkg/Source/Patch.pm:221
  2067. #, perl-format
  2068. msgid "cannot stat file %s"
  2069. msgstr "stat impossible pour le fichier %s"
  2070. #: scripts/Dpkg/Source/Patch.pm:161 scripts/Dpkg/Source/Patch.pm:163
  2071. #, perl-format
  2072. msgid "cannot read link %s"
  2073. msgstr "impossible de lire le lien %s"
  2074. #: scripts/Dpkg/Source/Patch.pm:185
  2075. #, perl-format
  2076. msgid "newly created empty file '%s' will not be represented in diff"
  2077. msgstr "le fichier « %s », nouvellement créé, ne sera pas représenté dans le diff"
  2078. #: scripts/Dpkg/Source/Patch.pm:189
  2079. #, perl-format
  2080. msgid "executable mode %04o of '%s' will not be represented in diff"
  2081. msgstr "le mode exécutable %04o de « %s » ne sera pas représenté dans le diff"
  2082. #: scripts/Dpkg/Source/Patch.pm:194
  2083. #, perl-format
  2084. msgid "special mode %04o of '%s' will not be represented in diff"
  2085. msgstr "le mode spécial %04o de « %s » ne sera pas représenté dans le diff"
  2086. #: scripts/Dpkg/Source/Patch.pm:205
  2087. msgid "device or socket is not allowed"
  2088. msgstr "périphérique ou socket non autorisé"
  2089. #: scripts/Dpkg/Source/Patch.pm:214
  2090. msgid "unknown file type"
  2091. msgstr "type de fichier inconnu"
  2092. #: scripts/Dpkg/Source/Patch.pm:229
  2093. #, perl-format
  2094. msgid "ignoring deletion of file %s"
  2095. msgstr "suppression du fichier %s ignorée"
  2096. #: scripts/Dpkg/Source/Patch.pm:232
  2097. #, perl-format
  2098. msgid "ignoring deletion of directory %s"
  2099. msgstr "suppression du répertoire %s ignorée"
  2100. #: scripts/Dpkg/Source/Patch.pm:234
  2101. #, perl-format
  2102. msgid "ignoring deletion of symlink %s"
  2103. msgstr "suppression du lien symbolique %s ignorée"
  2104. #: scripts/Dpkg/Source/Patch.pm:247
  2105. #, perl-format
  2106. msgid "cannot close %s"
  2107. msgstr "impossible de fermer %s"
  2108. #: scripts/Dpkg/Source/Patch.pm:259 scripts/Dpkg/Source/Package/V2.pm:303
  2109. #, perl-format
  2110. msgid "cannot represent change to %s: %s"
  2111. msgstr "impossible de représenter les changements de %s : %s"
  2112. #: scripts/Dpkg/Source/Patch.pm:266
  2113. #, perl-format
  2114. msgid "cannot represent change to %s:"
  2115. msgstr "impossible de représenter les changements de %s :"
  2116. #: scripts/Dpkg/Source/Patch.pm:267
  2117. #, perl-format
  2118. msgid " new version is %s"
  2119. msgstr " la nouvelle version est %s"
  2120. #: scripts/Dpkg/Source/Patch.pm:268
  2121. #, perl-format
  2122. msgid " old version is %s"
  2123. msgstr " l'ancienne version est %s"
  2124. #: scripts/Dpkg/Source/Patch.pm:294
  2125. #, perl-format
  2126. msgid "expected ^--- in line %d of diff `%s'"
  2127. msgstr "dans la ligne %d du diff %s, « ^--- » attendu"
  2128. #: scripts/Dpkg/Source/Patch.pm:298
  2129. #, perl-format
  2130. msgid "diff `%s' patches file with no subdirectory"
  2131. msgstr "diff %s modifie un fichier sans sous-répertoire"
  2132. #: scripts/Dpkg/Source/Patch.pm:301
  2133. #, perl-format
  2134. msgid "diff `%s' patches file with name ending .dpkg-orig"
  2135. msgstr "diff %s modifie un fichier dont le nom de termine par .dpkg-orig"
  2136. #: scripts/Dpkg/Source/Patch.pm:306
  2137. #, perl-format
  2138. msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
  2139. msgstr "diff %s se termine au milieu de ---/+++ (ligne %d)"
  2140. #: scripts/Dpkg/Source/Patch.pm:310 scripts/Dpkg/Source/Patch.pm:320
  2141. #, perl-format
  2142. msgid "line after --- isn't as expected in diff `%s' (line %d)"
  2143. msgstr "ligne après --- n'est pas comme attendu dans diff %s (ligne %d)"
  2144. #: scripts/Dpkg/Source/Patch.pm:315
  2145. #, perl-format
  2146. msgid "original and modified files are /dev/null in diff `%s' (line %d)"
  2147. msgstr "les fichiers original et modifié sont /dev/null dans le diff %s (ligne %d)"
  2148. #: scripts/Dpkg/Source/Patch.pm:330
  2149. #, perl-format
  2150. msgid "diff `%s' patches something which is not a plain file"
  2151. msgstr "diff %s modifie un objet qui n'est pas un fichier normal"
  2152. #: scripts/Dpkg/Source/Patch.pm:334
  2153. #, perl-format
  2154. msgid "diff `%s' patches file %s twice"
  2155. msgstr "le diff %s modifie deux fois le fichier %s"
  2156. #: scripts/Dpkg/Source/Patch.pm:349
  2157. #, perl-format
  2158. msgid "unexpected end of diff `%s'"
  2159. msgstr "fin inattendue de diff %s"
  2160. #: scripts/Dpkg/Source/Patch.pm:352
  2161. #, perl-format
  2162. msgid "diff `%s' is missing trailing newline"
  2163. msgstr "le caractère nouvelle ligne manque dans diff %s"
  2164. #: scripts/Dpkg/Source/Patch.pm:360
  2165. #, perl-format
  2166. msgid "expected [ +-] at start of line %d of diff `%s'"
  2167. msgstr "[ +-] attendu au début de la ligne %d du diff %s"
  2168. #: scripts/Dpkg/Source/Patch.pm:367
  2169. #, perl-format
  2170. msgid "expected ^@@ at line %d of diff `%s'"
  2171. msgstr "^@@ attendu ligne %d du diff %s"
  2172. #: scripts/Dpkg/Source/Patch.pm:372
  2173. #, perl-format
  2174. msgid "diff `%s' doesn't contain any patch"
  2175. msgstr "le diff %s ne contient pas de changements"
  2176. #: scripts/Dpkg/Source/Patch.pm:395 scripts/Dpkg/Source/Package/V3/git.pm:182
  2177. #: scripts/Dpkg/Source/Package/V3/quilt.pm:130
  2178. #, perl-format
  2179. msgid "cannot create directory %s"
  2180. msgstr "impossible de créer le répertoire %s"
  2181. #: scripts/Dpkg/Source/Patch.pm:415
  2182. #: scripts/Dpkg/Source/Package/V3/quilt.pm:143
  2183. #, perl-format
  2184. msgid "cannot change timestamp for %s"
  2185. msgstr "impossible de modifier la date de %s"
  2186. #: scripts/Dpkg/Source/Patch.pm:419
  2187. #, perl-format
  2188. msgid "remove patch backup file %s"
  2189. msgstr "suppression du fichier de sauvegarde %s"
  2190. #: scripts/Dpkg/Source/Patch.pm:428
  2191. msgid "nonexistent"
  2192. msgstr "inexistant"
  2193. #: scripts/Dpkg/Source/Patch.pm:429 scripts/Dpkg/Source/Package.pm:333
  2194. #, perl-format
  2195. msgid "cannot stat %s"
  2196. msgstr "stat de %s impossible"
  2197. #: scripts/Dpkg/Source/Patch.pm:431
  2198. msgid "plain file"
  2199. msgstr "simple fichier"
  2200. #: scripts/Dpkg/Source/Patch.pm:432
  2201. msgid "directory"
  2202. msgstr "répertoire"
  2203. #: scripts/Dpkg/Source/Patch.pm:433
  2204. #, perl-format
  2205. msgid "symlink to %s"
  2206. msgstr "lien symbolique vers %s"
  2207. #: scripts/Dpkg/Source/Patch.pm:434
  2208. msgid "block device"
  2209. msgstr ""
  2210. #: scripts/Dpkg/Source/Patch.pm:435
  2211. msgid "character device"
  2212. msgstr ""
  2213. #: scripts/Dpkg/Source/Patch.pm:436
  2214. msgid "named pipe"
  2215. msgstr ""
  2216. #: scripts/Dpkg/Source/Patch.pm:437
  2217. msgid "named socket"
  2218. msgstr ""
  2219. #: scripts/Dpkg/Source/Package.pm:124
  2220. #, fuzzy, perl-format
  2221. msgid "%s is not the name of a file"
  2222. msgstr "%s n'est pas un fichier normal"
  2223. #: scripts/Dpkg/Source/Package.pm:147
  2224. #, perl-format
  2225. msgid "missing critical source control field %s"
  2226. msgstr "un champ de contrôle vital manque, %s"
  2227. #: scripts/Dpkg/Source/Package.pm:173
  2228. #, perl-format
  2229. msgid "source package format `%s' is not supported (Perl module %s is required)"
  2230. msgstr ""
  2231. #: scripts/Dpkg/Source/Package.pm:177
  2232. #, fuzzy, perl-format
  2233. msgid "invalid Format field `%s'"
  2234. msgstr "champ source invalide dans %s"
  2235. #: scripts/Dpkg/Source/Package.pm:203
  2236. #, fuzzy, perl-format
  2237. msgid "file `%s' listed twice in Files field"
  2238. msgstr "pas de tar amont dans le champ Files"
  2239. #: scripts/Dpkg/Source/Package.pm:232
  2240. msgid "source and version are required to compute the source basename"
  2241. msgstr ""
  2242. #: scripts/Dpkg/Source/Package.pm:278
  2243. #, perl-format
  2244. msgid "failed to verify signature on %s"
  2245. msgstr "impossible de vérifier la signature sur %s"
  2246. #: scripts/Dpkg/Source/Package.pm:282
  2247. #, perl-format
  2248. msgid "could not verify signature on %s since gpg isn't installed"
  2249. msgstr "impossible de vérifier la signature sur %s, gpg n'est pas installé"
  2250. #: scripts/Dpkg/Source/Package.pm:291
  2251. #, fuzzy, perl-format
  2252. msgid "%s is not a valid option for %s"
  2253. msgstr "%s n'est pas un fichier normal"
  2254. #: scripts/Dpkg/Source/Package.pm:335
  2255. #, perl-format
  2256. msgid "%s does not exist"
  2257. msgstr "%s n'existe pas"
  2258. #: scripts/Dpkg/Source/Package.pm:338
  2259. #, perl-format
  2260. msgid "cannot make %s executable"
  2261. msgstr "impossible de rendre %s exécutable"
  2262. #: scripts/Dpkg/Source/Package.pm:340
  2263. #, perl-format
  2264. msgid "%s is not a plain file"
  2265. msgstr "%s n'est pas un fichier normal"
  2266. #: scripts/Dpkg/Source/Package.pm:372
  2267. #, perl-format
  2268. msgid "tried to add file `%s' twice"
  2269. msgstr "fichier %s ajouté deux fois"
  2270. #: scripts/Dpkg/Source/Package/V1.pm:53
  2271. #, perl-format
  2272. msgid "-s%s option overrides earlier -s%s option"
  2273. msgstr "l'option -s%s annule une précédente option -s%s"
  2274. #: scripts/Dpkg/Source/Package/V1.pm:69
  2275. #, perl-format
  2276. msgid "source handling style -s%s not allowed with -x"
  2277. msgstr "gestion des sources avec -s%s non autorisée avec -x"
  2278. #: scripts/Dpkg/Source/Package/V1.pm:83
  2279. #: scripts/Dpkg/Source/Package/V3/native.pm:49
  2280. #, fuzzy
  2281. msgid "multiple tarfiles in v1.0 source package"
  2282. msgstr "plusieurs fichiers tar dans un paquet natif"
  2283. #: scripts/Dpkg/Source/Package/V1.pm:88 scripts/Dpkg/Source/Package/V2.pm:104
  2284. #, fuzzy, perl-format
  2285. msgid "unrecognized file for a %s source package: %s"
  2286. msgstr "type de fichier non reconnu pour %s"
  2287. #: scripts/Dpkg/Source/Package/V1.pm:93
  2288. #: scripts/Dpkg/Source/Package/V3/native.pm:56
  2289. msgid "no tarfile in Files field"
  2290. msgstr "pas de fichier tar dans le champ Files"
  2291. #: scripts/Dpkg/Source/Package/V1.pm:96
  2292. msgid "native package with .orig.tar"
  2293. msgstr "paquet natif avec .orig.tar"
  2294. #: scripts/Dpkg/Source/Package/V1.pm:109
  2295. #, perl-format
  2296. msgid "unable to rename `%s' to `%s'"
  2297. msgstr "impossible de modifier %s en %s"
  2298. #: scripts/Dpkg/Source/Package/V1.pm:113 scripts/Dpkg/Source/Package/V2.pm:116
  2299. #: scripts/Dpkg/Source/Package/V2.pm:123 scripts/Dpkg/Source/Package/V2.pm:133
  2300. #: scripts/Dpkg/Source/Package/V3/bzr.pm:192
  2301. #: scripts/Dpkg/Source/Package/V3/native.pm:59
  2302. #: scripts/Dpkg/Source/Package/V3/git.pm:256
  2303. #, fuzzy, perl-format
  2304. msgid "unpacking %s"
  2305. msgstr "%s : extraction de %s"
  2306. #: scripts/Dpkg/Source/Package/V1.pm:120
  2307. msgid "unable to keep orig directory (already exists)"
  2308. msgstr "impossible de garder répertoire orig, il existe déjà"
  2309. #: scripts/Dpkg/Source/Package/V1.pm:127
  2310. #, perl-format
  2311. msgid "failed to rename newly-extracted %s to %s"
  2312. msgstr "impossible de modifier le fichier extrait %s en %s"
  2313. #: scripts/Dpkg/Source/Package/V1.pm:133
  2314. #, perl-format
  2315. msgid "failed to rename saved %s to %s"
  2316. msgstr "impossible de modifier le fichier sauvegardé %s en %s"
  2317. #: scripts/Dpkg/Source/Package/V1.pm:140 scripts/Dpkg/Source/Package/V2.pm:183
  2318. #: scripts/Dpkg/Source/Package/V3/quilt.pm:146
  2319. #, fuzzy, perl-format
  2320. msgid "applying %s"
  2321. msgstr "%s : mise en place de %s"
  2322. #: scripts/Dpkg/Source/Package/V1.pm:152
  2323. #, fuzzy
  2324. msgid "only supports gzip compression"
  2325. msgstr "%s n'est pas une compression gérée"
  2326. #: scripts/Dpkg/Source/Package/V1.pm:163
  2327. #, fuzzy
  2328. msgid ""
  2329. "-b takes at most a directory and an orig source argument (with v1.0 source "
  2330. "package)"
  2331. msgstr "il faut au plus un paramètre répertoire et un paramètre source avec -b"
  2332. #: scripts/Dpkg/Source/Package/V1.pm:169
  2333. #, perl-format
  2334. msgid "source handling style -s%s not allowed with -b"
  2335. msgstr "gestion des sources avec -s%s non autorisée avec -b"
  2336. #: scripts/Dpkg/Source/Package/V1.pm:184
  2337. #, perl-format
  2338. msgid "packed orig `%s' exists but is not a plain file"
  2339. msgstr "l'orig compressé %s existe mais ce n'est pas un simple fichier"
  2340. #: scripts/Dpkg/Source/Package/V1.pm:196
  2341. #, fuzzy, perl-format
  2342. msgid "cannot stat orig argument %s"
  2343. msgstr "« stat » du paramètre source %s impossible : %s"
  2344. #: scripts/Dpkg/Source/Package/V1.pm:202
  2345. #, perl-format
  2346. msgid ""
  2347. "orig argument is unpacked but source handling style -s%s calls for packed (."
  2348. "orig.tar.<ext>)"
  2349. msgstr ""
  2350. "le paramètre source n'est pas compressé mais l'option -s%s demande des "
  2351. "sources compressées (.orig.tar.<ext>)"
  2352. #: scripts/Dpkg/Source/Package/V1.pm:210
  2353. #, perl-format
  2354. msgid ""
  2355. "orig argument is packed but source handling style -s%s calls for unpacked (."
  2356. "orig/)"
  2357. msgstr ""
  2358. "le paramètre source est compressé mais l'option -s%s demande des sources non "
  2359. "compressées (.orig/)"
  2360. #: scripts/Dpkg/Source/Package/V1.pm:220
  2361. #, perl-format
  2362. msgid ""
  2363. "orig argument is empty (means no orig, no diff) but source handling style -s%"
  2364. "s wants something"
  2365. msgstr ""
  2366. "le paramètre source est vide (pas d'orig, pas de diff) mais l'option -s%s "
  2367. "veut quelque chose."
  2368. #: scripts/Dpkg/Source/Package/V1.pm:233
  2369. #, perl-format
  2370. msgid "unpacked orig `%s' exists but is not a directory"
  2371. msgstr "orig non compressé %s existe mais ce n'est pas un répertoire"
  2372. #: scripts/Dpkg/Source/Package/V1.pm:238
  2373. #, perl-format
  2374. msgid "unable to stat putative unpacked orig `%s'"
  2375. msgstr "stat impossible du supposé orig non compressé %s"
  2376. #: scripts/Dpkg/Source/Package/V1.pm:247
  2377. #, perl-format
  2378. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  2379. msgstr "répertoire source %s n'est pas <paquet_source>-<version_amont> %s"
  2380. #: scripts/Dpkg/Source/Package/V1.pm:256
  2381. #, perl-format
  2382. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  2383. msgstr "répertoire .orig %s n'est pas <paquet>-<version_amont> (%s demandé)"
  2384. #: scripts/Dpkg/Source/Package/V1.pm:265
  2385. #, perl-format
  2386. msgid ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  2387. msgstr ".orig.tar %s n'est pas <paquet>_<version_amont>.orig.tar (%s demandé)"
  2388. #: scripts/Dpkg/Source/Package/V1.pm:277
  2389. #, perl-format
  2390. msgid ""
  2391. "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
  2392. "override"
  2393. msgstr ""
  2394. "le fichier tar %s existe déjà, pas de modification, abandon ; utiliser -sU "
  2395. "ou -sR pour forcer."
  2396. #: scripts/Dpkg/Source/Package/V1.pm:281
  2397. #, perl-format
  2398. msgid "unable to check for existence of `%s'"
  2399. msgstr "impossible de vérifier l'existence de %s"
  2400. #: scripts/Dpkg/Source/Package/V1.pm:296 scripts/Dpkg/Source/Package/V1.pm:346
  2401. #: scripts/Dpkg/Source/Package/V3/native.pm:95
  2402. #, perl-format
  2403. msgid "unable to rename `%s' (newly created) to `%s'"
  2404. msgstr "impossible de modifier %s (nouvellement créé) en %s"
  2405. #: scripts/Dpkg/Source/Package/V1.pm:299 scripts/Dpkg/Source/Package/V1.pm:349
  2406. #: scripts/Dpkg/Source/Package/V3/native.pm:98
  2407. #: scripts/Dpkg/Source/Package/V3/git.pm:272
  2408. #, perl-format
  2409. msgid "unable to change permission of `%s'"
  2410. msgstr "impossible de modifier les permissions de %s"
  2411. #: scripts/Dpkg/Source/Package/V1.pm:301 scripts/Dpkg/Source/Package/V2.pm:257
  2412. #, fuzzy, perl-format
  2413. msgid "building %s using existing %s"
  2414. msgstr "%s : construction de %s à partir de %s"
  2415. #: scripts/Dpkg/Source/Package/V1.pm:310
  2416. #, perl-format
  2417. msgid ""
  2418. "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
  2419. "sP to override"
  2420. msgstr ""
  2421. "le répertoire orig %s existe déjà, pas de modification, abandon ; utiliser -"
  2422. "sA, -sK ou -sP pour forcer."
  2423. #: scripts/Dpkg/Source/Package/V1.pm:318
  2424. #, perl-format
  2425. msgid "unable to check for existence of orig dir `%s'"
  2426. msgstr "impossible de vérifier l'existence du répertoire orig %s"
  2427. #: scripts/Dpkg/Source/Package/V1.pm:359
  2428. #, perl-format
  2429. msgid "%s: unrepresentable changes to source"
  2430. msgstr "%s : modifications non représentables des sources"
  2431. #: scripts/Dpkg/Source/Package/V2.pm:94
  2432. #, fuzzy, perl-format
  2433. msgid "duplicate files in %s source package: %s.*"
  2434. msgstr "entrée en double dans le fichier des fichiers pour le paquet %s (ligne %d) "
  2435. #: scripts/Dpkg/Source/Package/V2.pm:110
  2436. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  2437. msgstr ""
  2438. #: scripts/Dpkg/Source/Package/V2.pm:125
  2439. #, perl-format
  2440. msgid "required removal of `%s' installed by original tarball"
  2441. msgstr ""
  2442. #: scripts/Dpkg/Source/Package/V2.pm:198 scripts/Dpkg/Source/Package/V2.pm:255
  2443. msgid "no orig.tar file found"
  2444. msgstr ""
  2445. #: scripts/Dpkg/Source/Package/V2.pm:216
  2446. #: scripts/Dpkg/Source/Package/V3/quilt.pm:194
  2447. #: scripts/Dpkg/Source/Package/V3/quilt.pm:208
  2448. msgid ""
  2449. "patches have not been applied, applying them now (use --no-preparation to "
  2450. "override)"
  2451. msgstr ""
  2452. #: scripts/Dpkg/Source/Package/V2.pm:226
  2453. #: scripts/Dpkg/Source/Package/V3/bzr.pm:97
  2454. #: scripts/Dpkg/Source/Package/V3/native.pm:74
  2455. #: scripts/Dpkg/Source/Package/V3/git.pm:125
  2456. #, perl-format
  2457. msgid "-b takes only one parameter with format `%s'"
  2458. msgstr ""
  2459. #: scripts/Dpkg/Source/Package/V2.pm:277
  2460. #, fuzzy
  2461. msgid "copy of the debian directory"
  2462. msgstr "pas un répertoire"
  2463. #: scripts/Dpkg/Source/Package/V2.pm:286
  2464. #, fuzzy, perl-format
  2465. msgid "can't read %s"
  2466. msgstr "impossible de lire %s :"
  2467. #: scripts/Dpkg/Source/Package/V2.pm:305
  2468. #, perl-format
  2469. msgid ""
  2470. "add %s in debian/source/include-binaries if you want to store the modified "
  2471. "binary in the debian tarball"
  2472. msgstr ""
  2473. #: scripts/Dpkg/Source/Package/V2.pm:319
  2474. #, fuzzy, perl-format
  2475. msgid "unwanted binary file: %s"
  2476. msgstr "champ binary en double dans %s"
  2477. #: scripts/Dpkg/Source/Package/V2.pm:325
  2478. #, perl-format
  2479. msgid ""
  2480. "detected %d unwanted binary file(s) (add them in debian/source/include-"
  2481. "binaries to allow their inclusion)."
  2482. msgstr ""
  2483. #: scripts/Dpkg/Source/Package/V2.pm:338
  2484. #, fuzzy
  2485. msgid "unrepresentable changes to source"
  2486. msgstr "%s : modifications non représentables des sources"
  2487. #: scripts/Dpkg/Source/Package/V2.pm:344 scripts/Dpkg/Source/Package/V2.pm:348
  2488. #, fuzzy, perl-format
  2489. msgid "cannot remove %s"
  2490. msgstr "impossible de lire %s"
  2491. #: scripts/Dpkg/Source/Package/V2.pm:352
  2492. #, fuzzy, perl-format
  2493. msgid "cannot rename %s to %s"
  2494. msgstr "impossible de modifier %s en %s"
  2495. #: scripts/Dpkg/Source/Package/V2.pm:364
  2496. #, fuzzy, perl-format
  2497. msgid "can't write %s"
  2498. msgstr "impossible de lire %s"
  2499. #: scripts/Dpkg/Source/Package/V2.pm:368
  2500. #, fuzzy, perl-format
  2501. msgid "adding %s to %s"
  2502. msgstr "%s : construction de %s dans %s"
  2503. #: scripts/Dpkg/Source/Package/V3/bzr.pm:52
  2504. msgid ""
  2505. "This source package can only be manipulated using bzr, which is not in the "
  2506. "PATH."
  2507. msgstr ""
  2508. #: scripts/Dpkg/Source/Package/V3/bzr.pm:59
  2509. #, perl-format
  2510. msgid ""
  2511. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  2512. "present), but Format bzr was specified"
  2513. msgstr ""
  2514. #: scripts/Dpkg/Source/Package/V3/bzr.pm:66
  2515. #: scripts/Dpkg/Source/Package/V3/git.pm:76
  2516. #, perl-format
  2517. msgid "%s is a symlink"
  2518. msgstr ""
  2519. #: scripts/Dpkg/Source/Package/V3/bzr.pm:72
  2520. #: scripts/Dpkg/Source/Package/V3/git.pm:82
  2521. #, fuzzy, perl-format
  2522. msgid "%s is a symlink to outside %s"
  2523. msgstr "lien symbolique vers %s"
  2524. #: scripts/Dpkg/Source/Package/V3/bzr.pm:83
  2525. msgid "doesn't contain a bzr repository"
  2526. msgstr ""
  2527. #: scripts/Dpkg/Source/Package/V3/bzr.pm:111
  2528. #: scripts/Dpkg/Source/Package/V3/bzr.pm:134
  2529. #: scripts/Dpkg/Source/Package/V3/bzr.pm:200
  2530. #: scripts/Dpkg/Source/Package/V3/bzr.pm:206
  2531. #: scripts/Dpkg/Source/Package/V3/git.pm:139
  2532. #: scripts/Dpkg/Source/Package/V3/git.pm:176
  2533. #: scripts/Dpkg/Source/Package/V3/git.pm:187
  2534. #: scripts/Dpkg/Source/Package/V3/git.pm:212
  2535. #: scripts/Dpkg/Source/Package/V3/git.pm:264
  2536. #: scripts/Dpkg/Source/Package/V3/git.pm:334
  2537. #, fuzzy, perl-format
  2538. msgid "unable to chdir to `%s'"
  2539. msgstr "impossible de créer %s"
  2540. #: scripts/Dpkg/Source/Package/V3/bzr.pm:127
  2541. msgid "bzr status exited nonzero"
  2542. msgstr ""
  2543. #: scripts/Dpkg/Source/Package/V3/bzr.pm:129
  2544. #: scripts/Dpkg/Source/Package/V3/git.pm:169
  2545. #, perl-format
  2546. msgid "uncommitted, not-ignored changes in working directory: %s"
  2547. msgstr ""
  2548. #: scripts/Dpkg/Source/Package/V3/bzr.pm:181
  2549. #: scripts/Dpkg/Source/Package/V3/git.pm:245
  2550. msgid "format v3.0 uses only one source file"
  2551. msgstr ""
  2552. #: scripts/Dpkg/Source/Package/V3/bzr.pm:185
  2553. #: scripts/Dpkg/Source/Package/V3/git.pm:249
  2554. #, fuzzy, perl-format
  2555. msgid "expected %s, got %s"
  2556. msgstr "fin inattendue de diff %s"
  2557. #: scripts/Dpkg/Source/Package/V3/custom.pm:39
  2558. msgid "Format `3.0 (custom)' is only used to create source packages"
  2559. msgstr ""
  2560. #: scripts/Dpkg/Source/Package/V3/custom.pm:45
  2561. #, fuzzy
  2562. msgid "no files indicated on command line"
  2563. msgstr "ni un fichier ni un répertoire ni un lien symbolique"
  2564. #: scripts/Dpkg/Source/Package/V3/custom.pm:52
  2565. msgid "--target-format option is missing"
  2566. msgstr ""
  2567. #: scripts/Dpkg/Source/Package/V3/native.pm:52
  2568. #, fuzzy, perl-format
  2569. msgid "unrecognized file for a native source package: %s"
  2570. msgstr "type de fichier non reconnu pour %s"
  2571. #: scripts/Dpkg/Source/Package/V3/git.pm:58
  2572. msgid ""
  2573. "This source package can only be manipulated using git, which is not in the "
  2574. "PATH."
  2575. msgstr ""
  2576. #: scripts/Dpkg/Source/Package/V3/git.pm:65
  2577. #, perl-format
  2578. msgid ""
  2579. "source directory is not the top directory of a git repository (%s/.git not "
  2580. "present), but Format git was specified"
  2581. msgstr ""
  2582. #: scripts/Dpkg/Source/Package/V3/git.pm:69
  2583. #, perl-format
  2584. msgid "git repository %s uses submodules. This is not yet supported."
  2585. msgstr ""
  2586. #: scripts/Dpkg/Source/Package/V3/git.pm:104
  2587. msgid "git config exited nonzero"
  2588. msgstr ""
  2589. #: scripts/Dpkg/Source/Package/V3/git.pm:111
  2590. msgid "doesn't contain a git repository"
  2591. msgstr ""
  2592. #: scripts/Dpkg/Source/Package/V3/git.pm:167
  2593. msgid "git ls-files exited nonzero"
  2594. msgstr ""
  2595. #: scripts/Dpkg/Source/Package/V3/git.pm:270
  2596. #, perl-format
  2597. msgid "executable bit set on %s; clearing"
  2598. msgstr ""
  2599. #: scripts/Dpkg/Source/Package/V3/git.pm:281
  2600. #, perl-format
  2601. msgid "unable to remove `%s'"
  2602. msgstr "impossible de supprimer %s"
  2603. #: scripts/Dpkg/Source/Package/V3/git.pm:307
  2604. msgid "modifying .git/config to comment out some settings"
  2605. msgstr ""
  2606. #: scripts/Dpkg/Source/Package/V3/git.pm:309
  2607. #, fuzzy, perl-format
  2608. msgid "unable to append to %s"
  2609. msgstr "impossible d'ouvrir le répertoire %s"
  2610. #: scripts/Dpkg/Source/Package/V3/git.pm:310
  2611. msgid "The following setting(s) were disabled by dpkg-source"
  2612. msgstr ""
  2613. #: scripts/Dpkg/Source/Package/V3/quilt.pm:85
  2614. #, perl-format
  2615. msgid ""
  2616. "the series file (%s) contains unsupported options ('%s', line %s), dpkg-"
  2617. "source might fail when applying patches."
  2618. msgstr ""
  2619. #: scripts/Dpkg/Source/Package/V3/quilt.pm:114
  2620. #, fuzzy, perl-format
  2621. msgid "can't create symlink %s"
  2622. msgstr "impossible de lire le lien %s"
  2623. #: scripts/Dpkg/Source/Package/V3/quilt.pm:126
  2624. #: scripts/Dpkg/Source/Package/V3/quilt.pm:199
  2625. #, perl-format
  2626. msgid "applying %s with quilt"
  2627. msgstr ""
  2628. #: scripts/Dpkg/Substvars.pm:117
  2629. #, perl-format
  2630. msgid "bad line in substvars file %s at line %d"
  2631. msgstr "fichier substvars %s : ligne %d mal formée"
  2632. #: scripts/Dpkg/Substvars.pm:123
  2633. #, perl-format
  2634. msgid "unable to open substvars file %s: %s"
  2635. msgstr "impossible d'ouvrir le fichier substvars %s : %s"
  2636. #: scripts/Dpkg/Substvars.pm:164
  2637. #, perl-format
  2638. msgid "too many substitutions - recursive ? - in `%s'"
  2639. msgstr "trop de substitutions - mode récursif ? - dans « %s »"
  2640. #: scripts/Dpkg/Substvars.pm:170
  2641. #, perl-format
  2642. msgid "unknown substitution variable ${%s}"
  2643. msgstr "variable de substitution inconnue ${%s}"
  2644. #: scripts/Dpkg/Vars.pm:34
  2645. #, perl-format
  2646. msgid "source package name `%s' contains illegal character `%s'"
  2647. msgstr "le nom du paquet source « %s » contient un caractère « %s » non autorisé"
  2648. #: scripts/Dpkg/Vars.pm:37
  2649. #, perl-format
  2650. msgid "source package name `%s' starts with non-alphanum"
  2651. msgstr "le nom du paquet source « %s » ne commence ni par une lettre ni par un chiffre"
  2652. #: scripts/Dpkg/Vars.pm:46
  2653. #, perl-format
  2654. msgid "source package has two conflicting values - %s and %s"
  2655. msgstr "le paquet source a deux valeurs en conflit : %s et %s"
  2656. #: scripts/Dpkg/Version.pm:206
  2657. #, perl-format
  2658. msgid "version number contains illegal character `%s'"
  2659. msgstr "le numéro de version contient un caractère « %s » non autorisé"