fr.po 103 KB

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