fr.po 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093
  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-13 09:08+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 ""
  648. #: scripts/dpkg-genchanges.pl:424
  649. #, perl-format
  650. msgid "Conflicting sizes `%u' and `%u' for file `%s'"
  651. msgstr ""
  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. #, fuzzy, perl-format
  865. msgid "new libraries appeared in the symbols file: %s"
  866. msgstr "de nouvelles bibliothèques sont apparues dans le fichiers des symboles."
  867. #: scripts/dpkg-gensymbols.pl:208
  868. #, fuzzy, perl-format
  869. msgid "some libraries disappeared in the symbols file: %s"
  870. msgstr "certaines bibliothèques ont disparu du fichier des symboles."
  871. #: scripts/dpkg-gensymbols.pl:216
  872. #, fuzzy, 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."
  875. #: scripts/dpkg-gensymbols.pl:217 scripts/dpkg-gensymbols.pl:222
  876. msgid "see diff output below"
  877. msgstr ""
  878. #: scripts/dpkg-gensymbols.pl:237
  879. #, fuzzy, perl-format
  880. msgid "some symbols disappeared in the symbols file: %s"
  881. msgstr "certains symboles ont disparu du fichier des symboles."
  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. #: scripts/dpkg-parsechangelog.pl:103
  929. #, perl-format
  930. msgid "%s takes no non-option arguments"
  931. msgstr "%s ne prend pas de paramètre sans option"
  932. #: scripts/dpkg-scanpackages.pl:57
  933. #, perl-format
  934. msgid ""
  935. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  936. "Packages\n"
  937. "\n"
  938. "Options:\n"
  939. " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  940. " -u, --udeb scan for udebs (obsolete alias for -tudeb).\n"
  941. " -a, --arch <arch> architecture to scan for.\n"
  942. " -m, --multiversion allow multiple versions of a single package.\n"
  943. " -h, --help show this help message.\n"
  944. " --version show the version.\n"
  945. msgstr ""
  946. "Usage : %s [<option> ...] <rep-de-binaires> <fichier-d'override> [<chemin-à-"
  947. "préfixer>] >\n"
  948. "Paquets\n"
  949. "\n"
  950. "Options :\n"
  951. " -t, --type <type> recherche des paquets <type> (par défaut, « deb »).\n"
  952. " -u, --udeb recherche d'udebs (alias obsolète pour -tudeb).\n"
  953. " -a, --arch <arch> architecture à rechercher.\n"
  954. " -m, --multiversion permettre plusieurs versions d'un paquet.\n"
  955. " -h, --help afficher ce message d'aide.\n"
  956. " --version afficher la version.\n"
  957. #: scripts/dpkg-scanpackages.pl:73
  958. #, perl-format
  959. msgid "Couldn't open override file %s"
  960. msgstr "Impossible d'ouvrir le fichier d'override %s"
  961. #: scripts/dpkg-scanpackages.pl:99
  962. #, perl-format
  963. msgid " * Unconditional maintainer override for %s *"
  964. msgstr " * Annulation inconditionnelle du responsable pour %s *"
  965. #: scripts/dpkg-scanpackages.pl:115 scripts/dpkg-scansources.pl:507
  966. msgid "1 to 3 args expected\n"
  967. msgstr "de 1 à 3 paramètres attendus\n"
  968. #: scripts/dpkg-scanpackages.pl:138
  969. #, perl-format
  970. msgid "Binary dir %s not found"
  971. msgstr "Répertoire de binaires %s non trouvé"
  972. #: scripts/dpkg-scanpackages.pl:140
  973. #, perl-format
  974. msgid "Override file %s not found"
  975. msgstr "Fichier override %s non trouvé"
  976. #: scripts/dpkg-scanpackages.pl:154
  977. #, perl-format
  978. msgid "Couldn't open %s for reading"
  979. msgstr "Impossible de lire %s"
  980. #: scripts/dpkg-scanpackages.pl:161
  981. #, perl-format
  982. msgid "Couldn't call dpkg-deb on %s: %s, skipping package"
  983. msgstr "Impossible d'appeler dpkg-deb sur %s : %s, paquet sauté"
  984. #: scripts/dpkg-scanpackages.pl:165
  985. #, perl-format
  986. msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
  987. msgstr "« dpkg-deb -I %s control », sortie avec %d, paquet sauté"
  988. #: scripts/dpkg-scanpackages.pl:179
  989. #, perl-format
  990. msgid ""
  991. "Unprocessed text from %s control file; info:\n"
  992. "%s / %s"
  993. msgstr ""
  994. "Texte non traité du fichier de contrôle %s ; info :\n"
  995. "%s / %s"
  996. #: scripts/dpkg-scanpackages.pl:183
  997. #, perl-format
  998. msgid "No Package field in control file of %s"
  999. msgstr "Pas de champ Package dans le fichier de contrôle de %s"
  1000. #: scripts/dpkg-scanpackages.pl:190
  1001. #, perl-format
  1002. msgid ""
  1003. " ! Package %s (filename %s) is repeat but newer version;\n"
  1004. " used that one and ignored data from %s !\n"
  1005. msgstr ""
  1006. " ! Paquet %s (nom %s) répété, mais version plus récente ;\n"
  1007. " utilisation de celle-ci, données de %s ignorées !\n"
  1008. #: scripts/dpkg-scanpackages.pl:196
  1009. #, perl-format
  1010. msgid ""
  1011. " ! Package %s (filename %s) is repeat;\n"
  1012. " ignored that one and using data from %s !\n"
  1013. msgstr ""
  1014. " ! Paquet %s (nom %s) répété ;\n"
  1015. " version ignorée, utilisation des données de %s !\n"
  1016. #: scripts/dpkg-scanpackages.pl:203
  1017. #, perl-format
  1018. msgid " ! Package %s (filename %s) has Filename field!\n"
  1019. msgstr " ! Paquet %s (nom %s) a un champ Filename !\n"
  1020. #: scripts/dpkg-scanpackages.pl:213
  1021. #, perl-format
  1022. msgid "Strange text from 'md5sum < %s': '%s'"
  1023. msgstr "Texte étrange produit par « md5sum < %s » : « %s »"
  1024. #: scripts/dpkg-scanpackages.pl:216
  1025. #, perl-format
  1026. msgid "Couldn't stat %s"
  1027. msgstr "stat de %s impossible"
  1028. #: scripts/dpkg-scanpackages.pl:217
  1029. #, perl-format
  1030. msgid "file %s is empty"
  1031. msgstr "le fichier %s est vide"
  1032. #: scripts/dpkg-scanpackages.pl:263
  1033. msgid "Failed when writing stdout"
  1034. msgstr "Impossible d'écrire sur stdout"
  1035. #: scripts/dpkg-scanpackages.pl:266
  1036. msgid "Couldn't close stdout"
  1037. msgstr "Impossible de fermer stdout"
  1038. #: scripts/dpkg-scanpackages.pl:270
  1039. msgid "** Packages in archive but missing from override file: **"
  1040. msgstr "** Paquets dans l'archive mais pas dans le fichier d'override : **"
  1041. #: scripts/dpkg-scanpackages.pl:274
  1042. msgid " ++ Packages in override file with incorrect old maintainer value: ++"
  1043. msgstr ""
  1044. "++ Paquets dans le fichier d'override avec valeur incorrecte pour l'ancien "
  1045. "responsable : ++"
  1046. #: scripts/dpkg-scanpackages.pl:280
  1047. msgid " -- Packages specifying same maintainer as override file: --"
  1048. msgstr "-- Paquets indiquant le même responsable que le fichier d'override : --"
  1049. #: scripts/dpkg-scanpackages.pl:286
  1050. msgid " -- Packages in override file but not in archive: --"
  1051. msgstr "-- Paquets dans le fichier d'override mais pas dans l'archive : --"
  1052. #: scripts/dpkg-scanpackages.pl:291
  1053. #, perl-format
  1054. msgid " Wrote %s entries to output Packages file."
  1055. msgstr "%s entrées écrites dans le fichier Packages."
  1056. #: scripts/dpkg-scansources.pl:102
  1057. #, perl-format
  1058. msgid ""
  1059. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  1060. "Sources\n"
  1061. "\n"
  1062. "Options:\n"
  1063. " -n, --no-sort don't sort by package before outputting.\n"
  1064. " -s, --source-override <file>\n"
  1065. " use file for additional source overrides, "
  1066. "default\n"
  1067. " is regular override file with .src appended.\n"
  1068. " --debug turn debugging on.\n"
  1069. " --help show this help message.\n"
  1070. " --version show the version.\n"
  1071. "\n"
  1072. "See the man page for the full documentation.\n"
  1073. msgstr ""
  1074. "Usage : %s [<option> ...] <rep-de-binaires> <fichier-d'override> [<chemin-à-"
  1075. "préfixer>] >\n"
  1076. "Sources\n"
  1077. "\n"
  1078. "Options :\n"
  1079. " -n, --no-sort ne pas trier par paquet avant affichage\n"
  1080. " -s, --source-override <fichier>\n"
  1081. " utiliser fichier pour d'autres annulations, \n"
  1082. " par défaut c'est le fichier d'override normal qui "
  1083. "est utilisé.\n"
  1084. " --debug activer le débogage.\n"
  1085. " --help afficher ce message d'aide.\n"
  1086. " --version afficher la version.\n"
  1087. #: scripts/dpkg-scansources.pl:142
  1088. #, perl-format
  1089. msgid "error closing %s ($? %d, $! `%s')"
  1090. msgstr "erreur en fermant %s ($? %d, $! `%s')"
  1091. #: scripts/dpkg-scansources.pl:155
  1092. #, perl-format
  1093. msgid "can't read override file %s:"
  1094. msgstr "impossible de lire le fichier d'override %s :"
  1095. #: scripts/dpkg-scansources.pl:164
  1096. #, perl-format
  1097. msgid "invalid override entry at line %d (%d fields)"
  1098. msgstr "entrée invalide, ligne %d (champs %d)"
  1099. #: scripts/dpkg-scansources.pl:171
  1100. #, perl-format
  1101. msgid "ignoring duplicate override entry for %s at line %d"
  1102. msgstr "entrée en double %s ignorée, ligne %d"
  1103. #: scripts/dpkg-scansources.pl:177
  1104. #, perl-format
  1105. msgid "ignoring override entry for %s, invalid priority %s"
  1106. msgstr "entrée en double %s ignorée, priorité %s non valable"
  1107. #: scripts/dpkg-scansources.pl:196
  1108. msgid "error closing override file:"
  1109. msgstr "erreur en fermant le fichier d'override"
  1110. #: scripts/dpkg-scansources.pl:217
  1111. #, perl-format
  1112. msgid "can't read source override file %s:"
  1113. msgstr "impossible de lire le fichier d'override %s pour les sources :"
  1114. #: scripts/dpkg-scansources.pl:227
  1115. #, perl-format
  1116. msgid "invalid source override entry at line %d (%d fields)"
  1117. msgstr ""
  1118. "entrée invalide dans le fichier d'override pour les sources, ligne %d "
  1119. "(champs %d)"
  1120. #: scripts/dpkg-scansources.pl:236
  1121. #, perl-format
  1122. msgid "ignoring duplicate source override entry for %s at line %d"
  1123. msgstr ""
  1124. "entrée en double %s ignorée dans le fichier d'override pour les sources, "
  1125. "ligne %d"
  1126. #: scripts/dpkg-scansources.pl:243
  1127. msgid "error closing source override file:"
  1128. msgstr "erreur en fermant le fichier d'override pour les sources"
  1129. #: scripts/dpkg-scansources.pl:257
  1130. #, perl-format
  1131. msgid "%s has PGP start token but not end token"
  1132. msgstr "%s possède un début PGP mais pas de fin"
  1133. #: scripts/dpkg-scansources.pl:273
  1134. #, perl-format
  1135. msgid "can't read %s:"
  1136. msgstr "impossible de lire %s :"
  1137. #: scripts/dpkg-scansources.pl:279
  1138. #, perl-format
  1139. msgid "error doing fstat on %s:"
  1140. msgstr "erreur lors de fstat %s :"
  1141. #: scripts/dpkg-scansources.pl:287
  1142. #, perl-format
  1143. msgid "error reading from %s:"
  1144. msgstr "erreur en lisant %s :"
  1145. #: scripts/dpkg-scansources.pl:295 scripts/dpkg-scansources.pl:517
  1146. msgid "can't fork:"
  1147. msgstr "fork impossible :"
  1148. #: scripts/dpkg-scansources.pl:299
  1149. #, perl-format
  1150. msgid "can't dup %s:"
  1151. msgstr "dup %s impossible :"
  1152. #: scripts/dpkg-scansources.pl:300
  1153. #, perl-format
  1154. msgid "can't rewind %s:"
  1155. msgstr "impossible de rembobiner %s :"
  1156. #: scripts/dpkg-scansources.pl:301
  1157. msgid "can't exec md5sum:"
  1158. msgstr "exec md5sum impossible :"
  1159. #: scripts/dpkg-scansources.pl:310
  1160. #, perl-format
  1161. msgid "invalid md5 output for %s (%s)"
  1162. msgstr "résultat md5 non valable pour %s (%s)"
  1163. #: scripts/dpkg-scansources.pl:315
  1164. #, perl-format
  1165. msgid "error closing %s:"
  1166. msgstr "erreur en fermant %s :"
  1167. #: scripts/dpkg-scansources.pl:340
  1168. #, perl-format
  1169. msgid "%s invalid (contains blank line)"
  1170. msgstr "%s invalide (contient une ligne blanche)"
  1171. #: scripts/dpkg-scansources.pl:367
  1172. #, perl-format
  1173. msgid "invalid field in %s: %s"
  1174. msgstr "champ invalide dans %s : %s"
  1175. #: scripts/dpkg-scansources.pl:375
  1176. #, perl-format
  1177. msgid "duplicate source field in %s"
  1178. msgstr "champ source en double dans %s"
  1179. #: scripts/dpkg-scansources.pl:379
  1180. #, perl-format
  1181. msgid "invalid source field in %s"
  1182. msgstr "champ source invalide dans %s"
  1183. #: scripts/dpkg-scansources.pl:389
  1184. #, perl-format
  1185. msgid "duplicate binary field in %s"
  1186. msgstr "champ binary en double dans %s"
  1187. #: scripts/dpkg-scansources.pl:394
  1188. #, perl-format
  1189. msgid "no binary packages specified in %s"
  1190. msgstr "pas de paquets binaires indiqués dans %s"
  1191. #: scripts/dpkg-shlibdeps.pl:76
  1192. #, perl-format
  1193. msgid "administrative directory '%s' does not exist"
  1194. msgstr "répertoire d'administration %s n'existe pas"
  1195. #: scripts/dpkg-shlibdeps.pl:80
  1196. #, perl-format
  1197. msgid "unrecognised dependency field `%s'"
  1198. msgstr "champ de dépendance non reconnu « %s »"
  1199. #: scripts/dpkg-shlibdeps.pl:114
  1200. msgid "need at least one executable"
  1201. msgstr "au moins un exécutable est nécessaire"
  1202. #: scripts/dpkg-shlibdeps.pl:149
  1203. #, fuzzy, perl-format
  1204. msgid ""
  1205. "couldn't find library %s needed by %s (its RPATH is '%s').\n"
  1206. "Note: libraries are not searched in other binary packages that do not have "
  1207. "any shlibs or symbols file.\n"
  1208. "To help dpkg-shlibdeps find private libraries, you might need to set "
  1209. "LD_LIBRARY_PATH."
  1210. msgstr ""
  1211. "impossible de trouver la bibliothèque %s demandée par %s (son RPATH est « %"
  1212. "s »).\n"
  1213. "Note : les bibliothèques ne sont pas cherchées dans d'autres paquets "
  1214. "binaires qui n'ont pas de fichier shlibs.\n"
  1215. "Pour aider dpkg-shlibdeps à trouver des bibliothèques privées, vous pouvez "
  1216. "avoir à définir LD_LIBRARY_PATH."
  1217. #: scripts/dpkg-shlibdeps.pl:219
  1218. #, perl-format
  1219. msgid "%s has an unexpected SONAME (%s)"
  1220. msgstr ""
  1221. #: scripts/dpkg-shlibdeps.pl:241
  1222. #, perl-format
  1223. msgid "no dependency information found for %s (used by %s)."
  1224. msgstr "pas d'informations de dépendance trouvées pour %s (utilisé par %s)."
  1225. #: scripts/dpkg-shlibdeps.pl:301
  1226. #, perl-format
  1227. msgid "symbol %s used by %s found in none of the libraries."
  1228. msgstr "symbole %s utilisé par %s trouvé dans aucune des bibliothèques."
  1229. #: scripts/dpkg-shlibdeps.pl:321
  1230. #, perl-format
  1231. msgid "%d other similar warnings have been skipped (use -v to see them all)."
  1232. msgstr ""
  1233. "%d autres avertissements semblables ont été sautés (utiliser -v pour les "
  1234. "voir tous)."
  1235. #: scripts/dpkg-shlibdeps.pl:342
  1236. #, perl-format
  1237. msgid "%s shouldn't be linked with %s (it uses none of its symbols)."
  1238. msgstr "%s ne devrait pas être lié avec %s (il n'utilise aucun de ses symboles)."
  1239. #: scripts/dpkg-shlibdeps.pl:355
  1240. #, perl-format
  1241. msgid ""
  1242. "dependency on %s could be avoided if \"%s\" were not uselessly linked "
  1243. "against it (they use none of its symbols)."
  1244. msgstr ""
  1245. #: scripts/dpkg-shlibdeps.pl:368
  1246. #, perl-format
  1247. msgid "open new substvars file `%s'"
  1248. msgstr "ouverture du nouveau fichier substvars %s"
  1249. #: scripts/dpkg-shlibdeps.pl:371
  1250. #, perl-format
  1251. msgid "open old varlist file `%s' for reading"
  1252. msgstr "lecture de l'ancien fichier varlist %s"
  1253. #: scripts/dpkg-shlibdeps.pl:374
  1254. #, perl-format
  1255. msgid "copy old entry to new varlist file `%s'"
  1256. msgstr "copie d'une ancienne entrée dans le nouveau fichier varlist %s"
  1257. #: scripts/dpkg-shlibdeps.pl:437
  1258. #, perl-format
  1259. msgid "invalid dependency got generated: %s"
  1260. msgstr ""
  1261. #: scripts/dpkg-shlibdeps.pl:447
  1262. #, perl-format
  1263. msgid "install new varlist file `%s'"
  1264. msgstr "installation du nouveau fichier varlist %s"
  1265. #: scripts/dpkg-shlibdeps.pl:457
  1266. msgid ""
  1267. "\n"
  1268. "Copyright (C) 1996 Ian Jackson.\n"
  1269. "Copyright (C) 2000 Wichert Akkerman.\n"
  1270. "Copyright (C) 2006 Frank Lichtenheld.\n"
  1271. "Copyright (C) 2007 Raphael Hertzog.\n"
  1272. msgstr ""
  1273. "\n"
  1274. "Copyright (C) 1996 Ian Jackson.\n"
  1275. "Copyright (C) 2000 Wichert Akkerman.\n"
  1276. "Copyright (C) 2006 Frank Lichtenheld.\n"
  1277. "Copyright (C) 2007 Raphael Hertzog.\n"
  1278. #: scripts/dpkg-shlibdeps.pl:472
  1279. #, fuzzy, perl-format
  1280. msgid ""
  1281. "Usage: %s [<option> ...] <executable>|-e<executable> [<option> ...]\n"
  1282. "\n"
  1283. "Positional options (order is significant):\n"
  1284. " <executable> include dependencies for <executable>,\n"
  1285. " -e<executable> (use -e if <executable> starts with `-')\n"
  1286. " -d<dependencyfield> next executable(s) set shlibs:<dependencyfield>.\n"
  1287. "\n"
  1288. "Options:\n"
  1289. " -p<varnameprefix> set <varnameprefix>:* instead of shlibs:*.\n"
  1290. " -O print variable settings to stdout.\n"
  1291. " -L<localshlibsfile> shlibs override file, not debian/shlibs.local.\n"
  1292. " -T<varlistfile> update variables here, not debian/substvars.\n"
  1293. " -t<type> set package type (default is deb).\n"
  1294. " -x<package> exclude package from the generated dependencies.\n"
  1295. " -S<pkgbuilddir> search needed libraries in the given\n"
  1296. " package build directory first.\n"
  1297. " -v enable verbose mode (can be used multiple "
  1298. "times).\n"
  1299. " --ignore-missing-info don't fail if dependency information can't be "
  1300. "found.\n"
  1301. " --warnings=<value> define set of active warnings (see manual page).\n"
  1302. " --admindir=<directory> change the administrative directory.\n"
  1303. " -h, --help show this help message.\n"
  1304. " --version show the version.\n"
  1305. "\n"
  1306. "Dependency fields recognised are:\n"
  1307. " %s\n"
  1308. msgstr ""
  1309. "Usage : %s [<option> ...] <exécutable>|-e<exécutable> [<option> ...]\n"
  1310. "\n"
  1311. "Options à position (l'ordre est important) :\n"
  1312. " <exécutable> inclure les dépendances pour <exécutable>,\n"
  1313. " -e<exécutable> option -e si <exécutable> commence par « - »\n"
  1314. " -d<champ_dépendance> le prochain exécutable définit shlibs:"
  1315. "<champ_dépendance>\n"
  1316. "\n"
  1317. "Options :\n"
  1318. " -p<varnameprefix> définir <varnameprefix>:* au lieu de shlibs:"
  1319. "*.\n"
  1320. " -O afficher les variables définies sur stdout.\n"
  1321. " -L<localshlibsfile> fichier d'override pour shlibs, pas debian/"
  1322. "shlibs.local.\n"
  1323. " -T<varlistfile> mettre à jour les variables ici, pas debian/"
  1324. "substvars.\n"
  1325. " --admindir=<répertoire> change le répertoire d'administration.\n"
  1326. " -t<type> définir le type de paquet (.deb par défaut).\n"
  1327. " -x<paquet> exclut le paquet des dépendances générées.\n"
  1328. " -h, --help afficher ce message d'aide.\n"
  1329. " --version afficher la version.\n"
  1330. "\n"
  1331. "Champs de dépendance reconnus :\n"
  1332. " %s\n"
  1333. #: scripts/dpkg-shlibdeps.pl:597
  1334. #, perl-format
  1335. msgid "Can't extract name and version from library name `%s'"
  1336. msgstr "Impossible d'extraire le nom et la version du nom de la bibliothèque « %s »"
  1337. #: scripts/dpkg-shlibdeps.pl:604
  1338. #, perl-format
  1339. msgid "unable to open shared libs info file `%s'"
  1340. msgstr "impossible d'ouvrir le fichier sur les bibliothèques partagées %s"
  1341. #: scripts/dpkg-shlibdeps.pl:610
  1342. #, perl-format
  1343. msgid "shared libs info file `%s' line %d: bad line `%s'"
  1344. msgstr ""
  1345. "fichier info sur les bibliothèques partagées « %s », ligne %d : ligne mal "
  1346. "formée « %s »"
  1347. #: scripts/dpkg-shlibdeps.pl:663
  1348. #, perl-format
  1349. msgid "cannot open file %s"
  1350. msgstr "impossible d'ouvrir le fichier %s"
  1351. #: scripts/dpkg-shlibdeps.pl:696
  1352. #, perl-format
  1353. msgid ""
  1354. "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
  1355. "identified due to lack of DEBIAN sub-directory in the root of package's "
  1356. "build tree"
  1357. msgstr ""
  1358. "$ORIGIN est utilisé dans le RPATH de %s et le répertoire correspondant n'a "
  1359. "pas pu être identifié en raison de l'absence de sous-répertoire DEBIAN dans "
  1360. "la racine de l'arborescence de construction du paquet"
  1361. #: scripts/dpkg-shlibdeps.pl:749
  1362. msgid "cannot fork for dpkg --search"
  1363. msgstr "fork impossible pour dpkg --search"
  1364. #: scripts/dpkg-shlibdeps.pl:756
  1365. msgid "cannot exec dpkg"
  1366. msgstr "impossible d'exécuter dpkg"
  1367. #: scripts/dpkg-shlibdeps.pl:761
  1368. msgid "diversions involved - output may be incorrect"
  1369. msgstr "détournements en jeu, la sortie peut être incorrecte"
  1370. #: scripts/dpkg-shlibdeps.pl:763
  1371. msgid "write diversion info to stderr"
  1372. msgstr "info sur le détournement envoyée sur stderr"
  1373. #: scripts/dpkg-shlibdeps.pl:767
  1374. #, perl-format
  1375. msgid "unknown output from dpkg --search: '%s'"
  1376. msgstr "résultat de dpkg --search inconnu : %s"
  1377. #: scripts/dpkg-source.pl:67 scripts/Dpkg/Source/Compressor.pm:35
  1378. #, perl-format
  1379. msgid "%s is not a supported compression"
  1380. msgstr "%s n'est pas une compression gérée"
  1381. #: scripts/dpkg-source.pl:73 scripts/Dpkg/Source/Compressor.pm:42
  1382. #: scripts/Dpkg/Source/Compressor.pm:68
  1383. #, perl-format
  1384. msgid "%s is not a compression level"
  1385. msgstr "%s n'est pas un niveau de compression"
  1386. #: scripts/dpkg-source.pl:114
  1387. msgid "-E and -W are deprecated, they are without effect"
  1388. msgstr "La gestion de -E et -W est obsolète (ces paramètres sont sans effet)"
  1389. #: scripts/dpkg-source.pl:126
  1390. msgid "need -x or -b"
  1391. msgstr "-x ou -b nécessaire"
  1392. #: scripts/dpkg-source.pl:132
  1393. msgid "-b needs a directory"
  1394. msgstr "répertoire nécessaire avec -b"
  1395. #: scripts/dpkg-source.pl:135
  1396. #, fuzzy, perl-format
  1397. msgid "cannot stat directory %s"
  1398. msgstr "« stat » du répertoire %s impossible : %s"
  1399. #: scripts/dpkg-source.pl:137
  1400. #, perl-format
  1401. msgid "directory argument %s is not a directory"
  1402. msgstr "paramètre répertoire %s n'est pas un répertoire"
  1403. #: scripts/dpkg-source.pl:207
  1404. #, perl-format
  1405. msgid "`%s' is not a legal architecture string"
  1406. msgstr "%s n'est pas une architecture autorisée"
  1407. #: scripts/dpkg-source.pl:210
  1408. #, perl-format
  1409. msgid "architecture %s only allowed on its own (list for package %s is `%s')"
  1410. msgstr "architecture %s seulement autorisée toute seule (liste pour paquet %s est %s)"
  1411. #: scripts/dpkg-source.pl:257
  1412. #, perl-format
  1413. msgid "source format `%s' discarded: %s"
  1414. msgstr ""
  1415. #: scripts/dpkg-source.pl:259
  1416. #, perl-format
  1417. msgid "using source format `%s'"
  1418. msgstr ""
  1419. #: scripts/dpkg-source.pl:270 scripts/Dpkg/Source/Package/V1.pm:284
  1420. #: scripts/Dpkg/Source/Package/V1.pm:329 scripts/Dpkg/Source/Package/V2.pm:375
  1421. #: scripts/Dpkg/Source/Package/V3/bzr.pm:152
  1422. #: scripts/Dpkg/Source/Package/V3/native.pm:82
  1423. #: scripts/Dpkg/Source/Package/V3/git.pm:216
  1424. #, fuzzy, perl-format
  1425. msgid "building %s in %s"
  1426. msgstr "%s : construction de %s dans %s"
  1427. #: scripts/dpkg-source.pl:282
  1428. msgid "-x needs at least one argument, the .dsc"
  1429. msgstr "-x demande au moins un paramètre, le fichier .dsc"
  1430. #: scripts/dpkg-source.pl:285
  1431. msgid "-x takes no more than two arguments"
  1432. msgstr "-x ne prend pas plus de deux paramètres"
  1433. #: scripts/dpkg-source.pl:289
  1434. msgid "-x needs the .dsc file as first argument, not a directory"
  1435. msgstr "-x demande le fichier .dsc comme premier paramètre, pas un répertoire"
  1436. #: scripts/dpkg-source.pl:305
  1437. #, perl-format
  1438. msgid "unpack target exists: %s"
  1439. msgstr "cible non compressée existe : %s"
  1440. #: scripts/dpkg-source.pl:314
  1441. #, perl-format
  1442. msgid "extracting unsigned source package (%s)"
  1443. msgstr "extraction d'un paquet source non signé (%s)"
  1444. #: scripts/dpkg-source.pl:323
  1445. #, perl-format
  1446. msgid "%s: extracting %s in %s"
  1447. msgstr "%s : extraction de %s dans %s"
  1448. #: scripts/dpkg-source.pl:332
  1449. msgid "only one of -x or -b allowed, and only once"
  1450. msgstr "une seule option -x ou -b autorisée, et une seule fois"
  1451. #: scripts/dpkg-source.pl:340
  1452. #, fuzzy
  1453. msgid ""
  1454. "\n"
  1455. "Copyright (C) 1996 Ian Jackson and Klee Dienes.\n"
  1456. "Copyright (C) 2008 Raphael Hertzog"
  1457. msgstr ""
  1458. "\n"
  1459. "Copyright (C) 1996 Ian Jackson.\n"
  1460. "Copyright (C) 2001 Wichert Akkerman"
  1461. #: scripts/dpkg-source.pl:352
  1462. #, fuzzy, perl-format
  1463. msgid ""
  1464. "Usage: %s [<option> ...] <command>\n"
  1465. "\n"
  1466. "Commands:\n"
  1467. " -x <filename>.dsc [<output-dir>]\n"
  1468. " extract source package.\n"
  1469. " -b <dir>\n"
  1470. " build source package.\n"
  1471. "\n"
  1472. "Build options:\n"
  1473. " -c<controlfile> get control info from this file.\n"
  1474. " -l<changelogfile> get per-version info from this file.\n"
  1475. " -F<changelogformat> force change log format.\n"
  1476. " -V<name>=<value> set a substitution variable.\n"
  1477. " -T<varlistfile> read variables here, not debian/substvars.\n"
  1478. " -D<field>=<value> override or add a .dsc field and value.\n"
  1479. " -U<field> remove a field.\n"
  1480. " -q quiet mode.\n"
  1481. " -i[<regexp>] filter out files to ignore diffs of\n"
  1482. " (defaults to: '%s').\n"
  1483. " -I[<pattern>] filter out files when building tarballs\n"
  1484. " (defaults to: %s).\n"
  1485. " -Z<compression> select compression to use (defaults to 'gzip',\n"
  1486. " supported are: %s).\n"
  1487. " -z<level> compression level to use (defaults to '9',\n"
  1488. " supported are: '1'-'9', 'best', 'fast')\n"
  1489. "\n"
  1490. "Extract options:\n"
  1491. " --no-copy don't copy .orig tarballs\n"
  1492. " --no-check don't check signature and checksums before\n"
  1493. " unpacking\n"
  1494. "\n"
  1495. "General options:\n"
  1496. " -h, --help show this help message.\n"
  1497. " --version show the version.\n"
  1498. "\n"
  1499. "More options are available but they depend on the source package format.\n"
  1500. "See dpkg-source(1) for more info.\n"
  1501. msgstr ""
  1502. "Usage : %s [<option> ...] <commande>\n"
  1503. "\n"
  1504. "Commandes :\n"
  1505. " -x <fichier>.dsc [<rep_sortie]\n"
  1506. " extraire le paquet source.\n"
  1507. " -b <rep> [<rep_orig>|<targz_orig>|'']\n"
  1508. " construire le paquet source.\n"
  1509. "\n"
  1510. "Options de construction :\n"
  1511. " -c<fichier_de_contrôle> obtenir les informations de contrôle dans ce "
  1512. "fichier.\n"
  1513. " -l<fichier_changelog> obtenir les informations de changelog dans ce "
  1514. "fichier.\n"
  1515. " -F<changelogformat> modifier le format du changelog.\n"
  1516. " -V<nom>=<valeur> définir une substitution de variable.\n"
  1517. " -T<varlistfile> lire les variables dans ce fichier, pas dans "
  1518. "debian/substvars.\n"
  1519. " -D<champ>=<valeur> remplacer ou ajouter une paire champ / valeur.\n"
  1520. " -U<champ> supprimer un champ.\n"
  1521. " -E transformer certains avertissements en "
  1522. "erreurs.\n"
  1523. " -W quand -E est activée, -W la désactive.\n"
  1524. " -q opération muette, ne pas afficher "
  1525. "d'avertissements.\n"
  1526. " -i[<regexp>] éliminer les fichiers à ignorer, défaut %s.\n"
  1527. " -I[<format>] éliminer des fichiers en construisant les "
  1528. "tarballs\n"
  1529. " (par défaut : %s).\n"
  1530. " -sa sélection automatique des sources (-sA option "
  1531. "par défaut).\n"
  1532. " -sk utiliser les sources empaquetées \n"
  1533. " (extraction et conservation du targz)\n"
  1534. " -sp utiliser les sources empaquetées\n"
  1535. " (extraction et suppression du targz)\n"
  1536. " -su utiliser les sources non empaquetées\n"
  1537. " (compression et conservation du répertoire)\n"
  1538. " -sr utiliser les sources non empaquetées\n"
  1539. " (compression et suppression du répertoire)\n"
  1540. " -ss croire que le répertoire et le fichier tar sont "
  1541. "identiques.\n"
  1542. " -sn pas de diff, créer le fichier tar seulement.\n"
  1543. " -sA,-sK,-sP,-sU,-sR comme -sa,-sk,-sp,-su,-sr, mais modification "
  1544. "possible\n"
  1545. " d'un tar ou d'un rep existants.\n"
  1546. " -Z<compression> choisir la compression à utiliser (par défaut, "
  1547. "« gzip» ,\n"
  1548. " les valeurs gérées sont : %s).\n"
  1549. " -z<niveau> niveau de compression à utiliser (par défaut, "
  1550. "« 9 »,\n"
  1551. " les valeurs gérées sont : « 1 » - « 9 », « best », "
  1552. "« fast »)\n"
  1553. "\n"
  1554. "Options d'extraction :\n"
  1555. " -sp (défaut) garder les sources empaquetées dans le rep "
  1556. "courant.\n"
  1557. " -sn ne pas copier les sources dans le rep courant.\n"
  1558. " -su extraire aussi l'arborescence source.\n"
  1559. "\n"
  1560. "Options générales :\n"
  1561. " -h, --help afficher ce message d'aide.\n"
  1562. " --version afficher la version.\n"
  1563. #: scripts/changelog/debian.pl:21
  1564. #, fuzzy
  1565. msgid ""
  1566. "\n"
  1567. "Copyright (C) 1996 Ian Jackson.\n"
  1568. "Copyright (C) 2005,2007 Frank Lichtenheld."
  1569. msgstr ""
  1570. "\n"
  1571. "Copyright (C) 1996 Ian Jackson.\n"
  1572. "Copyright (C) 2000,2001 Wichert Akkerman."
  1573. #: scripts/changelog/debian.pl:32
  1574. #, perl-format
  1575. msgid ""
  1576. "Usage: %s [<option>...] [<changelogfile>]\n"
  1577. "\n"
  1578. "Options:\n"
  1579. " --help, -h print usage information\n"
  1580. " --version, -V print version information\n"
  1581. " --label, -l <file> name of the changelog file to\n"
  1582. " use in error messages\n"
  1583. " --file <file> changelog file to parse, defaults\n"
  1584. " to '-' (standard input)\n"
  1585. " --format <outputformat> see man page for list of available\n"
  1586. " output formats, defaults to 'dpkg'\n"
  1587. " for compatibility with dpkg-dev\n"
  1588. " --since, -s, -v <version> include all changes later than version\n"
  1589. " --until, -u <version> include all changes earlier than version\n"
  1590. " --from, -f <version> include all changes equal or later\n"
  1591. " than version\n"
  1592. " --to, -t <version> include all changes up to or equal\n"
  1593. " than version\n"
  1594. " --count, -c, -n <number> include <number> entries from the top\n"
  1595. " (or the tail if <number> is lower than 0)\n"
  1596. " --offset, -o <number> change the starting point for --count,\n"
  1597. " counted from the top (or the tail if\n"
  1598. " <number> is lower than 0)\n"
  1599. " --all include all changes\n"
  1600. msgstr ""
  1601. #: scripts/changelog/debian.pl:71
  1602. #, perl-format
  1603. msgid "output format %s not supported"
  1604. msgstr ""
  1605. #: scripts/changelog/debian.pl:96
  1606. #, fuzzy, perl-format
  1607. msgid "more than one file specified (%s and %s)"
  1608. msgstr "type de fichier répété : fichiers %s et %s"
  1609. #: scripts/changelog/debian.pl:118
  1610. #, fuzzy
  1611. msgid "fatal error occured while parsing input"
  1612. msgstr "erreur rencontrée lors de l'analyse de %s"
  1613. #: scripts/changelog/debian.pl:121
  1614. #, fuzzy, perl-format
  1615. msgid "fatal error occured while parsing %s"
  1616. msgstr "erreur rencontrée lors de l'analyse de %s"
  1617. #: scripts/Dpkg/Arch.pm:69
  1618. msgid ""
  1619. "Couldn't determine gcc system type, falling back to default (native "
  1620. "compilation)"
  1621. msgstr ""
  1622. "impossible de déterminer le type de gcc utilisé, retour au système par "
  1623. "défaut (compilation native)"
  1624. #: scripts/Dpkg/Arch.pm:78
  1625. #, perl-format
  1626. msgid "Unknown gcc system type %s, falling back to default (native compilation)"
  1627. msgstr "type de gcc %s inconnu, retour au système par défaut (compilation native)"
  1628. #: scripts/Dpkg/Arch.pm:121
  1629. msgid "unable to open cputable"
  1630. msgstr "impossible d'ouvrir « cputable »"
  1631. #: scripts/Dpkg/Arch.pm:138
  1632. msgid "unable to open ostable"
  1633. msgstr "impossible d'ouvrir « ostable »"
  1634. #: scripts/Dpkg/Arch.pm:157
  1635. msgid "unable to open triplettable"
  1636. msgstr "impossible d'ouvrir « triplettable »"
  1637. #: scripts/Dpkg/Cdata.pm:78
  1638. #, fuzzy, perl-format
  1639. msgid "duplicate field %s found"
  1640. msgstr "champ source en double dans %s"
  1641. #: scripts/Dpkg/Cdata.pm:84
  1642. msgid "continued value line not in field"
  1643. msgstr "la ligne continuée n'est pas dans le champ"
  1644. #: scripts/Dpkg/Cdata.pm:94
  1645. msgid "PGP signature not allowed here"
  1646. msgstr ""
  1647. #: scripts/Dpkg/Cdata.pm:101
  1648. msgid "expected PGP signature, found EOF after blank line"
  1649. msgstr "signature PGP attendue, EOF après ligne blanche trouvé"
  1650. #: scripts/Dpkg/Cdata.pm:105
  1651. #, perl-format
  1652. msgid "expected PGP signature, found something else `%s'"
  1653. msgstr "signature PGP attendue, « %s » trouvé"
  1654. #: scripts/Dpkg/Cdata.pm:111
  1655. msgid "unfinished PGP signature"
  1656. msgstr ""
  1657. #: scripts/Dpkg/Cdata.pm:115
  1658. msgid "line with unknown format (not field-colon-value)"
  1659. msgstr "ligne au format inconnu, format différent de « champ-virgule-valeur »"
  1660. #: scripts/Dpkg/Changelog.pm:170 scripts/Dpkg/Changelog.pm:172
  1661. #: scripts/Dpkg/ErrorHandling.pm:29
  1662. msgid "warning"
  1663. msgstr "avertissement"
  1664. #: scripts/Dpkg/Changelog.pm:170
  1665. #, perl-format
  1666. msgid ""
  1667. "%s(l%s): %s\n"
  1668. "LINE: %s"
  1669. msgstr ""
  1670. #: scripts/Dpkg/Changelog.pm:172
  1671. #, fuzzy, perl-format
  1672. msgid "%s(l%s): %s"
  1673. msgstr "%s : %s"
  1674. #: scripts/Dpkg/Changelog.pm:182
  1675. #, fuzzy
  1676. msgid "fatal error"
  1677. msgstr "erreur interne"
  1678. #: scripts/Dpkg/Changelog.pm:229
  1679. msgid "you can't combine 'count' or 'offset' with any other range option"
  1680. msgstr ""
  1681. #: scripts/Dpkg/Changelog.pm:233
  1682. msgid "you can only specify one of 'from' and 'since', using 'since'"
  1683. msgstr ""
  1684. #: scripts/Dpkg/Changelog.pm:237
  1685. msgid "you can only specify one of 'to' and 'until', using 'until'"
  1686. msgstr ""
  1687. #: scripts/Dpkg/Changelog.pm:241
  1688. #, fuzzy
  1689. msgid "'since' option specifies most recent version, ignoring"
  1690. msgstr "l'option -v<versiondepuis> indique la version la plus récente"
  1691. #: scripts/Dpkg/Changelog.pm:245
  1692. #, fuzzy
  1693. msgid "'until' option specifies oldest version, ignoring"
  1694. msgstr "l'option -v<versiondepuis> indique la version la plus récente"
  1695. #: scripts/Dpkg/Changelog.pm:763
  1696. #, perl-format
  1697. msgid "tail of %s"
  1698. msgstr "fin de %s"
  1699. #: scripts/Dpkg/Changelog.pm:775
  1700. #, perl-format
  1701. msgid "format parser %s not executable"
  1702. msgstr "l'analyseur de format %s n'est pas exécutable"
  1703. #: scripts/Dpkg/Changelog.pm:778
  1704. #, fuzzy, perl-format
  1705. msgid "changelog format %s is unknown"
  1706. msgstr "format %s inconnu"
  1707. #: scripts/Dpkg/Changelog.pm:795 scripts/Dpkg/IPC.pm:208
  1708. #, perl-format
  1709. msgid "fork for %s"
  1710. msgstr "fork for %s"
  1711. #: scripts/Dpkg/Changelog.pm:799 scripts/Dpkg/IPC.pm:226
  1712. #: scripts/Dpkg/Shlibs.pm:77 scripts/Dpkg/Shlibs/SymbolFile.pm:114
  1713. #: scripts/Dpkg/Source/Package.pm:129 scripts/Dpkg/Source/Package.pm:138
  1714. #, fuzzy, perl-format
  1715. msgid "cannot open %s"
  1716. msgstr "impossible d'ouvrir %s : %s"
  1717. #: scripts/Dpkg/Changelog.pm:801
  1718. #, perl-format
  1719. msgid "cannot exec format parser: %s"
  1720. msgstr "impossible d'exécuter l'analyseur de format : %s"
  1721. #: scripts/Dpkg/Changelog.pm:806
  1722. msgid "output of changelog parser"
  1723. msgstr ""
  1724. #: scripts/Dpkg/Changelog.pm:809
  1725. #, fuzzy, perl-format
  1726. msgid "changelog parser %s"
  1727. msgstr "impossible d'exécuter l'analyseur de format : %s"
  1728. #: scripts/Dpkg/Changelog/Debian.pm:101
  1729. #, fuzzy, perl-format
  1730. msgid "can't open file %s: %s"
  1731. msgstr "impossible d'ouvrir le fichier .dsc %s : %s"
  1732. #: scripts/Dpkg/Changelog/Debian.pm:110
  1733. #, perl-format
  1734. msgid "can't load IO::String: %s"
  1735. msgstr ""
  1736. #: scripts/Dpkg/Changelog/Debian.pm:117
  1737. msgid "no changelog file specified"
  1738. msgstr ""
  1739. #: scripts/Dpkg/Changelog/Debian.pm:142
  1740. #, perl-format
  1741. msgid "found start of entry where expected %s"
  1742. msgstr "début d'une entrée trouvé, %s attendu"
  1743. #: scripts/Dpkg/Changelog/Debian.pm:167
  1744. #, perl-format
  1745. msgid "bad key-value after `;': `%s'"
  1746. msgstr "mauvaise clé-valeur après « ; » : %s"
  1747. #: scripts/Dpkg/Changelog/Debian.pm:171
  1748. #, perl-format
  1749. msgid "repeated key-value %s"
  1750. msgstr "clé-valeur répété %s"
  1751. #: scripts/Dpkg/Changelog/Debian.pm:175
  1752. msgid "badly formatted urgency value"
  1753. msgstr "valeur urgency mal formée"
  1754. #: scripts/Dpkg/Changelog/Debian.pm:186
  1755. #, fuzzy, perl-format
  1756. msgid "unknown key-value key %s - copying to XS-%s"
  1757. msgstr "clé clé-valeur inconnue %s, copie dans %s"
  1758. #: scripts/Dpkg/Changelog/Debian.pm:217
  1759. msgid "badly formatted heading line"
  1760. msgstr "ligne d'en-tête mal formée"
  1761. #: scripts/Dpkg/Changelog/Debian.pm:221
  1762. #, perl-format
  1763. msgid "found trailer where expected %s"
  1764. msgstr "ligne de fin trouvée, attendu %s"
  1765. #: scripts/Dpkg/Changelog/Debian.pm:225 scripts/Dpkg/Changelog/Debian.pm:242
  1766. msgid "badly formatted trailer line"
  1767. msgstr "ligne de fin mal formée"
  1768. #: scripts/Dpkg/Changelog/Debian.pm:235
  1769. #, fuzzy, perl-format
  1770. msgid "couldn't parse date %s"
  1771. msgstr "stat de %s impossible"
  1772. #: scripts/Dpkg/Changelog/Debian.pm:251 scripts/Dpkg/Changelog/Debian.pm:266
  1773. #, perl-format
  1774. msgid "found change data where expected %s"
  1775. msgstr "changements trouvés, %s attendu"
  1776. #: scripts/Dpkg/Changelog/Debian.pm:284
  1777. #, perl-format
  1778. msgid "found blank line where expected %s"
  1779. msgstr "ligne blanche trouvée, attendu %s"
  1780. #: scripts/Dpkg/Changelog/Debian.pm:288 scripts/Dpkg/Changelog/Debian.pm:303
  1781. msgid "unrecognised line"
  1782. msgstr "ligne non reconnue"
  1783. #: scripts/Dpkg/Changelog/Debian.pm:312
  1784. #, perl-format
  1785. msgid "found eof where expected %s"
  1786. msgstr "fin de fichier trouvée, %s attendu"
  1787. #: scripts/Dpkg/Changelog/Debian.pm:323
  1788. #, fuzzy, perl-format
  1789. msgid "can't close file %s: %s"
  1790. msgstr "impossible d'ouvrir le fichier .dsc %s : %s"
  1791. #: scripts/Dpkg/Checksums.pm:26
  1792. #, fuzzy, perl-format
  1793. msgid "checksum program gave bogus output `%s'"
  1794. msgstr "résultat anormal de md5sum « %s »"
  1795. #: scripts/Dpkg/Checksums.pm:37
  1796. #, perl-format
  1797. msgid "Unknown checksum algorithm `%s', ignoring"
  1798. msgstr ""
  1799. #: scripts/Dpkg/Checksums.pm:45
  1800. #, fuzzy, perl-format
  1801. msgid "Checksums-%s field contains bad line `%s'"
  1802. msgstr "le champ Files contient une ligne mal formée « %s »"
  1803. #: scripts/Dpkg/Checksums.pm:57
  1804. #, perl-format
  1805. msgid "Conflicting file sizes `%u' and `%u' for file `%s'"
  1806. msgstr ""
  1807. #: scripts/Dpkg/Checksums.pm:81
  1808. #, fuzzy, perl-format
  1809. msgid "cannot fstat file %s"
  1810. msgstr "stat impossible pour le fichier %s"
  1811. #: scripts/Dpkg/Checksums.pm:85
  1812. #, fuzzy, perl-format
  1813. msgid "File %s has size %u instead of expected %u"
  1814. msgstr "la taille du fichier %s est %s au lieu de %s"
  1815. #: scripts/Dpkg/Checksums.pm:98
  1816. #, fuzzy, perl-format
  1817. msgid "File %s has checksum %s instead of expected %s (algorithm %s)"
  1818. msgstr "md5sum du fichier %s est %s au lieu de %s"
  1819. #: scripts/Dpkg/Control.pm:81 scripts/Dpkg/Shlibs/Objdump.pm:89
  1820. #: scripts/Dpkg/Source/CompressedFile.pm:131
  1821. #: scripts/Dpkg/Source/Package/V3/quilt.pm:77
  1822. #: scripts/Dpkg/Source/Package/V3/quilt.pm:234
  1823. #, perl-format
  1824. msgid "cannot read %s"
  1825. msgstr "impossible de lire %s"
  1826. #: scripts/Dpkg/Control.pm:86
  1827. msgid "first block lacks a source field"
  1828. msgstr ""
  1829. #: scripts/Dpkg/Control.pm:93
  1830. msgid "block lacks a package field"
  1831. msgstr ""
  1832. #: scripts/Dpkg/Deps.pm:313
  1833. #, perl-format
  1834. msgid "can't parse dependency %s"
  1835. msgstr "impossible d'analyser la dépendance %s"
  1836. #: scripts/Dpkg/Deps.pm:626
  1837. #, perl-format
  1838. msgid "Dpkg::Deps::Simple can't evaluate implication with a %s!"
  1839. msgstr ""
  1840. #: scripts/Dpkg/ErrorHandling.pm:24
  1841. msgid "info"
  1842. msgstr ""
  1843. #: scripts/Dpkg/ErrorHandling.pm:43 scripts/Dpkg/ErrorHandling.pm:49
  1844. msgid "failure"
  1845. msgstr "échec"
  1846. #: scripts/Dpkg/ErrorHandling.pm:54 scripts/Dpkg/ErrorHandling.pm:59
  1847. msgid "error"
  1848. msgstr "erreur"
  1849. #: scripts/Dpkg/ErrorHandling.pm:64
  1850. msgid "internal error"
  1851. msgstr "erreur interne"
  1852. #: scripts/Dpkg/ErrorHandling.pm:71
  1853. #, perl-format
  1854. msgid "unknown information field '%s' in input data in %s"
  1855. msgstr "champ d'information inconnu « %s » dans les données d'entrée de %s"
  1856. #: scripts/Dpkg/ErrorHandling.pm:84
  1857. #, perl-format
  1858. msgid "%s gave error exit status %s"
  1859. msgstr "%s a produit une erreur de sortie de type %s"
  1860. #: scripts/Dpkg/ErrorHandling.pm:86
  1861. #, perl-format
  1862. msgid "%s died from signal %s"
  1863. msgstr "%s tué par le signal %s"
  1864. #: scripts/Dpkg/ErrorHandling.pm:88
  1865. #, perl-format
  1866. msgid "%s failed with unknown exit code %d"
  1867. msgstr "%s a échoué avec une erreur de sortie de type inconnu %d"
  1868. #: scripts/Dpkg/ErrorHandling.pm:105
  1869. #, perl-format
  1870. msgid "syntax error in %s at line %d: %s"
  1871. msgstr "erreur de syntaxe dans %s à la ligne %d : %s"
  1872. #: scripts/Dpkg/Fields.pm:231
  1873. #, perl-format
  1874. msgid "field %s has newline then non whitespace >%s<"
  1875. msgstr "le champ %s contient un caractère nouvelle ligne puis un caractère >%s<"
  1876. #: scripts/Dpkg/Fields.pm:234
  1877. #, perl-format
  1878. msgid "field %s has blank lines >%s<"
  1879. msgstr "le champ %s contient des lignes blanches >%s<"
  1880. #: scripts/Dpkg/Fields.pm:236
  1881. #, perl-format
  1882. msgid "field %s has trailing newline >%s<"
  1883. msgstr "le champ %s se termine par un caractère nouvelle ligne >%s<"
  1884. #: scripts/Dpkg/Fields.pm:244
  1885. msgid "write error on control data"
  1886. msgstr "erreur d'écriture sur des données de contrôle"
  1887. #: scripts/Dpkg/IPC.pm:172
  1888. msgid "invalid exec parameter in fork_and_exec()"
  1889. msgstr ""
  1890. #: scripts/Dpkg/IPC.pm:190 scripts/Dpkg/IPC.pm:196 scripts/Dpkg/IPC.pm:202
  1891. #, perl-format
  1892. msgid "pipe for %s"
  1893. msgstr "pipe pour %s"
  1894. #: scripts/Dpkg/IPC.pm:221
  1895. #, fuzzy, perl-format
  1896. msgid "chdir to %s"
  1897. msgstr "chdir pour du vers %s"
  1898. #: scripts/Dpkg/IPC.pm:228
  1899. #, fuzzy
  1900. msgid "reopen stdin"
  1901. msgstr "réouverture tar"
  1902. #: scripts/Dpkg/IPC.pm:234 scripts/Dpkg/IPC.pm:242
  1903. #: scripts/Dpkg/Shlibs/SymbolFile.pm:181
  1904. #: scripts/Dpkg/Source/CompressedFile.pm:118
  1905. #: scripts/Dpkg/Source/Package.pm:412 scripts/Dpkg/Source/Package/V2.pm:180
  1906. #: scripts/Dpkg/Source/Package/V2.pm:393
  1907. #: scripts/Dpkg/Source/Package/V3/quilt.pm:120
  1908. #: scripts/Dpkg/Source/Package/V3/quilt.pm:224
  1909. #: scripts/Dpkg/Source/Package/V3/quilt.pm:227
  1910. #: scripts/Dpkg/Source/Package/V3/quilt.pm:237
  1911. #, fuzzy, perl-format
  1912. msgid "cannot write %s"
  1913. msgstr "impossible de lire %s"
  1914. #: scripts/Dpkg/IPC.pm:236 scripts/Dpkg/IPC.pm:244
  1915. #, fuzzy
  1916. msgid "reopen stdout"
  1917. msgstr "réouverture tar"
  1918. #: scripts/Dpkg/IPC.pm:250
  1919. #, perl-format
  1920. msgid "exec %s"
  1921. msgstr "exec %s"
  1922. #: scripts/Dpkg/IPC.pm:306
  1923. msgid "child process"
  1924. msgstr ""
  1925. #: scripts/Dpkg/IPC.pm:307
  1926. msgid "no PID set, cannot wait end of process"
  1927. msgstr ""
  1928. #: scripts/Dpkg/IPC.pm:308
  1929. #, fuzzy, perl-format
  1930. msgid "wait for %s"
  1931. msgstr "attente tar"
  1932. #: scripts/Dpkg/Shlibs/Objdump.pm:74
  1933. msgid "cannot fork for objdump"
  1934. msgstr "fork impossible pour objdump"
  1935. #: scripts/Dpkg/Shlibs/Objdump.pm:82
  1936. #, perl-format
  1937. msgid "objdump on `%s'"
  1938. msgstr "objdump sur %s"
  1939. #: scripts/Dpkg/Shlibs/Objdump.pm:148
  1940. #, fuzzy, perl-format
  1941. msgid "cannot fork %s"
  1942. msgstr "fork impossible : %s"
  1943. #: scripts/Dpkg/Shlibs/Objdump.pm:189
  1944. #, fuzzy, perl-format
  1945. msgid "Couldn't parse dynamic relocation record: %s"
  1946. msgstr "Impossible d'analyser la définition de symboles dynamique : %s"
  1947. #: scripts/Dpkg/Shlibs/Objdump.pm:299
  1948. #, perl-format
  1949. msgid "Couldn't parse dynamic symbol definition: %s"
  1950. msgstr "Impossible d'analyser la définition de symboles dynamique : %s"
  1951. #: scripts/Dpkg/Shlibs/SymbolFile.pm:120
  1952. #, perl-format
  1953. msgid "Symbol information must be preceded by a header (file %s, line %s)."
  1954. msgstr ""
  1955. "Les informations de symboles doivent être précédées par un en-tête (fichier %"
  1956. "s, ligne %s)."
  1957. #: scripts/Dpkg/Shlibs/SymbolFile.pm:130
  1958. #, perl-format
  1959. msgid "you can't use wildcards on unversioned symbols: %s"
  1960. msgstr ""
  1961. #: scripts/Dpkg/Shlibs/SymbolFile.pm:166
  1962. #, perl-format
  1963. msgid "Failed to parse a line in %s: %s"
  1964. msgstr "Impossible d'analyser une ligne dans %s : %s"
  1965. #: scripts/Dpkg/Shlibs/SymbolFile.pm:214
  1966. msgid "Can't merge symbols from objects without SONAME."
  1967. msgstr "Impossible de fusionner les symboles depuis des objets sans SONAME."
  1968. #: scripts/Dpkg/Source/Archive.pm:58
  1969. #, fuzzy
  1970. msgid "write on tar input"
  1971. msgstr "entrée écrite"
  1972. #: scripts/Dpkg/Source/Archive.pm:83
  1973. #, fuzzy
  1974. msgid "close on tar input"
  1975. msgstr "close output"
  1976. #: scripts/Dpkg/Source/Archive.pm:133 scripts/Dpkg/Source/Package.pm:249
  1977. #: scripts/Dpkg/Source/Package/V2.pm:164
  1978. #, fuzzy, perl-format
  1979. msgid "cannot opendir %s"
  1980. msgstr "impossible d'ouvrir %s : %s"
  1981. #: scripts/Dpkg/Source/Archive.pm:140 scripts/Dpkg/Source/Archive.pm:144
  1982. #, perl-format
  1983. msgid "Unable to rename %s to %s"
  1984. msgstr "impossible de modifier %s en %s"
  1985. #: scripts/Dpkg/Source/Compressor.pm:61
  1986. #, fuzzy, perl-format
  1987. msgid "%s is not a supported compression method"
  1988. msgstr "%s n'est pas une compression gérée"
  1989. #: scripts/Dpkg/Source/Compressor.pm:91
  1990. msgid "Dpkg::Source::Compressor can only start one subprocess at a time"
  1991. msgstr ""
  1992. #: scripts/Dpkg/Source/Functions.pm:20
  1993. #, perl-format
  1994. msgid "cannot stat directory %s (before removal)"
  1995. msgstr "stat du répertoire %s impossible (avant suppression)"
  1996. #: scripts/Dpkg/Source/Functions.pm:26
  1997. #, perl-format
  1998. msgid "unable to check for removal of dir `%s'"
  1999. msgstr "impossible de vérifier la suppression du répertoire %s"
  2000. #: scripts/Dpkg/Source/Functions.pm:28
  2001. #, perl-format
  2002. msgid "rm -rf failed to remove `%s'"
  2003. msgstr "rm -rf n'a pas supprimé %s"
  2004. #: scripts/Dpkg/Source/Patch.pm:64 scripts/Dpkg/Source/Package/V2.pm:304
  2005. msgid "binary file contents changed"
  2006. msgstr "contenu d'un fichier binaire modifié"
  2007. #: scripts/Dpkg/Source/Patch.pm:110
  2008. #, perl-format
  2009. msgid "file %s has no final newline (either original or modified version)"
  2010. msgstr ""
  2011. "fichier %s sans caractère nouvelle ligne terminal (soit l'original soit la "
  2012. "version modifiée)"
  2013. #: scripts/Dpkg/Source/Patch.pm:114
  2014. #, perl-format
  2015. msgid "unknown line from diff -u on %s: `%s'"
  2016. msgstr "ligne inconnue dans diff -u sur %s : `%s'"
  2017. #: scripts/Dpkg/Source/Patch.pm:117
  2018. #, fuzzy
  2019. msgid "failed to write"
  2020. msgstr "échec d'écriture vers pipe de compression"
  2021. #: scripts/Dpkg/Source/Patch.pm:127
  2022. #, perl-format
  2023. msgid "diff on %s"
  2024. msgstr "diff sur %s"
  2025. #: scripts/Dpkg/Source/Patch.pm:152 scripts/Dpkg/Source/Patch.pm:171
  2026. #: scripts/Dpkg/Source/Patch.pm:209 scripts/Dpkg/Source/Patch.pm:221
  2027. #, perl-format
  2028. msgid "cannot stat file %s"
  2029. msgstr "stat impossible pour le fichier %s"
  2030. #: scripts/Dpkg/Source/Patch.pm:161 scripts/Dpkg/Source/Patch.pm:163
  2031. #, perl-format
  2032. msgid "cannot read link %s"
  2033. msgstr "impossible de lire le lien %s"
  2034. #: scripts/Dpkg/Source/Patch.pm:185
  2035. #, perl-format
  2036. msgid "newly created empty file '%s' will not be represented in diff"
  2037. msgstr "le fichier « %s », nouvellement créé, ne sera pas représenté dans le diff"
  2038. #: scripts/Dpkg/Source/Patch.pm:189
  2039. #, perl-format
  2040. msgid "executable mode %04o of '%s' will not be represented in diff"
  2041. msgstr "le mode exécutable %04o de « %s » ne sera pas représenté dans le diff"
  2042. #: scripts/Dpkg/Source/Patch.pm:194
  2043. #, perl-format
  2044. msgid "special mode %04o of '%s' will not be represented in diff"
  2045. msgstr "le mode spécial %04o de « %s » ne sera pas représenté dans le diff"
  2046. #: scripts/Dpkg/Source/Patch.pm:205
  2047. msgid "device or socket is not allowed"
  2048. msgstr "périphérique ou socket non autorisé"
  2049. #: scripts/Dpkg/Source/Patch.pm:214
  2050. #, fuzzy
  2051. msgid "unknown file type"
  2052. msgstr "type de fichier inconnu %s"
  2053. #: scripts/Dpkg/Source/Patch.pm:229
  2054. #, perl-format
  2055. msgid "ignoring deletion of file %s"
  2056. msgstr "suppression du fichier %s ignorée"
  2057. #: scripts/Dpkg/Source/Patch.pm:232
  2058. #, perl-format
  2059. msgid "ignoring deletion of directory %s"
  2060. msgstr "suppression du répertoire %s ignorée"
  2061. #: scripts/Dpkg/Source/Patch.pm:234
  2062. #, perl-format
  2063. msgid "ignoring deletion of symlink %s"
  2064. msgstr "suppression du lien symbolique %s ignorée"
  2065. #: scripts/Dpkg/Source/Patch.pm:247
  2066. #, fuzzy, perl-format
  2067. msgid "cannot close %s"
  2068. msgstr "impossible d'ouvrir %s : %s"
  2069. #: scripts/Dpkg/Source/Patch.pm:259 scripts/Dpkg/Source/Package/V2.pm:303
  2070. #, fuzzy, perl-format
  2071. msgid "cannot represent change to %s: %s"
  2072. msgstr "%s : impossible de représenter les changements de %s : %s"
  2073. #: scripts/Dpkg/Source/Patch.pm:266
  2074. #, fuzzy, perl-format
  2075. msgid "cannot represent change to %s:"
  2076. msgstr "%s : impossible de représenter les changements de %s : %s"
  2077. #: scripts/Dpkg/Source/Patch.pm:267
  2078. #, perl-format
  2079. msgid " new version is %s"
  2080. msgstr ""
  2081. #: scripts/Dpkg/Source/Patch.pm:268
  2082. #, perl-format
  2083. msgid " old version is %s"
  2084. msgstr ""
  2085. #: scripts/Dpkg/Source/Patch.pm:294
  2086. #, perl-format
  2087. msgid "expected ^--- in line %d of diff `%s'"
  2088. msgstr "dans la ligne %d du diff %s, « ^--- » attendu"
  2089. #: scripts/Dpkg/Source/Patch.pm:298
  2090. #, perl-format
  2091. msgid "diff `%s' patches file with no subdirectory"
  2092. msgstr "diff %s modifie un fichier sans sous-répertoire"
  2093. #: scripts/Dpkg/Source/Patch.pm:301
  2094. #, perl-format
  2095. msgid "diff `%s' patches file with name ending .dpkg-orig"
  2096. msgstr "diff %s modifie un fichier dont le nom de termine par .dpkg-orig"
  2097. #: scripts/Dpkg/Source/Patch.pm:306
  2098. #, perl-format
  2099. msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
  2100. msgstr "diff %s se termine au milieu de ---/+++ (ligne %d)"
  2101. #: scripts/Dpkg/Source/Patch.pm:310 scripts/Dpkg/Source/Patch.pm:320
  2102. #, perl-format
  2103. msgid "line after --- isn't as expected in diff `%s' (line %d)"
  2104. msgstr "ligne après --- n'est pas comme attendu dans diff %s (ligne %d)"
  2105. #: scripts/Dpkg/Source/Patch.pm:315
  2106. #, fuzzy, perl-format
  2107. msgid "original and modified files are /dev/null in diff `%s' (line %d)"
  2108. msgstr "ligne après --- n'est pas comme attendu dans diff %s (ligne %d)"
  2109. #: scripts/Dpkg/Source/Patch.pm:330
  2110. #, perl-format
  2111. msgid "diff `%s' patches something which is not a plain file"
  2112. msgstr "diff %s modifie un objet qui n'est pas un fichier normal"
  2113. #: scripts/Dpkg/Source/Patch.pm:334
  2114. #, fuzzy, perl-format
  2115. msgid "diff `%s' patches file %s twice"
  2116. msgstr "diff modifie deux fois le fichier %s"
  2117. #: scripts/Dpkg/Source/Patch.pm:349
  2118. #, perl-format
  2119. msgid "unexpected end of diff `%s'"
  2120. msgstr "fin inattendue de diff %s"
  2121. #: scripts/Dpkg/Source/Patch.pm:352
  2122. #, perl-format
  2123. msgid "diff `%s' is missing trailing newline"
  2124. msgstr "le caractère nouvelle ligne manque dans diff %s"
  2125. #: scripts/Dpkg/Source/Patch.pm:360
  2126. #, perl-format
  2127. msgid "expected [ +-] at start of line %d of diff `%s'"
  2128. msgstr "[ +-] attendu au début de la ligne %d du diff %s"
  2129. #: scripts/Dpkg/Source/Patch.pm:367
  2130. #, perl-format
  2131. msgid "expected ^@@ at line %d of diff `%s'"
  2132. msgstr "^@@ attendu ligne %d du diff %s"
  2133. #: scripts/Dpkg/Source/Patch.pm:372
  2134. #, perl-format
  2135. msgid "diff `%s' doesn't contain any patch"
  2136. msgstr ""
  2137. #: scripts/Dpkg/Source/Patch.pm:395 scripts/Dpkg/Source/Package/V3/git.pm:182
  2138. #: scripts/Dpkg/Source/Package/V3/quilt.pm:130
  2139. #, fuzzy, perl-format
  2140. msgid "cannot create directory %s"
  2141. msgstr "« stat » du répertoire %s impossible : %s"
  2142. #: scripts/Dpkg/Source/Patch.pm:415
  2143. #: scripts/Dpkg/Source/Package/V3/quilt.pm:143
  2144. #, perl-format
  2145. msgid "cannot change timestamp for %s"
  2146. msgstr "impossible de modifier la date de %s"
  2147. #: scripts/Dpkg/Source/Patch.pm:419
  2148. #, perl-format
  2149. msgid "remove patch backup file %s"
  2150. msgstr "suppression du fichier de sauvegarde %s"
  2151. #: scripts/Dpkg/Source/Patch.pm:428
  2152. msgid "nonexistent"
  2153. msgstr "inexistant"
  2154. #: scripts/Dpkg/Source/Patch.pm:429 scripts/Dpkg/Source/Package.pm:333
  2155. #, perl-format
  2156. msgid "cannot stat %s"
  2157. msgstr "stat de %s impossible"
  2158. #: scripts/Dpkg/Source/Patch.pm:431
  2159. msgid "plain file"
  2160. msgstr "simple fichier"
  2161. #: scripts/Dpkg/Source/Patch.pm:432
  2162. msgid "directory"
  2163. msgstr "répertoire"
  2164. #: scripts/Dpkg/Source/Patch.pm:433
  2165. #, perl-format
  2166. msgid "symlink to %s"
  2167. msgstr "lien symbolique vers %s"
  2168. #: scripts/Dpkg/Source/Patch.pm:434
  2169. msgid "block device"
  2170. msgstr ""
  2171. #: scripts/Dpkg/Source/Patch.pm:435
  2172. msgid "character device"
  2173. msgstr ""
  2174. #: scripts/Dpkg/Source/Patch.pm:436
  2175. msgid "named pipe"
  2176. msgstr ""
  2177. #: scripts/Dpkg/Source/Patch.pm:437
  2178. msgid "named socket"
  2179. msgstr ""
  2180. #: scripts/Dpkg/Source/Package.pm:124
  2181. #, fuzzy, perl-format
  2182. msgid "%s is not the name of a file"
  2183. msgstr "%s n'est pas un fichier normal"
  2184. #: scripts/Dpkg/Source/Package.pm:147
  2185. #, perl-format
  2186. msgid "missing critical source control field %s"
  2187. msgstr "un champ de contrôle vital manque, %s"
  2188. #: scripts/Dpkg/Source/Package.pm:173
  2189. #, perl-format
  2190. msgid "source package format `%s' is not supported (Perl module %s is required)"
  2191. msgstr ""
  2192. #: scripts/Dpkg/Source/Package.pm:177
  2193. #, fuzzy, perl-format
  2194. msgid "invalid Format field `%s'"
  2195. msgstr "champ source invalide dans %s"
  2196. #: scripts/Dpkg/Source/Package.pm:203
  2197. #, fuzzy, perl-format
  2198. msgid "file `%s' listed twice in Files field"
  2199. msgstr "pas de tar amont dans le champ Files"
  2200. #: scripts/Dpkg/Source/Package.pm:232
  2201. msgid "source and version are required to compute the source basename"
  2202. msgstr ""
  2203. #: scripts/Dpkg/Source/Package.pm:278
  2204. #, perl-format
  2205. msgid "failed to verify signature on %s"
  2206. msgstr "impossible de vérifier la signature sur %s"
  2207. #: scripts/Dpkg/Source/Package.pm:282
  2208. #, perl-format
  2209. msgid "could not verify signature on %s since gpg isn't installed"
  2210. msgstr "impossible de vérifier la signature sur %s, gpg n'est pas installé"
  2211. #: scripts/Dpkg/Source/Package.pm:291
  2212. #, fuzzy, perl-format
  2213. msgid "%s is not a valid option for %s"
  2214. msgstr "%s n'est pas un fichier normal"
  2215. #: scripts/Dpkg/Source/Package.pm:335
  2216. #, perl-format
  2217. msgid "%s does not exist"
  2218. msgstr "%s n'existe pas"
  2219. #: scripts/Dpkg/Source/Package.pm:338
  2220. #, perl-format
  2221. msgid "cannot make %s executable"
  2222. msgstr "impossible de rendre %s exécutable"
  2223. #: scripts/Dpkg/Source/Package.pm:340
  2224. #, perl-format
  2225. msgid "%s is not a plain file"
  2226. msgstr "%s n'est pas un fichier normal"
  2227. #: scripts/Dpkg/Source/Package.pm:372
  2228. #, perl-format
  2229. msgid "tried to add file `%s' twice"
  2230. msgstr "fichier %s ajouté deux fois"
  2231. #: scripts/Dpkg/Source/Package/V1.pm:53
  2232. #, perl-format
  2233. msgid "-s%s option overrides earlier -s%s option"
  2234. msgstr "l'option -s%s annule une précédente option -s%s"
  2235. #: scripts/Dpkg/Source/Package/V1.pm:69
  2236. #, perl-format
  2237. msgid "source handling style -s%s not allowed with -x"
  2238. msgstr "gestion des sources avec -s%s non autorisée avec -x"
  2239. #: scripts/Dpkg/Source/Package/V1.pm:83
  2240. #: scripts/Dpkg/Source/Package/V3/native.pm:49
  2241. #, fuzzy
  2242. msgid "multiple tarfiles in v1.0 source package"
  2243. msgstr "plusieurs fichiers tar dans un paquet natif"
  2244. #: scripts/Dpkg/Source/Package/V1.pm:88 scripts/Dpkg/Source/Package/V2.pm:104
  2245. #, fuzzy, perl-format
  2246. msgid "unrecognized file for a %s source package: %s"
  2247. msgstr "type de fichier non reconnu pour %s"
  2248. #: scripts/Dpkg/Source/Package/V1.pm:93
  2249. #: scripts/Dpkg/Source/Package/V3/native.pm:56
  2250. msgid "no tarfile in Files field"
  2251. msgstr "pas de fichier tar dans le champ Files"
  2252. #: scripts/Dpkg/Source/Package/V1.pm:96
  2253. msgid "native package with .orig.tar"
  2254. msgstr "paquet natif avec .orig.tar"
  2255. #: scripts/Dpkg/Source/Package/V1.pm:109
  2256. #, perl-format
  2257. msgid "unable to rename `%s' to `%s'"
  2258. msgstr "impossible de modifier %s en %s"
  2259. #: scripts/Dpkg/Source/Package/V1.pm:113 scripts/Dpkg/Source/Package/V2.pm:116
  2260. #: scripts/Dpkg/Source/Package/V2.pm:123 scripts/Dpkg/Source/Package/V2.pm:133
  2261. #: scripts/Dpkg/Source/Package/V3/bzr.pm:192
  2262. #: scripts/Dpkg/Source/Package/V3/native.pm:59
  2263. #: scripts/Dpkg/Source/Package/V3/git.pm:256
  2264. #, fuzzy, perl-format
  2265. msgid "unpacking %s"
  2266. msgstr "%s : extraction de %s"
  2267. #: scripts/Dpkg/Source/Package/V1.pm:120
  2268. msgid "unable to keep orig directory (already exists)"
  2269. msgstr "impossible de garder répertoire orig, il existe déjà"
  2270. #: scripts/Dpkg/Source/Package/V1.pm:127
  2271. #, perl-format
  2272. msgid "failed to rename newly-extracted %s to %s"
  2273. msgstr "impossible de modifier le fichier extrait %s en %s"
  2274. #: scripts/Dpkg/Source/Package/V1.pm:133
  2275. #, perl-format
  2276. msgid "failed to rename saved %s to %s"
  2277. msgstr "impossible de modifier le fichier sauvegardé %s en %s"
  2278. #: scripts/Dpkg/Source/Package/V1.pm:140 scripts/Dpkg/Source/Package/V2.pm:183
  2279. #: scripts/Dpkg/Source/Package/V3/quilt.pm:146
  2280. #, fuzzy, perl-format
  2281. msgid "applying %s"
  2282. msgstr "%s : mise en place de %s"
  2283. #: scripts/Dpkg/Source/Package/V1.pm:152
  2284. #, fuzzy
  2285. msgid "only supports gzip compression"
  2286. msgstr "%s n'est pas une compression gérée"
  2287. #: scripts/Dpkg/Source/Package/V1.pm:163
  2288. #, fuzzy
  2289. msgid ""
  2290. "-b takes at most a directory and an orig source argument (with v1.0 source "
  2291. "package)"
  2292. msgstr "il faut au plus un paramètre répertoire et un paramètre source avec -b"
  2293. #: scripts/Dpkg/Source/Package/V1.pm:169
  2294. #, perl-format
  2295. msgid "source handling style -s%s not allowed with -b"
  2296. msgstr "gestion des sources avec -s%s non autorisée avec -b"
  2297. #: scripts/Dpkg/Source/Package/V1.pm:184
  2298. #, perl-format
  2299. msgid "packed orig `%s' exists but is not a plain file"
  2300. msgstr "l'orig compressé %s existe mais ce n'est pas un simple fichier"
  2301. #: scripts/Dpkg/Source/Package/V1.pm:196
  2302. #, fuzzy, perl-format
  2303. msgid "cannot stat orig argument %s"
  2304. msgstr "« stat » du paramètre source %s impossible : %s"
  2305. #: scripts/Dpkg/Source/Package/V1.pm:202
  2306. #, perl-format
  2307. msgid ""
  2308. "orig argument is unpacked but source handling style -s%s calls for packed (."
  2309. "orig.tar.<ext>)"
  2310. msgstr ""
  2311. "le paramètre source n'est pas compressé mais l'option -s%s demande des "
  2312. "sources compressées (.orig.tar.<ext>)"
  2313. #: scripts/Dpkg/Source/Package/V1.pm:210
  2314. #, perl-format
  2315. msgid ""
  2316. "orig argument is packed but source handling style -s%s calls for unpacked (."
  2317. "orig/)"
  2318. msgstr ""
  2319. "le paramètre source est compressé mais l'option -s%s demande des sources non "
  2320. "compressées (.orig/)"
  2321. #: scripts/Dpkg/Source/Package/V1.pm:220
  2322. #, perl-format
  2323. msgid ""
  2324. "orig argument is empty (means no orig, no diff) but source handling style -s%"
  2325. "s wants something"
  2326. msgstr ""
  2327. "le paramètre source est vide (pas d'orig, pas de diff) mais l'option -s%s "
  2328. "veut quelque chose."
  2329. #: scripts/Dpkg/Source/Package/V1.pm:233
  2330. #, perl-format
  2331. msgid "unpacked orig `%s' exists but is not a directory"
  2332. msgstr "orig non compressé %s existe mais ce n'est pas un répertoire"
  2333. #: scripts/Dpkg/Source/Package/V1.pm:238
  2334. #, perl-format
  2335. msgid "unable to stat putative unpacked orig `%s'"
  2336. msgstr "stat impossible du supposé orig non compressé %s"
  2337. #: scripts/Dpkg/Source/Package/V1.pm:247
  2338. #, perl-format
  2339. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  2340. msgstr "répertoire source %s n'est pas <paquet_source>-<version_amont> %s"
  2341. #: scripts/Dpkg/Source/Package/V1.pm:256
  2342. #, perl-format
  2343. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  2344. msgstr "répertoire .orig %s n'est pas <paquet>-<version_amont> (%s demandé)"
  2345. #: scripts/Dpkg/Source/Package/V1.pm:265
  2346. #, perl-format
  2347. msgid ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  2348. msgstr ".orig.tar %s n'est pas <paquet>_<version_amont>.orig.tar (%s demandé)"
  2349. #: scripts/Dpkg/Source/Package/V1.pm:277
  2350. #, perl-format
  2351. msgid ""
  2352. "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
  2353. "override"
  2354. msgstr ""
  2355. "le fichier tar %s existe déjà, pas de modification, abandon ; utiliser -sU "
  2356. "ou -sR pour forcer."
  2357. #: scripts/Dpkg/Source/Package/V1.pm:281
  2358. #, perl-format
  2359. msgid "unable to check for existence of `%s'"
  2360. msgstr "impossible de vérifier l'existence de %s"
  2361. #: scripts/Dpkg/Source/Package/V1.pm:296 scripts/Dpkg/Source/Package/V1.pm:346
  2362. #: scripts/Dpkg/Source/Package/V3/native.pm:95
  2363. #, perl-format
  2364. msgid "unable to rename `%s' (newly created) to `%s'"
  2365. msgstr "impossible de modifier %s (nouvellement créé) en %s"
  2366. #: scripts/Dpkg/Source/Package/V1.pm:299 scripts/Dpkg/Source/Package/V1.pm:349
  2367. #: scripts/Dpkg/Source/Package/V3/native.pm:98
  2368. #: scripts/Dpkg/Source/Package/V3/git.pm:272
  2369. #, perl-format
  2370. msgid "unable to change permission of `%s'"
  2371. msgstr "impossible de modifier les permissions de %s"
  2372. #: scripts/Dpkg/Source/Package/V1.pm:301 scripts/Dpkg/Source/Package/V2.pm:257
  2373. #, fuzzy, perl-format
  2374. msgid "building %s using existing %s"
  2375. msgstr "%s : construction de %s à partir de %s"
  2376. #: scripts/Dpkg/Source/Package/V1.pm:310
  2377. #, perl-format
  2378. msgid ""
  2379. "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -"
  2380. "sP to override"
  2381. msgstr ""
  2382. "le répertoire orig %s existe déjà, pas de modification, abandon ; utiliser -"
  2383. "sA, -sK ou -sP pour forcer."
  2384. #: scripts/Dpkg/Source/Package/V1.pm:318
  2385. #, perl-format
  2386. msgid "unable to check for existence of orig dir `%s'"
  2387. msgstr "impossible de vérifier l'existence du répertoire orig %s"
  2388. #: scripts/Dpkg/Source/Package/V1.pm:359
  2389. #, perl-format
  2390. msgid "%s: unrepresentable changes to source"
  2391. msgstr "%s : modifications non représentables des sources"
  2392. #: scripts/Dpkg/Source/Package/V2.pm:94
  2393. #, fuzzy, perl-format
  2394. msgid "duplicate files in %s source package: %s.*"
  2395. msgstr "entrée en double dans le fichier des fichiers pour le paquet %s (ligne %d) "
  2396. #: scripts/Dpkg/Source/Package/V2.pm:110
  2397. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  2398. msgstr ""
  2399. #: scripts/Dpkg/Source/Package/V2.pm:125
  2400. #, perl-format
  2401. msgid "required removal of `%s' installed by original tarball"
  2402. msgstr ""
  2403. #: scripts/Dpkg/Source/Package/V2.pm:198 scripts/Dpkg/Source/Package/V2.pm:255
  2404. msgid "no orig.tar file found"
  2405. msgstr ""
  2406. #: scripts/Dpkg/Source/Package/V2.pm:216
  2407. #: scripts/Dpkg/Source/Package/V3/quilt.pm:194
  2408. #: scripts/Dpkg/Source/Package/V3/quilt.pm:208
  2409. msgid ""
  2410. "patches have not been applied, applying them now (use --no-preparation to "
  2411. "override)"
  2412. msgstr ""
  2413. #: scripts/Dpkg/Source/Package/V2.pm:226
  2414. #: scripts/Dpkg/Source/Package/V3/bzr.pm:97
  2415. #: scripts/Dpkg/Source/Package/V3/native.pm:74
  2416. #: scripts/Dpkg/Source/Package/V3/git.pm:125
  2417. #, perl-format
  2418. msgid "-b takes only one parameter with format `%s'"
  2419. msgstr ""
  2420. #: scripts/Dpkg/Source/Package/V2.pm:277
  2421. #, fuzzy
  2422. msgid "copy of the debian directory"
  2423. msgstr "pas un répertoire"
  2424. #: scripts/Dpkg/Source/Package/V2.pm:286
  2425. #, fuzzy, perl-format
  2426. msgid "can't read %s"
  2427. msgstr "impossible de lire %s :"
  2428. #: scripts/Dpkg/Source/Package/V2.pm:305
  2429. #, perl-format
  2430. msgid ""
  2431. "add %s in debian/source/include-binaries if you want to store the modified "
  2432. "binary in the debian tarball"
  2433. msgstr ""
  2434. #: scripts/Dpkg/Source/Package/V2.pm:319
  2435. #, fuzzy, perl-format
  2436. msgid "unwanted binary file: %s"
  2437. msgstr "champ binary en double dans %s"
  2438. #: scripts/Dpkg/Source/Package/V2.pm:325
  2439. #, perl-format
  2440. msgid ""
  2441. "detected %d unwanted binary file(s) (add them in debian/source/include-"
  2442. "binaries to allow their inclusion)."
  2443. msgstr ""
  2444. #: scripts/Dpkg/Source/Package/V2.pm:338
  2445. #, fuzzy
  2446. msgid "unrepresentable changes to source"
  2447. msgstr "%s : modifications non représentables des sources"
  2448. #: scripts/Dpkg/Source/Package/V2.pm:344 scripts/Dpkg/Source/Package/V2.pm:348
  2449. #, fuzzy, perl-format
  2450. msgid "cannot remove %s"
  2451. msgstr "impossible de lire %s"
  2452. #: scripts/Dpkg/Source/Package/V2.pm:352
  2453. #, fuzzy, perl-format
  2454. msgid "cannot rename %s to %s"
  2455. msgstr "impossible de modifier %s en %s"
  2456. #: scripts/Dpkg/Source/Package/V2.pm:364
  2457. #, fuzzy, perl-format
  2458. msgid "can't write %s"
  2459. msgstr "impossible de lire %s"
  2460. #: scripts/Dpkg/Source/Package/V2.pm:368
  2461. #, fuzzy, perl-format
  2462. msgid "adding %s to %s"
  2463. msgstr "%s : construction de %s dans %s"
  2464. #: scripts/Dpkg/Source/Package/V3/bzr.pm:52
  2465. msgid ""
  2466. "This source package can only be manipulated using bzr, which is not in the "
  2467. "PATH."
  2468. msgstr ""
  2469. #: scripts/Dpkg/Source/Package/V3/bzr.pm:59
  2470. #, perl-format
  2471. msgid ""
  2472. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  2473. "present), but Format bzr was specified"
  2474. msgstr ""
  2475. #: scripts/Dpkg/Source/Package/V3/bzr.pm:66
  2476. #: scripts/Dpkg/Source/Package/V3/git.pm:76
  2477. #, perl-format
  2478. msgid "%s is a symlink"
  2479. msgstr ""
  2480. #: scripts/Dpkg/Source/Package/V3/bzr.pm:72
  2481. #: scripts/Dpkg/Source/Package/V3/git.pm:82
  2482. #, fuzzy, perl-format
  2483. msgid "%s is a symlink to outside %s"
  2484. msgstr "lien symbolique vers %s"
  2485. #: scripts/Dpkg/Source/Package/V3/bzr.pm:83
  2486. msgid "doesn't contain a bzr repository"
  2487. msgstr ""
  2488. #: scripts/Dpkg/Source/Package/V3/bzr.pm:111
  2489. #: scripts/Dpkg/Source/Package/V3/bzr.pm:134
  2490. #: scripts/Dpkg/Source/Package/V3/bzr.pm:200
  2491. #: scripts/Dpkg/Source/Package/V3/bzr.pm:206
  2492. #: scripts/Dpkg/Source/Package/V3/git.pm:139
  2493. #: scripts/Dpkg/Source/Package/V3/git.pm:176
  2494. #: scripts/Dpkg/Source/Package/V3/git.pm:187
  2495. #: scripts/Dpkg/Source/Package/V3/git.pm:212
  2496. #: scripts/Dpkg/Source/Package/V3/git.pm:264
  2497. #: scripts/Dpkg/Source/Package/V3/git.pm:334
  2498. #, fuzzy, perl-format
  2499. msgid "unable to chdir to `%s'"
  2500. msgstr "impossible de créer %s"
  2501. #: scripts/Dpkg/Source/Package/V3/bzr.pm:127
  2502. msgid "bzr status exited nonzero"
  2503. msgstr ""
  2504. #: scripts/Dpkg/Source/Package/V3/bzr.pm:129
  2505. #: scripts/Dpkg/Source/Package/V3/git.pm:169
  2506. #, perl-format
  2507. msgid "uncommitted, not-ignored changes in working directory: %s"
  2508. msgstr ""
  2509. #: scripts/Dpkg/Source/Package/V3/bzr.pm:181
  2510. #: scripts/Dpkg/Source/Package/V3/git.pm:245
  2511. msgid "format v3.0 uses only one source file"
  2512. msgstr ""
  2513. #: scripts/Dpkg/Source/Package/V3/bzr.pm:185
  2514. #: scripts/Dpkg/Source/Package/V3/git.pm:249
  2515. #, fuzzy, perl-format
  2516. msgid "expected %s, got %s"
  2517. msgstr "fin inattendue de diff %s"
  2518. #: scripts/Dpkg/Source/Package/V3/custom.pm:39
  2519. msgid "Format `3.0 (custom)' is only used to create source packages"
  2520. msgstr ""
  2521. #: scripts/Dpkg/Source/Package/V3/custom.pm:45
  2522. #, fuzzy
  2523. msgid "no files indicated on command line"
  2524. msgstr "ni un fichier ni un répertoire ni un lien symbolique"
  2525. #: scripts/Dpkg/Source/Package/V3/custom.pm:52
  2526. msgid "--target-format option is missing"
  2527. msgstr ""
  2528. #: scripts/Dpkg/Source/Package/V3/native.pm:52
  2529. #, fuzzy, perl-format
  2530. msgid "unrecognized file for a native source package: %s"
  2531. msgstr "type de fichier non reconnu pour %s"
  2532. #: scripts/Dpkg/Source/Package/V3/git.pm:58
  2533. msgid ""
  2534. "This source package can only be manipulated using git, which is not in the "
  2535. "PATH."
  2536. msgstr ""
  2537. #: scripts/Dpkg/Source/Package/V3/git.pm:65
  2538. #, perl-format
  2539. msgid ""
  2540. "source directory is not the top directory of a git repository (%s/.git not "
  2541. "present), but Format git was specified"
  2542. msgstr ""
  2543. #: scripts/Dpkg/Source/Package/V3/git.pm:69
  2544. #, perl-format
  2545. msgid "git repository %s uses submodules. This is not yet supported."
  2546. msgstr ""
  2547. #: scripts/Dpkg/Source/Package/V3/git.pm:104
  2548. msgid "git config exited nonzero"
  2549. msgstr ""
  2550. #: scripts/Dpkg/Source/Package/V3/git.pm:111
  2551. msgid "doesn't contain a git repository"
  2552. msgstr ""
  2553. #: scripts/Dpkg/Source/Package/V3/git.pm:167
  2554. msgid "git ls-files exited nonzero"
  2555. msgstr ""
  2556. #: scripts/Dpkg/Source/Package/V3/git.pm:270
  2557. #, perl-format
  2558. msgid "executable bit set on %s; clearing"
  2559. msgstr ""
  2560. #: scripts/Dpkg/Source/Package/V3/git.pm:281
  2561. #, perl-format
  2562. msgid "unable to remove `%s'"
  2563. msgstr "impossible de supprimer %s"
  2564. #: scripts/Dpkg/Source/Package/V3/git.pm:307
  2565. msgid "modifying .git/config to comment out some settings"
  2566. msgstr ""
  2567. #: scripts/Dpkg/Source/Package/V3/git.pm:309
  2568. #, fuzzy, perl-format
  2569. msgid "unable to append to %s"
  2570. msgstr "impossible d'ouvrir le répertoire %s"
  2571. #: scripts/Dpkg/Source/Package/V3/git.pm:310
  2572. msgid "The following setting(s) were disabled by dpkg-source"
  2573. msgstr ""
  2574. #: scripts/Dpkg/Source/Package/V3/quilt.pm:85
  2575. #, perl-format
  2576. msgid ""
  2577. "the series file (%s) contains unsupported options ('%s', line %s), dpkg-"
  2578. "source might fail when applying patches."
  2579. msgstr ""
  2580. #: scripts/Dpkg/Source/Package/V3/quilt.pm:114
  2581. #, fuzzy, perl-format
  2582. msgid "can't create symlink %s"
  2583. msgstr "impossible de lire le lien %s"
  2584. #: scripts/Dpkg/Source/Package/V3/quilt.pm:126
  2585. #: scripts/Dpkg/Source/Package/V3/quilt.pm:199
  2586. #, perl-format
  2587. msgid "applying %s with quilt"
  2588. msgstr ""
  2589. #: scripts/Dpkg/Substvars.pm:117
  2590. #, perl-format
  2591. msgid "bad line in substvars file %s at line %d"
  2592. msgstr "fichier substvars %s : ligne %d mal formée"
  2593. #: scripts/Dpkg/Substvars.pm:123
  2594. #, perl-format
  2595. msgid "unable to open substvars file %s: %s"
  2596. msgstr "impossible d'ouvrir le fichier substvars %s : %s"
  2597. #: scripts/Dpkg/Substvars.pm:164
  2598. #, perl-format
  2599. msgid "too many substitutions - recursive ? - in `%s'"
  2600. msgstr "trop de substitutions - mode récursif ? - dans « %s »"
  2601. #: scripts/Dpkg/Substvars.pm:170
  2602. #, perl-format
  2603. msgid "unknown substitution variable ${%s}"
  2604. msgstr "variable de substitution inconnue ${%s}"
  2605. #: scripts/Dpkg/Vars.pm:34
  2606. #, perl-format
  2607. msgid "source package name `%s' contains illegal character `%s'"
  2608. msgstr "le nom du paquet source « %s » contient un caractère « %s » non autorisé"
  2609. #: scripts/Dpkg/Vars.pm:37
  2610. #, perl-format
  2611. msgid "source package name `%s' starts with non-alphanum"
  2612. msgstr "le nom du paquet source « %s » ne commence ni par une lettre ni par un chiffre"
  2613. #: scripts/Dpkg/Vars.pm:46
  2614. #, perl-format
  2615. msgid "source package has two conflicting values - %s and %s"
  2616. msgstr "le paquet source a deux valeurs en conflit : %s et %s"
  2617. #: scripts/Dpkg/Version.pm:206
  2618. #, perl-format
  2619. msgid "version number contains illegal character `%s'"
  2620. msgstr "le numéro de version contient un caractère « %s » non autorisé"