fr.po 94 KB

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