fr.po 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Software in the Public Interest, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: dpkg scripts\n"
  9. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  10. "POT-Creation-Date: 2007-07-01 15:54+0200\n"
  11. "PO-Revision-Date: 2007-07-08 12:27+0200\n"
  12. "Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
  13. "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=iso-8859-15\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=n>1;\n"
  18. #: scripts/822-date.pl:13
  19. msgid "Usage: 822-date"
  20. msgstr "Usage : 822-date"
  21. #: scripts/822-date.pl:15
  22. msgid "This program is deprecated. Please use 'date -R' instead."
  23. msgstr "Ce programme est obsolète. Veuillez utiliser à la place « date -R »."
  24. #: scripts/controllib.pl:72 scripts/controllib.pl:77
  25. #, perl-format
  26. msgid "unable to get login information for username \"%s\""
  27. msgstr ""
  28. "impossible d'obtenir les éléments de connexion pour l'utilisateur « %s »"
  29. #: scripts/controllib.pl:80
  30. #, perl-format
  31. msgid ""
  32. "no utmp entry available and LOGNAME not defined; using uid of process (%d)"
  33. msgstr ""
  34. "aucune entrée utmp n'est disponible et LOGNAME n'est pas définie ; "
  35. "utilisation de l'uid du processus (%d)."
  36. #: scripts/controllib.pl:83
  37. #, perl-format
  38. msgid "unable to get login information for uid %d"
  39. msgstr "impossible d'obtenir les éléments de connexion pour l'uid %d"
  40. #: scripts/controllib.pl:139
  41. msgid "unable to open cputable"
  42. msgstr "impossible d'ouvrir « cputable »"
  43. #: scripts/controllib.pl:155
  44. msgid "unable to open ostable"
  45. msgstr "impossible d'ouvrir « ostable »"
  46. #: scripts/controllib.pl:173
  47. msgid "unable to open triplettable"
  48. msgstr "impossible d'ouvrir « triplettable »"
  49. #: scripts/controllib.pl:337
  50. #, perl-format
  51. msgid "too many substitutions - recursive ? - in `%s'"
  52. msgstr "trop de substitutions - mode récursif ? - dans « %s »"
  53. #: scripts/controllib.pl:343
  54. #, perl-format
  55. msgid "unknown substitution variable ${%s}"
  56. msgstr "variable de substitution inconnue ${%s}"
  57. #: scripts/controllib.pl:388
  58. #, perl-format
  59. msgid "field %s has newline then non whitespace >%s<"
  60. msgstr "le champ %s contient un caractère nouvelle ligne puis un caractère >%s<"
  61. #: scripts/controllib.pl:389
  62. #, perl-format
  63. msgid "field %s has blank lines >%s<"
  64. msgstr "le champ %s contient des lignes blanches >%s<"
  65. #: scripts/controllib.pl:390
  66. #, perl-format
  67. msgid "field %s has trailing newline >%s<"
  68. msgstr "le champ %s se termine par un caractère nouvelle ligne >%s<"
  69. #: scripts/controllib.pl:397
  70. msgid "write error on control data"
  71. msgstr "erreur d'écriture sur des données de contrôle"
  72. #: scripts/controllib.pl:400
  73. msgid "write error on close control data"
  74. msgstr "erreur d'écriture au moment de la fermeture des données de contrôle"
  75. #: scripts/controllib.pl:408
  76. #, perl-format
  77. msgid "cannot read control file %s: %s"
  78. msgstr "impossible de lire le fichier de contrôle %s : %s"
  79. #: scripts/controllib.pl:411
  80. #, perl-format
  81. msgid "control file %s"
  82. msgstr "fichier de contrôle %s"
  83. #: scripts/controllib.pl:412
  84. msgid "control file must have at least one binary package part"
  85. msgstr ""
  86. "le fichier de contrôle doit contenir au moins une partie concernant les "
  87. "paquets binaires"
  88. #: scripts/controllib.pl:416
  89. #, perl-format
  90. msgid "per-package paragraph %d in control info file is missing Package line"
  91. msgstr ""
  92. "il manque une ligne Package dans le paragraphe %d concernant les paquets dans "
  93. "le fichier de contrôle"
  94. #: scripts/controllib.pl:421
  95. msgid "source paragraph in control info file is missing Source line"
  96. msgstr ""
  97. "il manque une ligne Source dans le paragraphe concernant les sources dans le "
  98. "fichier de contrôle"
  99. #: scripts/controllib.pl:438
  100. #, perl-format
  101. msgid "bad line in substvars file %s at line %d"
  102. msgstr "fichier substvars %s : ligne %d mal formée"
  103. #: scripts/controllib.pl:444
  104. #, perl-format
  105. msgid "unable to open substvars file %s: %s"
  106. msgstr "impossible d'ouvrir le fichier substvars %s : %s"
  107. #: scripts/controllib.pl:496
  108. #, perl-format
  109. msgid "can't parse dependency %s"
  110. msgstr "impossible d'analyser la dépendance %s"
  111. #: scripts/controllib.pl:523
  112. msgid "fork for parse changelog"
  113. msgstr "fork pour analyse du changelog"
  114. #: scripts/controllib.pl:526 scripts/dpkg-genchanges.pl:274
  115. #: scripts/dpkg-gencontrol.pl:207 scripts/dpkg-source.pl:303
  116. msgid "parsed version of changelog"
  117. msgstr "version analysée du changelog"
  118. #: scripts/controllib.pl:528
  119. msgid "parse changelog"
  120. msgstr "analyse du changelog"
  121. #: scripts/controllib.pl:569
  122. #, perl-format
  123. msgid "source package name `%s' contains illegal character `%s'"
  124. msgstr ""
  125. "le nom du paquet source « %s » contient un caractère « %s » non autorisé"
  126. #: scripts/controllib.pl:571
  127. #, perl-format
  128. msgid "source package name `%s' starts with non-alphanum"
  129. msgstr ""
  130. "le nom du paquet source « %s » ne commence ni par une lettre ni par un chiffre"
  131. #: scripts/controllib.pl:577
  132. #, perl-format
  133. msgid "version number contains illegal character `%s'"
  134. msgstr "le numéro de version contient un caractère « %s » non autorisé"
  135. #: scripts/controllib.pl:586
  136. #, perl-format
  137. msgid "source package has two conflicting values - %s and %s"
  138. msgstr "le paquet source a deux valeurs en conflit : %s et %s"
  139. #: scripts/controllib.pl:595
  140. #, perl-format
  141. msgid "md5sum gave bogus output `%s'"
  142. msgstr "résultat anormal de md5sum « %s »"
  143. #: scripts/controllib.pl:627
  144. msgid "continued value line not in field"
  145. msgstr "la ligne continuée n'est pas dans le champ"
  146. #: scripts/controllib.pl:630
  147. msgid "expected blank line before PGP signature"
  148. msgstr "ligne blanche attendue avant la signature PGP"
  149. #: scripts/controllib.pl:642
  150. msgid "expected PGP signature, found EOF after blank line"
  151. msgstr "signature PGP attendue, EOF après ligne blanche trouvé"
  152. #: scripts/controllib.pl:645
  153. #, perl-format
  154. msgid "expected PGP signature, found something else `%s'"
  155. msgstr "signature PGP attendue, « %s » trouvé"
  156. #: scripts/controllib.pl:650
  157. msgid "found several `paragraphs' where only one expected"
  158. msgstr "plusieurs « paragraphes » trouvés, un seul attendu"
  159. #: scripts/controllib.pl:654
  160. msgid "line with unknown format (not field-colon-value)"
  161. msgstr "ligne au format inconnu, format différent de « champ-virgule-valeur »"
  162. #: scripts/controllib.pl:657
  163. msgid "found start of PGP body but no signature"
  164. msgstr "début d'un format PGP trouvé, mais pas de signature"
  165. #: scripts/controllib.pl:659
  166. msgid "empty file"
  167. msgstr "fichier vide"
  168. #: scripts/controllib.pl:665
  169. #, perl-format
  170. msgid "unknown information field '%s' in input data in %s"
  171. msgstr "champ d'information inconnu « %s » dans les données d'entrée de %s"
  172. #: scripts/controllib.pl:670
  173. #, perl-format
  174. msgid "syntax error in %s at line %d: %s"
  175. msgstr "erreur de syntaxe dans %s à la ligne %d : %s"
  176. #: scripts/controllib.pl:673
  177. #, perl-format
  178. msgid "%s: failure: %s"
  179. msgstr "%s : échec : %s"
  180. #: scripts/controllib.pl:674
  181. #, perl-format
  182. msgid "%s: failure: %s: %s"
  183. msgstr "%s : échec : %s : %s"
  184. #: scripts/controllib.pl:675
  185. #, perl-format
  186. msgid "%s: error: %s"
  187. msgstr "%s : erreur : %s"
  188. #: scripts/controllib.pl:676
  189. #, perl-format
  190. msgid "%s: internal error: %s"
  191. msgstr "%s : erreur interne : %s"
  192. #: scripts/controllib.pl:681
  193. #, perl-format
  194. msgid "%s: warning: %s"
  195. msgstr "%s : avertissement : %s"
  196. #: scripts/controllib.pl:705
  197. #, perl-format
  198. msgid "%s: failure: %s gave error exit status %s"
  199. msgstr "%s : échec : %s a produit une erreur de sortie de type %s"
  200. #: scripts/controllib.pl:708
  201. #, perl-format
  202. msgid "%s: failure: %s died from signal %s"
  203. msgstr "%s : échec : %s tué par le signal %s"
  204. #: scripts/controllib.pl:711
  205. #, perl-format
  206. msgid "%s: failure: %s failed with unknown exit code %d"
  207. msgstr "%s : échec : %s a échoué avec une erreur de sortie de type inconnu %d"
  208. #: scripts/dpkg-architecture.pl:37 scripts/dpkg-distaddfile.pl:23
  209. #: scripts/dpkg-genchanges.pl:72 scripts/dpkg-gencontrol.pl:50
  210. #: scripts/dpkg-parsechangelog.pl:29 scripts/dpkg-scanpackages.pl:51
  211. #: scripts/dpkg-scansources.pl:98 scripts/dpkg-shlibdeps.pl:41
  212. #: scripts/dpkg-source.pl:98 scripts/changelog/debian.pl:35
  213. #, perl-format
  214. msgid "Debian %s version %s.\n"
  215. msgstr "Debian %s version %s.\n"
  216. #: scripts/dpkg-architecture.pl:39
  217. msgid ""
  218. "\n"
  219. "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  220. "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  221. msgstr ""
  222. "\n"
  223. "Copyright (C) 1999-2001 Marcus Brinkmann <brinkmd@debian.org>.\n"
  224. "Copyright (C) 2004-2005 Scott James Remnant <scott@netsplit.com>."
  225. #: scripts/dpkg-architecture.pl:43 scripts/dpkg-distaddfile.pl:28
  226. #: scripts/dpkg-genchanges.pl:78 scripts/dpkg-gencontrol.pl:56
  227. #: scripts/dpkg-parsechangelog.pl:35 scripts/dpkg-shlibdeps.pl:48
  228. #: scripts/dpkg-source.pl:103 scripts/changelog/debian.pl:39
  229. msgid ""
  230. "\n"
  231. "This is free software; see the GNU General Public Licence version 2 or\n"
  232. "later for copying conditions. There is NO warranty.\n"
  233. msgstr ""
  234. "\n"
  235. "Ce logiciel est un logiciel libre. Voyez la licence « GNU General Public "
  236. "Licence »\n"
  237. "dans la version 2 ou une version supérieure pour les conditions de copie. Il "
  238. "n'y a PAS de garantie.\n"
  239. #: scripts/dpkg-architecture.pl:51
  240. #, perl-format
  241. msgid ""
  242. "Usage: %s [<option> ...] [<action>]\n"
  243. "\n"
  244. "Options:\n"
  245. " -a<debian-arch> set current Debian architecture.\n"
  246. " -t<gnu-system> set current GNU system type.\n"
  247. " -L list valid architectures.\n"
  248. " -f force flag (override variables set in environment).\n"
  249. "\n"
  250. "Actions:\n"
  251. " -l list variables (default).\n"
  252. " -e<debian-arch> compare with current Debian architecture.\n"
  253. " -i<arch-alias> check if current Debian architecture is <arch-alias>.\n"
  254. " -q<variable> prints only the value of <variable>.\n"
  255. " -s print command to set environment variables.\n"
  256. " -u print command to unset environment variables.\n"
  257. " -c <command> set environment and run the command in it.\n"
  258. " --help show this help message.\n"
  259. " --version show the version.\n"
  260. msgstr ""
  261. "Usage : %s [<option> ...] [<action>]\n"
  262. "\n"
  263. "Options :\n"
  264. " -a<debian-arch> définir l'architecture Debian en cours.\n"
  265. " -t<gnu-system> définir le type du système GNU en cours.\n"
  266. " -L lister les architectures valables.\n"
  267. " -f forçage, annuler les variables définies par "
  268. "l'environnement.\n"
  269. "\n"
  270. "Actions :\n"
  271. " -l lister les variables (défaut).\n"
  272. " -e<debian-arch> comparer avec l'architecture Debian en cours.\n"
  273. " -i<arch-alias> vérifier que l'architecture Debian en cours est <arch-"
  274. "alias>.\n"
  275. " -q<variable> afficher seulement la valeur de <variable>.\n"
  276. " -s afficher la commande pour définir les variables "
  277. "d'environnement.\n"
  278. " -u afficher la commande pour annuler les variables "
  279. "d'environnement.\n"
  280. " -c <commande> mettre en place l'environnement et exécuter la "
  281. "commande.\n"
  282. " --help afficher ce message d'aide.\n"
  283. " --version afficher la version.\n"
  284. #: scripts/dpkg-architecture.pl:89
  285. msgid ""
  286. "Couldn't determine gcc system type, falling back to default (native "
  287. "compilation)"
  288. msgstr ""
  289. "impossible de déterminer le type de gcc utilisé, retour au système par défaut "
  290. "(compilation native)"
  291. #: scripts/dpkg-architecture.pl:102
  292. #, perl-format
  293. msgid "Unknown gcc system type %s, falling back to default (native compilation)"
  294. msgstr ""
  295. "type de gcc %s inconnu, retour au système par défaut (compilation native)"
  296. #: scripts/dpkg-architecture.pl:156 scripts/dpkg-distaddfile.pl:56
  297. #: scripts/dpkg-genchanges.pl:163 scripts/dpkg-gencontrol.pl:124
  298. #: scripts/dpkg-shlibdeps.pl:106 scripts/dpkg-source.pl:203
  299. #: scripts/changelog/debian.pl:68
  300. #, perl-format
  301. msgid "unknown option `%s'"
  302. msgstr "option inconnue « %s »"
  303. #: scripts/dpkg-architecture.pl:162
  304. #, perl-format
  305. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  306. msgstr ""
  307. "architecture Debian inconnue %s, vous devez aussi indiquer le type du système "
  308. "GNU "
  309. #: scripts/dpkg-architecture.pl:167
  310. #, perl-format
  311. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  312. msgstr ""
  313. "type du système GNU inconnu %s, vous devez aussi indiquer l'architecture "
  314. "Debian "
  315. #: scripts/dpkg-architecture.pl:172
  316. #, perl-format
  317. msgid "unknown default GNU system type for Debian architecture %s"
  318. msgstr "type du système GNU par défaut inconnu pour l'architecture Debian %s"
  319. #: scripts/dpkg-architecture.pl:175
  320. #, perl-format
  321. msgid ""
  322. "Default GNU system type %s for Debian arch %s does not match specified GNU "
  323. "system type %s"
  324. msgstr ""
  325. "Le type par défaut du système GNU %s pour l'architecture Debian %s ne "
  326. "correspond pas au type du système GNU indiqué %s"
  327. #: scripts/dpkg-architecture.pl:183
  328. #, perl-format
  329. msgid "Specified GNU system type %s does not match gcc system type %s."
  330. msgstr "le type du système GNU indiqué %s ne correspond pas au type de gcc %s"
  331. #: scripts/dpkg-architecture.pl:247
  332. #, perl-format
  333. msgid "%s is not a supported variable name"
  334. msgstr "%s n'est pas le nom d'une variable reconnue"
  335. #: scripts/dpkg-checkbuilddeps.pl:24
  336. #, perl-format
  337. msgid ""
  338. "Usage: %s [<option> ...] [<control-file>]\n"
  339. "\n"
  340. "Options:\n"
  341. " control-file control file to process (default: debian/control).\n"
  342. " -B binary-only, ignore -Indep.\n"
  343. " --admindir=<directory>\n"
  344. " change the administrative directory.\n"
  345. " -h show this help message.\n"
  346. msgstr ""
  347. "Usage : %s [<option> ...] [<fichier_de_contrôle>]\n"
  348. "\n"
  349. "Options :\n"
  350. " fichier_de_contrôle fichier_de_contrôle à utiliser (défaut : debian/"
  351. "control).\n"
  352. " -B binaire seul, ignore -Indep.\n"
  353. " --admindir=<répertoire>\n"
  354. " change le répertoire d'administration.\n"
  355. " -h afficher ce message d'aide.\n"
  356. #: scripts/dpkg-checkbuilddeps.pl:78
  357. #, perl-format
  358. msgid "%s: Unmet build dependencies: "
  359. msgstr "%s : dépendances de construction non trouvées : "
  360. #: scripts/dpkg-checkbuilddeps.pl:82
  361. #, perl-format
  362. msgid "%s: Build conflicts: "
  363. msgstr "%s : conflits de construction du paquet : "
  364. #: scripts/dpkg-checkbuilddeps.pl:155 scripts/dpkg-gencontrol.pl:228
  365. #: scripts/dpkg-source.pl:249
  366. #, perl-format
  367. msgid "error occurred while parsing %s"
  368. msgstr "erreur rencontrée lors de l'analyse de %s"
  369. #: scripts/dpkg-distaddfile.pl:25 scripts/changelog/debian.pl:37
  370. msgid ""
  371. "\n"
  372. "Copyright (C) 1996 Ian Jackson."
  373. msgstr ""
  374. "\n"
  375. "Copyright (C) 1996 Ian Jackson."
  376. #: scripts/dpkg-distaddfile.pl:36
  377. #, perl-format
  378. msgid ""
  379. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  380. "\n"
  381. "Options:\n"
  382. " -f<fileslistfile> write files here instead of debian/files.\n"
  383. " -h, --help show this help message.\n"
  384. " --version show the version.\n"
  385. msgstr ""
  386. "Usage : %s [<option>...] <fichier> <section> <priorité>\n"
  387. "\n"
  388. "Options :\n"
  389. " -f <fichier_des_fichiers> lister les fichiers dans ce fichier plutôt que "
  390. "debian/files.\n"
  391. " -h, --help afficher ce message d'aide.\n"
  392. " --version afficher la version.\n"
  393. #: scripts/dpkg-distaddfile.pl:60
  394. msgid "need exactly a filename, section and priority"
  395. msgstr "Il est demandé exactement un fichier, une section et une priorité"
  396. #: scripts/dpkg-distaddfile.pl:64
  397. msgid "filename, section and priority may contain no whitespace"
  398. msgstr "fichier, section et priorité ne peuvent contenir d'espace"
  399. #: scripts/dpkg-distaddfile.pl:67 scripts/dpkg-gencontrol.pl:292
  400. msgid "open new files list file"
  401. msgstr "ouverture du nouveau fichier des fichiers"
  402. #: scripts/dpkg-distaddfile.pl:69 scripts/dpkg-gencontrol.pl:295
  403. msgid "chown new files list file"
  404. msgstr "modification du propriétaire du nouveau fichier des fichiers"
  405. #: scripts/dpkg-distaddfile.pl:74 scripts/dpkg-gencontrol.pl:304
  406. msgid "copy old entry to new files list file"
  407. msgstr "copie de l'ancienne entrée dans le nouveau fichier des fichiers"
  408. #: scripts/dpkg-distaddfile.pl:77 scripts/dpkg-gencontrol.pl:308
  409. msgid "read old files list file"
  410. msgstr "lecture du nouveau fichier des fichiers"
  411. #: scripts/dpkg-distaddfile.pl:80 scripts/dpkg-gencontrol.pl:316
  412. msgid "write new entry to new files list file"
  413. msgstr "écriture de la nouvelle entrée dans le nouveau fichier des fichiers"
  414. #: scripts/dpkg-distaddfile.pl:81 scripts/dpkg-gencontrol.pl:317
  415. msgid "close new files list file"
  416. msgstr "fermeture du nouveau fichier des fichiers"
  417. #: scripts/dpkg-genchanges.pl:74
  418. msgid ""
  419. "\n"
  420. "Copyright (C) 1996 Ian Jackson.\n"
  421. "Copyright (C) 2000,2001 Wichert Akkerman."
  422. msgstr ""
  423. "\n"
  424. "Copyright (C) 1996 Ian Jackson.\n"
  425. "Copyright (C) 2000,2001 Wichert Akkerman."
  426. #: scripts/dpkg-genchanges.pl:86
  427. #, perl-format
  428. msgid ""
  429. "Usage: %s [<option> ...]\n"
  430. "\n"
  431. "Options:\n"
  432. " -b binary-only build - no source files.\n"
  433. " -B arch-specific - no source or arch-indep files.\n"
  434. " -S source-only upload.\n"
  435. " -c<controlfile> get control info from this file.\n"
  436. " -l<changelogfile> get per-version info from this file.\n"
  437. " -f<fileslistfile> get .deb files list from this file.\n"
  438. " -v<sinceversion> include all changes later than version.\n"
  439. " -C<changesdescription> use change description from this file.\n"
  440. " -m<maintainer> override control's maintainer value.\n"
  441. " -e<maintainer> override changelog's maintainer value.\n"
  442. " -u<uploadfilesdir> directory with files (default is `..').\n"
  443. " -si (default) src includes orig for debian-revision 0 or 1.\n"
  444. " -sa source includes orig src.\n"
  445. " -sd source is diff and .dsc only.\n"
  446. " -q quiet - no informational messages on stderr.\n"
  447. " -F<changelogformat> force change log format.\n"
  448. " -V<name>=<value> set a substitution variable.\n"
  449. " -T<varlistfile> read variables here, not debian/substvars.\n"
  450. " -D<field>=<value> override or add a field and value.\n"
  451. " -U<field> remove a field.\n"
  452. " -h, --help show this help message.\n"
  453. " --version show the version.\n"
  454. msgstr ""
  455. "Usage : %s [<option> ...]\n"
  456. "\n"
  457. "Options :\n"
  458. " -b construction du binaire seul - pas de fichier "
  459. "source.\n"
  460. " -B spécifique à une arch. - pas de fichier source "
  461. "ou arch-indep.\n"
  462. " -S envoi (« upload ») de source seulement.\n"
  463. " -c<fichier_de_contrôle> obtenir les informations de contrôle dans ce "
  464. "fichier.\n"
  465. " -l<fichier_changelog> obtenir les informations de changelog dans ce "
  466. "fichier.\n"
  467. " -f<fichier_des_fichiers> obtenir la liste des fichiers .deb dans ce "
  468. "fichier.\n"
  469. " -v<depuis_version> inclure toutes les modifications depuis cette "
  470. "version.\n"
  471. " -C<changesdescription> utiliser la description des changements dans ce "
  472. "fichier.\n"
  473. " -m<responsable> remplacer la valeur pour le responsable dans le "
  474. "fichier control.\n"
  475. " -e<responsable> remplacer la valeur pour le responsable dans le "
  476. "fichier changelog.\n"
  477. " -u<uploadfilesdir> répertoire avec fichiers (par défaut c'est "
  478. "« .. »).\n"
  479. " -si (défaut) le source inclut un orig pour debian-revision 0 "
  480. "ou 1.\n"
  481. " -sa le source inclut un orig.\n"
  482. " -sd le source inclut seulement un diff et un .dsc.\n"
  483. " -q silence - pas d'information sur stderr.\n"
  484. " -F<changelogformat> modifier le format du changelog.\n"
  485. " -V<nom>=<valeur> définir une substitution de variable.\n"
  486. " -T<varlistfile> lire les variables dans ce fichier, pas dans "
  487. "debian/substvars.\n"
  488. " -D<champ>=<valeur> remplacer ou ajouter une paire champ / valeur.\n"
  489. " -U<champ> supprimer un champ.\n"
  490. " -h, --help afficher ce message d'aide.\n"
  491. " --version afficher la version.\n"
  492. #: scripts/dpkg-genchanges.pl:118 scripts/dpkg-genchanges.pl:121
  493. #: scripts/dpkg-genchanges.pl:126
  494. msgid "cannot combine -b or -B and -S"
  495. msgstr "impossible de combiner -b ou -B et -S"
  496. #: scripts/dpkg-genchanges.pl:124
  497. #, perl-format
  498. msgid "%s: arch-specific upload - not including arch-independent packages"
  499. msgstr ""
  500. "%s : envoi d'un paquet pour une architecture - n'inclut pas de paquet "
  501. "indépendant d'une architecture."
  502. #: scripts/dpkg-genchanges.pl:172
  503. msgid "cannot read files list file"
  504. msgstr "impossible de lire le fichier des fichiers."
  505. #: scripts/dpkg-genchanges.pl:176
  506. #, perl-format
  507. msgid "duplicate files list entry for package %s (line %d)"
  508. msgstr ""
  509. "entrée en double dans le fichier des fichiers pour le paquet %s (ligne %d) "
  510. #: scripts/dpkg-genchanges.pl:182 scripts/dpkg-genchanges.pl:194
  511. #, perl-format
  512. msgid "duplicate files list entry for file %s (line %d)"
  513. msgstr ""
  514. "entrée en double dans le fichier des fichiers pour le fichier %s (ligne %d)"
  515. #: scripts/dpkg-genchanges.pl:199
  516. #, perl-format
  517. msgid "badly formed line in files list file, line %d"
  518. msgstr "ligne %d mal formée dans le fichier des fichiers"
  519. #: scripts/dpkg-genchanges.pl:216 scripts/dpkg-gencontrol.pl:161
  520. #: scripts/dpkg-source.pl:254
  521. msgid "general section of control info file"
  522. msgstr "section générale dans le fichier info"
  523. #: scripts/dpkg-genchanges.pl:226
  524. #, perl-format
  525. msgid "package %s in control file but not in files list"
  526. msgstr ""
  527. "paquet %s dans le fichier de contrôle mais pas dans le fichier des fichiers"
  528. #: scripts/dpkg-genchanges.pl:261 scripts/dpkg-gencontrol.pl:192
  529. #: scripts/dpkg-source.pl:290
  530. msgid "package's section of control info file"
  531. msgstr "section du paquet dans le fichier info"
  532. #: scripts/dpkg-genchanges.pl:278 scripts/dpkg-gencontrol.pl:211
  533. #: scripts/dpkg-source.pl:307
  534. #, perl-format
  535. msgid "value from nowhere, with key >%s< and value >%s<"
  536. msgstr "valeur de nulle part, avec clé >%s< et valeur >%s<"
  537. #: scripts/dpkg-genchanges.pl:285
  538. msgid "read changesdescription"
  539. msgstr "lecture de changesdescription"
  540. #: scripts/dpkg-genchanges.pl:296
  541. #, perl-format
  542. msgid "package %s listed in files list but not in control info"
  543. msgstr ""
  544. "paquet %s listé dans le fichier des fichiers mais pas dans le fichier info"
  545. #: scripts/dpkg-genchanges.pl:306
  546. #, perl-format
  547. msgid "missing Section for binary package %s; using '-'"
  548. msgstr "la section du paquet binaire %s manque ; utilisation de « - »"
  549. #: scripts/dpkg-genchanges.pl:308
  550. #, perl-format
  551. msgid "package %s has section %s in control file but %s in files list"
  552. msgstr ""
  553. "le paquet %s a une section %s dans le fichier de contrôle mais une section %s "
  554. "dans le fichier des fichiers"
  555. #: scripts/dpkg-genchanges.pl:315
  556. #, perl-format
  557. msgid "missing Priority for binary package %s; using '-'"
  558. msgstr ""
  559. "le champ « Priority » du paquet binaire %s manque ; utilisation de « - »"
  560. #: scripts/dpkg-genchanges.pl:317
  561. #, perl-format
  562. msgid "package %s has priority %s in control file but %s in files list"
  563. msgstr ""
  564. "le paquet %s a une priorité %s dans le fichier de contrôle mais une priorité %"
  565. "s dans le fichier des fichiers"
  566. #: scripts/dpkg-genchanges.pl:331
  567. msgid "missing Section for source files"
  568. msgstr "il manque la section pour les fichiers source"
  569. #: scripts/dpkg-genchanges.pl:336
  570. msgid "missing Priority for source files"
  571. msgstr "il manque la priorité pour les fichiers source"
  572. #: scripts/dpkg-genchanges.pl:341 scripts/dpkg-source.pl:683
  573. #: scripts/dpkg-source.pl:713
  574. #, perl-format
  575. msgid "cannot open .dsc file %s: %s"
  576. msgstr "impossible d'ouvrir le fichier .dsc %s : %s"
  577. #: scripts/dpkg-genchanges.pl:344 scripts/dpkg-source.pl:714
  578. #, perl-format
  579. msgid "source control file %s"
  580. msgstr "fichier de contrôle des sources %s"
  581. #: scripts/dpkg-genchanges.pl:350 scripts/dpkg-source.pl:753
  582. #, perl-format
  583. msgid "Files field contains bad line `%s'"
  584. msgstr "le champ Files contient une ligne mal formée « %s »"
  585. #: scripts/dpkg-genchanges.pl:362
  586. msgid "not including original source code in upload"
  587. msgstr "pas d'inclusion du code source original dans l'envoi (« upload »)"
  588. #: scripts/dpkg-genchanges.pl:366
  589. msgid "ignoring -sd option for native Debian package"
  590. msgstr "option -sd ignorée pour les paquets Debian pure souche"
  591. #: scripts/dpkg-genchanges.pl:368
  592. msgid "including full source code in upload"
  593. msgstr "inclusion du code source original dans l'envoi (« upload »)"
  594. #: scripts/dpkg-genchanges.pl:371
  595. msgid "binary-only upload - not including any source code"
  596. msgstr "envoi d'un binaire - aucune inclusion de code source"
  597. #: scripts/dpkg-genchanges.pl:375
  598. msgid "write original source message"
  599. msgstr "écriture du message source original"
  600. #: scripts/dpkg-genchanges.pl:400
  601. #, perl-format
  602. msgid "cannot open upload file %s for reading"
  603. msgstr "impossible de lire le fichier d'envoi %s"
  604. #: scripts/dpkg-genchanges.pl:401
  605. #, perl-format
  606. msgid "cannot fstat upload file %s"
  607. msgstr "impossible de lancer « fstat » sur le fichier d'envoi %s"
  608. #: scripts/dpkg-genchanges.pl:403
  609. #, perl-format
  610. msgid "upload file %s is empty"
  611. msgstr "le fichier d'envoi %s est vide"
  612. #: scripts/dpkg-genchanges.pl:405
  613. #, perl-format
  614. msgid "md5sum upload file %s"
  615. msgstr "exécution de md5sum sur le fichier d'envoi %s"
  616. #: scripts/dpkg-genchanges.pl:407
  617. #, perl-format
  618. msgid "md5sum upload file %s gave strange output `%s'"
  619. msgstr "résultat anormal de md5sum sur le fichier d'envoi %s : « %s »"
  620. #: scripts/dpkg-genchanges.pl:410
  621. #, perl-format
  622. msgid "md5sum of source file %s (%s) is different from md5sum in %s (%s)"
  623. msgstr ""
  624. "le résultat de md5sum sur le fichier source %s (%s) diffère du résultat sur %"
  625. "s (%s)"
  626. #: scripts/dpkg-genchanges.pl:425 scripts/dpkg-source.pl:317
  627. #, perl-format
  628. msgid "missing information for critical output field %s"
  629. msgstr "il manque l'information pour l'important champ de sortie %s"
  630. #: scripts/dpkg-genchanges.pl:429 scripts/dpkg-gencontrol.pl:249
  631. #: scripts/dpkg-gencontrol.pl:252 scripts/dpkg-source.pl:321
  632. #, perl-format
  633. msgid "missing information for output field %s"
  634. msgstr "il manque l'information pour le champ de sortie %s"
  635. #: scripts/dpkg-gencontrol.pl:52
  636. msgid ""
  637. "\n"
  638. "Copyright (C) 1996 Ian Jackson.\n"
  639. "Copyright (C) 2000,2002 Wichert Akkerman."
  640. msgstr ""
  641. "\n"
  642. "Copyright (C) 1996 Ian Jackson.\n"
  643. "Copyright (C) 2000,2002 Wichert Akkerman."
  644. #: scripts/dpkg-gencontrol.pl:64
  645. #, perl-format
  646. msgid ""
  647. "Usage: %s [<option> ...]\n"
  648. "\n"
  649. "Options:\n"
  650. " -p<package> print control file for package.\n"
  651. " -c<controlfile> get control info from this file.\n"
  652. " -l<changelogfile> get per-version info from this file.\n"
  653. " -F<changelogformat> force change log format.\n"
  654. " -v<forceversion> set version of binary package.\n"
  655. " -f<fileslistfile> write files here instead of debian/files.\n"
  656. " -P<packagebuilddir> temporary build dir instead of debian/tmp.\n"
  657. " -n<filename> assume the package filename will be <filename>.\n"
  658. " -O write to stdout, not .../DEBIAN/control.\n"
  659. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  660. " -D<field>=<value> override or add a field and value.\n"
  661. " -U<field> remove a field.\n"
  662. " -V<name>=<value> set a substitution variable.\n"
  663. " -T<varlistfile> read variables here, not debian/substvars.\n"
  664. " -h, --help show this help message.\n"
  665. " --version show the version.\n"
  666. msgstr ""
  667. "Usage : %s [<option> ...]\n"
  668. "\n"
  669. "Options :\n"
  670. " -p<paquet> afficher le fichier de contrôle du paquet.\n"
  671. " -c<fichier_de_contrôle> obtenir les informations de contrôle dans ce "
  672. "fichier.\n"
  673. " -l<fichier_changelog> obtenir les informations de changelog dans ce "
  674. "fichier.\n"
  675. " -F<changelogformat> modifier le format du changelog.\n"
  676. " -v<forceversion> définir la version du paquet binaire.\n"
  677. " -f<fichier_des_fichiers> écrire liste des fichiers dans ce fichier, non "
  678. "dans debian/files.\n"
  679. " -P<packagebuilddir> répertoire temporaire de construction, au lieu "
  680. "de debian/tmp.\n"
  681. " -n<fichier> supposer que le nom du paquet sera <fichier>.\n"
  682. " -O écrire sur stdout, pas .../DEBIAN/control.\n"
  683. " -is, -ip, -isp, -ips options déconseillées, ignorées pour "
  684. "compatibilité.\n"
  685. " -D<champ>=<valeur> remplacer ou ajouter une paire champ / valeur.\n"
  686. " -U<champ> supprimer un champ.\n"
  687. " -V<nom>=<valeur> définir une substitution de variable.\n"
  688. " -T<varlistfile> lire les variables dans ce fichier, pas dans "
  689. "debian/substvars.\n"
  690. " -h, --help afficher ce message d'aide.\n"
  691. " --version afficher la version.\n"
  692. #: scripts/dpkg-gencontrol.pl:92
  693. #, perl-format
  694. msgid "Illegal package name `%s'"
  695. msgstr "nom de paquet %s non autorisé"
  696. #: scripts/dpkg-gencontrol.pl:135
  697. #, perl-format
  698. msgid "package %s not in control info"
  699. msgstr "le paquet %s n'est pas le fichier de contrôle"
  700. #: scripts/dpkg-gencontrol.pl:140
  701. #, perl-format
  702. msgid "must specify package since control info has many (%s)"
  703. msgstr ""
  704. "il faut indiquer un paquet car le fichier de contrôle contient plusieurs (%s)"
  705. #: scripts/dpkg-gencontrol.pl:178
  706. #, perl-format
  707. msgid "`%s' is not a legal architecture string."
  708. msgid_plural "`%s' are not legal architecture strings."
  709. msgstr[0] "« %s » n'est pas une architecture autorisée."
  710. msgstr[1] "« %s » ne sont pas des architectures autorisées."
  711. #: scripts/dpkg-gencontrol.pl:184
  712. #, perl-format
  713. msgid "current build architecture %s does not appear in package's list (%s)"
  714. msgstr "l'actuelle architecture de construction %s n'apparaît pas dans %s"
  715. #: scripts/dpkg-gencontrol.pl:264
  716. msgid "fork for du"
  717. msgstr "fork pour du"
  718. #: scripts/dpkg-gencontrol.pl:266
  719. #, perl-format
  720. msgid "chdir for du to `%s'"
  721. msgstr "chdir pour du vers %s"
  722. #: scripts/dpkg-gencontrol.pl:267
  723. msgid "exec du"
  724. msgstr "exec du"
  725. #: scripts/dpkg-gencontrol.pl:273
  726. #, perl-format
  727. msgid "du in `%s'"
  728. msgstr "du dans %s"
  729. #: scripts/dpkg-gencontrol.pl:274
  730. #, perl-format
  731. msgid "du gave unexpected output `%s'"
  732. msgstr "résultat inattendu de du %s"
  733. #: scripts/dpkg-gencontrol.pl:306
  734. msgid "close old files list file"
  735. msgstr "fermeture de l'ancien fichier des fichiers"
  736. #: scripts/dpkg-gencontrol.pl:318
  737. msgid "install new files list file"
  738. msgstr "installation du nouveau fichier des fichiers"
  739. #: scripts/dpkg-gencontrol.pl:325
  740. #, perl-format
  741. msgid "cannot open new output control file `%s'"
  742. msgstr "impossible d'ouvrir nouveau fichier de sortie %s"
  743. #: scripts/dpkg-gencontrol.pl:333
  744. #, perl-format
  745. msgid "cannot install output control file `%s'"
  746. msgstr "impossible d'installer nouveau fichier de sortie %s"
  747. #: scripts/dpkg-parsechangelog.pl:31
  748. msgid ""
  749. "\n"
  750. "Copyright (C) 1996 Ian Jackson.\n"
  751. "Copyright (C) 2001 Wichert Akkerman"
  752. msgstr ""
  753. "\n"
  754. "Copyright (C) 1996 Ian Jackson.\n"
  755. "Copyright (C) 2001 Wichert Akkerman"
  756. #: scripts/dpkg-parsechangelog.pl:43
  757. #, perl-format
  758. msgid ""
  759. "Usage: %s [<option> ...]\n"
  760. "\n"
  761. "Options:\n"
  762. " -l<changelogfile> get per-version info from this file.\n"
  763. " -v<sinceversion> include all changes later than version.\n"
  764. " -F<changelogformat> force change log format.\n"
  765. " -L<libdir> look for change log parsers in <libdir>.\n"
  766. " -h, --help show this help message.\n"
  767. " --version show the version.\n"
  768. msgstr ""
  769. "Usage : %s [<option> ...]\n"
  770. "\n"
  771. "Options :\n"
  772. " -l<fichier_changelog> obtenir les informations de version dans ce "
  773. "fichier.\n"
  774. " -v<depuis_version> inclure toutes les modifications depuis cette "
  775. "version.\n"
  776. " -F<changelogformat> modifier le format du changelog.\n"
  777. " -L<libdir> rechercher les analyseurs de changelog dans "
  778. "<libdir>.\n"
  779. " -h, --help afficher ce message d'aide.\n"
  780. " --version afficher la version.\n"
  781. #: scripts/dpkg-parsechangelog.pl:70
  782. #, perl-format
  783. msgid "%s takes no non-option arguments"
  784. msgstr "%s ne prend pas de paramètre sans option"
  785. #: scripts/dpkg-parsechangelog.pl:75
  786. #, perl-format
  787. msgid "cannot open %s to find format: %s"
  788. msgstr "impossible d'ouvrir %s pour trouver le format : %s"
  789. #: scripts/dpkg-parsechangelog.pl:76
  790. #, perl-format
  791. msgid "cannot fork: %s"
  792. msgstr "fork impossible : %s"
  793. #: scripts/dpkg-parsechangelog.pl:81
  794. #, perl-format
  795. msgid "tail of %s"
  796. msgstr "fin de %s"
  797. #: scripts/dpkg-parsechangelog.pl:89
  798. #, perl-format
  799. msgid "failed to check for format parser %s"
  800. msgstr "impossible de rechercher l'analyseur de format %s"
  801. #: scripts/dpkg-parsechangelog.pl:91
  802. #, perl-format
  803. msgid "format parser %s not executable"
  804. msgstr "l'analyseur de format %s n'est pas exécutable"
  805. #: scripts/dpkg-parsechangelog.pl:98
  806. #, perl-format
  807. msgid "format %s unknown"
  808. msgstr "format %s inconnu"
  809. #: scripts/dpkg-parsechangelog.pl:101
  810. #, perl-format
  811. msgid "cannot open %s: %s"
  812. msgstr "impossible d'ouvrir %s : %s"
  813. #: scripts/dpkg-parsechangelog.pl:103
  814. #, perl-format
  815. msgid "cannot exec format parser: %s"
  816. msgstr "impossible d'exécuter l'analyseur de format : %s"
  817. #: scripts/dpkg-scanpackages.pl:57
  818. #, perl-format
  819. msgid ""
  820. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  821. "Packages\n"
  822. "\n"
  823. "Options:\n"
  824. " -u, --udeb scan for udebs.\n"
  825. " -a, --arch <arch> architecture to scan for.\n"
  826. " -m, --multiversion allow multiple versions of a single package.\n"
  827. " -h, --help show this help message.\n"
  828. " --version show the version.\n"
  829. msgstr ""
  830. "Usage : %s [<option> ...] <rep-de-binaires> <fichier-d'override> [<chemin-à-"
  831. "préfixer>] >\n"
  832. "Paquets\n"
  833. "\n"
  834. "Options :\n"
  835. " -u, --udeb recherche d'udebs.\n"
  836. " -a, --arch <arch> architecture à rechercher.\n"
  837. " -m, --multiversion permettre plusieurs versions d'un paquet.\n"
  838. " -h, --help afficher ce message d'aide.\n"
  839. " --version afficher la version.\n"
  840. #: scripts/dpkg-scanpackages.pl:72
  841. #, perl-format
  842. msgid "Couldn't open override file %s: %s"
  843. msgstr "Impossible d'ouvrir le fichier d'override %s : %s"
  844. #: scripts/dpkg-scanpackages.pl:98
  845. #, perl-format
  846. msgid " * Unconditional maintainer override for %s *"
  847. msgstr " * Annulation inconditionnelle du responsable pour %s *"
  848. #: scripts/dpkg-scanpackages.pl:114 scripts/dpkg-scansources.pl:509
  849. msgid "1 to 3 args expected\n"
  850. msgstr "de 1 à 3 paramètres attendus\n"
  851. #: scripts/dpkg-scanpackages.pl:136
  852. #, perl-format
  853. msgid "Binary dir %s not found"
  854. msgstr "Répertoire de binaires %s non trouvé"
  855. #: scripts/dpkg-scanpackages.pl:139
  856. #, perl-format
  857. msgid "Override file %s not found"
  858. msgstr "Fichier override %s non trouvé"
  859. #: scripts/dpkg-scanpackages.pl:154
  860. #, perl-format
  861. msgid "Couldn't open %s for reading: %s"
  862. msgstr "Impossible de lire %s : %s"
  863. #: scripts/dpkg-scanpackages.pl:162
  864. #, perl-format
  865. msgid "Couldn't call dpkg-deb on %s: %s, skipping package"
  866. msgstr "Impossible d'appeler dpkg-deb sur %s : %s, paquet sauté"
  867. #: scripts/dpkg-scanpackages.pl:166
  868. #, perl-format
  869. msgid "`dpkg-deb -I %s control' exited with %d, skipping package"
  870. msgstr "« dpkg-deb -I %s control », sortie avec %d, paquet sauté"
  871. #: scripts/dpkg-scanpackages.pl:180
  872. #, perl-format
  873. msgid ""
  874. "Unprocessed text from %s control file; info:\n"
  875. "%s / %s\n"
  876. msgstr ""
  877. "Texte non traité du fichier de contrôle %s ; info :\n"
  878. "%s / %s\n"
  879. #: scripts/dpkg-scanpackages.pl:183
  880. #, perl-format
  881. msgid "No Package field in control file of %s"
  882. msgstr "Pas de champ Package dans le fichier de contrôle de %s"
  883. #: scripts/dpkg-scanpackages.pl:190
  884. #, perl-format
  885. msgid ""
  886. " ! Package %s (filename %s) is repeat but newer version;\n"
  887. " used that one and ignored data from %s !\n"
  888. msgstr ""
  889. " ! Paquet %s (nom %s) répété, mais version plus récente ;\n"
  890. " utilisation de celle-ci, données de %s ignorées !\n"
  891. #: scripts/dpkg-scanpackages.pl:196
  892. #, perl-format
  893. msgid ""
  894. " ! Package %s (filename %s) is repeat;\n"
  895. " ignored that one and using data from %s !\n"
  896. msgstr ""
  897. " ! Paquet %s (nom %s) répété ;\n"
  898. " version ignorée, utilisation des données de %s !\n"
  899. #: scripts/dpkg-scanpackages.pl:203
  900. #, perl-format
  901. msgid " ! Package %s (filename %s) has Filename field!\n"
  902. msgstr " ! Paquet %s (nom %s) a un champ Filename !\n"
  903. #: scripts/dpkg-scanpackages.pl:209
  904. #, perl-format
  905. msgid "`md5sum < %s' exited with %d"
  906. msgstr "« md5sum < %s », sortie avec %d"
  907. #: scripts/dpkg-scanpackages.pl:210
  908. #, perl-format
  909. msgid "Strange text from `md5sum < %s': `%s'"
  910. msgstr "Texte étrange produit par « md5sum < %s » : « %s »"
  911. #: scripts/dpkg-scanpackages.pl:213
  912. #, perl-format
  913. msgid "Couldn't stat %s: %s"
  914. msgstr "stat de %s impossible : %s"
  915. #: scripts/dpkg-scanpackages.pl:214
  916. #, perl-format
  917. msgid "%s is empty"
  918. msgstr "%s est vide"
  919. #: scripts/dpkg-scanpackages.pl:260
  920. #, perl-format
  921. msgid "Failed when writing stdout: %s"
  922. msgstr "Impossible d'écrire sur stdout : %s"
  923. #: scripts/dpkg-scanpackages.pl:263
  924. #, perl-format
  925. msgid "Couldn't close stdout: %s"
  926. msgstr "Impossible de fermer stdout : %s"
  927. #: scripts/dpkg-scanpackages.pl:267
  928. msgid "** Packages in archive but missing from override file: **"
  929. msgstr "** Paquets dans l'archive mais pas dans le fichier d'override : **"
  930. #: scripts/dpkg-scanpackages.pl:271
  931. msgid " ++ Packages in override file with incorrect old maintainer value: ++"
  932. msgstr ""
  933. "++ Paquets dans le fichier d'override avec valeur incorrecte pour l'ancien "
  934. "responsable : ++"
  935. #: scripts/dpkg-scanpackages.pl:277
  936. msgid " -- Packages specifying same maintainer as override file: --"
  937. msgstr "-- Paquets indiquant le même responsable que le fichier d'override : --"
  938. #: scripts/dpkg-scanpackages.pl:283
  939. msgid " -- Packages in override file but not in archive: --"
  940. msgstr "-- Paquets dans le fichier d'override mais pas dans l'archive : --"
  941. #: scripts/dpkg-scanpackages.pl:288
  942. #, perl-format
  943. msgid " Wrote %s entries to output Packages file."
  944. msgstr "%s entrées écrites dans le fichier Packages."
  945. #: scripts/dpkg-scansources.pl:104
  946. #, perl-format
  947. msgid ""
  948. "Usage: %s [<option> ...] <binarypath> [<overridefile> [<pathprefix>]] > "
  949. "Sources\n"
  950. "\n"
  951. "Options:\n"
  952. " -n, --no-sort don't sort by package before outputting.\n"
  953. " -s, --source-override <file>\n"
  954. " use file for additional source overrides, default\n"
  955. " is regular override file with .src appended.\n"
  956. " --debug turn debugging on.\n"
  957. " --help show this help message.\n"
  958. " --version show the version.\n"
  959. "\n"
  960. "See the man page for the full documentation.\n"
  961. msgstr ""
  962. "Usage : %s [<option> ...] <rep-de-binaires> <fichier-d'override> [<chemin-à-"
  963. "préfixer>] >\n"
  964. "Sources\n"
  965. "\n"
  966. "Options :\n"
  967. " -n, --no-sort ne pas trier par paquet avant affichage\n"
  968. " -s, --source-override <fichier>\n"
  969. " utiliser fichier pour d'autres annulations, \n"
  970. " par défaut c'est le fichier d'override normal qui "
  971. "est utilisé.\n"
  972. " --debug activer le débogage.\n"
  973. " --help afficher ce message d'aide.\n"
  974. " --version afficher la version.\n"
  975. #: scripts/dpkg-scansources.pl:144
  976. #, perl-format
  977. msgid "error closing %s ($? %d, $! `%s')"
  978. msgstr "erreur en fermant %s ($? %d, $! `%s')"
  979. #: scripts/dpkg-scansources.pl:157
  980. #, perl-format
  981. msgid "can't read override file %s:"
  982. msgstr "impossible de lire le fichier d'override %s :"
  983. #: scripts/dpkg-scansources.pl:166
  984. #, perl-format
  985. msgid "invalid override entry at line %d (%d fields)"
  986. msgstr "entrée invalide, ligne %d (champs %d)"
  987. #: scripts/dpkg-scansources.pl:173
  988. #, perl-format
  989. msgid "ignoring duplicate override entry for %s at line %d"
  990. msgstr "entrée en double %s ignorée, ligne %d"
  991. #: scripts/dpkg-scansources.pl:179
  992. #, perl-format
  993. msgid "ignoring override entry for %s, invalid priority %s"
  994. msgstr "entrée en double %s ignorée, priorité %s non valable"
  995. #: scripts/dpkg-scansources.pl:198
  996. msgid "error closing override file:"
  997. msgstr "erreur en fermant le fichier d'override"
  998. #: scripts/dpkg-scansources.pl:219
  999. #, perl-format
  1000. msgid "can't read source override file %s:"
  1001. msgstr "impossible de lire le fichier d'override %s pour les sources :"
  1002. #: scripts/dpkg-scansources.pl:229
  1003. #, perl-format
  1004. msgid "invalid source override entry at line %d (%d fields)"
  1005. msgstr ""
  1006. "entrée invalide dans le fichier d'override pour les sources, ligne %d (champs "
  1007. "%d)"
  1008. #: scripts/dpkg-scansources.pl:238
  1009. #, perl-format
  1010. msgid "ignoring duplicate source override entry for %s at line %d"
  1011. msgstr ""
  1012. "entrée en double %s ignorée dans le fichier d'override pour les sources, "
  1013. "ligne %d"
  1014. #: scripts/dpkg-scansources.pl:245
  1015. msgid "error closing source override file:"
  1016. msgstr "erreur en fermant le fichier d'override pour les sources"
  1017. #: scripts/dpkg-scansources.pl:259
  1018. #, perl-format
  1019. msgid "%s has PGP start token but not end token"
  1020. msgstr "%s possède un début PGP mais pas de fin"
  1021. #: scripts/dpkg-scansources.pl:275
  1022. #, perl-format
  1023. msgid "can't read %s:"
  1024. msgstr "impossible de lire %s :"
  1025. #: scripts/dpkg-scansources.pl:281
  1026. #, perl-format
  1027. msgid "error doing fstat on %s:"
  1028. msgstr "erreur lors de fstat %s :"
  1029. #: scripts/dpkg-scansources.pl:289
  1030. #, perl-format
  1031. msgid "error reading from %s:"
  1032. msgstr "erreur en lisant %s :"
  1033. #: scripts/dpkg-scansources.pl:297 scripts/dpkg-scansources.pl:519
  1034. msgid "can't fork:"
  1035. msgstr "fork impossible :"
  1036. #: scripts/dpkg-scansources.pl:301
  1037. #, perl-format
  1038. msgid "can't dup %s:"
  1039. msgstr "dup %s impossible :"
  1040. #: scripts/dpkg-scansources.pl:302
  1041. #, perl-format
  1042. msgid "can't rewind %s:"
  1043. msgstr "impossible de rembobiner %s :"
  1044. #: scripts/dpkg-scansources.pl:303
  1045. msgid "can't exec md5sum:"
  1046. msgstr "exec md5sum impossible :"
  1047. #: scripts/dpkg-scansources.pl:312
  1048. #, perl-format
  1049. msgid "invalid md5 output for %s (%s)"
  1050. msgstr "résultat md5 non valable pour %s (%s)"
  1051. #: scripts/dpkg-scansources.pl:317
  1052. #, perl-format
  1053. msgid "error closing %s:"
  1054. msgstr "erreur en fermant %s :"
  1055. #: scripts/dpkg-scansources.pl:342
  1056. #, perl-format
  1057. msgid "%s invalid (contains blank line)"
  1058. msgstr "%s invalide (contient une ligne blanche)"
  1059. #: scripts/dpkg-scansources.pl:369
  1060. #, perl-format
  1061. msgid "invalid field in %s: %s"
  1062. msgstr "champ invalide dans %s : %s"
  1063. #: scripts/dpkg-scansources.pl:377
  1064. #, perl-format
  1065. msgid "duplicate source field in %s"
  1066. msgstr "champ source en double dans %s"
  1067. #: scripts/dpkg-scansources.pl:381
  1068. #, perl-format
  1069. msgid "invalid source field in %s"
  1070. msgstr "champ source invalide dans %s"
  1071. #: scripts/dpkg-scansources.pl:391
  1072. #, perl-format
  1073. msgid "duplicate binary field in %s"
  1074. msgstr "champ binary en double dans %s"
  1075. #: scripts/dpkg-scansources.pl:396
  1076. #, perl-format
  1077. msgid "no binary packages specified in %s"
  1078. msgstr "pas de paquets binaires indiqués dans %s"
  1079. #: scripts/dpkg-shlibdeps.pl:43
  1080. msgid ""
  1081. "\n"
  1082. "Copyright (C) 1996 Ian Jackson.\n"
  1083. "Copyright (C) 2000 Wichert Akkerman.\n"
  1084. "Copyright (C) 2006 Frank Lichtenheld."
  1085. msgstr ""
  1086. "\n"
  1087. "Copyright (C) 1996 Ian Jackson.\n"
  1088. "Copyright (C) 2000 Wichert Akkerman.\n"
  1089. "Copyright (C) 2006 Frank Lichtenheld."
  1090. #: scripts/dpkg-shlibdeps.pl:56
  1091. #, perl-format
  1092. msgid ""
  1093. "Usage: %s [<option> ...] <executable>|-e<executable> [<option> ...]\n"
  1094. "\n"
  1095. "Positional options (order is significant):\n"
  1096. " <executable> include dependencies for <executable>,\n"
  1097. " -e<executable> (use -e if <executable> starts with `-')\n"
  1098. " -d<dependencyfield> next executable(s) set shlibs:<dependencyfield>.\n"
  1099. "\n"
  1100. "Options:\n"
  1101. " -p<varnameprefix> set <varnameprefix>:* instead of shlibs:*.\n"
  1102. " -O print variable settings to stdout.\n"
  1103. " -L<localshlibsfile> shlibs override file, not debian/shlibs.local.\n"
  1104. " -T<varlistfile> update variables here, not debian/substvars.\n"
  1105. " -t<type> set package type (default is deb).\n"
  1106. " --admindir=<directory> change the administrative directory.\n"
  1107. " -h, --help show this help message.\n"
  1108. " --version show the version.\n"
  1109. "\n"
  1110. "Dependency fields recognised are:\n"
  1111. " %s\n"
  1112. msgstr ""
  1113. "Usage : %s [<option> ...] <exécutable>|-e<exécutable> [<option> ...]\n"
  1114. "\n"
  1115. "Options à position (l'ordre est important) :\n"
  1116. " <exécutable> inclure les dépendances pour <exécutable>,\n"
  1117. " -e<exécutable> option -e si <exécutable> commence par « - »\n"
  1118. " -d<champ_dépendance> le prochain exécutable définit shlibs:"
  1119. "<champ_dépendance>\n"
  1120. "\n"
  1121. "Options :\n"
  1122. " -p<varnameprefix> définir <varnameprefix>:* au lieu de shlibs:*.\n"
  1123. " -O afficher les variables définies sur stdout.\n"
  1124. " -L<localshlibsfile> fichier d'override pour shlibs, pas debian/"
  1125. "shlibs.local.\n"
  1126. " -T<varlistfile> mettre à jour les variables ici, pas debian/"
  1127. "substvars.\n"
  1128. " --admindir=<répertoire> change le répertoire d'administration.\n"
  1129. " -t<type> définir le type de paquet (.deb par défaut).\n"
  1130. " -h, --help afficher ce message d'aide.\n"
  1131. " --version afficher la version.\n"
  1132. "\n"
  1133. "Champs de dépendance reconnus :\n"
  1134. " %s\n"
  1135. #: scripts/dpkg-shlibdeps.pl:95
  1136. #, perl-format
  1137. msgid "administrative directory '%s' does not exist"
  1138. msgstr "répertoire d'administration %s n'existe pas"
  1139. #: scripts/dpkg-shlibdeps.pl:100
  1140. #, perl-format
  1141. msgid "unrecognised dependency field '%s'"
  1142. msgstr "champ de dépendance non reconnu %s"
  1143. #: scripts/dpkg-shlibdeps.pl:114
  1144. msgid "need at least one executable"
  1145. msgstr "au moins un exécutable est nécessaire"
  1146. #: scripts/dpkg-shlibdeps.pl:117
  1147. #, perl-format
  1148. msgid "unable to open '%s' for test"
  1149. msgstr "impossible d'ouvrir %s pour test"
  1150. #: scripts/dpkg-shlibdeps.pl:120
  1151. #, perl-format
  1152. msgid "unable to read first four bytes of '%s' as magic number"
  1153. msgstr "impossible de lire les quatre premiers octets de %s, le nombre magique"
  1154. #: scripts/dpkg-shlibdeps.pl:133
  1155. #, perl-format
  1156. msgid "unrecognized file type for '%s'"
  1157. msgstr "type de fichier non reconnu pour %s"
  1158. #: scripts/dpkg-shlibdeps.pl:169
  1159. #, perl-format
  1160. msgid "couldn't open /etc/ld.so.conf: %s"
  1161. msgstr "impossible d'ouvrir /etc/ld.so.conf : %s"
  1162. #: scripts/dpkg-shlibdeps.pl:187 scripts/dpkg-shlibdeps.pl:348
  1163. msgid "cannot fork for objdump"
  1164. msgstr "fork impossible pour objdump"
  1165. #: scripts/dpkg-shlibdeps.pl:190 scripts/dpkg-shlibdeps.pl:351
  1166. msgid "cannot exec objdump"
  1167. msgstr "impossible d'exécuter objdump"
  1168. #: scripts/dpkg-shlibdeps.pl:209
  1169. #, perl-format
  1170. msgid "format of 'NEEDED %s' not recognized"
  1171. msgstr "format de « NEEDED %s » non reconnu"
  1172. #: scripts/dpkg-shlibdeps.pl:215 scripts/dpkg-shlibdeps.pl:360
  1173. #, perl-format
  1174. msgid "objdump on `%s'"
  1175. msgstr "objdump sur %s"
  1176. #: scripts/dpkg-shlibdeps.pl:277
  1177. msgid "cannot fork for dpkg --search"
  1178. msgstr "fork impossible pour dpkg --search"
  1179. #: scripts/dpkg-shlibdeps.pl:286
  1180. msgid "cannot exec dpkg"
  1181. msgstr "impossible d'exécuter dpkg"
  1182. #: scripts/dpkg-shlibdeps.pl:291
  1183. msgid "diversions involved - output may be incorrect"
  1184. msgstr "détournements en jeu, la sortie peut être incorrecte"
  1185. #: scripts/dpkg-shlibdeps.pl:292
  1186. msgid "write diversion info to stderr"
  1187. msgstr "info sur le détournement envoyée sur stderr"
  1188. #: scripts/dpkg-shlibdeps.pl:296
  1189. #, perl-format
  1190. msgid "unknown output from dpkg --search: '%s'"
  1191. msgstr "résultat de dpkg --search inconnu : %s"
  1192. #: scripts/dpkg-shlibdeps.pl:319
  1193. #, perl-format
  1194. msgid "could not find any packages for %s"
  1195. msgstr "impossible de trouver un paquet pour %s"
  1196. #: scripts/dpkg-shlibdeps.pl:329
  1197. #, perl-format
  1198. msgid ""
  1199. "unable to find dependency information for shared library %s (soname %s, path %"
  1200. "s, dependency field %s)"
  1201. msgstr ""
  1202. "impossible de trouver les dépendances de la bibliothèque partagée %s (nom_so %"
  1203. "s, chemin %s et champ_dépendance %s)"
  1204. #: scripts/dpkg-shlibdeps.pl:370
  1205. #, perl-format
  1206. msgid "unable to open shared libs info file `%s'"
  1207. msgstr "impossible d'ouvrir le fichier sur les bibliothèques partagées %s"
  1208. #: scripts/dpkg-shlibdeps.pl:377
  1209. #, perl-format
  1210. msgid "shared libs info file '%s' line %d: bad line '%s'"
  1211. msgstr ""
  1212. "fichier info sur les bibliothèques partagées %s, ligne %d : ligne mal formée %"
  1213. "s"
  1214. #: scripts/dpkg-shlibdeps.pl:412
  1215. #, perl-format
  1216. msgid "open new substvars file `%s'"
  1217. msgstr "ouverture du nouveau fichier substvars %s"
  1218. #: scripts/dpkg-shlibdeps.pl:415
  1219. #, perl-format
  1220. msgid "chown of `%s'"
  1221. msgstr "chown de %s"
  1222. #: scripts/dpkg-shlibdeps.pl:422
  1223. #, perl-format
  1224. msgid "copy old entry to new varlist file `%s'"
  1225. msgstr "copie d'une ancienne entrée dans le nouveau fichier varlist %s"
  1226. #: scripts/dpkg-shlibdeps.pl:425
  1227. #, perl-format
  1228. msgid "open old varlist file `%s' for reading"
  1229. msgstr "lecture de l'ancien fichier varlist %s"
  1230. #: scripts/dpkg-shlibdeps.pl:440
  1231. msgid "write output entry"
  1232. msgstr "entrée écrite"
  1233. #: scripts/dpkg-shlibdeps.pl:444
  1234. msgid "write userdef output entry"
  1235. msgstr "entrée userdef écrite"
  1236. #: scripts/dpkg-shlibdeps.pl:446
  1237. msgid "close output"
  1238. msgstr "close output"
  1239. #: scripts/dpkg-shlibdeps.pl:449
  1240. #, perl-format
  1241. msgid "install new varlist file `%s'"
  1242. msgstr "installation du nouveau fichier varlist %s"
  1243. #: scripts/dpkg-source.pl:100
  1244. msgid ""
  1245. "\n"
  1246. "Copyright (C) 1996 Ian Jackson and Klee Dienes."
  1247. msgstr ""
  1248. "\n"
  1249. "Copyright (C) 1996 Ian Jackson and Klee Dienes."
  1250. #: scripts/dpkg-source.pl:111
  1251. #, perl-format
  1252. msgid ""
  1253. "Usage: %s [<option> ...] <command>\n"
  1254. "\n"
  1255. "Commands:\n"
  1256. " -x <filename>.dsc [<output-dir>]\n"
  1257. " extract source package.\n"
  1258. " -b <dir> [<orig-dir>|<orig-targz>|'']\n"
  1259. " build source package.\n"
  1260. "\n"
  1261. "Build options:\n"
  1262. " -c<controlfile> get control info from this file.\n"
  1263. " -l<changelogfile> get per-version info from this file.\n"
  1264. " -F<changelogformat> force change log format.\n"
  1265. " -V<name>=<value> set a substitution variable.\n"
  1266. " -T<varlistfile> read variables here, not debian/substvars.\n"
  1267. " -D<field>=<value> override or add a .dsc field and value.\n"
  1268. " -U<field> remove a field.\n"
  1269. " -W turn certain errors into warnings.\n"
  1270. " -E when -W is enabled, -E disables it.\n"
  1271. " -q quiet operation, do not print warnings.\n"
  1272. " -i[<regexp>] filter out files to ignore diffs of\n"
  1273. " (defaults to: '%s').\n"
  1274. " -I<filename> filter out files when building tarballs.\n"
  1275. " -sa auto select orig source (-sA is default).\n"
  1276. " -sk use packed orig source (unpack & keep).\n"
  1277. " -sp use packed orig source (unpack & remove).\n"
  1278. " -su use unpacked orig source (pack & keep).\n"
  1279. " -sr use unpacked orig source (pack & remove).\n"
  1280. " -ss trust packed & unpacked orig src are same.\n"
  1281. " -sn there is no diff, do main tarfile only.\n"
  1282. " -sA,-sK,-sP,-sU,-sR like -sa,-sk,-sp,-su,-sr but may overwrite.\n"
  1283. "\n"
  1284. "Extract options:\n"
  1285. " -sp (default) leave orig source packed in current dir.\n"
  1286. " -sn do not copy original source to current dir.\n"
  1287. " -su unpack original source tree too.\n"
  1288. "\n"
  1289. "General options:\n"
  1290. " -h, --help show this help message.\n"
  1291. " --version show the version.\n"
  1292. msgstr ""
  1293. "Usage : %s [<option> ...] <commande>\n"
  1294. "\n"
  1295. "Commandes :\n"
  1296. " -x <fichier>.dsc [<rep_sortie]\n"
  1297. " extraire le paquet source.\n"
  1298. " -b <rep> [<rep_orig>|<targz_orig>|'']\n"
  1299. " construire le paquet source.\n"
  1300. "\n"
  1301. "Options de construction :\n"
  1302. " -c<fichier_de_contrôle> obtenir les informations de contrôle dans ce "
  1303. "fichier.\n"
  1304. " -l<fichier_changelog> obtenir les informations de changelog dans ce "
  1305. "fichier.\n"
  1306. " -F<changelogformat> modifier le format du changelog.\n"
  1307. " -V<nom>=<valeur> définir une substitution de variable.\n"
  1308. " -T<varlistfile> lire les variables dans ce fichier, pas dans "
  1309. "debian/substvars.\n"
  1310. " -D<champ>=<valeur> remplacer ou ajouter une paire champ / valeur.\n"
  1311. " -U<champ> supprimer un champ.\n"
  1312. " -W transformer certaines erreurs en "
  1313. "avertissements.\n"
  1314. " -E quand -W est activée, -E la désactive.\n"
  1315. " -q opération muette, ne pas afficher "
  1316. "d'avertissements.\n"
  1317. " -i[<regexp>] éliminer les fichiers à ignorer, défaut %s.\n"
  1318. " -I<fichier> éliminer des fichiers en construisant les "
  1319. "tarballs.\n"
  1320. " -sa sélection automatique des sources (-sA option "
  1321. "par défaut).\n"
  1322. " -sk utiliser les sources empaquetées \n"
  1323. " (extraction et conservation du targz)\n"
  1324. " -sp utiliser les sources empaquetées\n"
  1325. " (extraction et suppression du targz)\n"
  1326. " -su utiliser les sources non empaquetées\n"
  1327. " (compression et conservation du répertoire)\n"
  1328. " -sr utiliser les sources non empaquetées\n"
  1329. " (compression et suppression du répertoire)\n"
  1330. " -ss croire que le répertoire et le fichier tar sont "
  1331. "identiques.\n"
  1332. " -sn pas de diff, créer le fichier tar seulement.\n"
  1333. " -sA,-sK,-sP,-sU,-sR comme -sa,-sk,-sp,-su,-sr, mais modification "
  1334. "possible\n"
  1335. " d'un tar ou d'un rep existants.\n"
  1336. "\n"
  1337. "Options d'extraction :\n"
  1338. " -sp (défaut) garder les sources empaquetées dans le rep "
  1339. "courant.\n"
  1340. " -sn ne pas copier les sources dans le rep courant.\n"
  1341. " -su extraire aussi l'arborescence source.\n"
  1342. "\n"
  1343. "Options générales :\n"
  1344. " -h, --help afficher ce message d'aide.\n"
  1345. " --version afficher la version.\n"
  1346. #: scripts/dpkg-source.pl:169
  1347. #, perl-format
  1348. msgid "-s%s option overrides earlier -s%s option"
  1349. msgstr "l'option -s%s annule une précédente option -s%s"
  1350. #: scripts/dpkg-source.pl:207
  1351. msgid "need -x or -b"
  1352. msgstr "-x ou -b nécessaire"
  1353. #: scripts/dpkg-source.pl:215
  1354. #, perl-format
  1355. msgid "source handling style -s%s not allowed with -b"
  1356. msgstr "gestion des sources avec -s%s non autorisée avec -b"
  1357. #: scripts/dpkg-source.pl:217
  1358. msgid "-b needs a directory"
  1359. msgstr "répertoire nécessaire avec -b"
  1360. #: scripts/dpkg-source.pl:218
  1361. msgid "-b takes at most a directory and an orig source argument"
  1362. msgstr "il faut au plus un paramètre répertoire et un paramètre source avec -b"
  1363. #: scripts/dpkg-source.pl:221
  1364. #, perl-format
  1365. msgid "cannot stat directory %s: %s"
  1366. msgstr "« stat » du répertoire %s impossible : %s"
  1367. #: scripts/dpkg-source.pl:222
  1368. #, perl-format
  1369. msgid "directory argument %s is not a directory"
  1370. msgstr "paramètre répertoire %s n'est pas un répertoire"
  1371. #: scripts/dpkg-source.pl:273
  1372. #, perl-format
  1373. msgid "`%s' is not a legal architecture string"
  1374. msgstr "%s n'est pas une architecture autorisée"
  1375. #: scripts/dpkg-source.pl:275
  1376. #, perl-format
  1377. msgid "architecture %s only allowed on its own (list for package %s is `%s')"
  1378. msgstr ""
  1379. "architecture %s seulement autorisée toute seule (liste pour paquet %s est %s)"
  1380. #: scripts/dpkg-source.pl:323
  1381. msgid "unable to determine source package name !"
  1382. msgstr "impossible de déterminer le nom du paquet source !"
  1383. #: scripts/dpkg-source.pl:343
  1384. #, perl-format
  1385. msgid "cannot stat orig argument %s: %s"
  1386. msgstr "« stat » du paramètre source %s impossible : %s"
  1387. #: scripts/dpkg-source.pl:349
  1388. #, perl-format
  1389. msgid ""
  1390. "orig argument is unpacked but source handling style -s%s calls for packed (."
  1391. "orig.tar.gz)"
  1392. msgstr ""
  1393. "le paramètre source n'est pas compressé mais l'option -s%s demande des "
  1394. "sources compressées (.orig.tar.gz)"
  1395. #: scripts/dpkg-source.pl:355
  1396. #, perl-format
  1397. msgid ""
  1398. "orig argument is packed but source handling style -s%s calls for unpacked (."
  1399. "orig/)"
  1400. msgstr ""
  1401. "le paramètre source est compressé mais l'option -s%s demande des sources non "
  1402. "compressées (.orig/)"
  1403. #: scripts/dpkg-source.pl:363
  1404. #, perl-format
  1405. msgid ""
  1406. "orig argument is empty (means no orig, no diff) but source handling style -s%"
  1407. "s wants something"
  1408. msgstr ""
  1409. "le paramètre source est vide (pas d'orig, pas de diff) mais l'option -s%s "
  1410. "veut quelque chose."
  1411. #: scripts/dpkg-source.pl:370
  1412. #, perl-format
  1413. msgid "packed orig `%s' exists but is not a plain file"
  1414. msgstr "l'orig compressé %s existe mais ce n'est pas un simple fichier"
  1415. #: scripts/dpkg-source.pl:373
  1416. #, perl-format
  1417. msgid "unable to stat putative packed orig `%s'"
  1418. msgstr "stat impossible du supposé orig compressé %s"
  1419. #: scripts/dpkg-source.pl:375
  1420. #, perl-format
  1421. msgid "unpacked orig `%s' exists but is not a directory"
  1422. msgstr "orig non compressé %s existe mais ce n'est pas un répertoire"
  1423. #: scripts/dpkg-source.pl:378
  1424. #, perl-format
  1425. msgid "unable to stat putative unpacked orig `%s'"
  1426. msgstr "stat impossible du supposé orig non compressé %s"
  1427. #: scripts/dpkg-source.pl:389
  1428. #, perl-format
  1429. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  1430. msgstr "répertoire source %s n'est pas <paquet_source>-<version_amont> %s"
  1431. #: scripts/dpkg-source.pl:403
  1432. #, perl-format
  1433. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  1434. msgstr "répertoire .orig %s n'est pas <paquet>-<version_amont> (%s demandé)"
  1435. #: scripts/dpkg-source.pl:410
  1436. #, perl-format
  1437. msgid ""
  1438. ".orig.tar.gz name %s is not <package>_<upstreamversion>.orig.tar.gz (wanted %"
  1439. "s)"
  1440. msgstr ""
  1441. ".orig.tar.gz %s n'est pas <paquet>_<version_amont>.orig.tar.gz (%s demandé)"
  1442. #: scripts/dpkg-source.pl:421
  1443. #, perl-format
  1444. msgid ""
  1445. "tarfile `%s' already exists, not overwriting, giving up; use -sU or -sR to "
  1446. "override"
  1447. msgstr ""
  1448. "le fichier tar %s existe déjà, pas de modification, abandon ; utiliser -sU ou "
  1449. "-sR pour forcer."
  1450. #: scripts/dpkg-source.pl:424
  1451. #, perl-format
  1452. msgid "unable to check for existence of `%s'"
  1453. msgstr "impossible de vérifier l'existence de %s"
  1454. #: scripts/dpkg-source.pl:427 scripts/dpkg-source.pl:492
  1455. #: scripts/dpkg-source.pl:644
  1456. #, perl-format
  1457. msgid "%s: building %s in %s"
  1458. msgstr "%s : construction de %s dans %s"
  1459. #: scripts/dpkg-source.pl:429
  1460. msgid "write building tar message"
  1461. msgstr "écriture du message concernant la construction du tar"
  1462. #: scripts/dpkg-source.pl:433
  1463. msgid "fork for tar"
  1464. msgstr "fork pour tar"
  1465. #: scripts/dpkg-source.pl:435
  1466. #, perl-format
  1467. msgid "chdir to above (orig) source %s"
  1468. msgstr "chdir vers le répertoire supérieur (orig) %s"
  1469. #: scripts/dpkg-source.pl:436
  1470. msgid "reopen gzip for tar"
  1471. msgstr "réouverture de gzip pour tar"
  1472. #: scripts/dpkg-source.pl:438
  1473. msgid "exec tar"
  1474. msgstr "exec tar"
  1475. #: scripts/dpkg-source.pl:442
  1476. msgid "wait for tar"
  1477. msgstr "attente tar"
  1478. #: scripts/dpkg-source.pl:445 scripts/dpkg-source.pl:607
  1479. #, perl-format
  1480. msgid "unable to rename `%s' (newly created) to `%s'"
  1481. msgstr "impossible de modifier %s (nouvellement créé) en %s"
  1482. #: scripts/dpkg-source.pl:447 scripts/dpkg-source.pl:609
  1483. #, perl-format
  1484. msgid "unable to change permission of `%s'"
  1485. msgstr "impossible de modifier les permissions de %s"
  1486. #: scripts/dpkg-source.pl:451
  1487. #, perl-format
  1488. msgid "%s: building %s using existing %s"
  1489. msgstr "%s : construction de %s à partir de %s"
  1490. #: scripts/dpkg-source.pl:453
  1491. msgid "write using existing tar message"
  1492. msgstr "écriture en utilisant le message tar existant"
  1493. #: scripts/dpkg-source.pl:463
  1494. #, perl-format
  1495. msgid ""
  1496. "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or -sP "
  1497. "to override"
  1498. msgstr ""
  1499. "le répertoire orig %s existe déjà, pas de modification, abandon ; utiliser -"
  1500. "sA, -sK ou -sP pour forcer."
  1501. #: scripts/dpkg-source.pl:469
  1502. #, perl-format
  1503. msgid "unable to check for existence of orig dir `%s'"
  1504. msgstr "impossible de vérifier l'existence du répertoire orig %s"
  1505. #: scripts/dpkg-source.pl:478 scripts/dpkg-source.pl:824
  1506. #, perl-format
  1507. msgid "unable to create `%s'"
  1508. msgstr "impossible de créer %s"
  1509. #: scripts/dpkg-source.pl:482 scripts/dpkg-source.pl:805
  1510. #: scripts/dpkg-source.pl:828
  1511. #, perl-format
  1512. msgid "unable to rename `%s' to `%s'"
  1513. msgstr "impossible de modifier %s en %s"
  1514. #: scripts/dpkg-source.pl:486 scripts/dpkg-source.pl:830
  1515. #, perl-format
  1516. msgid "unable to remove `%s'"
  1517. msgstr "impossible de supprimer %s"
  1518. #: scripts/dpkg-source.pl:494
  1519. msgid "write building diff message"
  1520. msgstr "écriture du message concernant la construction du diff"
  1521. #: scripts/dpkg-source.pl:499
  1522. msgid "fork for find"
  1523. msgstr "fork pour find"
  1524. #: scripts/dpkg-source.pl:501
  1525. #, perl-format
  1526. msgid "chdir to %s for find"
  1527. msgstr "chdir vers %s pour find"
  1528. #: scripts/dpkg-source.pl:502
  1529. msgid "exec find"
  1530. msgstr "exec find"
  1531. #: scripts/dpkg-source.pl:511
  1532. #, perl-format
  1533. msgid "cannot stat file %s"
  1534. msgstr "stat impossible pour le fichier %s"
  1535. #: scripts/dpkg-source.pl:518
  1536. #, perl-format
  1537. msgid "cannot read link %s"
  1538. msgstr "impossible de lire le lien %s"
  1539. #: scripts/dpkg-source.pl:520
  1540. #, perl-format
  1541. msgid "cannot read orig link %s"
  1542. msgstr "impossible de lire le lien orig %s"
  1543. #: scripts/dpkg-source.pl:521 scripts/dpkg-source.pl:522
  1544. #, perl-format
  1545. msgid "symlink to %s"
  1546. msgstr "lien symbolique vers %s"
  1547. #: scripts/dpkg-source.pl:528 scripts/dpkg-source.pl:594
  1548. #, perl-format
  1549. msgid "cannot stat orig file %s"
  1550. msgstr "stat impossible sur fichier orig %s"
  1551. #: scripts/dpkg-source.pl:531
  1552. #, perl-format
  1553. msgid "newly created empty file '%s' will not be represented in diff"
  1554. msgstr ""
  1555. "le fichier « %s », nouvellement créé, ne sera pas représenté dans le diff"
  1556. #, perl-format
  1557. msgid "executable mode %04o of '%s' will not be represented in diff"
  1558. msgstr "le mode exécutable %04o de « %si » ne sera pas représenté dans le diff"
  1559. #: scripts/dpkg-source.pl:538
  1560. #, perl-format
  1561. msgid "special mode %04o of '%s' will not be represented in diff"
  1562. msgstr "le mode spécial %04o de « %s » ne sera pas représenté dans le diff"
  1563. #: scripts/dpkg-source.pl:544 scripts/dpkg-source.pl:1386
  1564. msgid "something else"
  1565. msgstr "quelque chose d'autre"
  1566. #: scripts/dpkg-source.pl:545
  1567. msgid "plain file"
  1568. msgstr "simple fichier"
  1569. #: scripts/dpkg-source.pl:548
  1570. msgid "fork for diff"
  1571. msgstr "fork pour diff"
  1572. #: scripts/dpkg-source.pl:556
  1573. msgid "exec diff"
  1574. msgstr "exec diff"
  1575. #: scripts/dpkg-source.pl:563
  1576. msgid "binary file contents changed"
  1577. msgstr "contenu d'un fichier binaire modifié"
  1578. #: scripts/dpkg-source.pl:568
  1579. #, perl-format
  1580. msgid "file %s has no final newline (either original or modified version)"
  1581. msgstr ""
  1582. "fichier %s sans caractère nouvelle ligne terminal (soit l'original soit la "
  1583. "version modifiée)"
  1584. #: scripts/dpkg-source.pl:572
  1585. #, perl-format
  1586. msgid "unknown line from diff -u on %s: `%s'"
  1587. msgstr "ligne inconnue dans diff -u sur %s : `%s'"
  1588. #: scripts/dpkg-source.pl:574
  1589. msgid "failed to write to gzip"
  1590. msgstr "échec d'écriture vers gzip"
  1591. #: scripts/dpkg-source.pl:580
  1592. msgid "diff gave 1 but no diff lines found"
  1593. msgstr "le résultat de diff est 1 mais pas de différence trouvée"
  1594. #: scripts/dpkg-source.pl:583
  1595. #, perl-format
  1596. msgid "diff on %s"
  1597. msgstr "diff sur %s"
  1598. #: scripts/dpkg-source.pl:589
  1599. msgid "device or socket is not allowed"
  1600. msgstr "périphérique ou socket non autorisé"
  1601. #: scripts/dpkg-source.pl:596
  1602. msgid "not a directory"
  1603. msgstr "pas un répertoire"
  1604. #: scripts/dpkg-source.pl:597
  1605. msgid "directory"
  1606. msgstr "répertoire"
  1607. #: scripts/dpkg-source.pl:600
  1608. #, perl-format
  1609. msgid "unknown file type (%s)"
  1610. msgstr "type de fichier inconnu %s"
  1611. #: scripts/dpkg-source.pl:604
  1612. msgid "finish write to gzip pipe"
  1613. msgstr "fin de l'écriture sur pipe gzip"
  1614. #: scripts/dpkg-source.pl:611
  1615. msgid "fork for 2nd find"
  1616. msgstr "fork pour deuxième find"
  1617. #: scripts/dpkg-source.pl:613
  1618. #, perl-format
  1619. msgid "chdir to %s for 2nd find"
  1620. msgstr "chdir vers %s pour deuxième find"
  1621. #: scripts/dpkg-source.pl:614
  1622. msgid "exec 2nd find"
  1623. msgstr "exécution du deuxième find"
  1624. #: scripts/dpkg-source.pl:622
  1625. #, perl-format
  1626. msgid "cannot check orig file %s"
  1627. msgstr "impossible de vérifier fichier orig %s"
  1628. #: scripts/dpkg-source.pl:624
  1629. #, perl-format
  1630. msgid "ignoring deletion of file %s"
  1631. msgstr "suppression du fichier %s ignorée"
  1632. #: scripts/dpkg-source.pl:626
  1633. #, perl-format
  1634. msgid "ignoring deletion of directory %s"
  1635. msgstr "suppression du répertoire %s ignorée"
  1636. #: scripts/dpkg-source.pl:628
  1637. #, perl-format
  1638. msgid "ignoring deletion of symlink %s"
  1639. msgstr "suppression du lien symbolique %s ignorée"
  1640. #: scripts/dpkg-source.pl:630
  1641. msgid "not a file, directory or link"
  1642. msgstr "ni un fichier ni un répertoire ni un lien symbolique"
  1643. #: scripts/dpkg-source.pl:631 scripts/dpkg-source.pl:1381
  1644. msgid "nonexistent"
  1645. msgstr "inexistant"
  1646. #: scripts/dpkg-source.pl:646
  1647. msgid "write building message"
  1648. msgstr "écriture du message de construction"
  1649. #: scripts/dpkg-source.pl:647
  1650. #, perl-format
  1651. msgid "create %s"
  1652. msgstr "création de %s"
  1653. #: scripts/dpkg-source.pl:653
  1654. #, perl-format
  1655. msgid "%s: unrepresentable changes to source"
  1656. msgstr "%s : modifications non représentables des sources"
  1657. #: scripts/dpkg-source.pl:655
  1658. #, perl-format
  1659. msgid "write error msg: %s"
  1660. msgstr "écriture du message d'erreur : %s"
  1661. #: scripts/dpkg-source.pl:664
  1662. #, perl-format
  1663. msgid "source handling style -s%s not allowed with -x"
  1664. msgstr "gestion des sources avec -s%s non autorisée avec -x"
  1665. #: scripts/dpkg-source.pl:666
  1666. msgid "-x needs at least one argument, the .dsc"
  1667. msgstr "-x demande au moins un paramètre, le fichier .dsc"
  1668. #: scripts/dpkg-source.pl:667
  1669. msgid "-x takes no more than two arguments"
  1670. msgstr "-x ne prend pas plus de deux paramètres"
  1671. #: scripts/dpkg-source.pl:671
  1672. msgid "-x needs the .dsc file as first argument, not a directory"
  1673. msgstr "-x demande le fichier .dsc comme premier paramètre, pas un répertoire"
  1674. #: scripts/dpkg-source.pl:679
  1675. #, perl-format
  1676. msgid "unpack target exists: %s"
  1677. msgstr "cible non compressée existe : %s"
  1678. #: scripts/dpkg-source.pl:703
  1679. #, perl-format
  1680. msgid "failed to verify signature on %s"
  1681. msgstr "impossible de vérifier la signature sur %s"
  1682. #: scripts/dpkg-source.pl:707
  1683. #, perl-format
  1684. msgid "could not verify signature on %s since gpg isn't installed"
  1685. msgstr "impossible de vérifier la signature sur %s, gpg n'est pas installé"
  1686. #: scripts/dpkg-source.pl:710
  1687. #, perl-format
  1688. msgid "extracting unsigned source package (%s)"
  1689. msgstr "extraction d'un paquet source non signé (%s)"
  1690. #: scripts/dpkg-source.pl:719
  1691. #, perl-format
  1692. msgid "missing critical source control field %s"
  1693. msgstr "un champ de contrôle vital manque, %s"
  1694. #: scripts/dpkg-source.pl:725
  1695. #, perl-format
  1696. msgid "Unsupported format of .dsc file (%s)"
  1697. msgstr "Format du fichier .dsc non reconnu, (%s)"
  1698. #: scripts/dpkg-source.pl:757
  1699. #, perl-format
  1700. msgid "Files field contains invalid filename `%s'"
  1701. msgstr "Le champ Files contient un nom invalide, %s"
  1702. #: scripts/dpkg-source.pl:762
  1703. #, perl-format
  1704. msgid "repeated file type - files `%s' and `%s'"
  1705. msgstr "type de fichier répété : fichiers %s et %s"
  1706. #: scripts/dpkg-source.pl:775
  1707. #, perl-format
  1708. msgid "unrecognised file type - `%s'"
  1709. msgstr "format de fichier non reconnu, %s"
  1710. #: scripts/dpkg-source.pl:779
  1711. msgid "no tarfile in Files field"
  1712. msgstr "pas de fichier tar dans le champ Files"
  1713. #: scripts/dpkg-source.pl:782
  1714. msgid "multiple tarfiles in native package"
  1715. msgstr "plusieurs fichiers tar dans un paquet natif"
  1716. #: scripts/dpkg-source.pl:783
  1717. msgid "native package with .orig.tar"
  1718. msgstr "paquet natif avec .orig.tar"
  1719. #: scripts/dpkg-source.pl:786
  1720. msgid "no upstream tarfile in Files field"
  1721. msgstr "pas de tar amont dans le champ Files"
  1722. #: scripts/dpkg-source.pl:788
  1723. #, perl-format
  1724. msgid "multiple upstream tarballs in %s format dsc"
  1725. msgstr "plusieurs fichiers tar amont dans le dsc format %s"
  1726. #: scripts/dpkg-source.pl:789
  1727. #, perl-format
  1728. msgid "debian.tar in %s format dsc"
  1729. msgstr "debian.tar dans le dsc format %s"
  1730. #: scripts/dpkg-source.pl:798
  1731. #, perl-format
  1732. msgid "%s: extracting %s in %s"
  1733. msgstr "%s : extraction de %s dans %s"
  1734. #: scripts/dpkg-source.pl:800
  1735. msgid "write extracting message"
  1736. msgstr "écriture du message d'extraction"
  1737. #: scripts/dpkg-source.pl:825
  1738. #, perl-format
  1739. msgid "%s: unpacking %s"
  1740. msgstr "%s : extraction de %s"
  1741. #: scripts/dpkg-source.pl:838
  1742. #, perl-format
  1743. msgid "failed to stat `%s' to see if need to copy"
  1744. msgstr "stat de %s, impossible de savoir si copie nécessaire"
  1745. #: scripts/dpkg-source.pl:849
  1746. #, perl-format
  1747. msgid "failed to check destination `%s' to see if need to copy"
  1748. msgstr "vérification de %s, impossible de savoir si copie nécessaire"
  1749. #: scripts/dpkg-source.pl:862
  1750. msgid "unable to keep orig directory (already exists)"
  1751. msgstr "impossible de garder répertoire orig, il existe déjà"
  1752. #: scripts/dpkg-source.pl:896 scripts/dpkg-source.pl:952
  1753. #, perl-format
  1754. msgid "cannot stat %s"
  1755. msgstr "stat de %s impossible"
  1756. #: scripts/dpkg-source.pl:898
  1757. #, perl-format
  1758. msgid "failed to create %s subdirectory"
  1759. msgstr "impossible de créer le sous-répertoire %s"
  1760. #: scripts/dpkg-source.pl:901
  1761. #, perl-format
  1762. msgid "diff patches file in directory `%s', but %s isn't a directory !"
  1763. msgstr ""
  1764. "modification de fichier dans le répertoire %s, mais %s n'est pas un "
  1765. "répertoire."
  1766. #: scripts/dpkg-source.pl:910
  1767. #, perl-format
  1768. msgid "failed to rename newly-extracted %s to %s"
  1769. msgstr "impossible de modifier le fichier extrait %s en %s"
  1770. #: scripts/dpkg-source.pl:915
  1771. #, perl-format
  1772. msgid "failed to rename saved %s to %s"
  1773. msgstr "impossible de modifier le fichier sauvegardé %s en %s"
  1774. #: scripts/dpkg-source.pl:919
  1775. #, perl-format
  1776. msgid "%s: applying %s"
  1777. msgstr "%s : mise en place de %s"
  1778. #: scripts/dpkg-source.pl:924 scripts/dpkg-source.pl:1227
  1779. #, perl-format
  1780. msgid "can't open diff `%s'"
  1781. msgstr "impossible d'ouvrir %s"
  1782. #: scripts/dpkg-source.pl:927
  1783. msgid "fork for patch"
  1784. msgstr "fork pour patch"
  1785. #: scripts/dpkg-source.pl:929
  1786. msgid "reopen gzip for patch"
  1787. msgstr "réouverture de gzip pour patch"
  1788. #: scripts/dpkg-source.pl:930
  1789. #, perl-format
  1790. msgid "chdir to %s for patch"
  1791. msgstr "chdir vers %s pour patch"
  1792. #: scripts/dpkg-source.pl:934
  1793. msgid "exec patch"
  1794. msgstr "exec patch"
  1795. #: scripts/dpkg-source.pl:937
  1796. msgid "wait for patch"
  1797. msgstr "attente patch"
  1798. #: scripts/dpkg-source.pl:946
  1799. #, perl-format
  1800. msgid "cannot change timestamp for %s"
  1801. msgstr "impossible de modifier la date de %s"
  1802. #: scripts/dpkg-source.pl:948
  1803. #, perl-format
  1804. msgid "remove patch backup file %s"
  1805. msgstr "suppression du fichier de sauvegarde %s"
  1806. #: scripts/dpkg-source.pl:953
  1807. #, perl-format
  1808. msgid "%s does not exist"
  1809. msgstr "%s n'existe pas"
  1810. #: scripts/dpkg-source.pl:956
  1811. #, perl-format
  1812. msgid "cannot make %s executable"
  1813. msgstr "impossible de rendre %s exécutable"
  1814. #: scripts/dpkg-source.pl:958
  1815. #, perl-format
  1816. msgid "%s is not a plain file"
  1817. msgstr "%s n'est pas un fichier normal"
  1818. #: scripts/dpkg-source.pl:962
  1819. msgid "cannot stat `.'"
  1820. msgstr "stat de « . » impossible"
  1821. #: scripts/dpkg-source.pl:969
  1822. #, perl-format
  1823. msgid "cannot stat extracted object `%s'"
  1824. msgstr "stat de l'objet extrait %s impossible"
  1825. #: scripts/dpkg-source.pl:980
  1826. #, perl-format
  1827. msgid "unknown object `%s' after extract (mode 0%o)"
  1828. msgstr "objet %s inconnu, après extraction (mode 0%o)"
  1829. #: scripts/dpkg-source.pl:984
  1830. #, perl-format
  1831. msgid "cannot change mode of `%s' to 0%o from 0%o"
  1832. msgstr "impossible de changer le mode de %s en 0%o, de 0%o"
  1833. #: scripts/dpkg-source.pl:995
  1834. #, perl-format
  1835. msgid "cannot read %s"
  1836. msgstr "impossible de lire %s"
  1837. #: scripts/dpkg-source.pl:996
  1838. #, perl-format
  1839. msgid "cannot fstat %s"
  1840. msgstr "fstat de %s impossible"
  1841. #: scripts/dpkg-source.pl:997
  1842. #, perl-format
  1843. msgid "file %s has size %s instead of expected %s"
  1844. msgstr "la taille du fichier %s est %s au lieu de %s"
  1845. #: scripts/dpkg-source.pl:1000
  1846. #, perl-format
  1847. msgid "file %s has md5sum %s instead of expected %s"
  1848. msgstr "md5sum du fichier %s est %s au lieu de %s"
  1849. #: scripts/dpkg-source.pl:1001
  1850. msgid "reopen stdin from /dev/null"
  1851. msgstr "réouverture de stdin depuis /dev/null"
  1852. #: scripts/dpkg-source.pl:1008
  1853. #, perl-format
  1854. msgid "cannot stat directory %s (before removal)"
  1855. msgstr "stat du répertoire %s impossible (avant suppression)"
  1856. #: scripts/dpkg-source.pl:1014
  1857. #, perl-format
  1858. msgid "unable to check for removal of dir `%s'"
  1859. msgstr "impossible de vérifier la suppression du répertoire %s"
  1860. #: scripts/dpkg-source.pl:1016
  1861. #, perl-format
  1862. msgid "rm -rf failed to remove `%s'"
  1863. msgstr "rm -rf n'a pas supprimé %s"
  1864. #: scripts/dpkg-source.pl:1028
  1865. msgid "fork for cpio"
  1866. msgstr "fork pour cpio"
  1867. #: scripts/dpkg-source.pl:1032
  1868. msgid "reopen gzip for cpio"
  1869. msgstr "réouverture de gzip pour cpio"
  1870. #: scripts/dpkg-source.pl:1034
  1871. msgid "exec cpio"
  1872. msgstr "exec cpio"
  1873. #: scripts/dpkg-source.pl:1048
  1874. #, perl-format
  1875. msgid "tarfile `%s' contains object with newline in its name (%s)"
  1876. msgstr ""
  1877. "le fichier tar %s contient un objet avec un caractère nouvelle ligne dans son "
  1878. "nom (%s)"
  1879. #: scripts/dpkg-source.pl:1056
  1880. #, perl-format
  1881. msgid ""
  1882. "first output from cpio -0t (from `%s') contains newline - you probably have "
  1883. "an out of date version of cpio. GNU cpio 2.4.2-2 is known to work"
  1884. msgstr ""
  1885. "la première sortie de cpio -0t (de %s) contient un caractère nouvelle ligne. "
  1886. "Votre version de cpio est sans doute ancienne. Cela fonctionne avec GNU cpio "
  1887. "2.4.2-2."
  1888. #: scripts/dpkg-source.pl:1064
  1889. #, perl-format
  1890. msgid ""
  1891. "tarfile `%s' does not extract into a directory off the current directory (%s "
  1892. "from %s)"
  1893. msgstr ""
  1894. "le fichier tar %s ne s'extrait pas dans un répertoire hors du répertoire "
  1895. "courant (%s, de %s)"
  1896. #: scripts/dpkg-source.pl:1073
  1897. #, perl-format
  1898. msgid "tarfile `%s' contains object (%s) not in expected directory (%s)"
  1899. msgstr ""
  1900. "le fichier tar %s contient un objet (%s) qui n'est pas dans le répertoire "
  1901. "attendu (%s)"
  1902. #: scripts/dpkg-source.pl:1080
  1903. #, perl-format
  1904. msgid "tarfile `%s' contains object with /../ in its name (%s)"
  1905. msgstr "le fichier tar %s contient un objet avec /../ dans son nom (%s)"
  1906. #: scripts/dpkg-source.pl:1108
  1907. msgid "fork for tar -t"
  1908. msgstr "fork pour tar -t"
  1909. #: scripts/dpkg-source.pl:1112
  1910. msgid "reopen gzip for tar -t"
  1911. msgstr "réouverture de gzip pour tar -t"
  1912. #: scripts/dpkg-source.pl:1113
  1913. msgid "exec tar -vvtf -"
  1914. msgstr "exec tar -vvtf -"
  1915. #: scripts/dpkg-source.pl:1123
  1916. #, perl-format
  1917. msgid "tarfile `%s' contains unknown object listed by tar as `%s'"
  1918. msgstr "le fichier tar %s contient un objet inconnu, listé %s"
  1919. #: scripts/dpkg-source.pl:1130
  1920. #, perl-format
  1921. msgid "tarfile `%s' contains object `%s' with unknown or forbidden type `%s'"
  1922. msgstr "le fichier tar %s contient un objet %s de type inconnu ou interdit %s"
  1923. #: scripts/dpkg-source.pl:1140
  1924. #, perl-format
  1925. msgid "tarfile `%s' contains incomplete entry `%s'"
  1926. msgstr "le fichier tar %s contient une entrée incomplète %s"
  1927. #: scripts/dpkg-source.pl:1163
  1928. #, perl-format
  1929. msgid "filename '%s' was truncated by cpio; unable to check full pathname"
  1930. msgstr ""
  1931. "le nom de fichier « %s » a été tronqué par cpio ; impossible de vérifier le "
  1932. "nom complet."
  1933. #: scripts/dpkg-source.pl:1170
  1934. #, perl-format
  1935. msgid ""
  1936. "tarfile `%s' contains unexpected object listed by tar as `%s'; expected `%s'"
  1937. msgstr "le fichier tar %s contient un objet inattendu, listé %s, %s attendu"
  1938. #: scripts/dpkg-source.pl:1179
  1939. #, perl-format
  1940. msgid "tarfile `%s' contains object with/../ in its name (%s)"
  1941. msgstr "le fichier tar %s contient un objet avec /../ dans son nom (%s)"
  1942. #: scripts/dpkg-source.pl:1184
  1943. #, perl-format
  1944. msgid "tarfile `%s' contains file with name ending in .dpkg-orig"
  1945. msgstr ""
  1946. "le fichier tar %s contient un fichier dont le nom se termine par .dpkg-orig"
  1947. #: scripts/dpkg-source.pl:1188
  1948. #, perl-format
  1949. msgid "tarfile `%s' contains setuid, setgid or sticky object `%s'"
  1950. msgstr "le fichier tar %s contient un objet %s setuid, setgid ou sticky"
  1951. #: scripts/dpkg-source.pl:1193
  1952. #, perl-format
  1953. msgid "tarfile `%s' contains object `debian' that isn't a directory"
  1954. msgstr ""
  1955. "le fichier tar %s contient un objet « debian » qui n'est pas un répertoire"
  1956. #: scripts/dpkg-source.pl:1202
  1957. #, perl-format
  1958. msgid ""
  1959. "tarfile `%s' contains object `%s' but its containing directory `%s' does not "
  1960. "precede it"
  1961. msgstr ""
  1962. "le fichier tar %s contient un objet %s mais le répertoire %s qui le contient "
  1963. "ne le précède pas"
  1964. #: scripts/dpkg-source.pl:1239 scripts/dpkg-source.pl:1278
  1965. #: scripts/dpkg-source.pl:1287
  1966. #, perl-format
  1967. msgid "diff `%s' is missing trailing newline"
  1968. msgstr "le caractère nouvelle ligne manque dans diff %s"
  1969. #: scripts/dpkg-source.pl:1240
  1970. #, perl-format
  1971. msgid "expected ^--- in line %d of diff `%s'"
  1972. msgstr "dans la ligne %d du diff %s, « ^--- » attendu"
  1973. #: scripts/dpkg-source.pl:1243
  1974. #, perl-format
  1975. msgid "diff `%s' patches file with no subdirectory"
  1976. msgstr "diff %s modifie un fichier sans sous-répertoire"
  1977. #: scripts/dpkg-source.pl:1245
  1978. #, perl-format
  1979. msgid "diff `%s' patches file with name ending .dpkg-orig"
  1980. msgstr "diff %s modifie un fichier dont le nom de termine par .dpkg-orig"
  1981. #: scripts/dpkg-source.pl:1249
  1982. #, perl-format
  1983. msgid "diff `%s' finishes in middle of ---/+++ (line %d)"
  1984. msgstr "diff %s se termine au milieu de ---/+++ (ligne %d)"
  1985. #: scripts/dpkg-source.pl:1253 scripts/dpkg-source.pl:1259
  1986. #, perl-format
  1987. msgid "line after --- isn't as expected in diff `%s' (line %d)"
  1988. msgstr "ligne après --- n'est pas comme attendu dans diff %s (ligne %d)"
  1989. #: scripts/dpkg-source.pl:1267
  1990. #, perl-format
  1991. msgid "diff `%s' patches something which is not a plain file"
  1992. msgstr "diff %s modifie un objet qui n'est pas un fichier normal"
  1993. #: scripts/dpkg-source.pl:1271
  1994. #, perl-format
  1995. msgid "diff patches file %s twice"
  1996. msgstr "diff modifie deux fois le fichier %s"
  1997. #: scripts/dpkg-source.pl:1281
  1998. #, perl-format
  1999. msgid "Expected ^@@ in line %d of diff `%s'"
  2000. msgstr "^@@ attendu ligne %d du diff %s"
  2001. #: scripts/dpkg-source.pl:1286
  2002. #, perl-format
  2003. msgid "unexpected end of diff `%s'"
  2004. msgstr "fin inattendue de diff %s"
  2005. #: scripts/dpkg-source.pl:1292
  2006. #, perl-format
  2007. msgid "expected [ +-] at start of line %d of diff `%s'"
  2008. msgstr "[ +-] attendu au début de la ligne %d du diff %s"
  2009. #: scripts/dpkg-source.pl:1295
  2010. #, perl-format
  2011. msgid "expected ^@@ at line %d of diff `%s'"
  2012. msgstr "^@@ attendu ligne %d du diff %s"
  2013. #: scripts/dpkg-source.pl:1306
  2014. msgid "fork for tar -xkf -"
  2015. msgstr "fork pour tar -xkf -"
  2016. #: scripts/dpkg-source.pl:1308
  2017. msgid "reopen gzip for tar -xkf -"
  2018. msgstr "réouverture de gzip pour tar -xkf -"
  2019. #: scripts/dpkg-source.pl:1310
  2020. #, perl-format
  2021. msgid "cannot chdir to `%s' for tar extract"
  2022. msgstr "impossible de changer de répertoire, vers %s, pour tar extract"
  2023. #: scripts/dpkg-source.pl:1312
  2024. msgid "exec tar -xkf -"
  2025. msgstr "exec tar -xkf -"
  2026. #: scripts/dpkg-source.pl:1315
  2027. msgid "wait for tar -xkf -"
  2028. msgstr "attente tar -xkf -"
  2029. #: scripts/dpkg-source.pl:1347
  2030. #, perl-format
  2031. msgid "Unable to open dir %s"
  2032. msgstr "impossible d'ouvrir le répertoire %s"
  2033. #: scripts/dpkg-source.pl:1349
  2034. #, perl-format
  2035. msgid "Unable to close dir %s"
  2036. msgstr "impossible de fermer le répertoire %s"
  2037. #: scripts/dpkg-source.pl:1352 scripts/dpkg-source.pl:1361
  2038. #: scripts/dpkg-source.pl:1366
  2039. #, perl-format
  2040. msgid "Unable to rename %s to %s"
  2041. msgstr "impossible de modifier %s en %s"
  2042. #: scripts/dpkg-source.pl:1357
  2043. #, perl-format
  2044. msgid "Unable to mkdir %s"
  2045. msgstr "mkdir %s impossible"
  2046. #: scripts/dpkg-source.pl:1374
  2047. msgid "reopen stderr for tar to grep out blocks message"
  2048. msgstr "réouverture de stderr pour tar pour filtrer les messages blocks"
  2049. #: scripts/dpkg-source.pl:1384
  2050. #, perl-format
  2051. msgid "checktype %s (%s)"
  2052. msgstr "checktype %s (%s)"
  2053. #: scripts/dpkg-source.pl:1392
  2054. msgid "only one of -x or -b allowed, and only once"
  2055. msgstr "une seule option -x ou -b autorisée, et une seule fois"
  2056. #: scripts/dpkg-source.pl:1397
  2057. #, perl-format
  2058. msgid "%s: cannot represent change to %s: %s"
  2059. msgstr "%s : impossible de représenter les changements de %s : %s"
  2060. #: scripts/dpkg-source.pl:1399 scripts/dpkg-source.pl:1408
  2061. msgid "write syserr unrep"
  2062. msgstr "write syserr unrep"
  2063. #: scripts/dpkg-source.pl:1404
  2064. #, perl-format
  2065. msgid ""
  2066. "%s: cannot represent change to %s:\n"
  2067. "%s: new version is %s\n"
  2068. "%s: old version is %s\n"
  2069. msgstr ""
  2070. "%s : impossible de représenter les changements de %s :\n"
  2071. "%s : la nouvelle version est %s\n"
  2072. "%s : l'ancienne version est %s\n"
  2073. #: scripts/dpkg-source.pl:1417
  2074. #, perl-format
  2075. msgid "create file %s"
  2076. msgstr "création du fichier %s"
  2077. #: scripts/dpkg-source.pl:1418
  2078. msgid "pipe for gzip"
  2079. msgstr "pipe pour gzip"
  2080. #: scripts/dpkg-source.pl:1419
  2081. msgid "fork for gzip"
  2082. msgstr "fork pour gzip"
  2083. #: scripts/dpkg-source.pl:1421
  2084. msgid "reopen gzip pipe"
  2085. msgstr "réouverture de pipe gzip"
  2086. #: scripts/dpkg-source.pl:1422
  2087. msgid "reopen tar.gz"
  2088. msgstr "réouverture tar.gz"
  2089. #: scripts/dpkg-source.pl:1423
  2090. msgid "exec gzip"
  2091. msgstr "exec gzip"
  2092. #: scripts/dpkg-source.pl:1440
  2093. #, perl-format
  2094. msgid "unknown compression type on file %s"
  2095. msgstr "type de compression inconnu pour le fichier %s"
  2096. #: scripts/dpkg-source.pl:1443
  2097. #, perl-format
  2098. msgid "read file %s"
  2099. msgstr "lecture du fichier %s"
  2100. #: scripts/dpkg-source.pl:1444
  2101. #, perl-format
  2102. msgid "pipe for %s"
  2103. msgstr "pipe pour %s"
  2104. #: scripts/dpkg-source.pl:1445
  2105. #, perl-format
  2106. msgid "fork for %s"
  2107. msgstr "fork for %s"
  2108. #: scripts/dpkg-source.pl:1447
  2109. #, perl-format
  2110. msgid "reopen %s pipe"
  2111. msgstr "reopen %s pipe"
  2112. #: scripts/dpkg-source.pl:1448
  2113. msgid "reopen input file"
  2114. msgstr "réouverture du fichier d'entrée"
  2115. #: scripts/dpkg-source.pl:1449
  2116. #, perl-format
  2117. msgid "exec %s"
  2118. msgstr "exec %s"
  2119. #: scripts/dpkg-source.pl:1456
  2120. msgid "wait for gzip"
  2121. msgstr "attente gzip"
  2122. #: scripts/dpkg-source.pl:1466
  2123. #, perl-format
  2124. msgid "tried to add file `%s' twice"
  2125. msgstr "fichier %s ajouté deux fois"
  2126. #: scripts/dpkg-source.pl:1467
  2127. #, perl-format
  2128. msgid "could not stat output file `%s'"
  2129. msgstr "stat du fichier %s impossible"
  2130. #: scripts/dpkg-source.pl:1488
  2131. #, perl-format
  2132. msgid "bogus character `\\%s' in `%s'"
  2133. msgstr "caractère anormal \\%s dans %s"
  2134. #: scripts/changelog/debian.pl:47
  2135. #, perl-format
  2136. msgid ""
  2137. "Usage: %s [<option>]\n"
  2138. "\n"
  2139. "Options:\n"
  2140. " -l<changelog> use <changelog> as the file name when reporting.\n"
  2141. " -v<versionsince> print changes since <versionsince>.\n"
  2142. " -h, --help print this help message.\n"
  2143. " --version print program version.\n"
  2144. msgstr ""
  2145. "Usage: %s [<option>]\n"
  2146. "\n"
  2147. "Options :\n"
  2148. " -l<changelog> utiliser <changelog> comme fichier.\n"
  2149. " -v<versiondepuis> afficher les changements depuis <versiondepuis>.\n"
  2150. " -h, --help afficher ce message d'aide.\n"
  2151. " --version afficher la version du programme.\n"
  2152. #: scripts/changelog/debian.pl:87
  2153. msgid "-v<since> option specifies most recent version"
  2154. msgstr "l'option -v<versiondepuis> indique la version la plus récente"
  2155. #: scripts/changelog/debian.pl:94
  2156. #, perl-format
  2157. msgid "found start of entry where expected %s"
  2158. msgstr "début d'une entrée trouvé, %s attendu"
  2159. #: scripts/changelog/debian.pl:101
  2160. #, perl-format
  2161. msgid "bad key-value after `;': `%s'"
  2162. msgstr "mauvaise clé-valeur après « ; » : %s"
  2163. #: scripts/changelog/debian.pl:104
  2164. #, perl-format
  2165. msgid "repeated key-value %s"
  2166. msgstr "clé-valeur répété %s"
  2167. #: scripts/changelog/debian.pl:107
  2168. msgid "badly formatted urgency value"
  2169. msgstr "valeur urgency mal formée"
  2170. #: scripts/changelog/debian.pl:117
  2171. #, perl-format
  2172. msgid "unknown urgency value %s - comparing very low"
  2173. msgstr "valeur urgency %s inconnue ; comparaison très basse"
  2174. #: scripts/changelog/debian.pl:120
  2175. #, perl-format
  2176. msgid "urgency >%s<"
  2177. msgstr "urgency >%s<"
  2178. #: scripts/changelog/debian.pl:138
  2179. #, perl-format
  2180. msgid "unknown key-value key %s - copying to %s"
  2181. msgstr "clé clé-valeur inconnue %s, copie dans %s"
  2182. #: scripts/changelog/debian.pl:145
  2183. msgid "badly formatted heading line"
  2184. msgstr "ligne d'en-tête mal formée"
  2185. #: scripts/changelog/debian.pl:148
  2186. #, perl-format
  2187. msgid "found trailer where expected %s"
  2188. msgstr "ligne de fin trouvée, attendu %s"
  2189. #: scripts/changelog/debian.pl:155
  2190. msgid "badly formatted trailer line"
  2191. msgstr "ligne de fin mal formée"
  2192. #: scripts/changelog/debian.pl:158
  2193. #, perl-format
  2194. msgid "found change data where expected %s"
  2195. msgstr "changements trouvés, %s attendu"
  2196. #: scripts/changelog/debian.pl:164
  2197. #, perl-format
  2198. msgid "found blank line where expected %s"
  2199. msgstr "ligne blanche trouvée, attendu %s"
  2200. #: scripts/changelog/debian.pl:167
  2201. msgid "unrecognised line"
  2202. msgstr "ligne non reconnue"
  2203. #: scripts/changelog/debian.pl:171
  2204. #, perl-format
  2205. msgid "found eof where expected %s"
  2206. msgstr "fin de fichier trouvée, %s attendu"
  2207. #: scripts/changelog/debian.pl:188 scripts/changelog/debian.pl:193
  2208. #, perl-format
  2209. msgid "%s, at file %s line %d"
  2210. msgstr "%s, fichier %s ligne %d"
  2211. #~ msgid "%s: %s"
  2212. #~ msgstr "%s : %s"
  2213. #~ msgid "unknown option or argument `%s'"
  2214. #~ msgstr "option ou argument inconnu %s"