fr.po 101 KB

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