fr.po 101 KB

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