dpkg-dev.pot 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Dpkg Developers
  3. # This file is distributed under the same license as the dpkg package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: dpkg 1.18.5\n"
  10. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  11. "POT-Creation-Date: 2016-05-02 04:18+0200\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: \n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=CHARSET\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  20. #: scripts/dpkg-architecture.pl scripts/dpkg-buildflags.pl
  21. #: scripts/dpkg-buildpackage.pl scripts/dpkg-checkbuilddeps.pl
  22. #: scripts/dpkg-distaddfile.pl scripts/dpkg-genchanges.pl
  23. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  24. #: scripts/dpkg-mergechangelogs.pl scripts/dpkg-name.pl
  25. #: scripts/dpkg-parsechangelog.pl scripts/dpkg-scanpackages.pl
  26. #: scripts/dpkg-scansources.pl scripts/dpkg-shlibdeps.pl scripts/dpkg-source.pl
  27. #: scripts/dpkg-vendor.pl scripts/changelog/debian.pl
  28. #, perl-format
  29. msgid "Debian %s version %s.\n"
  30. msgstr ""
  31. #: scripts/dpkg-architecture.pl scripts/dpkg-buildflags.pl
  32. #: scripts/dpkg-buildpackage.pl scripts/dpkg-distaddfile.pl
  33. #: scripts/dpkg-genchanges.pl scripts/dpkg-gencontrol.pl
  34. #: scripts/dpkg-gensymbols.pl scripts/dpkg-parsechangelog.pl
  35. #: scripts/dpkg-shlibdeps.pl scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  36. #: scripts/changelog/debian.pl
  37. msgid ""
  38. "\n"
  39. "This is free software; see the GNU General Public License version 2 or\n"
  40. "later for copying conditions. There is NO warranty.\n"
  41. msgstr ""
  42. #: scripts/dpkg-architecture.pl scripts/dpkg-vendor.pl
  43. #, perl-format
  44. msgid "Usage: %s [<option>...] [<command>]"
  45. msgstr ""
  46. #: scripts/dpkg-architecture.pl
  47. msgid ""
  48. "Commands:\n"
  49. " -l, --list list variables (default).\n"
  50. " -L, --list-known list valid architectures (matching some "
  51. "criteria).\n"
  52. " -e, --equal <arch> compare with host Debian architecture.\n"
  53. " -i, --is <arch-wildcard> match against host Debian architecture.\n"
  54. " -q, --query <variable> prints only the value of <variable>.\n"
  55. " -s, --print-set print command to set environment variables.\n"
  56. " -u, --print-unset print command to unset environment variables.\n"
  57. " -c, --command <command> set environment and run the command in it.\n"
  58. " -?, --help show this help message.\n"
  59. " --version show the version."
  60. msgstr ""
  61. #: scripts/dpkg-architecture.pl
  62. msgid ""
  63. "Options:\n"
  64. " -a, --host-arch <arch> set host Debian architecture.\n"
  65. " -t, --host-type <type> set host GNU system type.\n"
  66. " -A, --target-arch <arch> set target Debian architecture.\n"
  67. " -T, --target-type <type> set target GNU system type.\n"
  68. " -W, --match-wildcard <arch-wildcard>\n"
  69. " restrict architecture list matching <arch-"
  70. "wildcard>.\n"
  71. " -B, --match-bits <arch-bits>\n"
  72. " restrict architecture list matching <arch-"
  73. "bits>.\n"
  74. " -E, --match-endian <arch-endian>\n"
  75. " restrict architecture list matching <arch-"
  76. "endian>.\n"
  77. " -f, --force force flag (override variables set in "
  78. "environment)."
  79. msgstr ""
  80. #: scripts/dpkg-architecture.pl
  81. #, perl-format
  82. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  83. msgstr ""
  84. #: scripts/dpkg-architecture.pl
  85. #, perl-format
  86. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  87. msgstr ""
  88. #: scripts/dpkg-architecture.pl
  89. #, perl-format
  90. msgid "unknown default GNU system type for Debian architecture %s"
  91. msgstr ""
  92. #: scripts/dpkg-architecture.pl
  93. #, perl-format
  94. msgid ""
  95. "default GNU system type %s for Debian arch %s does not match specified GNU "
  96. "system type %s"
  97. msgstr ""
  98. #: scripts/dpkg-architecture.pl
  99. #, perl-format
  100. msgid "%s is not a supported variable name"
  101. msgstr ""
  102. #: scripts/dpkg-architecture.pl scripts/dpkg-buildflags.pl
  103. #: scripts/dpkg-distaddfile.pl scripts/dpkg-genchanges.pl
  104. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl scripts/dpkg-name.pl
  105. #: scripts/dpkg-parsechangelog.pl scripts/dpkg-shlibdeps.pl
  106. #: scripts/dpkg-vendor.pl
  107. #, perl-format
  108. msgid "unknown option '%s'"
  109. msgstr ""
  110. #: scripts/dpkg-architecture.pl
  111. #, perl-format
  112. msgid ""
  113. "specified GNU system type %s does not match CC system type %s, try setting a "
  114. "correct CC environment variable"
  115. msgstr ""
  116. #: scripts/dpkg-buildflags.pl
  117. #, perl-format
  118. msgid "Usage: %s [<command>]"
  119. msgstr ""
  120. #: scripts/dpkg-buildflags.pl
  121. msgid ""
  122. "Commands:\n"
  123. " --get <flag> output the requested flag to stdout.\n"
  124. " --origin <flag> output the origin of the flag to stdout:\n"
  125. " value is one of vendor, system, user, env.\n"
  126. " --query-features <area>\n"
  127. " output the status of features for the given area.\n"
  128. " --list output a list of the flags supported by the current "
  129. "vendor.\n"
  130. " --export=(sh|make|cmdline|configure)\n"
  131. " output something convenient to import the compilation\n"
  132. " flags in a shell script, in make, or in a command "
  133. "line.\n"
  134. " --dump output all compilation flags with their values\n"
  135. " --status print a synopsis with all parameters affecting the\n"
  136. " behaviour of dpkg-buildflags and the resulting flags\n"
  137. " and their origin.\n"
  138. " --help show this help message.\n"
  139. " --version show the version.\n"
  140. msgstr ""
  141. #: scripts/dpkg-buildflags.pl scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  142. #, perl-format
  143. msgid "two commands specified: --%s and --%s"
  144. msgstr ""
  145. #: scripts/dpkg-buildflags.pl scripts/dpkg-vendor.pl
  146. #, perl-format
  147. msgid "%s needs a parameter"
  148. msgstr ""
  149. #: scripts/dpkg-buildpackage.pl scripts/dpkg-genchanges.pl
  150. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  151. #: scripts/dpkg-parsechangelog.pl
  152. #, perl-format
  153. msgid "Usage: %s [<option>...]"
  154. msgstr ""
  155. #: scripts/dpkg-buildpackage.pl
  156. msgid ""
  157. "Options:\n"
  158. " --build=<type>[,...]\n"
  159. " specify the build <type>: full, source, binary, any, all\n"
  160. " (default is 'full').\n"
  161. " -F normal full build (binaries and sources, default).\n"
  162. " -g source and arch-indep build.\n"
  163. " -G source and arch-specific build.\n"
  164. " -b binary-only, no source files.\n"
  165. " -B binary-only, only arch-specific files.\n"
  166. " -A binary-only, only arch-indep files.\n"
  167. " -S source-only, no binary files.\n"
  168. " -nc do not clean source tree (implies -b).\n"
  169. " -tc clean source tree when finished.\n"
  170. " -D check build dependencies and conflicts (default).\n"
  171. " -d do not check build dependencies and conflicts.\n"
  172. " -P<profiles> assume given build profiles as active (comma-separated "
  173. "list).\n"
  174. " -R<rules> rules file to execute (default is debian/rules).\n"
  175. " -T<target> call debian/rules <target> with the proper environment.\n"
  176. " --as-root ensure -T calls the target with root rights.\n"
  177. " -j[<number>] jobs to run simultaneously (passed to <rules>), forced "
  178. "mode.\n"
  179. " -J[<number>] jobs to run simultaneously (passed to <rules>), opt-in "
  180. "mode.\n"
  181. " -r<gain-root-command>\n"
  182. " command to gain root privileges (default is fakeroot).\n"
  183. " --check-command=<check-command>\n"
  184. " command to check the .changes file (no default).\n"
  185. " --check-option=<opt>\n"
  186. " pass <opt> to <check-command>.\n"
  187. " --hook-<hook-name>=<hook-command>\n"
  188. " set <hook-command> as the hook <hook-name>, known hooks:\n"
  189. " init preclean source build binary changes postclean\n"
  190. " check sign done\n"
  191. " -p<sign-command>\n"
  192. " command to sign .dsc and/or .changes files\n"
  193. " (default is gpg2 or gpg).\n"
  194. " -k<keyid> the key to use for signing.\n"
  195. " -ap add pause before starting signature process.\n"
  196. " -us unsigned source package.\n"
  197. " -uc unsigned .changes file.\n"
  198. " --force-sign\n"
  199. " force signing the resulting files.\n"
  200. " --admindir=<directory>\n"
  201. " change the administrative directory.\n"
  202. " -?, --help show this help message.\n"
  203. " --version show the version."
  204. msgstr ""
  205. #: scripts/dpkg-buildpackage.pl
  206. msgid ""
  207. "Options passed to dpkg-architecture:\n"
  208. " -a, --host-arch <arch> set the host Debian architecture.\n"
  209. " -t, --host-type <type> set the host GNU system type.\n"
  210. " --target-arch <arch> set the target Debian architecture.\n"
  211. " --target-type <type> set the target GNU system type."
  212. msgstr ""
  213. #: scripts/dpkg-buildpackage.pl
  214. msgid ""
  215. "Options passed to dpkg-genchanges:\n"
  216. " -si source includes orig, if new upstream (default).\n"
  217. " -sa source includes orig, always.\n"
  218. " -sd source is diff and .dsc only.\n"
  219. " -v<version> changes since version <version>.\n"
  220. " -m<maint> maintainer for package is <maint>.\n"
  221. " -e<maint> maintainer for release is <maint>.\n"
  222. " -C<descfile> changes are described in <descfile>.\n"
  223. " --changes-option=<opt>\n"
  224. " pass option <opt> to dpkg-genchanges."
  225. msgstr ""
  226. #: scripts/dpkg-buildpackage.pl
  227. msgid ""
  228. "Options passed to dpkg-source:\n"
  229. " -sn force Debian native source format.\n"
  230. " -s[sAkurKUR] see dpkg-source for explanation.\n"
  231. " -z<level> compression level to use for source.\n"
  232. " -Z<compressor> compression to use for source (gz|xz|bzip2|lzma).\n"
  233. " -i[<regex>] ignore diffs of files matching regex.\n"
  234. " -I[<pattern>] filter out files when building tarballs.\n"
  235. " --source-option=<opt>\n"
  236. " pass option <opt> to dpkg-source.\n"
  237. msgstr ""
  238. #: scripts/dpkg-buildpackage.pl
  239. #, perl-format
  240. msgid "unknown hook name %s"
  241. msgstr ""
  242. #: scripts/dpkg-buildpackage.pl
  243. #, perl-format
  244. msgid "missing hook %s command"
  245. msgstr ""
  246. #: scripts/dpkg-buildpackage.pl
  247. #, perl-format
  248. msgid "-s%s is deprecated; always using gpg style interface"
  249. msgstr ""
  250. #: scripts/dpkg-buildpackage.pl scripts/dpkg-source.pl
  251. msgid "-E and -W are deprecated, they are without effect"
  252. msgstr ""
  253. #: scripts/dpkg-buildpackage.pl
  254. #, perl-format
  255. msgid "unknown option or argument %s"
  256. msgstr ""
  257. #: scripts/dpkg-buildpackage.pl
  258. msgid "using a gain-root-command while being root"
  259. msgstr ""
  260. #: scripts/dpkg-buildpackage.pl
  261. msgid ""
  262. "fakeroot not found, either install the fakeroot\n"
  263. "package, specify a command with the -r option, or run this as root"
  264. msgstr ""
  265. #: scripts/dpkg-buildpackage.pl
  266. #, perl-format
  267. msgid "gain-root-commmand '%s' not found"
  268. msgstr ""
  269. #: scripts/dpkg-buildpackage.pl
  270. #, perl-format
  271. msgid "check-commmand '%s' not found"
  272. msgstr ""
  273. #: scripts/dpkg-buildpackage.pl
  274. #, perl-format
  275. msgid "sign-commmand '%s' not found"
  276. msgstr ""
  277. #: scripts/dpkg-buildpackage.pl
  278. msgid "source package"
  279. msgstr ""
  280. #: scripts/dpkg-buildpackage.pl
  281. msgid "source version"
  282. msgstr ""
  283. #: scripts/dpkg-buildpackage.pl
  284. msgid "source distribution"
  285. msgstr ""
  286. #: scripts/dpkg-buildpackage.pl
  287. msgid "source changed by"
  288. msgstr ""
  289. #: scripts/dpkg-buildpackage.pl
  290. msgid "host architecture"
  291. msgstr ""
  292. #: scripts/dpkg-buildpackage.pl
  293. msgid "debian/rules is not executable; fixing that"
  294. msgstr ""
  295. #: scripts/dpkg-buildpackage.pl
  296. msgid "build dependencies/conflicts unsatisfied; aborting"
  297. msgstr ""
  298. #: scripts/dpkg-buildpackage.pl
  299. msgid "(Use -d flag to override.)"
  300. msgstr ""
  301. #: scripts/dpkg-buildpackage.pl
  302. msgid ""
  303. "building a source package without cleaning up as you asked; it might contain "
  304. "undesired files"
  305. msgstr ""
  306. #: scripts/dpkg-buildpackage.pl
  307. #, perl-format
  308. msgid ""
  309. "%s must be updated to support the 'build-arch' and 'build-indep' targets (at "
  310. "least '%s' seems to be missing)"
  311. msgstr ""
  312. #: scripts/dpkg-buildpackage.pl
  313. msgid "parse changes file"
  314. msgstr ""
  315. #: scripts/dpkg-buildpackage.pl
  316. msgid "dpkg-genchanges"
  317. msgstr ""
  318. #: scripts/dpkg-buildpackage.pl
  319. msgid "Press <enter> to start the signing process.\n"
  320. msgstr ""
  321. #: scripts/dpkg-buildpackage.pl
  322. msgid "failed to sign .dsc and .changes file"
  323. msgstr ""
  324. #: scripts/dpkg-buildpackage.pl
  325. msgid "failed to sign .changes file"
  326. msgstr ""
  327. #: scripts/dpkg-buildpackage.pl
  328. msgid "not signing UNRELEASED build; use --force-sign to override"
  329. msgstr ""
  330. #: scripts/dpkg-buildpackage.pl
  331. #, perl-format
  332. msgid "unable to determine %s"
  333. msgstr ""
  334. #: scripts/dpkg-buildpackage.pl
  335. #, perl-format
  336. msgid "unknown %% substitution in hook: %%%s"
  337. msgstr ""
  338. #: scripts/dpkg-buildpackage.pl scripts/dpkg-checkbuilddeps.pl
  339. #: scripts/dpkg-name.pl scripts/Dpkg/Arch.pm scripts/Dpkg/IPC.pm
  340. #: scripts/Dpkg/Shlibs.pm
  341. #, perl-format
  342. msgid "cannot open %s"
  343. msgstr ""
  344. #: scripts/dpkg-buildpackage.pl scripts/dpkg-distaddfile.pl
  345. #: scripts/dpkg-gencontrol.pl scripts/Dpkg/Interface/Storable.pm
  346. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  347. #, perl-format
  348. msgid "cannot close %s"
  349. msgstr ""
  350. #: scripts/dpkg-buildpackage.pl
  351. msgid "source-only upload: Debian-native package"
  352. msgstr ""
  353. #: scripts/dpkg-buildpackage.pl
  354. msgid "source-only, diff-only upload (original source NOT included)"
  355. msgstr ""
  356. #: scripts/dpkg-buildpackage.pl
  357. msgid "source-only upload (original source is included)"
  358. msgstr ""
  359. #: scripts/dpkg-buildpackage.pl
  360. msgid "binary-only upload (no source included)"
  361. msgstr ""
  362. #: scripts/dpkg-buildpackage.pl
  363. msgid "full upload; Debian-native package (full source is included)"
  364. msgstr ""
  365. #: scripts/dpkg-buildpackage.pl
  366. msgid "binary and diff upload (original source NOT included)"
  367. msgstr ""
  368. #: scripts/dpkg-buildpackage.pl
  369. msgid "full upload (original source is included)"
  370. msgstr ""
  371. #: scripts/dpkg-checkbuilddeps.pl
  372. #, perl-format
  373. msgid "Usage: %s [<option>...] [<control-file>]"
  374. msgstr ""
  375. #: scripts/dpkg-checkbuilddeps.pl
  376. msgid ""
  377. "Options:\n"
  378. " -A ignore Build-Depends-Arch and Build-Conflicts-Arch.\n"
  379. " -B ignore Build-Depends-Indep and Build-Conflicts-Indep.\n"
  380. " -I ignore built-in build dependencies and conflicts.\n"
  381. " -d build-deps use given string as build dependencies instead of\n"
  382. " retrieving them from control file\n"
  383. " -c build-conf use given string for build conflicts instead of\n"
  384. " retrieving them from control file\n"
  385. " -a arch assume given host architecture\n"
  386. " -P profiles assume given build profiles (comma-separated list)\n"
  387. " --admindir=<directory>\n"
  388. " change the administrative directory.\n"
  389. " -?, --help show this help message.\n"
  390. " --version show the version."
  391. msgstr ""
  392. #: scripts/dpkg-checkbuilddeps.pl
  393. msgid ""
  394. "<control-file> is the control file to process (default: debian/control)."
  395. msgstr ""
  396. #: scripts/dpkg-checkbuilddeps.pl scripts/dpkg-shlibdeps.pl
  397. #: scripts/dpkg-source.pl
  398. #, perl-format
  399. msgid "error occurred while parsing %s"
  400. msgstr ""
  401. #: scripts/dpkg-checkbuilddeps.pl
  402. #, perl-format
  403. msgid "Unmet build dependencies: %s"
  404. msgstr ""
  405. #: scripts/dpkg-checkbuilddeps.pl
  406. #, perl-format
  407. msgid "Build conflicts: %s"
  408. msgstr ""
  409. #: scripts/dpkg-distaddfile.pl
  410. #, perl-format
  411. msgid ""
  412. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  413. "\n"
  414. "Options:\n"
  415. " -f<files-list-file> write files here instead of debian/files.\n"
  416. " -?, --help show this help message.\n"
  417. " --version show the version.\n"
  418. msgstr ""
  419. #: scripts/dpkg-distaddfile.pl
  420. msgid "need exactly a filename, section and priority"
  421. msgstr ""
  422. #: scripts/dpkg-distaddfile.pl
  423. msgid "filename, section and priority may contain no whitespace"
  424. msgstr ""
  425. #: scripts/dpkg-distaddfile.pl scripts/dpkg-gencontrol.pl
  426. #: scripts/dpkg-mergechangelogs.pl scripts/Dpkg/Compression/FileHandle.pm
  427. #: scripts/Dpkg/IPC.pm scripts/Dpkg/Interface/Storable.pm
  428. #: scripts/Dpkg/Source/Functions.pm scripts/Dpkg/Source/Package.pm
  429. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  430. #: scripts/Dpkg/Source/Quilt.pm
  431. #, perl-format
  432. msgid "cannot write %s"
  433. msgstr ""
  434. #: scripts/dpkg-distaddfile.pl scripts/dpkg-gencontrol.pl
  435. msgid "install new files list file"
  436. msgstr ""
  437. #: scripts/dpkg-genchanges.pl
  438. msgid ""
  439. "Options:\n"
  440. " --build=<type>[,...] specify the build <type>: full, source, binary,\n"
  441. " any, all (default is 'full').\n"
  442. " -g source and arch-indep build.\n"
  443. " -G source and arch-specific build.\n"
  444. " -b binary-only, no source files.\n"
  445. " -B binary-only, only arch-specific files.\n"
  446. " -A binary-only, only arch-indep files.\n"
  447. " -S source-only, no binary files.\n"
  448. " -c<control-file> get control info from this file.\n"
  449. " -l<changelog-file> get per-version info from this file.\n"
  450. " -f<files-list-file> get .deb files list from this file.\n"
  451. " -v<since-version> include all changes later than version.\n"
  452. " -C<changes-description> use change description from this file.\n"
  453. " -m<maintainer> override control's maintainer value.\n"
  454. " -e<maintainer> override changelog's maintainer value.\n"
  455. " -u<upload-files-dir> directory with files (default is '..').\n"
  456. " -si source includes orig, if new upstream (default).\n"
  457. " -sa source includes orig, always.\n"
  458. " -sd source is diff and .dsc only.\n"
  459. " -q quiet - no informational messages on stderr.\n"
  460. " -F<changelog-format> force changelog format.\n"
  461. " -V<name>=<value> set a substitution variable.\n"
  462. " -T<substvars-file> read variables here, not debian/substvars.\n"
  463. " -D<field>=<value> override or add a field and value.\n"
  464. " -U<field> remove a field.\n"
  465. " -O[<filename>] write to stdout (default) or <filename>.\n"
  466. " -?, --help show this help message.\n"
  467. " --version show the version.\n"
  468. msgstr ""
  469. #: scripts/dpkg-genchanges.pl
  470. #, perl-format
  471. msgid "the current version (%s) is earlier than the previous one (%s)"
  472. msgstr ""
  473. #: scripts/dpkg-genchanges.pl
  474. msgid "missing Section for source files"
  475. msgstr ""
  476. #: scripts/dpkg-genchanges.pl
  477. msgid "missing Priority for source files"
  478. msgstr ""
  479. #: scripts/dpkg-genchanges.pl scripts/dpkg-source.pl scripts/Dpkg/Vendor.pm
  480. #, perl-format
  481. msgid "%s is empty"
  482. msgstr ""
  483. #: scripts/dpkg-genchanges.pl
  484. msgid "not including original source code in upload"
  485. msgstr ""
  486. #: scripts/dpkg-genchanges.pl
  487. msgid "ignoring -sd option for native Debian package"
  488. msgstr ""
  489. #: scripts/dpkg-genchanges.pl
  490. msgid "including full source code in upload"
  491. msgstr ""
  492. #: scripts/dpkg-genchanges.pl
  493. msgid ""
  494. "binary-only arch-specific upload (source code and arch-indep packages not "
  495. "included)"
  496. msgstr ""
  497. #: scripts/dpkg-genchanges.pl
  498. msgid ""
  499. "binary-only arch-indep upload (source code and arch-specific packages not "
  500. "included)"
  501. msgstr ""
  502. #: scripts/dpkg-genchanges.pl
  503. msgid "binary-only upload (no source code included)"
  504. msgstr ""
  505. #: scripts/dpkg-genchanges.pl
  506. msgid "binary build with no binary artifacts found; cannot distribute"
  507. msgstr ""
  508. #: scripts/dpkg-genchanges.pl
  509. #, perl-format
  510. msgid "package %s in control file but not in files list"
  511. msgstr ""
  512. #: scripts/dpkg-genchanges.pl scripts/dpkg-source.pl scripts/Dpkg/BuildFlags.pm
  513. #: scripts/Dpkg/Compression/FileHandle.pm scripts/Dpkg/Interface/Storable.pm
  514. #: scripts/Dpkg/Shlibs/Objdump.pm scripts/Dpkg/Source/Package/V2.pm
  515. #: scripts/Dpkg/Source/Quilt.pm
  516. #, perl-format
  517. msgid "cannot read %s"
  518. msgstr ""
  519. #: scripts/dpkg-genchanges.pl
  520. #, perl-format
  521. msgid "package %s listed in files list but not in control info"
  522. msgstr ""
  523. #: scripts/dpkg-genchanges.pl
  524. #, perl-format
  525. msgid "missing Section for binary package %s; using '-'"
  526. msgstr ""
  527. #: scripts/dpkg-genchanges.pl
  528. #, perl-format
  529. msgid "package %s has section %s in control file but %s in files list"
  530. msgstr ""
  531. #: scripts/dpkg-genchanges.pl
  532. #, perl-format
  533. msgid "missing Priority for binary package %s; using '-'"
  534. msgstr ""
  535. #: scripts/dpkg-genchanges.pl
  536. #, perl-format
  537. msgid "package %s has priority %s in control file but %s in files list"
  538. msgstr ""
  539. #: scripts/dpkg-genchanges.pl scripts/Dpkg/Source/Package.pm
  540. #, perl-format
  541. msgid "missing information for critical output field %s"
  542. msgstr ""
  543. #: scripts/dpkg-genchanges.pl scripts/dpkg-gencontrol.pl
  544. #: scripts/Dpkg/Source/Package.pm
  545. #, perl-format
  546. msgid "missing information for output field %s"
  547. msgstr ""
  548. #: scripts/dpkg-gencontrol.pl
  549. msgid ""
  550. "Options:\n"
  551. " -p<package> print control file for package.\n"
  552. " -c<control-file> get control info from this file.\n"
  553. " -l<changelog-file> get per-version info from this file.\n"
  554. " -F<changelog-format> force changelog format.\n"
  555. " -v<force-version> set version of binary package.\n"
  556. " -f<files-list-file> write files here instead of debian/files.\n"
  557. " -P<package-build-dir> temporary build directory instead of debian/tmp.\n"
  558. " -n<filename> assume the package filename will be <filename>.\n"
  559. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  560. "control.\n"
  561. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  562. " -D<field>=<value> override or add a field and value.\n"
  563. " -U<field> remove a field.\n"
  564. " -V<name>=<value> set a substitution variable.\n"
  565. " -T<substvars-file> read variables here, not debian/substvars.\n"
  566. " -?, --help show this help message.\n"
  567. " --version show the version.\n"
  568. msgstr ""
  569. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  570. #, perl-format
  571. msgid "illegal package name '%s': %s"
  572. msgstr ""
  573. #: scripts/dpkg-gencontrol.pl
  574. #, perl-format
  575. msgid "-i%s is deprecated; it is without effect"
  576. msgstr ""
  577. #: scripts/dpkg-gencontrol.pl
  578. #, perl-format
  579. msgid "package %s not in control info"
  580. msgstr ""
  581. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  582. msgid "no package stanza found in control info"
  583. msgstr ""
  584. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  585. #, perl-format
  586. msgid "must specify package since control info has many (%s)"
  587. msgstr ""
  588. #: scripts/dpkg-gencontrol.pl
  589. #, perl-format
  590. msgid "package %s: "
  591. msgstr ""
  592. #: scripts/dpkg-gencontrol.pl
  593. #, perl-format
  594. msgid ""
  595. "current host architecture '%s' does not appear in package's architecture "
  596. "list (%s)"
  597. msgstr ""
  598. #: scripts/dpkg-gencontrol.pl
  599. #, perl-format
  600. msgid "%s field of package %s: "
  601. msgstr ""
  602. #: scripts/dpkg-gencontrol.pl
  603. #, perl-format
  604. msgid "error occurred while parsing %s field: %s"
  605. msgstr ""
  606. #: scripts/dpkg-gencontrol.pl
  607. #, perl-format
  608. msgid ""
  609. "the %s field contains an arch-specific dependency but the package is "
  610. "architecture all"
  611. msgstr ""
  612. #: scripts/dpkg-gencontrol.pl
  613. #, perl-format
  614. msgid "%s package with udeb specific field %s"
  615. msgstr ""
  616. #: scripts/dpkg-gencontrol.pl scripts/Dpkg/Source/Package.pm
  617. #: scripts/Dpkg/Source/Patch.pm
  618. #, perl-format
  619. msgid "cannot stat %s"
  620. msgstr ""
  621. #: scripts/dpkg-gencontrol.pl
  622. #, perl-format
  623. msgid "cannot open new output control file '%s'"
  624. msgstr ""
  625. #: scripts/dpkg-gencontrol.pl
  626. #, perl-format
  627. msgid "cannot install output control file '%s'"
  628. msgstr ""
  629. #: scripts/dpkg-gensymbols.pl
  630. msgid ""
  631. "Options:\n"
  632. " -p<package> generate symbols file for package.\n"
  633. " -P<package-build-dir> temporary build directory instead of debian/tmp.\n"
  634. " -e<library> explicitly list libraries to scan.\n"
  635. " -v<version> version of the packages (defaults to\n"
  636. " version extracted from debian/changelog).\n"
  637. " -c<level> compare generated symbols file with the "
  638. "reference\n"
  639. " template in the debian directory and fail if\n"
  640. " difference is too important; level goes from 0 "
  641. "for\n"
  642. " no check, to 4 for all checks (default level is "
  643. "1).\n"
  644. " -q keep quiet and never emit any warnings or\n"
  645. " generate a diff between generated symbols\n"
  646. " file and the reference template.\n"
  647. " -I<file> force usage of <file> as reference symbols\n"
  648. " file instead of the default file.\n"
  649. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  650. "symbols.\n"
  651. " -t write in template mode (tags are not\n"
  652. " processed and included in output).\n"
  653. " -V verbose output; write deprecated symbols and "
  654. "pattern\n"
  655. " matching symbols as comments (in template mode "
  656. "only).\n"
  657. " -a<arch> assume <arch> as host architecture when "
  658. "processing\n"
  659. " symbol files.\n"
  660. " -d display debug information during work.\n"
  661. " -?, --help show this help message.\n"
  662. " --version show the version.\n"
  663. msgstr ""
  664. #: scripts/dpkg-gensymbols.pl
  665. #, perl-format
  666. msgid "pattern '%s' did not match any file"
  667. msgstr ""
  668. #: scripts/dpkg-gensymbols.pl
  669. #, perl-format
  670. msgid "can't read directory %s: %s"
  671. msgstr ""
  672. #: scripts/dpkg-gensymbols.pl
  673. #, perl-format
  674. msgid "Dpkg::Shlibs::Objdump couldn't parse %s\n"
  675. msgstr ""
  676. #: scripts/dpkg-gensymbols.pl
  677. msgid "<standard output>"
  678. msgstr ""
  679. #: scripts/dpkg-gensymbols.pl
  680. #, perl-format
  681. msgid "new libraries appeared in the symbols file: %s"
  682. msgstr ""
  683. #: scripts/dpkg-gensymbols.pl
  684. #, perl-format
  685. msgid "some libraries disappeared in the symbols file: %s"
  686. msgstr ""
  687. #: scripts/dpkg-gensymbols.pl
  688. #, perl-format
  689. msgid "some new symbols appeared in the symbols file: %s"
  690. msgstr ""
  691. #: scripts/dpkg-gensymbols.pl
  692. msgid "see diff output below"
  693. msgstr ""
  694. #: scripts/dpkg-gensymbols.pl
  695. #, perl-format
  696. msgid "some symbols or patterns disappeared in the symbols file: %s"
  697. msgstr ""
  698. #: scripts/dpkg-gensymbols.pl
  699. msgid "the generated symbols file is empty"
  700. msgstr ""
  701. #: scripts/dpkg-gensymbols.pl
  702. #, perl-format
  703. msgid "%s doesn't match completely %s"
  704. msgstr ""
  705. #: scripts/dpkg-gensymbols.pl
  706. #, perl-format
  707. msgid "no debian/symbols file used as basis for generating %s"
  708. msgstr ""
  709. #: scripts/dpkg-mergechangelogs.pl
  710. msgid ""
  711. "This is free software; see the GNU General Public License version 2 or\n"
  712. "later for copying conditions. There is NO warranty.\n"
  713. msgstr ""
  714. #: scripts/dpkg-mergechangelogs.pl
  715. #, perl-format
  716. msgid ""
  717. "Usage: %s [<option>...] <old> <new-a> <new-b> [<out>]\n"
  718. "\n"
  719. "Options:\n"
  720. " -m, --merge-prereleases merge pre-releases together, ignores everything\n"
  721. " after the last '~' in the version.\n"
  722. " -?, --help show this help message.\n"
  723. " --version show the version.\n"
  724. msgstr ""
  725. #: scripts/dpkg-mergechangelogs.pl
  726. msgid "needs at least three arguments"
  727. msgstr ""
  728. #: scripts/dpkg-mergechangelogs.pl
  729. msgid "file arguments need to exist"
  730. msgstr ""
  731. #: scripts/dpkg-name.pl
  732. #, perl-format
  733. msgid "Usage: %s [<option>...] <file>...\n"
  734. msgstr ""
  735. #: scripts/dpkg-name.pl
  736. msgid ""
  737. "\n"
  738. "Options:\n"
  739. " -a, --no-architecture no architecture part in filename.\n"
  740. " -o, --overwrite overwrite if file exists.\n"
  741. " -k, --symlink don't create a new file, but a symlink.\n"
  742. " -s, --subdir [dir] move file into subdirectory (use with care).\n"
  743. " -c, --create-dir create target directory if not there (use with "
  744. "care).\n"
  745. " -?, --help show this help message.\n"
  746. " -v, --version show the version.\n"
  747. "\n"
  748. "file.deb changes to <package>_<version>_<architecture>.<package_type>\n"
  749. "according to the 'underscores convention'.\n"
  750. msgstr ""
  751. #: scripts/dpkg-name.pl
  752. #, perl-format
  753. msgid "cannot find '%s'"
  754. msgstr ""
  755. #: scripts/dpkg-name.pl
  756. #, perl-format
  757. msgid "binary control file %s"
  758. msgstr ""
  759. #: scripts/dpkg-name.pl
  760. #, perl-format
  761. msgid "assuming architecture '%s' for '%s'"
  762. msgstr ""
  763. #: scripts/dpkg-name.pl
  764. #, perl-format
  765. msgid "bad package control information for '%s'"
  766. msgstr ""
  767. #: scripts/dpkg-name.pl
  768. #, perl-format
  769. msgid "assuming section '%s' for '%s'"
  770. msgstr ""
  771. #: scripts/dpkg-name.pl
  772. #, perl-format
  773. msgid "no Package field found in '%s', skipping package"
  774. msgstr ""
  775. #: scripts/dpkg-name.pl
  776. #, perl-format
  777. msgid "created directory '%s'"
  778. msgstr ""
  779. #: scripts/dpkg-name.pl
  780. #, perl-format
  781. msgid "cannot create directory '%s'"
  782. msgstr ""
  783. #: scripts/dpkg-name.pl
  784. #, perl-format
  785. msgid "no such directory '%s', try --create-dir (-c) option"
  786. msgstr ""
  787. #: scripts/dpkg-name.pl
  788. #, perl-format
  789. msgid "skipping '%s'"
  790. msgstr ""
  791. #: scripts/dpkg-name.pl
  792. #, perl-format
  793. msgid "cannot move '%s' to existing file"
  794. msgstr ""
  795. #: scripts/dpkg-name.pl
  796. #, perl-format
  797. msgid "moved '%s' to '%s'"
  798. msgstr ""
  799. #: scripts/dpkg-name.pl
  800. msgid "mkdir can be used to create directory"
  801. msgstr ""
  802. #: scripts/dpkg-name.pl
  803. msgid "need at least a filename"
  804. msgstr ""
  805. #: scripts/dpkg-parsechangelog.pl
  806. msgid ""
  807. "Options:\n"
  808. " -l <changelog-file> get per-version info from this file.\n"
  809. " -F <changelog-format> force changelog format.\n"
  810. " -L <libdir> look for changelog parsers in <libdir>.\n"
  811. " -S, --show-field <field> show the values for <field>.\n"
  812. " -?, --help show this help message.\n"
  813. " --version show the version."
  814. msgstr ""
  815. #: scripts/dpkg-parsechangelog.pl
  816. msgid ""
  817. "Parser options:\n"
  818. " --format <output-format>\n"
  819. " set output format (defaults to 'dpkg').\n"
  820. " --all include all changes.\n"
  821. " -s, --since <version> include all changes later than <version>.\n"
  822. " -v <version> ditto.\n"
  823. " -u, --until <version> include all changes earlier than <version>.\n"
  824. " -f, --from <version> include all changes equal or later than "
  825. "<version>.\n"
  826. " -t, --to <version> include all changes up to or equal than "
  827. "<version>.\n"
  828. " -c, --count <number> include <number> entries from the top (or tail\n"
  829. " if <number> is lower than 0).\n"
  830. " -n <number> ditto.\n"
  831. " -o, --offset <number> change starting point for --count, counted from\n"
  832. " the top (or tail if <number> is lower than 0).\n"
  833. msgstr ""
  834. #: scripts/dpkg-parsechangelog.pl
  835. msgid "missing library directory"
  836. msgstr ""
  837. #: scripts/dpkg-parsechangelog.pl
  838. msgid "bad changelog format name"
  839. msgstr ""
  840. #: scripts/dpkg-parsechangelog.pl
  841. msgid "missing changelog filename"
  842. msgstr ""
  843. #: scripts/dpkg-parsechangelog.pl
  844. msgid "takes no non-option arguments"
  845. msgstr ""
  846. #: scripts/dpkg-scanpackages.pl
  847. #, perl-format
  848. msgid ""
  849. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  850. "Packages\n"
  851. "\n"
  852. "Options:\n"
  853. " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  854. " -a, --arch <arch> architecture to scan for.\n"
  855. " -h, --hash <hash-list> only generate hashes for the specified list.\n"
  856. " -m, --multiversion allow multiple versions of a single package.\n"
  857. " -e, --extra-override <file>\n"
  858. " use extra override file.\n"
  859. " -M, --medium <medium> add X-Medium field for dselect multicd access "
  860. "method\n"
  861. " -?, --help show this help message.\n"
  862. " --version show the version.\n"
  863. msgstr ""
  864. #: scripts/dpkg-scanpackages.pl
  865. #, perl-format
  866. msgid " %s (package says %s, not %s)"
  867. msgstr ""
  868. #: scripts/dpkg-scanpackages.pl
  869. #, perl-format
  870. msgid "unconditional maintainer override for %s"
  871. msgstr ""
  872. #: scripts/dpkg-scanpackages.pl scripts/dpkg-shlibdeps.pl
  873. #: scripts/Dpkg/Changelog/Parse.pm scripts/Dpkg/IPC.pm
  874. #: scripts/Dpkg/Shlibs/Objdump.pm
  875. #, perl-format
  876. msgid "cannot fork for %s"
  877. msgstr ""
  878. #: scripts/dpkg-scanpackages.pl
  879. #, perl-format
  880. msgid "couldn't parse control information from %s"
  881. msgstr ""
  882. #: scripts/dpkg-scanpackages.pl
  883. #, perl-format
  884. msgid "'dpkg-deb -I %s control' exited with %d, skipping package"
  885. msgstr ""
  886. #: scripts/dpkg-scanpackages.pl
  887. #, perl-format
  888. msgid "no Package field in control file of %s"
  889. msgstr ""
  890. #: scripts/dpkg-scanpackages.pl
  891. #, perl-format
  892. msgid ""
  893. "package %s (filename %s) is repeat but newer version; used that one and "
  894. "ignored data from %s!"
  895. msgstr ""
  896. #: scripts/dpkg-scanpackages.pl
  897. #, perl-format
  898. msgid ""
  899. "package %s (filename %s) is repeat; ignored that one and using data from %s!"
  900. msgstr ""
  901. #: scripts/dpkg-scanpackages.pl
  902. #, perl-format
  903. msgid "package %s (filename %s) has Filename field!"
  904. msgstr ""
  905. #: scripts/dpkg-scanpackages.pl scripts/dpkg-scansources.pl
  906. msgid "one to three arguments expected"
  907. msgstr ""
  908. #: scripts/dpkg-scanpackages.pl
  909. #, perl-format
  910. msgid "unsupported checksum '%s'"
  911. msgstr ""
  912. #: scripts/dpkg-scanpackages.pl
  913. #, perl-format
  914. msgid "binary directory %s not found"
  915. msgstr ""
  916. #: scripts/dpkg-scanpackages.pl
  917. #, perl-format
  918. msgid "override file %s not found"
  919. msgstr ""
  920. #: scripts/dpkg-scanpackages.pl
  921. msgid "failed when writing stdout"
  922. msgstr ""
  923. #: scripts/dpkg-scanpackages.pl
  924. msgid "couldn't close stdout"
  925. msgstr ""
  926. #: scripts/dpkg-scanpackages.pl
  927. msgid "Packages in override file with incorrect old maintainer value:"
  928. msgstr ""
  929. #: scripts/dpkg-scanpackages.pl
  930. msgid "Packages specifying same maintainer as override file:"
  931. msgstr ""
  932. #: scripts/dpkg-scanpackages.pl
  933. msgid "Packages in archive but missing from override file:"
  934. msgstr ""
  935. #: scripts/dpkg-scanpackages.pl
  936. msgid "Packages in override file but not in archive:"
  937. msgstr ""
  938. #: scripts/dpkg-scanpackages.pl
  939. #, perl-format
  940. msgid "Wrote %s entries to output Packages file."
  941. msgstr ""
  942. #: scripts/dpkg-scansources.pl
  943. #, perl-format
  944. msgid ""
  945. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  946. "Sources\n"
  947. "\n"
  948. "Options:\n"
  949. " -n, --no-sort don't sort by package before outputting.\n"
  950. " -e, --extra-override <file>\n"
  951. " use extra override file.\n"
  952. " -s, --source-override <file>\n"
  953. " use file for additional source overrides, "
  954. "default\n"
  955. " is regular override file with .src appended.\n"
  956. " --debug turn debugging on.\n"
  957. " -?, --help show this help message.\n"
  958. " --version show the version.\n"
  959. "\n"
  960. "See the man page for the full documentation.\n"
  961. msgstr ""
  962. #: scripts/dpkg-scansources.pl
  963. #, perl-format
  964. msgid "invalid override entry at line %d (%d fields)"
  965. msgstr ""
  966. #: scripts/dpkg-scansources.pl
  967. #, perl-format
  968. msgid "ignoring duplicate override entry for %s at line %d"
  969. msgstr ""
  970. #: scripts/dpkg-scansources.pl
  971. #, perl-format
  972. msgid "ignoring override entry for %s, invalid priority %s"
  973. msgstr ""
  974. #: scripts/dpkg-scansources.pl
  975. #, perl-format
  976. msgid "invalid source override entry at line %d (%d fields)"
  977. msgstr ""
  978. #: scripts/dpkg-scansources.pl
  979. #, perl-format
  980. msgid "ignoring duplicate source override entry for %s at line %d"
  981. msgstr ""
  982. #: scripts/dpkg-scansources.pl
  983. #, perl-format
  984. msgid "no binary packages specified in %s"
  985. msgstr ""
  986. #: scripts/dpkg-shlibdeps.pl
  987. #, perl-format
  988. msgid "administrative directory '%s' does not exist"
  989. msgstr ""
  990. #: scripts/dpkg-shlibdeps.pl
  991. #, perl-format
  992. msgid "unrecognized dependency field '%s'"
  993. msgstr ""
  994. #: scripts/dpkg-shlibdeps.pl
  995. msgid "need at least one executable"
  996. msgstr ""
  997. #: scripts/dpkg-shlibdeps.pl
  998. #, perl-format
  999. msgid "couldn't find library %s needed by %s (ELF format: '%s'; RPATH: '%s')"
  1000. msgstr ""
  1001. #: scripts/dpkg-shlibdeps.pl
  1002. #, perl-format
  1003. msgid "%s has an unexpected SONAME (%s)"
  1004. msgstr ""
  1005. #: scripts/dpkg-shlibdeps.pl
  1006. #, perl-format
  1007. msgid ""
  1008. "no dependency information found for %s (used by %s)\n"
  1009. "Hint: check if the library actually comes from a package."
  1010. msgstr ""
  1011. #: scripts/dpkg-shlibdeps.pl
  1012. msgid ""
  1013. "binaries to analyze should already be installed in their package's directory"
  1014. msgstr ""
  1015. #: scripts/dpkg-shlibdeps.pl
  1016. #, perl-format
  1017. msgid "symbol %s used by %s found in none of the libraries"
  1018. msgstr ""
  1019. #: scripts/dpkg-shlibdeps.pl
  1020. #, perl-format
  1021. msgid ""
  1022. "%s contains an unresolvable reference to symbol %s: it's probably a plugin"
  1023. msgstr ""
  1024. #: scripts/dpkg-shlibdeps.pl
  1025. #, perl-format
  1026. msgid "%d similar warning has been skipped (use -v to see it)"
  1027. msgid_plural ""
  1028. "%d other similar warnings have been skipped (use -v to see them all)"
  1029. msgstr[0] ""
  1030. msgstr[1] ""
  1031. #: scripts/dpkg-shlibdeps.pl
  1032. #, perl-format
  1033. msgid ""
  1034. "%s should not be linked against %s (it uses none of the library's symbols)"
  1035. msgstr ""
  1036. #: scripts/dpkg-shlibdeps.pl
  1037. #, perl-format
  1038. msgid ""
  1039. "package could avoid a useless dependency if %s was not linked against %s (it "
  1040. "uses none of the library's symbols)"
  1041. msgid_plural ""
  1042. "package could avoid a useless dependency if %s were not linked against %s "
  1043. "(they use none of the library's symbols)"
  1044. msgstr[0] ""
  1045. msgstr[1] ""
  1046. #: scripts/dpkg-shlibdeps.pl
  1047. msgid ""
  1048. "Note: libraries are not searched in other binary packages that do not have "
  1049. "any shlibs or symbols file.\n"
  1050. "To help dpkg-shlibdeps find private libraries, you might need to use -l."
  1051. msgstr ""
  1052. #: scripts/dpkg-shlibdeps.pl
  1053. msgid "cannot continue due to the error above"
  1054. msgid_plural "cannot continue due to the errors listed above"
  1055. msgstr[0] ""
  1056. msgstr[1] ""
  1057. #: scripts/dpkg-shlibdeps.pl
  1058. #, perl-format
  1059. msgid "invalid dependency got generated: %s"
  1060. msgstr ""
  1061. #: scripts/dpkg-shlibdeps.pl
  1062. #, perl-format
  1063. msgid "install new varlist file '%s'"
  1064. msgstr ""
  1065. #: scripts/dpkg-shlibdeps.pl
  1066. #, perl-format
  1067. msgid "Usage: %s [<option>...] <executable>|-e<executable> [<option>...]"
  1068. msgstr ""
  1069. #: scripts/dpkg-shlibdeps.pl
  1070. msgid ""
  1071. "Positional options (order is significant):\n"
  1072. " <executable> include dependencies for <executable>,\n"
  1073. " -e<executable> (use -e if <executable> starts with '-')\n"
  1074. " -d<dependency-field> next executable(s) set shlibs:<dependency-field>."
  1075. msgstr ""
  1076. #: scripts/dpkg-shlibdeps.pl
  1077. msgid ""
  1078. "Options:\n"
  1079. " -l<library-dir> add directory to private shared library search "
  1080. "list.\n"
  1081. " -p<varname-prefix> set <varname-prefix>:* instead of shlibs:*.\n"
  1082. " -O[<file>] write variable settings to stdout (or <file>).\n"
  1083. " -L<local-shlibs-file> shlibs override file, not debian/shlibs.local.\n"
  1084. " -T<substvars-file> update variables here, not debian/substvars.\n"
  1085. " -t<type> set package type (default is deb).\n"
  1086. " -x<package> exclude package from the generated dependencies.\n"
  1087. " -S<package-build-dir> search needed libraries in the given\n"
  1088. " package build directory first.\n"
  1089. " -I<package-build-dir> ignore needed libraries, shlibs and symbols "
  1090. "files\n"
  1091. " in the given build directory.\n"
  1092. " -v enable verbose mode (can be used multiple "
  1093. "times).\n"
  1094. " --ignore-missing-info don't fail if dependency information can't be "
  1095. "found.\n"
  1096. " --warnings=<value> define set of active warnings (see manual page).\n"
  1097. " --admindir=<directory> change the administrative directory.\n"
  1098. " -?, --help show this help message.\n"
  1099. " --version show the version."
  1100. msgstr ""
  1101. #: scripts/dpkg-shlibdeps.pl
  1102. #, perl-format
  1103. msgid ""
  1104. "Dependency fields recognized are:\n"
  1105. " %s\n"
  1106. msgstr ""
  1107. #: scripts/dpkg-shlibdeps.pl
  1108. #, perl-format
  1109. msgid "can't extract name and version from library name '%s'"
  1110. msgstr ""
  1111. #: scripts/dpkg-shlibdeps.pl
  1112. #, perl-format
  1113. msgid "unable to open shared libs info file '%s'"
  1114. msgstr ""
  1115. #: scripts/dpkg-shlibdeps.pl
  1116. #, perl-format
  1117. msgid "shared libs info file '%s' line %d: bad line '%s'"
  1118. msgstr ""
  1119. #: scripts/dpkg-shlibdeps.pl scripts/Dpkg/Checksums.pm
  1120. #, perl-format
  1121. msgid "cannot open file %s"
  1122. msgstr ""
  1123. #: scripts/dpkg-shlibdeps.pl
  1124. #, perl-format
  1125. msgid ""
  1126. "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
  1127. "identified due to lack of DEBIAN sub-directory in the root of package's "
  1128. "build tree"
  1129. msgstr ""
  1130. #: scripts/dpkg-shlibdeps.pl scripts/Dpkg/IPC.pm scripts/Dpkg/Shlibs/Cppfilt.pm
  1131. #, perl-format
  1132. msgid "unable to execute %s"
  1133. msgstr ""
  1134. #: scripts/dpkg-shlibdeps.pl
  1135. msgid "diversions involved - output may be incorrect"
  1136. msgstr ""
  1137. #: scripts/dpkg-shlibdeps.pl
  1138. msgid "write diversion info to stderr"
  1139. msgstr ""
  1140. #: scripts/dpkg-shlibdeps.pl
  1141. #, perl-format
  1142. msgid "unknown output from dpkg --search: '%s'"
  1143. msgstr ""
  1144. #: scripts/dpkg-source.pl
  1145. #, perl-format
  1146. msgid "--%s needs a directory"
  1147. msgstr ""
  1148. #: scripts/dpkg-source.pl
  1149. #, perl-format
  1150. msgid "cannot stat directory %s"
  1151. msgstr ""
  1152. #: scripts/dpkg-source.pl
  1153. #, perl-format
  1154. msgid "directory argument %s is not a directory"
  1155. msgstr ""
  1156. #: scripts/dpkg-source.pl scripts/Dpkg/Source/Package/V2.pm
  1157. #: scripts/Dpkg/Source/Package/V3/Bzr.pm scripts/Dpkg/Source/Package/V3/Git.pm
  1158. #, perl-format
  1159. msgid "unable to chdir to '%s'"
  1160. msgstr ""
  1161. #: scripts/dpkg-source.pl
  1162. #, perl-format
  1163. msgid "using options from %s: %s"
  1164. msgstr ""
  1165. #: scripts/dpkg-source.pl scripts/Dpkg/Compression.pm
  1166. #, perl-format
  1167. msgid "%s is not a supported compression"
  1168. msgstr ""
  1169. #: scripts/dpkg-source.pl scripts/Dpkg/Compression.pm
  1170. #: scripts/Dpkg/Compression/Process.pm
  1171. #, perl-format
  1172. msgid "%s is not a compression level"
  1173. msgstr ""
  1174. #: scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  1175. msgid "need an action option"
  1176. msgstr ""
  1177. #: scripts/dpkg-source.pl
  1178. #, perl-format
  1179. msgid "%s doesn't contain any information about the source package"
  1180. msgstr ""
  1181. #: scripts/dpkg-source.pl
  1182. #, perl-format
  1183. msgid ""
  1184. "binary package stanza %s is using an obsolete Build-Profiles field syntax"
  1185. msgstr ""
  1186. #: scripts/dpkg-source.pl
  1187. #, perl-format
  1188. msgid "'%s' is not a legal architecture string"
  1189. msgstr ""
  1190. #: scripts/dpkg-source.pl
  1191. #, perl-format
  1192. msgid "architecture %s only allowed on its own (list for package %s is '%s')"
  1193. msgstr ""
  1194. #: scripts/dpkg-source.pl
  1195. #, perl-format
  1196. msgid "%s doesn't list any binary package"
  1197. msgstr ""
  1198. #: scripts/dpkg-source.pl
  1199. msgid "building source for a binary-only release"
  1200. msgstr ""
  1201. #: scripts/dpkg-source.pl
  1202. #, perl-format
  1203. msgid "no source format specified in %s, see dpkg-source(1)"
  1204. msgstr ""
  1205. #: scripts/dpkg-source.pl
  1206. #, perl-format
  1207. msgid "can't build with source format '%s': %s"
  1208. msgstr ""
  1209. #: scripts/dpkg-source.pl
  1210. #, perl-format
  1211. msgid "using source format '%s'"
  1212. msgstr ""
  1213. #: scripts/dpkg-source.pl scripts/Dpkg/Source/Package/V1.pm
  1214. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Bzr.pm
  1215. #: scripts/Dpkg/Source/Package/V3/Native.pm
  1216. #, perl-format
  1217. msgid "building %s in %s"
  1218. msgstr ""
  1219. #: scripts/dpkg-source.pl
  1220. #, perl-format
  1221. msgid "--%s needs at least one argument, the .dsc"
  1222. msgstr ""
  1223. #: scripts/dpkg-source.pl
  1224. #, perl-format
  1225. msgid "--%s takes no more than two arguments"
  1226. msgstr ""
  1227. #: scripts/dpkg-source.pl
  1228. #, perl-format
  1229. msgid "--%s needs the .dsc file as first argument, not a directory"
  1230. msgstr ""
  1231. #: scripts/dpkg-source.pl
  1232. #, perl-format
  1233. msgid "unpack target exists: %s"
  1234. msgstr ""
  1235. #: scripts/dpkg-source.pl
  1236. #, perl-format
  1237. msgid "%s doesn't contain a valid OpenPGP signature"
  1238. msgstr ""
  1239. #: scripts/dpkg-source.pl
  1240. #, perl-format
  1241. msgid "extracting unsigned source package (%s)"
  1242. msgstr ""
  1243. #: scripts/dpkg-source.pl
  1244. #, perl-format
  1245. msgid "extracting %s in %s"
  1246. msgstr ""
  1247. #: scripts/dpkg-source.pl
  1248. #, perl-format
  1249. msgid "%s field contains value %s, but no tests control file %s"
  1250. msgstr ""
  1251. #: scripts/dpkg-source.pl
  1252. msgctxt "source options"
  1253. msgid "<none>"
  1254. msgstr ""
  1255. #: scripts/dpkg-source.pl
  1256. #, perl-format
  1257. msgid "Usage: %s [<option>...] <command>"
  1258. msgstr ""
  1259. #: scripts/dpkg-source.pl
  1260. msgid ""
  1261. "Commands:\n"
  1262. " -x, --extract <filename>.dsc [<output-dir>]\n"
  1263. " extract source package.\n"
  1264. " -b, --build <dir> build source package.\n"
  1265. " --print-format <dir> print the format to be used for the source "
  1266. "package.\n"
  1267. " --commit [<dir> [<patch-name>]]\n"
  1268. " store upstream changes in a new patch."
  1269. msgstr ""
  1270. #: scripts/dpkg-source.pl
  1271. #, perl-format
  1272. msgid ""
  1273. "Build options:\n"
  1274. " -c<control-file> get control info from this file.\n"
  1275. " -l<changelog-file> get per-version info from this file.\n"
  1276. " -F<changelog-format> force changelog format.\n"
  1277. " --format=<source-format> set the format to be used for the source "
  1278. "package.\n"
  1279. " -V<name>=<value> set a substitution variable.\n"
  1280. " -T<substvars-file> read variables here.\n"
  1281. " -D<field>=<value> override or add a .dsc field and value.\n"
  1282. " -U<field> remove a field.\n"
  1283. " -q quiet mode.\n"
  1284. " -i[<regex>] filter out files to ignore diffs of\n"
  1285. " (defaults to: '%s').\n"
  1286. " -I[<pattern>] filter out files when building tarballs\n"
  1287. " (defaults to: %s).\n"
  1288. " -Z<compression> select compression to use (defaults to '%s',\n"
  1289. " supported are: %s).\n"
  1290. " -z<level> compression level to use (defaults to '%d',\n"
  1291. " supported are: '1'-'9', 'best', 'fast')"
  1292. msgstr ""
  1293. #: scripts/dpkg-source.pl
  1294. msgid ""
  1295. "Extract options:\n"
  1296. " --no-copy don't copy .orig tarballs\n"
  1297. " --no-check don't check signature and checksums before "
  1298. "unpacking\n"
  1299. " --require-valid-signature abort if the package doesn't have a valid "
  1300. "signature\n"
  1301. " --ignore-bad-version allow bad source package versions."
  1302. msgstr ""
  1303. #: scripts/dpkg-source.pl
  1304. msgid ""
  1305. "General options:\n"
  1306. " -?, --help show this help message.\n"
  1307. " --version show the version."
  1308. msgstr ""
  1309. #: scripts/dpkg-source.pl
  1310. msgid ""
  1311. "Source format specific build and extract options are available;\n"
  1312. "use --format with --help to see them."
  1313. msgstr ""
  1314. #: scripts/dpkg-vendor.pl
  1315. msgid ""
  1316. "Commands:\n"
  1317. " --is <vendor> returns true if current vendor is <vendor>.\n"
  1318. " --derives-from <vendor> returns true if current vendor derives from "
  1319. "<vendor>.\n"
  1320. " --query <field> print the content of the vendor-specific field.\n"
  1321. " --help show this help message.\n"
  1322. " --version show the version."
  1323. msgstr ""
  1324. #: scripts/dpkg-vendor.pl
  1325. msgid ""
  1326. "Options:\n"
  1327. " --vendor <vendor> assume <vendor> is the current vendor."
  1328. msgstr ""
  1329. #: scripts/dpkg-vendor.pl
  1330. #, perl-format
  1331. msgid "vendor %s doesn't exist in %s"
  1332. msgstr ""
  1333. #: scripts/changelog/debian.pl
  1334. #, perl-format
  1335. msgid "Usage: %s [<option>...] [<changelog-file>]"
  1336. msgstr ""
  1337. #: scripts/changelog/debian.pl
  1338. msgid ""
  1339. "Options:\n"
  1340. " --file <file> changelog <file> to parse (defaults to '-').\n"
  1341. " -l, --label <file> changelog <file> name to use in error messages.\n"
  1342. " --format <output-format>\n"
  1343. " set the output format (defaults to 'dpkg').\n"
  1344. " --all include all changes.\n"
  1345. " -s, --since <version> include all changes later than <version>.\n"
  1346. " -v <version> ditto.\n"
  1347. " -u, --until <version> include all changes earlier than <version>.\n"
  1348. " -f, --from <version> include all changes equal or later than "
  1349. "<version>.\n"
  1350. " -t, --to <version> include all changes up to or equal than "
  1351. "<version>.\n"
  1352. " -c, --count <number> include <number> entries from the top (or tail if\n"
  1353. " <number> is lower than 0).\n"
  1354. " -n <number> ditto.\n"
  1355. " -o, --offset <number> change starting point for --count, counted from\n"
  1356. " the top (or tail if <number> is lower than 0).\n"
  1357. " -?, --help print usage information.\n"
  1358. " -V, --version print version information.\n"
  1359. msgstr ""
  1360. #: scripts/changelog/debian.pl
  1361. #, perl-format
  1362. msgid "output format %s not supported"
  1363. msgstr ""
  1364. #: scripts/changelog/debian.pl
  1365. #, perl-format
  1366. msgid "more than one file specified (%s and %s)"
  1367. msgstr ""
  1368. #: scripts/changelog/debian.pl scripts/Dpkg/Changelog/Parse.pm
  1369. #, perl-format
  1370. msgid "fatal error occurred while parsing %s"
  1371. msgstr ""
  1372. #: scripts/Dpkg/Arch.pm
  1373. msgid ""
  1374. "cannot determine CC system type, falling back to default (native compilation)"
  1375. msgstr ""
  1376. #: scripts/Dpkg/Arch.pm
  1377. #, perl-format
  1378. msgid "unknown CC system type %s, falling back to default (native compilation)"
  1379. msgstr ""
  1380. #: scripts/Dpkg/Arch.pm
  1381. #, perl-format
  1382. msgid "'%s' is not a legal architecture in list '%s'"
  1383. msgstr ""
  1384. #: scripts/Dpkg/BuildFlags.pm
  1385. #, perl-format
  1386. msgid "line %d of %s mentions unknown flag %s"
  1387. msgstr ""
  1388. #: scripts/Dpkg/BuildFlags.pm
  1389. #, perl-format
  1390. msgid "line %d of %s is invalid, it has been ignored"
  1391. msgstr ""
  1392. #: scripts/Dpkg/BuildOptions.pm
  1393. #, perl-format
  1394. msgid "invalid flag in %s: %s"
  1395. msgstr ""
  1396. #: scripts/Dpkg/Build/Types.pm
  1397. #, perl-format
  1398. msgid "cannot combine %s and %s"
  1399. msgstr ""
  1400. #: scripts/Dpkg/Build/Types.pm
  1401. #, perl-format
  1402. msgid "unknown build type %s"
  1403. msgstr ""
  1404. #: scripts/Dpkg/Changelog.pm
  1405. #, perl-format
  1406. msgid ""
  1407. "%s(l%s): %s\n"
  1408. "LINE: %s"
  1409. msgstr ""
  1410. #: scripts/Dpkg/Changelog.pm
  1411. #, perl-format
  1412. msgid "%s(l%s): %s"
  1413. msgstr ""
  1414. #: scripts/Dpkg/Changelog.pm
  1415. msgid "'offset' without 'count' has no effect"
  1416. msgstr ""
  1417. #: scripts/Dpkg/Changelog.pm
  1418. msgid "you can't combine 'count' or 'offset' with any other range option"
  1419. msgstr ""
  1420. #: scripts/Dpkg/Changelog.pm
  1421. msgid "you can only specify one of 'from' and 'since', using 'since'"
  1422. msgstr ""
  1423. #: scripts/Dpkg/Changelog.pm
  1424. msgid "you can only specify one of 'to' and 'until', using 'until'"
  1425. msgstr ""
  1426. #: scripts/Dpkg/Changelog.pm
  1427. #, perl-format
  1428. msgid "'%s' option specifies non-existing version"
  1429. msgstr ""
  1430. #: scripts/Dpkg/Changelog.pm
  1431. msgid "use newest entry that is earlier than the one specified"
  1432. msgstr ""
  1433. #: scripts/Dpkg/Changelog.pm
  1434. msgid "none found, starting from the oldest entry"
  1435. msgstr ""
  1436. #: scripts/Dpkg/Changelog.pm
  1437. msgid "use oldest entry that is later than the one specified"
  1438. msgstr ""
  1439. #: scripts/Dpkg/Changelog.pm
  1440. #, perl-format
  1441. msgid "no such entry found, ignoring '%s' parameter"
  1442. msgstr ""
  1443. #: scripts/Dpkg/Changelog.pm
  1444. msgid "'since' option specifies most recent version, ignoring"
  1445. msgstr ""
  1446. #: scripts/Dpkg/Changelog.pm
  1447. msgid "'until' option specifies oldest version, ignoring"
  1448. msgstr ""
  1449. #: scripts/Dpkg/Changelog/Debian.pm
  1450. msgid "first heading"
  1451. msgstr ""
  1452. #: scripts/Dpkg/Changelog/Debian.pm
  1453. msgid "next heading or end of file"
  1454. msgstr ""
  1455. #: scripts/Dpkg/Changelog/Debian.pm
  1456. msgid "start of change data"
  1457. msgstr ""
  1458. #: scripts/Dpkg/Changelog/Debian.pm
  1459. msgid "more change data or trailer"
  1460. msgstr ""
  1461. #: scripts/Dpkg/Changelog/Debian.pm
  1462. #, perl-format
  1463. msgid "found start of entry where expected %s"
  1464. msgstr ""
  1465. #: scripts/Dpkg/Changelog/Debian.pm
  1466. msgid "badly formatted heading line"
  1467. msgstr ""
  1468. #: scripts/Dpkg/Changelog/Debian.pm
  1469. #, perl-format
  1470. msgid "found trailer where expected %s"
  1471. msgstr ""
  1472. #: scripts/Dpkg/Changelog/Debian.pm scripts/Dpkg/Changelog/Entry/Debian.pm
  1473. msgid "badly formatted trailer line"
  1474. msgstr ""
  1475. #: scripts/Dpkg/Changelog/Debian.pm
  1476. #, perl-format
  1477. msgid "found change data where expected %s"
  1478. msgstr ""
  1479. #: scripts/Dpkg/Changelog/Debian.pm
  1480. #, perl-format
  1481. msgid "found blank line where expected %s"
  1482. msgstr ""
  1483. #: scripts/Dpkg/Changelog/Debian.pm
  1484. msgid "unrecognized line"
  1485. msgstr ""
  1486. #: scripts/Dpkg/Changelog/Debian.pm
  1487. #, perl-format
  1488. msgid "found end of file where expected %s"
  1489. msgstr ""
  1490. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1491. #, perl-format
  1492. msgid "version '%s' is invalid: %s"
  1493. msgstr ""
  1494. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1495. #, perl-format
  1496. msgid "bad key-value after ';': '%s'"
  1497. msgstr ""
  1498. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1499. #, perl-format
  1500. msgid "repeated key-value %s"
  1501. msgstr ""
  1502. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1503. #, perl-format
  1504. msgid "badly formatted urgency value: %s"
  1505. msgstr ""
  1506. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1507. #, perl-format
  1508. msgid "bad binary-only value: %s"
  1509. msgstr ""
  1510. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1511. #, perl-format
  1512. msgid "unknown key-value %s"
  1513. msgstr ""
  1514. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1515. msgid "the header doesn't match the expected regex"
  1516. msgstr ""
  1517. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1518. #, perl-format
  1519. msgid "ignoring invalid week day '%s'"
  1520. msgstr ""
  1521. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1522. #, perl-format
  1523. msgid "uses full instead of abbreviated month name '%s'"
  1524. msgstr ""
  1525. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1526. #, perl-format
  1527. msgid "invalid abbreviated month name '%s'"
  1528. msgstr ""
  1529. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1530. #, perl-format
  1531. msgid "cannot parse non-comformant date '%s'"
  1532. msgstr ""
  1533. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1534. msgid "the trailer doesn't match the expected regex"
  1535. msgstr ""
  1536. #: scripts/Dpkg/Changelog/Parse.pm
  1537. #, perl-format
  1538. msgid "unknown output format %s"
  1539. msgstr ""
  1540. #: scripts/Dpkg/Changelog/Parse.pm
  1541. #, perl-format
  1542. msgid "cannot create pipe for %s"
  1543. msgstr ""
  1544. #: scripts/Dpkg/Changelog/Parse.pm
  1545. #, perl-format
  1546. msgid "tail of %s"
  1547. msgstr ""
  1548. #: scripts/Dpkg/Changelog/Parse.pm
  1549. #, perl-format
  1550. msgid "format parser %s not executable"
  1551. msgstr ""
  1552. #: scripts/Dpkg/Changelog/Parse.pm
  1553. #, perl-format
  1554. msgid "changelog format %s is unknown"
  1555. msgstr ""
  1556. #: scripts/Dpkg/Changelog/Parse.pm
  1557. #, perl-format
  1558. msgid "cannot execute format parser: %s"
  1559. msgstr ""
  1560. #: scripts/Dpkg/Changelog/Parse.pm
  1561. msgid "output of changelog parser"
  1562. msgstr ""
  1563. #: scripts/Dpkg/Changelog/Parse.pm
  1564. #, perl-format
  1565. msgid "changelog parser %s"
  1566. msgstr ""
  1567. #: scripts/Dpkg/Checksums.pm
  1568. #, perl-format
  1569. msgid "cannot fstat file %s"
  1570. msgstr ""
  1571. #: scripts/Dpkg/Checksums.pm
  1572. #, perl-format
  1573. msgid "file %s has size %u instead of expected %u"
  1574. msgstr ""
  1575. #: scripts/Dpkg/Checksums.pm
  1576. #, perl-format
  1577. msgid "file %s has checksum %s instead of expected %s (algorithm %s)"
  1578. msgstr ""
  1579. #: scripts/Dpkg/Checksums.pm
  1580. #, perl-format
  1581. msgid "invalid line in %s checksums string: %s"
  1582. msgstr ""
  1583. #: scripts/Dpkg/Checksums.pm
  1584. #, perl-format
  1585. msgid "conflicting checksums '%s' and '%s' for file '%s'"
  1586. msgstr ""
  1587. #: scripts/Dpkg/Checksums.pm
  1588. #, perl-format
  1589. msgid "conflicting file sizes '%u' and '%u' for file '%s'"
  1590. msgstr ""
  1591. #: scripts/Dpkg/Compression/Process.pm
  1592. #, perl-format
  1593. msgid "%s is not a supported compression method"
  1594. msgstr ""
  1595. #: scripts/Dpkg/Compression/Process.pm
  1596. msgid "Dpkg::Compression::Process can only start one subprocess at a time"
  1597. msgstr ""
  1598. #: scripts/Dpkg/Conf.pm
  1599. #, perl-format
  1600. msgid "short option not allowed in %s, line %d"
  1601. msgstr ""
  1602. #: scripts/Dpkg/Conf.pm
  1603. #, perl-format
  1604. msgid "invalid syntax for option in %s, line %d"
  1605. msgstr ""
  1606. #: scripts/Dpkg/Control.pm
  1607. msgid "general section of control info file"
  1608. msgstr ""
  1609. #: scripts/Dpkg/Control.pm
  1610. msgid "package's section of control info file"
  1611. msgstr ""
  1612. #: scripts/Dpkg/Control.pm
  1613. msgid "parsed version of changelog"
  1614. msgstr ""
  1615. #: scripts/Dpkg/Control.pm
  1616. msgid "header stanza of copyright file"
  1617. msgstr ""
  1618. #: scripts/Dpkg/Control.pm
  1619. msgid "files stanza of copyright file"
  1620. msgstr ""
  1621. #: scripts/Dpkg/Control.pm
  1622. msgid "license stanza of copyright file"
  1623. msgstr ""
  1624. #: scripts/Dpkg/Control.pm
  1625. #, perl-format
  1626. msgid "repository's %s file"
  1627. msgstr ""
  1628. #: scripts/Dpkg/Control.pm
  1629. #, perl-format
  1630. msgid "entry in repository's %s file"
  1631. msgstr ""
  1632. #: scripts/Dpkg/Control.pm
  1633. #, perl-format
  1634. msgid "%s file"
  1635. msgstr ""
  1636. #: scripts/Dpkg/Control.pm
  1637. msgid "control info of a .deb package"
  1638. msgstr ""
  1639. #: scripts/Dpkg/Control.pm
  1640. msgid "vendor file"
  1641. msgstr ""
  1642. #: scripts/Dpkg/Control.pm
  1643. msgid "entry in dpkg's status file"
  1644. msgstr ""
  1645. #: scripts/Dpkg/Control/FieldsCore.pm
  1646. #, perl-format
  1647. msgid "unknown information field '%s' in input data in %s"
  1648. msgstr ""
  1649. #: scripts/Dpkg/Control/FieldsCore.pm
  1650. msgid "control information"
  1651. msgstr ""
  1652. #: scripts/Dpkg/Control/HashCore.pm
  1653. #, perl-format
  1654. msgid "syntax error in %s at line %d: %s"
  1655. msgstr ""
  1656. #: scripts/Dpkg/Control/HashCore.pm
  1657. msgid "field cannot start with a hyphen"
  1658. msgstr ""
  1659. #: scripts/Dpkg/Control/HashCore.pm
  1660. #, perl-format
  1661. msgid "duplicate field %s found"
  1662. msgstr ""
  1663. #: scripts/Dpkg/Control/HashCore.pm
  1664. msgid "continued value line not in field"
  1665. msgstr ""
  1666. #: scripts/Dpkg/Control/HashCore.pm
  1667. msgid "OpenPGP signature not allowed here"
  1668. msgstr ""
  1669. #: scripts/Dpkg/Control/HashCore.pm
  1670. msgid "expected OpenPGP signature, found end of file after blank line"
  1671. msgstr ""
  1672. #: scripts/Dpkg/Control/HashCore.pm
  1673. #, perl-format
  1674. msgid "expected OpenPGP signature, found something else '%s'"
  1675. msgstr ""
  1676. #: scripts/Dpkg/Control/HashCore.pm
  1677. msgid "unfinished OpenPGP signature"
  1678. msgstr ""
  1679. #: scripts/Dpkg/Control/HashCore.pm
  1680. msgid "line with unknown format (not field-colon-value)"
  1681. msgstr ""
  1682. #: scripts/Dpkg/Control/HashCore.pm
  1683. msgid "write error on control data"
  1684. msgstr ""
  1685. #: scripts/Dpkg/Control/Info.pm
  1686. msgid "first block lacks a Source field"
  1687. msgstr ""
  1688. #: scripts/Dpkg/Control/Info.pm
  1689. #, perl-format
  1690. msgid "block lacks the '%s' field"
  1691. msgstr ""
  1692. #: scripts/Dpkg/Deps.pm
  1693. #, perl-format
  1694. msgid "can't parse dependency %s"
  1695. msgstr ""
  1696. #: scripts/Dpkg/Deps.pm
  1697. msgid "an union dependency can only contain simple dependencies"
  1698. msgstr ""
  1699. #: scripts/Dpkg/Dist/Files.pm
  1700. #, perl-format
  1701. msgid "badly formed package name in files list file, line %d"
  1702. msgstr ""
  1703. #: scripts/Dpkg/Dist/Files.pm
  1704. #, perl-format
  1705. msgid "badly formed line in files list file, line %d"
  1706. msgstr ""
  1707. #: scripts/Dpkg/Dist/Files.pm
  1708. #, perl-format
  1709. msgid "duplicate files list entry for file %s (line %d)"
  1710. msgstr ""
  1711. #: scripts/Dpkg/Dist/Files.pm
  1712. #, perl-format
  1713. msgid "invalid filename %s"
  1714. msgstr ""
  1715. #: scripts/Dpkg/ErrorHandling.pm
  1716. msgid "info"
  1717. msgstr ""
  1718. #: scripts/Dpkg/ErrorHandling.pm
  1719. msgid "notice"
  1720. msgstr ""
  1721. #: scripts/Dpkg/ErrorHandling.pm
  1722. msgid "warning"
  1723. msgstr ""
  1724. #: scripts/Dpkg/ErrorHandling.pm
  1725. msgid "error"
  1726. msgstr ""
  1727. #: scripts/Dpkg/ErrorHandling.pm
  1728. #, perl-format
  1729. msgid "%s gave error exit status %s"
  1730. msgstr ""
  1731. #: scripts/Dpkg/ErrorHandling.pm
  1732. #, perl-format
  1733. msgid "%s died from signal %s"
  1734. msgstr ""
  1735. #: scripts/Dpkg/ErrorHandling.pm
  1736. #, perl-format
  1737. msgid "%s failed with unknown exit code %d"
  1738. msgstr ""
  1739. #: scripts/Dpkg/ErrorHandling.pm
  1740. msgid "Use --help for program usage information."
  1741. msgstr ""
  1742. #: scripts/Dpkg/File.pm
  1743. msgid "File::FcntlLock not available; using flock which is not NFS-safe"
  1744. msgstr ""
  1745. #: scripts/Dpkg/File.pm
  1746. #, perl-format
  1747. msgid "failed to get a write lock on %s"
  1748. msgstr ""
  1749. #: scripts/Dpkg/IPC.pm
  1750. #, perl-format
  1751. msgid "pipe for %s"
  1752. msgstr ""
  1753. #: scripts/Dpkg/IPC.pm
  1754. #, perl-format
  1755. msgid "chdir to %s"
  1756. msgstr ""
  1757. #: scripts/Dpkg/IPC.pm
  1758. msgid "reopen stdin"
  1759. msgstr ""
  1760. #: scripts/Dpkg/IPC.pm
  1761. msgid "reopen stdout"
  1762. msgstr ""
  1763. #: scripts/Dpkg/IPC.pm
  1764. msgid "child process"
  1765. msgstr ""
  1766. #: scripts/Dpkg/IPC.pm
  1767. #, perl-format
  1768. msgid "wait for %s"
  1769. msgstr ""
  1770. #: scripts/Dpkg/IPC.pm
  1771. #, perl-format
  1772. msgid "%s didn't complete in %d second"
  1773. msgid_plural "%s didn't complete in %d seconds"
  1774. msgstr[0] ""
  1775. msgstr[1] ""
  1776. #: scripts/Dpkg/Interface/Storable.pm
  1777. msgid "<standard input>"
  1778. msgstr ""
  1779. #: scripts/Dpkg/Package.pm
  1780. msgid "may not be empty string"
  1781. msgstr ""
  1782. #: scripts/Dpkg/Package.pm
  1783. #, perl-format
  1784. msgid "character '%s' not allowed"
  1785. msgstr ""
  1786. #: scripts/Dpkg/Package.pm
  1787. msgid "must start with an alphanumeric character"
  1788. msgstr ""
  1789. #: scripts/Dpkg/Shlibs/Objdump.pm
  1790. #, perl-format
  1791. msgid "couldn't parse dynamic relocation record: %s"
  1792. msgstr ""
  1793. #: scripts/Dpkg/Shlibs/Objdump.pm
  1794. #, perl-format
  1795. msgid "couldn't parse dynamic symbol definition: %s"
  1796. msgstr ""
  1797. #: scripts/Dpkg/Shlibs/Symbol.pm
  1798. #, perl-format
  1799. msgid "symbol name unspecified: %s"
  1800. msgstr ""
  1801. #: scripts/Dpkg/Shlibs/Symbol.pm
  1802. #, perl-format
  1803. msgid "you can't use symver tag to catch unversioned symbols: %s"
  1804. msgstr ""
  1805. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1806. #, perl-format
  1807. msgid "symbol information must be preceded by a header (file %s, line %s)"
  1808. msgstr ""
  1809. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1810. #, perl-format
  1811. msgid "failed to parse line in %s: %s"
  1812. msgstr ""
  1813. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1814. #, perl-format
  1815. msgid "failed to parse a line in %s: %s"
  1816. msgstr ""
  1817. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1818. #, perl-format
  1819. msgid "tried to merge the same object (%s) twice in a symfile"
  1820. msgstr ""
  1821. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1822. msgid "cannot merge symbols from objects without SONAME"
  1823. msgstr ""
  1824. #: scripts/Dpkg/Source/Archive.pm
  1825. msgid "write on tar input"
  1826. msgstr ""
  1827. #: scripts/Dpkg/Source/Archive.pm
  1828. msgid "close on tar input"
  1829. msgstr ""
  1830. #: scripts/Dpkg/Source/Archive.pm scripts/Dpkg/Source/Patch.pm
  1831. #, perl-format
  1832. msgid "cannot create directory %s"
  1833. msgstr ""
  1834. #: scripts/Dpkg/Source/Archive.pm scripts/Dpkg/Source/Package.pm
  1835. #: scripts/Dpkg/Source/Package/V2.pm
  1836. #, perl-format
  1837. msgid "cannot opendir %s"
  1838. msgstr ""
  1839. #: scripts/Dpkg/Source/Archive.pm
  1840. #, perl-format
  1841. msgid "unable to rename %s to %s"
  1842. msgstr ""
  1843. #: scripts/Dpkg/Source/Functions.pm
  1844. #, perl-format
  1845. msgid "cannot stat directory %s (before removal)"
  1846. msgstr ""
  1847. #: scripts/Dpkg/Source/Functions.pm
  1848. #, perl-format
  1849. msgid "unable to check for removal of directory '%s'"
  1850. msgstr ""
  1851. #: scripts/Dpkg/Source/Functions.pm
  1852. #, perl-format
  1853. msgid "rm -rf failed to remove '%s'"
  1854. msgstr ""
  1855. #: scripts/Dpkg/Source/Functions.pm scripts/Dpkg/Source/Patch.pm
  1856. #, perl-format
  1857. msgid "cannot change timestamp for %s"
  1858. msgstr ""
  1859. #: scripts/Dpkg/Source/Functions.pm
  1860. #, perl-format
  1861. msgid "cannot read timestamp from %s"
  1862. msgstr ""
  1863. #: scripts/Dpkg/Source/Package.pm
  1864. #, perl-format
  1865. msgid "%s is not the name of a file"
  1866. msgstr ""
  1867. #: scripts/Dpkg/Source/Package.pm
  1868. #, perl-format
  1869. msgid "missing critical source control field %s"
  1870. msgstr ""
  1871. #: scripts/Dpkg/Source/Package.pm
  1872. #, perl-format
  1873. msgid "source package format '%s' is not supported: %s"
  1874. msgstr ""
  1875. #: scripts/Dpkg/Source/Package.pm
  1876. msgid "format variant must be in lowercase"
  1877. msgstr ""
  1878. #: scripts/Dpkg/Source/Package.pm
  1879. #, perl-format
  1880. msgid "invalid Format field '%s'"
  1881. msgstr ""
  1882. #: scripts/Dpkg/Source/Package.pm
  1883. msgid "source package uses only weak checksums"
  1884. msgstr ""
  1885. #: scripts/Dpkg/Source/Package.pm
  1886. #, perl-format
  1887. msgid "%s and %s fields are required to compute the source basename"
  1888. msgstr ""
  1889. #: scripts/Dpkg/Source/Package.pm
  1890. #, perl-format
  1891. msgid "failed to verify signature on %s"
  1892. msgstr ""
  1893. #: scripts/Dpkg/Source/Package.pm
  1894. #, perl-format
  1895. msgid "cannot verify signature on %s since GnuPG is not installed"
  1896. msgstr ""
  1897. #: scripts/Dpkg/Source/Package.pm
  1898. #, perl-format
  1899. msgid "%s is not a valid option for %s"
  1900. msgstr ""
  1901. #: scripts/Dpkg/Source/Package.pm
  1902. #, perl-format
  1903. msgid "%s does not exist"
  1904. msgstr ""
  1905. #: scripts/Dpkg/Source/Package.pm
  1906. #, perl-format
  1907. msgid "cannot make %s executable"
  1908. msgstr ""
  1909. #: scripts/Dpkg/Source/Package.pm
  1910. #, perl-format
  1911. msgid "%s is not a plain file"
  1912. msgstr ""
  1913. #: scripts/Dpkg/Source/Package.pm
  1914. #, perl-format
  1915. msgid "'%s' is not supported by the source format '%s'"
  1916. msgstr ""
  1917. #: scripts/Dpkg/Source/Package/V1.pm
  1918. msgid "auto select original source"
  1919. msgstr ""
  1920. #: scripts/Dpkg/Source/Package/V1.pm
  1921. msgid "use packed original source (unpack and keep)"
  1922. msgstr ""
  1923. #: scripts/Dpkg/Source/Package/V1.pm
  1924. msgid "use packed original source (unpack and remove)"
  1925. msgstr ""
  1926. #: scripts/Dpkg/Source/Package/V1.pm
  1927. msgid "use unpacked original source (pack and keep)"
  1928. msgstr ""
  1929. #: scripts/Dpkg/Source/Package/V1.pm
  1930. msgid "use unpacked original source (pack and remove)"
  1931. msgstr ""
  1932. #: scripts/Dpkg/Source/Package/V1.pm
  1933. msgid "trust packed and unpacked original sources are same"
  1934. msgstr ""
  1935. #: scripts/Dpkg/Source/Package/V1.pm
  1936. msgid "there is no diff, do main tarfile only"
  1937. msgstr ""
  1938. #: scripts/Dpkg/Source/Package/V1.pm
  1939. msgid "like -sa, -sk, -sp, -su, -sr but may overwrite"
  1940. msgstr ""
  1941. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  1942. msgid "abort if generated diff has upstream files changes"
  1943. msgstr ""
  1944. #: scripts/Dpkg/Source/Package/V1.pm
  1945. msgid "leave original source packed in current directory"
  1946. msgstr ""
  1947. #: scripts/Dpkg/Source/Package/V1.pm
  1948. msgid "do not copy original source to current directory"
  1949. msgstr ""
  1950. #: scripts/Dpkg/Source/Package/V1.pm
  1951. msgid "unpack original source tree too"
  1952. msgstr ""
  1953. #: scripts/Dpkg/Source/Package/V1.pm
  1954. msgid "do not apply debian diff to upstream sources"
  1955. msgstr ""
  1956. #: scripts/Dpkg/Source/Package/V1.pm
  1957. #, perl-format
  1958. msgid "-s%s option overrides earlier -s%s option"
  1959. msgstr ""
  1960. #: scripts/Dpkg/Source/Package/V1.pm
  1961. #, perl-format
  1962. msgid "source handling style -s%s not allowed with -x"
  1963. msgstr ""
  1964. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  1965. msgid "multiple tarfiles in v1.0 source package"
  1966. msgstr ""
  1967. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  1968. #, perl-format
  1969. msgid "unrecognized file for a %s source package: %s"
  1970. msgstr ""
  1971. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  1972. msgid "no tarfile in Files field"
  1973. msgstr ""
  1974. #: scripts/Dpkg/Source/Package/V1.pm
  1975. msgid "native package with .orig.tar"
  1976. msgstr ""
  1977. #: scripts/Dpkg/Source/Package/V1.pm
  1978. #, perl-format
  1979. msgid "unable to rename '%s' to '%s'"
  1980. msgstr ""
  1981. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  1982. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  1983. #: scripts/Dpkg/Source/Package/V3/Native.pm
  1984. #, perl-format
  1985. msgid "unpacking %s"
  1986. msgstr ""
  1987. #: scripts/Dpkg/Source/Package/V1.pm
  1988. msgid "unable to keep orig directory (already exists)"
  1989. msgstr ""
  1990. #: scripts/Dpkg/Source/Package/V1.pm
  1991. #, perl-format
  1992. msgid "failed to rename newly-extracted %s to %s"
  1993. msgstr ""
  1994. #: scripts/Dpkg/Source/Package/V1.pm
  1995. #, perl-format
  1996. msgid "failed to rename saved %s to %s"
  1997. msgstr ""
  1998. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  1999. #: scripts/Dpkg/Source/Quilt.pm
  2000. #, perl-format
  2001. msgid "applying %s"
  2002. msgstr ""
  2003. #: scripts/Dpkg/Source/Package/V1.pm
  2004. #, perl-format
  2005. msgid "upstream files that have been modified: %s"
  2006. msgstr ""
  2007. #: scripts/Dpkg/Source/Package/V1.pm
  2008. msgid "only supports gzip compression"
  2009. msgstr ""
  2010. #: scripts/Dpkg/Source/Package/V1.pm
  2011. msgid ""
  2012. "-b takes at most a directory and an orig source argument (with v1.0 source "
  2013. "package)"
  2014. msgstr ""
  2015. #: scripts/Dpkg/Source/Package/V1.pm
  2016. #, perl-format
  2017. msgid "source handling style -s%s not allowed with -b"
  2018. msgstr ""
  2019. #: scripts/Dpkg/Source/Package/V1.pm
  2020. #, perl-format
  2021. msgid "packed orig '%s' exists but is not a plain file"
  2022. msgstr ""
  2023. #: scripts/Dpkg/Source/Package/V1.pm
  2024. #, perl-format
  2025. msgid "cannot stat orig argument %s"
  2026. msgstr ""
  2027. #: scripts/Dpkg/Source/Package/V1.pm
  2028. #, perl-format
  2029. msgid ""
  2030. "orig argument is unpacked but source handling style -s%s calls for packed (."
  2031. "orig.tar.<ext>)"
  2032. msgstr ""
  2033. #: scripts/Dpkg/Source/Package/V1.pm
  2034. #, perl-format
  2035. msgid ""
  2036. "orig argument is packed but source handling style -s%s calls for unpacked (."
  2037. "orig/)"
  2038. msgstr ""
  2039. #: scripts/Dpkg/Source/Package/V1.pm
  2040. #, perl-format
  2041. msgid "orig argument %s is not a plain file or directory"
  2042. msgstr ""
  2043. #: scripts/Dpkg/Source/Package/V1.pm
  2044. #, perl-format
  2045. msgid ""
  2046. "orig argument is empty (means no orig, no diff) but source handling style -s"
  2047. "%s wants something"
  2048. msgstr ""
  2049. #: scripts/Dpkg/Source/Package/V1.pm
  2050. #, perl-format
  2051. msgid "unpacked orig '%s' exists but is not a directory"
  2052. msgstr ""
  2053. #: scripts/Dpkg/Source/Package/V1.pm
  2054. #, perl-format
  2055. msgid "unable to stat putative unpacked orig '%s'"
  2056. msgstr ""
  2057. #: scripts/Dpkg/Source/Package/V1.pm
  2058. #, perl-format
  2059. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  2060. msgstr ""
  2061. #: scripts/Dpkg/Source/Package/V1.pm
  2062. #, perl-format
  2063. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  2064. msgstr ""
  2065. #: scripts/Dpkg/Source/Package/V1.pm
  2066. #, perl-format
  2067. msgid ""
  2068. ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  2069. msgstr ""
  2070. #: scripts/Dpkg/Source/Package/V1.pm
  2071. #, perl-format
  2072. msgid ""
  2073. "tarfile '%s' already exists, not overwriting, giving up; use -sU or -sR to "
  2074. "override"
  2075. msgstr ""
  2076. #: scripts/Dpkg/Source/Package/V1.pm
  2077. #, perl-format
  2078. msgid "unable to check for existence of '%s'"
  2079. msgstr ""
  2080. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  2081. #, perl-format
  2082. msgid "unable to rename '%s' (newly created) to '%s'"
  2083. msgstr ""
  2084. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2085. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2086. #: scripts/Dpkg/Source/Package/V3/Quilt.pm scripts/Dpkg/Source/Quilt.pm
  2087. #, perl-format
  2088. msgid "unable to change permission of '%s'"
  2089. msgstr ""
  2090. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2091. #, perl-format
  2092. msgid "building %s using existing %s"
  2093. msgstr ""
  2094. #: scripts/Dpkg/Source/Package/V1.pm
  2095. #, perl-format
  2096. msgid ""
  2097. "orig directory '%s' already exists, not overwriting, giving up; use -sA, -sK "
  2098. "or -sP to override"
  2099. msgstr ""
  2100. #: scripts/Dpkg/Source/Package/V1.pm
  2101. #, perl-format
  2102. msgid "unable to check for existence of orig directory '%s'"
  2103. msgstr ""
  2104. #: scripts/Dpkg/Source/Package/V1.pm
  2105. #, perl-format
  2106. msgid "the diff modifies the following upstream files: %s"
  2107. msgstr ""
  2108. #: scripts/Dpkg/Source/Package/V1.pm
  2109. msgid ""
  2110. "use the '3.0 (quilt)' format to have separate and documented changes to "
  2111. "upstream files, see dpkg-source(1)"
  2112. msgstr ""
  2113. #: scripts/Dpkg/Source/Package/V1.pm
  2114. msgid "aborting due to --abort-on-upstream-changes"
  2115. msgstr ""
  2116. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2117. msgid "unrepresentable changes to source"
  2118. msgstr ""
  2119. #: scripts/Dpkg/Source/Package/V2.pm
  2120. msgid "include removed files in the patch"
  2121. msgstr ""
  2122. #: scripts/Dpkg/Source/Package/V2.pm
  2123. msgid "include timestamp in the patch"
  2124. msgstr ""
  2125. #: scripts/Dpkg/Source/Package/V2.pm
  2126. msgid "include binary files in the tarball"
  2127. msgstr ""
  2128. #: scripts/Dpkg/Source/Package/V2.pm
  2129. msgid "do not prepare build tree by applying patches"
  2130. msgstr ""
  2131. #: scripts/Dpkg/Source/Package/V2.pm
  2132. msgid "do not unapply patches if previously applied"
  2133. msgstr ""
  2134. #: scripts/Dpkg/Source/Package/V2.pm
  2135. msgid "unapply patches if previously applied (default)"
  2136. msgstr ""
  2137. #: scripts/Dpkg/Source/Package/V2.pm
  2138. msgid "create an empty original tarball if missing"
  2139. msgstr ""
  2140. #: scripts/Dpkg/Source/Package/V2.pm
  2141. msgid "record generated patches, instead of aborting"
  2142. msgstr ""
  2143. #: scripts/Dpkg/Source/Package/V2.pm
  2144. msgid "do not extract debian tarball into upstream sources"
  2145. msgstr ""
  2146. #: scripts/Dpkg/Source/Package/V2.pm
  2147. msgid "do not apply patches at the end of the extraction"
  2148. msgstr ""
  2149. #: scripts/Dpkg/Source/Package/V2.pm
  2150. #, perl-format
  2151. msgid "duplicate files in %s source package: %s"
  2152. msgstr ""
  2153. #: scripts/Dpkg/Source/Package/V2.pm
  2154. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  2155. msgstr ""
  2156. #: scripts/Dpkg/Source/Package/V2.pm
  2157. #, perl-format
  2158. msgid "mismatched orig.tar %s for signature %s in source package"
  2159. msgstr ""
  2160. #: scripts/Dpkg/Source/Package/V2.pm
  2161. #, perl-format
  2162. msgid "missing addon orig.tar for signature %s in source package"
  2163. msgstr ""
  2164. #: scripts/Dpkg/Source/Package/V2.pm
  2165. #, perl-format
  2166. msgid "mismatched addon orig.tar %s for signature %s in source package"
  2167. msgstr ""
  2168. #: scripts/Dpkg/Source/Package/V2.pm
  2169. #, perl-format
  2170. msgid "required removal of '%s' installed by original tarball"
  2171. msgstr ""
  2172. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Quilt.pm
  2173. #, perl-format
  2174. msgid "unapplying %s"
  2175. msgstr ""
  2176. #: scripts/Dpkg/Source/Package/V2.pm
  2177. #, perl-format
  2178. msgid "no upstream tarball found at %s"
  2179. msgstr ""
  2180. #: scripts/Dpkg/Source/Package/V2.pm
  2181. msgid "patches are not applied, applying them now"
  2182. msgstr ""
  2183. #: scripts/Dpkg/Source/Package/V2.pm
  2184. #, perl-format
  2185. msgid "several orig.tar files found (%s and %s) but only one is allowed"
  2186. msgstr ""
  2187. #: scripts/Dpkg/Source/Package/V2.pm
  2188. msgid "copy of the debian directory"
  2189. msgstr ""
  2190. #: scripts/Dpkg/Source/Package/V2.pm
  2191. msgid "local changes detected, the modified files are:"
  2192. msgstr ""
  2193. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Bzr.pm
  2194. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2195. #, perl-format
  2196. msgid "-b takes only one parameter with format '%s'"
  2197. msgstr ""
  2198. #: scripts/Dpkg/Source/Package/V2.pm
  2199. #, perl-format
  2200. msgid "unwanted binary file: %s"
  2201. msgstr ""
  2202. #: scripts/Dpkg/Source/Package/V2.pm
  2203. #, perl-format
  2204. msgid ""
  2205. "detected %d unwanted binary file (add it in debian/source/include-binaries "
  2206. "to allow its inclusion)."
  2207. msgid_plural ""
  2208. "detected %d unwanted binary files (add them in debian/source/include-"
  2209. "binaries to allow their inclusion)."
  2210. msgstr[0] ""
  2211. msgstr[1] ""
  2212. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  2213. #, perl-format
  2214. msgid "cannot represent change to %s: %s"
  2215. msgstr ""
  2216. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  2217. msgid "binary file contents changed"
  2218. msgstr ""
  2219. #: scripts/Dpkg/Source/Package/V2.pm
  2220. #, perl-format
  2221. msgid ""
  2222. "add %s in debian/source/include-binaries if you want to store the modified "
  2223. "binary in the debian tarball"
  2224. msgstr ""
  2225. #: scripts/Dpkg/Source/Package/V2.pm
  2226. #, perl-format
  2227. msgid "you can integrate the local changes with %s"
  2228. msgstr ""
  2229. #: scripts/Dpkg/Source/Package/V2.pm
  2230. #, perl-format
  2231. msgid "aborting due to unexpected upstream changes, see %s"
  2232. msgstr ""
  2233. #: scripts/Dpkg/Source/Package/V2.pm
  2234. #, perl-format
  2235. msgid "local changes have been recorded in a new patch: %s"
  2236. msgstr ""
  2237. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  2238. #, perl-format
  2239. msgid "cannot remove %s"
  2240. msgstr ""
  2241. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  2242. #: scripts/Dpkg/Source/Quilt.pm
  2243. #, perl-format
  2244. msgid "failed to copy %s to %s"
  2245. msgstr ""
  2246. #: scripts/Dpkg/Source/Package/V2.pm
  2247. #, perl-format
  2248. msgid "cannot register changes in %s, this patch already exists"
  2249. msgstr ""
  2250. #: scripts/Dpkg/Source/Package/V2.pm
  2251. #, perl-format
  2252. msgid "patch file '%s' doesn't exist"
  2253. msgstr ""
  2254. #: scripts/Dpkg/Source/Package/V2.pm
  2255. msgid "there are no local changes to record"
  2256. msgstr ""
  2257. #: scripts/Dpkg/Source/Package/V2.pm
  2258. msgid "Enter the desired patch name: "
  2259. msgstr ""
  2260. #: scripts/Dpkg/Source/Package/V2.pm
  2261. msgid "cannot find an editor"
  2262. msgstr ""
  2263. #: scripts/Dpkg/Source/Package/V2.pm
  2264. #, perl-format
  2265. msgid "adding %s to %s"
  2266. msgstr ""
  2267. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2268. msgid "cannot unpack bzr-format source package because bzr is not in the PATH"
  2269. msgstr ""
  2270. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2271. #, perl-format
  2272. msgid ""
  2273. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  2274. "present), but Format bzr was specified"
  2275. msgstr ""
  2276. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2277. #, perl-format
  2278. msgid "%s is a symlink"
  2279. msgstr ""
  2280. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2281. #, perl-format
  2282. msgid "%s is a symlink to outside %s"
  2283. msgstr ""
  2284. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2285. msgid "doesn't contain a bzr repository"
  2286. msgstr ""
  2287. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2288. msgid "bzr status exited nonzero"
  2289. msgstr ""
  2290. #: scripts/Dpkg/Source/Package/V3/Bzr.pm scripts/Dpkg/Source/Package/V3/Git.pm
  2291. #, perl-format
  2292. msgid "uncommitted, not-ignored changes in working directory: %s"
  2293. msgstr ""
  2294. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2295. msgid "format v3.0 uses only one source file"
  2296. msgstr ""
  2297. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2298. #, perl-format
  2299. msgid "expected %s, got %s"
  2300. msgstr ""
  2301. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  2302. msgid "define the format of the generated source package"
  2303. msgstr ""
  2304. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  2305. msgid "Format '3.0 (custom)' is only used to create source packages"
  2306. msgstr ""
  2307. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  2308. msgid "no files indicated on command line"
  2309. msgstr ""
  2310. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  2311. msgid "--target-format option is missing"
  2312. msgstr ""
  2313. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2314. msgid "cannot unpack git-format source package because git is not in the PATH"
  2315. msgstr ""
  2316. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2317. #, perl-format
  2318. msgid ""
  2319. "source directory is not the top directory of a git repository (%s/.git not "
  2320. "present), but Format git was specified"
  2321. msgstr ""
  2322. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2323. #, perl-format
  2324. msgid "git repository %s uses submodules; this is not yet supported"
  2325. msgstr ""
  2326. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2327. msgid "specify a git <ref> to include in the git bundle"
  2328. msgstr ""
  2329. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2330. msgid "create a shallow clone with <number> depth"
  2331. msgstr ""
  2332. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2333. msgid "doesn't contain a git repository"
  2334. msgstr ""
  2335. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2336. msgid "git ls-files exited nonzero"
  2337. msgstr ""
  2338. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2339. #, perl-format
  2340. msgid "creating shallow clone with depth %s"
  2341. msgstr ""
  2342. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2343. #, perl-format
  2344. msgid "bundling: %s"
  2345. msgstr ""
  2346. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2347. msgid "format v3.0 (git) uses only one .git file"
  2348. msgstr ""
  2349. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2350. msgid "format v3.0 (git) uses only one .gitshallow file"
  2351. msgstr ""
  2352. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2353. #, perl-format
  2354. msgid "format v3.0 (git) unknown file: %s"
  2355. msgstr ""
  2356. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2357. #, perl-format
  2358. msgid "format v3.0 (git) expected %s"
  2359. msgstr ""
  2360. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2361. #, perl-format
  2362. msgid "cloning %s"
  2363. msgstr ""
  2364. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2365. msgid "setting up shallow clone"
  2366. msgstr ""
  2367. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2368. #, perl-format
  2369. msgid "unrecognized file for a native source package: %s"
  2370. msgstr ""
  2371. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2372. msgid "native package version may not have a revision"
  2373. msgstr ""
  2374. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2375. msgid "use a single debianization patch"
  2376. msgstr ""
  2377. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2378. msgid "accept quilt metadata <version> even if unknown"
  2379. msgstr ""
  2380. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2381. msgid "non-native package version does not contain a revision"
  2382. msgstr ""
  2383. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2384. #, perl-format
  2385. msgid "can't create symlink %s"
  2386. msgstr ""
  2387. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2388. #, perl-format
  2389. msgid "unsupported version of the quilt metadata: %s"
  2390. msgstr ""
  2391. #: scripts/Dpkg/Source/Patch.pm
  2392. #, perl-format
  2393. msgid "file %s has no final newline (either original or modified version)"
  2394. msgstr ""
  2395. #: scripts/Dpkg/Source/Patch.pm
  2396. #, perl-format
  2397. msgid "unknown line from diff -u on %s: '%s'"
  2398. msgstr ""
  2399. #: scripts/Dpkg/Source/Patch.pm
  2400. msgid "failed to write"
  2401. msgstr ""
  2402. #: scripts/Dpkg/Source/Patch.pm
  2403. #, perl-format
  2404. msgid "diff on %s"
  2405. msgstr ""
  2406. #: scripts/Dpkg/Source/Patch.pm
  2407. #, perl-format
  2408. msgid "cannot stat file %s"
  2409. msgstr ""
  2410. #: scripts/Dpkg/Source/Patch.pm
  2411. #, perl-format
  2412. msgid "cannot read link %s"
  2413. msgstr ""
  2414. #: scripts/Dpkg/Source/Patch.pm
  2415. msgid "device or socket is not allowed"
  2416. msgstr ""
  2417. #: scripts/Dpkg/Source/Patch.pm
  2418. msgid "unknown file type"
  2419. msgstr ""
  2420. #: scripts/Dpkg/Source/Patch.pm
  2421. #, perl-format
  2422. msgid "ignoring deletion of file %s, use --include-removal to override"
  2423. msgstr ""
  2424. #: scripts/Dpkg/Source/Patch.pm
  2425. #, perl-format
  2426. msgid "ignoring deletion of directory %s"
  2427. msgstr ""
  2428. #: scripts/Dpkg/Source/Patch.pm
  2429. #, perl-format
  2430. msgid "ignoring deletion of symlink %s"
  2431. msgstr ""
  2432. #: scripts/Dpkg/Source/Patch.pm
  2433. #, perl-format
  2434. msgid "newly created empty file '%s' will not be represented in diff"
  2435. msgstr ""
  2436. #: scripts/Dpkg/Source/Patch.pm
  2437. #, perl-format
  2438. msgid "executable mode %04o of '%s' will not be represented in diff"
  2439. msgstr ""
  2440. #: scripts/Dpkg/Source/Patch.pm
  2441. #, perl-format
  2442. msgid "special mode %04o of '%s' will not be represented in diff"
  2443. msgstr ""
  2444. #: scripts/Dpkg/Source/Patch.pm
  2445. #, perl-format
  2446. msgid "cannot represent change to %s:"
  2447. msgstr ""
  2448. #: scripts/Dpkg/Source/Patch.pm
  2449. #, perl-format
  2450. msgid " new version is %s"
  2451. msgstr ""
  2452. #: scripts/Dpkg/Source/Patch.pm
  2453. #, perl-format
  2454. msgid " old version is %s"
  2455. msgstr ""
  2456. #: scripts/Dpkg/Source/Patch.pm
  2457. #, perl-format
  2458. msgid "diff %s patches file with C-style encoded filename"
  2459. msgstr ""
  2460. #: scripts/Dpkg/Source/Patch.pm
  2461. #, perl-format
  2462. msgid "expected ^--- in line %d of diff '%s'"
  2463. msgstr ""
  2464. #: scripts/Dpkg/Source/Patch.pm
  2465. #, perl-format
  2466. msgid "diff '%s' patches file with name ending in .dpkg-orig"
  2467. msgstr ""
  2468. #: scripts/Dpkg/Source/Patch.pm
  2469. #, perl-format
  2470. msgid "diff '%s' finishes in middle of ---/+++ (line %d)"
  2471. msgstr ""
  2472. #: scripts/Dpkg/Source/Patch.pm
  2473. #, perl-format
  2474. msgid "line after --- isn't as expected in diff '%s' (line %d)"
  2475. msgstr ""
  2476. #: scripts/Dpkg/Source/Patch.pm
  2477. #, perl-format
  2478. msgid "none of the filenames in ---/+++ are valid in diff '%s' (line %d)"
  2479. msgstr ""
  2480. #: scripts/Dpkg/Source/Patch.pm scripts/Dpkg/Source/Quilt.pm
  2481. #, perl-format
  2482. msgid "%s contains an insecure path: %s"
  2483. msgstr ""
  2484. #: scripts/Dpkg/Source/Patch.pm
  2485. #, perl-format
  2486. msgid "diff %s modifies file %s through a symlink: %s"
  2487. msgstr ""
  2488. #: scripts/Dpkg/Source/Patch.pm
  2489. #, perl-format
  2490. msgid "original and modified files are /dev/null in diff '%s' (line %d)"
  2491. msgstr ""
  2492. #: scripts/Dpkg/Source/Patch.pm
  2493. #, perl-format
  2494. msgid "file removal without proper filename in diff '%s' (line %d)"
  2495. msgstr ""
  2496. #: scripts/Dpkg/Source/Patch.pm
  2497. #, perl-format
  2498. msgid "diff %s removes a non-existing file %s (line %d)"
  2499. msgstr ""
  2500. #: scripts/Dpkg/Source/Patch.pm
  2501. #, perl-format
  2502. msgid "diff '%s' patches something which is not a plain file"
  2503. msgstr ""
  2504. #: scripts/Dpkg/Source/Patch.pm
  2505. #, perl-format
  2506. msgid ""
  2507. "diff '%s' patches files multiple times; split the diff in multiple files or "
  2508. "merge the hunks into a single one"
  2509. msgstr ""
  2510. #: scripts/Dpkg/Source/Patch.pm
  2511. #, perl-format
  2512. msgid "diff '%s' patches file %s more than once"
  2513. msgstr ""
  2514. #: scripts/Dpkg/Source/Patch.pm
  2515. #, perl-format
  2516. msgid "unexpected end of diff '%s'"
  2517. msgstr ""
  2518. #: scripts/Dpkg/Source/Patch.pm
  2519. #, perl-format
  2520. msgid "expected [ +-] at start of line %d of diff '%s'"
  2521. msgstr ""
  2522. #: scripts/Dpkg/Source/Patch.pm
  2523. #, perl-format
  2524. msgid "expected ^@@ at line %d of diff '%s'"
  2525. msgstr ""
  2526. #: scripts/Dpkg/Source/Patch.pm
  2527. #, perl-format
  2528. msgid "diff '%s' doesn't contain any patch"
  2529. msgstr ""
  2530. #: scripts/Dpkg/Source/Patch.pm
  2531. #, perl-format
  2532. msgid "remove patch backup file %s"
  2533. msgstr ""
  2534. #: scripts/Dpkg/Source/Patch.pm
  2535. msgid "nonexistent"
  2536. msgstr ""
  2537. #: scripts/Dpkg/Source/Patch.pm
  2538. msgid "plain file"
  2539. msgstr ""
  2540. #: scripts/Dpkg/Source/Patch.pm
  2541. msgid "directory"
  2542. msgstr ""
  2543. #: scripts/Dpkg/Source/Patch.pm
  2544. #, perl-format
  2545. msgid "symlink to %s"
  2546. msgstr ""
  2547. #: scripts/Dpkg/Source/Patch.pm
  2548. msgid "block device"
  2549. msgstr ""
  2550. #: scripts/Dpkg/Source/Patch.pm
  2551. msgid "character device"
  2552. msgstr ""
  2553. #: scripts/Dpkg/Source/Patch.pm
  2554. msgid "named pipe"
  2555. msgstr ""
  2556. #: scripts/Dpkg/Source/Patch.pm
  2557. msgid "named socket"
  2558. msgstr ""
  2559. #: scripts/Dpkg/Source/Quilt.pm
  2560. #, perl-format
  2561. msgid "cannot mkdir %s"
  2562. msgstr ""
  2563. #: scripts/Dpkg/Source/Quilt.pm
  2564. msgid "the patch has fuzz which is not allowed, or is malformed"
  2565. msgstr ""
  2566. #: scripts/Dpkg/Source/Quilt.pm
  2567. #, perl-format
  2568. msgid "if patch '%s' is correctly applied by quilt, use '%s' to update it"
  2569. msgstr ""
  2570. #: scripts/Dpkg/Source/Quilt.pm
  2571. #, perl-format
  2572. msgid "%s should be a directory or non-existing"
  2573. msgstr ""
  2574. #: scripts/Dpkg/Source/Quilt.pm
  2575. #, perl-format
  2576. msgid "%s should be a file or non-existing"
  2577. msgstr ""
  2578. #: scripts/Dpkg/Source/Quilt.pm
  2579. #, perl-format
  2580. msgid ""
  2581. "the series file (%s) contains unsupported options ('%s', line %s); dpkg-"
  2582. "source might fail when applying patches"
  2583. msgstr ""
  2584. #: scripts/Dpkg/Source/Quilt.pm
  2585. #, perl-format
  2586. msgid "restoring quilt backup files for %s"
  2587. msgstr ""
  2588. #: scripts/Dpkg/Substvars.pm
  2589. #, perl-format
  2590. msgid "bad line in substvars file %s at line %d"
  2591. msgstr ""
  2592. #: scripts/Dpkg/Substvars.pm
  2593. #, perl-format
  2594. msgid "too many substitutions - recursive ? - in '%s'"
  2595. msgstr ""
  2596. #: scripts/Dpkg/Substvars.pm
  2597. #, perl-format
  2598. msgid "deprecated substitution variable ${%s}"
  2599. msgstr ""
  2600. #: scripts/Dpkg/Substvars.pm
  2601. #, perl-format
  2602. msgid "unknown substitution variable ${%s}"
  2603. msgstr ""
  2604. #: scripts/Dpkg/Substvars.pm
  2605. #, perl-format
  2606. msgid "unused substitution variable ${%s}"
  2607. msgstr ""
  2608. #: scripts/Dpkg/Vars.pm
  2609. #, perl-format
  2610. msgid "source package name '%s' is illegal: %s"
  2611. msgstr ""
  2612. #: scripts/Dpkg/Vars.pm
  2613. #, perl-format
  2614. msgid "source package has two conflicting values - %s and %s"
  2615. msgstr ""
  2616. #: scripts/Dpkg/Vendor/Debian.pm
  2617. #, perl-format
  2618. msgid "unknown %s feature in %s variable: %s"
  2619. msgstr ""
  2620. #: scripts/Dpkg/Vendor/Debian.pm
  2621. #, perl-format
  2622. msgid "incorrect value in %s option of %s variable: %s"
  2623. msgstr ""
  2624. #: scripts/Dpkg/Vendor/Debian.pm
  2625. #, perl-format
  2626. msgid "unknown host architecture '%s'"
  2627. msgstr ""
  2628. #: scripts/Dpkg/Vendor/Ubuntu.pm
  2629. msgid ""
  2630. "Version number suggests Ubuntu changes, but Maintainer: does not have Ubuntu "
  2631. "address"
  2632. msgstr ""
  2633. #: scripts/Dpkg/Vendor/Ubuntu.pm
  2634. msgid ""
  2635. "Version number suggests Ubuntu changes, but there is no XSBC-Original-"
  2636. "Maintainer field"
  2637. msgstr ""
  2638. #: scripts/Dpkg/Vendor/Ubuntu.pm
  2639. msgid "'hardening' flag found but 'hardening-wrapper' not installed"
  2640. msgstr ""
  2641. #: scripts/Dpkg/Vendor/Ubuntu.pm
  2642. #, perl-format
  2643. msgid "overriding %s in environment: %s"
  2644. msgstr ""
  2645. #: scripts/Dpkg/Version.pm
  2646. #, perl-format
  2647. msgid "%s is not a valid version"
  2648. msgstr ""
  2649. #: scripts/Dpkg/Version.pm
  2650. msgid "version number cannot be empty"
  2651. msgstr ""
  2652. #: scripts/Dpkg/Version.pm
  2653. msgid "version number does not start with digit"
  2654. msgstr ""
  2655. #: scripts/Dpkg/Version.pm
  2656. #, perl-format
  2657. msgid "version number contains illegal character '%s'"
  2658. msgstr ""
  2659. #: scripts/Dpkg/Version.pm
  2660. #, perl-format
  2661. msgid "epoch part of the version number is not a number: '%s'"
  2662. msgstr ""