dpkg-dev.pot 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252
  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.7\n"
  10. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  11. "POT-Creation-Date: 2016-05-09 03:21+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. " --require-strong-checksums\n"
  1302. " abort if the package contains no strong "
  1303. "checksums\n"
  1304. " --ignore-bad-version allow bad source package versions."
  1305. msgstr ""
  1306. #: scripts/dpkg-source.pl
  1307. msgid ""
  1308. "General options:\n"
  1309. " -?, --help show this help message.\n"
  1310. " --version show the version."
  1311. msgstr ""
  1312. #: scripts/dpkg-source.pl
  1313. msgid ""
  1314. "Source format specific build and extract options are available;\n"
  1315. "use --format with --help to see them."
  1316. msgstr ""
  1317. #: scripts/dpkg-vendor.pl
  1318. msgid ""
  1319. "Commands:\n"
  1320. " --is <vendor> returns true if current vendor is <vendor>.\n"
  1321. " --derives-from <vendor> returns true if current vendor derives from "
  1322. "<vendor>.\n"
  1323. " --query <field> print the content of the vendor-specific field.\n"
  1324. " --help show this help message.\n"
  1325. " --version show the version."
  1326. msgstr ""
  1327. #: scripts/dpkg-vendor.pl
  1328. msgid ""
  1329. "Options:\n"
  1330. " --vendor <vendor> assume <vendor> is the current vendor."
  1331. msgstr ""
  1332. #: scripts/dpkg-vendor.pl
  1333. #, perl-format
  1334. msgid "vendor %s doesn't exist in %s"
  1335. msgstr ""
  1336. #: scripts/changelog/debian.pl
  1337. #, perl-format
  1338. msgid "Usage: %s [<option>...] [<changelog-file>]"
  1339. msgstr ""
  1340. #: scripts/changelog/debian.pl
  1341. msgid ""
  1342. "Options:\n"
  1343. " --file <file> changelog <file> to parse (defaults to '-').\n"
  1344. " -l, --label <file> changelog <file> name to use in error messages.\n"
  1345. " --format <output-format>\n"
  1346. " set the output format (defaults to 'dpkg').\n"
  1347. " --all include all changes.\n"
  1348. " -s, --since <version> include all changes later than <version>.\n"
  1349. " -v <version> ditto.\n"
  1350. " -u, --until <version> include all changes earlier than <version>.\n"
  1351. " -f, --from <version> include all changes equal or later than "
  1352. "<version>.\n"
  1353. " -t, --to <version> include all changes up to or equal than "
  1354. "<version>.\n"
  1355. " -c, --count <number> include <number> entries from the top (or tail if\n"
  1356. " <number> is lower than 0).\n"
  1357. " -n <number> ditto.\n"
  1358. " -o, --offset <number> change starting point for --count, counted from\n"
  1359. " the top (or tail if <number> is lower than 0).\n"
  1360. " -?, --help print usage information.\n"
  1361. " -V, --version print version information.\n"
  1362. msgstr ""
  1363. #: scripts/changelog/debian.pl
  1364. #, perl-format
  1365. msgid "output format %s not supported"
  1366. msgstr ""
  1367. #: scripts/changelog/debian.pl
  1368. #, perl-format
  1369. msgid "more than one file specified (%s and %s)"
  1370. msgstr ""
  1371. #: scripts/changelog/debian.pl scripts/Dpkg/Changelog/Parse.pm
  1372. #, perl-format
  1373. msgid "fatal error occurred while parsing %s"
  1374. msgstr ""
  1375. #: scripts/Dpkg/Arch.pm
  1376. msgid ""
  1377. "cannot determine CC system type, falling back to default (native compilation)"
  1378. msgstr ""
  1379. #: scripts/Dpkg/Arch.pm
  1380. #, perl-format
  1381. msgid "unknown CC system type %s, falling back to default (native compilation)"
  1382. msgstr ""
  1383. #: scripts/Dpkg/Arch.pm
  1384. #, perl-format
  1385. msgid "'%s' is not a legal architecture in list '%s'"
  1386. msgstr ""
  1387. #: scripts/Dpkg/BuildFlags.pm
  1388. #, perl-format
  1389. msgid "line %d of %s mentions unknown flag %s"
  1390. msgstr ""
  1391. #: scripts/Dpkg/BuildFlags.pm
  1392. #, perl-format
  1393. msgid "line %d of %s is invalid, it has been ignored"
  1394. msgstr ""
  1395. #: scripts/Dpkg/BuildOptions.pm
  1396. #, perl-format
  1397. msgid "invalid flag in %s: %s"
  1398. msgstr ""
  1399. #: scripts/Dpkg/Build/Types.pm
  1400. #, perl-format
  1401. msgid "cannot combine %s and %s"
  1402. msgstr ""
  1403. #: scripts/Dpkg/Build/Types.pm
  1404. #, perl-format
  1405. msgid "unknown build type %s"
  1406. msgstr ""
  1407. #: scripts/Dpkg/Changelog.pm
  1408. #, perl-format
  1409. msgid ""
  1410. "%s(l%s): %s\n"
  1411. "LINE: %s"
  1412. msgstr ""
  1413. #: scripts/Dpkg/Changelog.pm
  1414. #, perl-format
  1415. msgid "%s(l%s): %s"
  1416. msgstr ""
  1417. #: scripts/Dpkg/Changelog.pm
  1418. msgid "'offset' without 'count' has no effect"
  1419. msgstr ""
  1420. #: scripts/Dpkg/Changelog.pm
  1421. msgid "you can't combine 'count' or 'offset' with any other range option"
  1422. msgstr ""
  1423. #: scripts/Dpkg/Changelog.pm
  1424. msgid "you can only specify one of 'from' and 'since', using 'since'"
  1425. msgstr ""
  1426. #: scripts/Dpkg/Changelog.pm
  1427. msgid "you can only specify one of 'to' and 'until', using 'until'"
  1428. msgstr ""
  1429. #: scripts/Dpkg/Changelog.pm
  1430. #, perl-format
  1431. msgid "'%s' option specifies non-existing version"
  1432. msgstr ""
  1433. #: scripts/Dpkg/Changelog.pm
  1434. msgid "use newest entry that is earlier than the one specified"
  1435. msgstr ""
  1436. #: scripts/Dpkg/Changelog.pm
  1437. msgid "none found, starting from the oldest entry"
  1438. msgstr ""
  1439. #: scripts/Dpkg/Changelog.pm
  1440. msgid "use oldest entry that is later than the one specified"
  1441. msgstr ""
  1442. #: scripts/Dpkg/Changelog.pm
  1443. #, perl-format
  1444. msgid "no such entry found, ignoring '%s' parameter"
  1445. msgstr ""
  1446. #: scripts/Dpkg/Changelog.pm
  1447. msgid "'since' option specifies most recent version, ignoring"
  1448. msgstr ""
  1449. #: scripts/Dpkg/Changelog.pm
  1450. msgid "'until' option specifies oldest version, ignoring"
  1451. msgstr ""
  1452. #: scripts/Dpkg/Changelog/Debian.pm
  1453. msgid "first heading"
  1454. msgstr ""
  1455. #: scripts/Dpkg/Changelog/Debian.pm
  1456. msgid "next heading or end of file"
  1457. msgstr ""
  1458. #: scripts/Dpkg/Changelog/Debian.pm
  1459. msgid "start of change data"
  1460. msgstr ""
  1461. #: scripts/Dpkg/Changelog/Debian.pm
  1462. msgid "more change data or trailer"
  1463. msgstr ""
  1464. #: scripts/Dpkg/Changelog/Debian.pm
  1465. #, perl-format
  1466. msgid "found start of entry where expected %s"
  1467. msgstr ""
  1468. #: scripts/Dpkg/Changelog/Debian.pm
  1469. msgid "badly formatted heading line"
  1470. msgstr ""
  1471. #: scripts/Dpkg/Changelog/Debian.pm
  1472. #, perl-format
  1473. msgid "found trailer where expected %s"
  1474. msgstr ""
  1475. #: scripts/Dpkg/Changelog/Debian.pm scripts/Dpkg/Changelog/Entry/Debian.pm
  1476. msgid "badly formatted trailer line"
  1477. msgstr ""
  1478. #: scripts/Dpkg/Changelog/Debian.pm
  1479. #, perl-format
  1480. msgid "found change data where expected %s"
  1481. msgstr ""
  1482. #: scripts/Dpkg/Changelog/Debian.pm
  1483. #, perl-format
  1484. msgid "found blank line where expected %s"
  1485. msgstr ""
  1486. #: scripts/Dpkg/Changelog/Debian.pm
  1487. msgid "unrecognized line"
  1488. msgstr ""
  1489. #: scripts/Dpkg/Changelog/Debian.pm
  1490. #, perl-format
  1491. msgid "found end of file where expected %s"
  1492. msgstr ""
  1493. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1494. #, perl-format
  1495. msgid "version '%s' is invalid: %s"
  1496. msgstr ""
  1497. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1498. #, perl-format
  1499. msgid "bad key-value after ';': '%s'"
  1500. msgstr ""
  1501. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1502. #, perl-format
  1503. msgid "repeated key-value %s"
  1504. msgstr ""
  1505. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1506. #, perl-format
  1507. msgid "badly formatted urgency value: %s"
  1508. msgstr ""
  1509. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1510. #, perl-format
  1511. msgid "bad binary-only value: %s"
  1512. msgstr ""
  1513. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1514. #, perl-format
  1515. msgid "unknown key-value %s"
  1516. msgstr ""
  1517. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1518. msgid "the header doesn't match the expected regex"
  1519. msgstr ""
  1520. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1521. #, perl-format
  1522. msgid "ignoring invalid week day '%s'"
  1523. msgstr ""
  1524. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1525. #, perl-format
  1526. msgid "uses full instead of abbreviated month name '%s'"
  1527. msgstr ""
  1528. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1529. #, perl-format
  1530. msgid "invalid abbreviated month name '%s'"
  1531. msgstr ""
  1532. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1533. #, perl-format
  1534. msgid "cannot parse non-comformant date '%s'"
  1535. msgstr ""
  1536. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  1537. msgid "the trailer doesn't match the expected regex"
  1538. msgstr ""
  1539. #: scripts/Dpkg/Changelog/Parse.pm
  1540. #, perl-format
  1541. msgid "unknown output format %s"
  1542. msgstr ""
  1543. #: scripts/Dpkg/Changelog/Parse.pm
  1544. #, perl-format
  1545. msgid "cannot create pipe for %s"
  1546. msgstr ""
  1547. #: scripts/Dpkg/Changelog/Parse.pm
  1548. #, perl-format
  1549. msgid "tail of %s"
  1550. msgstr ""
  1551. #: scripts/Dpkg/Changelog/Parse.pm
  1552. #, perl-format
  1553. msgid "format parser %s not executable"
  1554. msgstr ""
  1555. #: scripts/Dpkg/Changelog/Parse.pm
  1556. #, perl-format
  1557. msgid "changelog format %s is unknown"
  1558. msgstr ""
  1559. #: scripts/Dpkg/Changelog/Parse.pm
  1560. #, perl-format
  1561. msgid "cannot execute format parser: %s"
  1562. msgstr ""
  1563. #: scripts/Dpkg/Changelog/Parse.pm
  1564. msgid "output of changelog parser"
  1565. msgstr ""
  1566. #: scripts/Dpkg/Changelog/Parse.pm
  1567. #, perl-format
  1568. msgid "changelog parser %s"
  1569. msgstr ""
  1570. #: scripts/Dpkg/Checksums.pm
  1571. #, perl-format
  1572. msgid "cannot fstat file %s"
  1573. msgstr ""
  1574. #: scripts/Dpkg/Checksums.pm
  1575. #, perl-format
  1576. msgid "file %s has size %u instead of expected %u"
  1577. msgstr ""
  1578. #: scripts/Dpkg/Checksums.pm
  1579. #, perl-format
  1580. msgid "file %s has checksum %s instead of expected %s (algorithm %s)"
  1581. msgstr ""
  1582. #: scripts/Dpkg/Checksums.pm
  1583. #, perl-format
  1584. msgid "invalid line in %s checksums string: %s"
  1585. msgstr ""
  1586. #: scripts/Dpkg/Checksums.pm
  1587. #, perl-format
  1588. msgid "conflicting checksums '%s' and '%s' for file '%s'"
  1589. msgstr ""
  1590. #: scripts/Dpkg/Checksums.pm
  1591. #, perl-format
  1592. msgid "conflicting file sizes '%u' and '%u' for file '%s'"
  1593. msgstr ""
  1594. #: scripts/Dpkg/Compression/Process.pm
  1595. #, perl-format
  1596. msgid "%s is not a supported compression method"
  1597. msgstr ""
  1598. #: scripts/Dpkg/Compression/Process.pm
  1599. msgid "Dpkg::Compression::Process can only start one subprocess at a time"
  1600. msgstr ""
  1601. #: scripts/Dpkg/Conf.pm
  1602. #, perl-format
  1603. msgid "short option not allowed in %s, line %d"
  1604. msgstr ""
  1605. #: scripts/Dpkg/Conf.pm
  1606. #, perl-format
  1607. msgid "invalid syntax for option in %s, line %d"
  1608. msgstr ""
  1609. #: scripts/Dpkg/Control.pm
  1610. msgid "general section of control info file"
  1611. msgstr ""
  1612. #: scripts/Dpkg/Control.pm
  1613. msgid "package's section of control info file"
  1614. msgstr ""
  1615. #: scripts/Dpkg/Control.pm
  1616. msgid "parsed version of changelog"
  1617. msgstr ""
  1618. #: scripts/Dpkg/Control.pm
  1619. msgid "header stanza of copyright file"
  1620. msgstr ""
  1621. #: scripts/Dpkg/Control.pm
  1622. msgid "files stanza of copyright file"
  1623. msgstr ""
  1624. #: scripts/Dpkg/Control.pm
  1625. msgid "license stanza of copyright file"
  1626. msgstr ""
  1627. #: scripts/Dpkg/Control.pm
  1628. #, perl-format
  1629. msgid "repository's %s file"
  1630. msgstr ""
  1631. #: scripts/Dpkg/Control.pm
  1632. #, perl-format
  1633. msgid "entry in repository's %s file"
  1634. msgstr ""
  1635. #: scripts/Dpkg/Control.pm
  1636. #, perl-format
  1637. msgid "%s file"
  1638. msgstr ""
  1639. #: scripts/Dpkg/Control.pm
  1640. msgid "control info of a .deb package"
  1641. msgstr ""
  1642. #: scripts/Dpkg/Control.pm
  1643. msgid "vendor file"
  1644. msgstr ""
  1645. #: scripts/Dpkg/Control.pm
  1646. msgid "entry in dpkg's status file"
  1647. msgstr ""
  1648. #: scripts/Dpkg/Control/FieldsCore.pm
  1649. #, perl-format
  1650. msgid "unknown information field '%s' in input data in %s"
  1651. msgstr ""
  1652. #: scripts/Dpkg/Control/FieldsCore.pm
  1653. msgid "control information"
  1654. msgstr ""
  1655. #: scripts/Dpkg/Control/HashCore.pm
  1656. #, perl-format
  1657. msgid "syntax error in %s at line %d: %s"
  1658. msgstr ""
  1659. #: scripts/Dpkg/Control/HashCore.pm
  1660. msgid "field cannot start with a hyphen"
  1661. msgstr ""
  1662. #: scripts/Dpkg/Control/HashCore.pm
  1663. #, perl-format
  1664. msgid "duplicate field %s found"
  1665. msgstr ""
  1666. #: scripts/Dpkg/Control/HashCore.pm
  1667. msgid "continued value line not in field"
  1668. msgstr ""
  1669. #: scripts/Dpkg/Control/HashCore.pm
  1670. msgid "OpenPGP signature not allowed here"
  1671. msgstr ""
  1672. #: scripts/Dpkg/Control/HashCore.pm
  1673. msgid "expected OpenPGP signature, found end of file after blank line"
  1674. msgstr ""
  1675. #: scripts/Dpkg/Control/HashCore.pm
  1676. #, perl-format
  1677. msgid "expected OpenPGP signature, found something else '%s'"
  1678. msgstr ""
  1679. #: scripts/Dpkg/Control/HashCore.pm
  1680. msgid "unfinished OpenPGP signature"
  1681. msgstr ""
  1682. #: scripts/Dpkg/Control/HashCore.pm
  1683. msgid "line with unknown format (not field-colon-value)"
  1684. msgstr ""
  1685. #: scripts/Dpkg/Control/HashCore.pm
  1686. msgid "write error on control data"
  1687. msgstr ""
  1688. #: scripts/Dpkg/Control/Info.pm
  1689. msgid "first block lacks a Source field"
  1690. msgstr ""
  1691. #: scripts/Dpkg/Control/Info.pm
  1692. #, perl-format
  1693. msgid "block lacks the '%s' field"
  1694. msgstr ""
  1695. #: scripts/Dpkg/Deps.pm
  1696. #, perl-format
  1697. msgid "can't parse dependency %s"
  1698. msgstr ""
  1699. #: scripts/Dpkg/Deps.pm
  1700. msgid "an union dependency can only contain simple dependencies"
  1701. msgstr ""
  1702. #: scripts/Dpkg/Dist/Files.pm
  1703. #, perl-format
  1704. msgid "badly formed package name in files list file, line %d"
  1705. msgstr ""
  1706. #: scripts/Dpkg/Dist/Files.pm
  1707. #, perl-format
  1708. msgid "badly formed line in files list file, line %d"
  1709. msgstr ""
  1710. #: scripts/Dpkg/Dist/Files.pm
  1711. #, perl-format
  1712. msgid "duplicate files list entry for file %s (line %d)"
  1713. msgstr ""
  1714. #: scripts/Dpkg/Dist/Files.pm
  1715. #, perl-format
  1716. msgid "invalid filename %s"
  1717. msgstr ""
  1718. #: scripts/Dpkg/ErrorHandling.pm
  1719. msgid "info"
  1720. msgstr ""
  1721. #: scripts/Dpkg/ErrorHandling.pm
  1722. msgid "notice"
  1723. msgstr ""
  1724. #: scripts/Dpkg/ErrorHandling.pm
  1725. msgid "warning"
  1726. msgstr ""
  1727. #: scripts/Dpkg/ErrorHandling.pm
  1728. msgid "error"
  1729. msgstr ""
  1730. #: scripts/Dpkg/ErrorHandling.pm
  1731. #, perl-format
  1732. msgid "%s gave error exit status %s"
  1733. msgstr ""
  1734. #: scripts/Dpkg/ErrorHandling.pm
  1735. #, perl-format
  1736. msgid "%s died from signal %s"
  1737. msgstr ""
  1738. #: scripts/Dpkg/ErrorHandling.pm
  1739. #, perl-format
  1740. msgid "%s failed with unknown exit code %d"
  1741. msgstr ""
  1742. #: scripts/Dpkg/ErrorHandling.pm
  1743. msgid "Use --help for program usage information."
  1744. msgstr ""
  1745. #: scripts/Dpkg/File.pm
  1746. msgid "File::FcntlLock not available; using flock which is not NFS-safe"
  1747. msgstr ""
  1748. #: scripts/Dpkg/File.pm
  1749. #, perl-format
  1750. msgid "failed to get a write lock on %s"
  1751. msgstr ""
  1752. #: scripts/Dpkg/IPC.pm
  1753. #, perl-format
  1754. msgid "pipe for %s"
  1755. msgstr ""
  1756. #: scripts/Dpkg/IPC.pm
  1757. #, perl-format
  1758. msgid "chdir to %s"
  1759. msgstr ""
  1760. #: scripts/Dpkg/IPC.pm
  1761. msgid "reopen stdin"
  1762. msgstr ""
  1763. #: scripts/Dpkg/IPC.pm
  1764. msgid "reopen stdout"
  1765. msgstr ""
  1766. #: scripts/Dpkg/IPC.pm
  1767. msgid "child process"
  1768. msgstr ""
  1769. #: scripts/Dpkg/IPC.pm
  1770. #, perl-format
  1771. msgid "wait for %s"
  1772. msgstr ""
  1773. #: scripts/Dpkg/IPC.pm
  1774. #, perl-format
  1775. msgid "%s didn't complete in %d second"
  1776. msgid_plural "%s didn't complete in %d seconds"
  1777. msgstr[0] ""
  1778. msgstr[1] ""
  1779. #: scripts/Dpkg/Interface/Storable.pm
  1780. msgid "<standard input>"
  1781. msgstr ""
  1782. #: scripts/Dpkg/Package.pm
  1783. msgid "may not be empty string"
  1784. msgstr ""
  1785. #: scripts/Dpkg/Package.pm
  1786. #, perl-format
  1787. msgid "character '%s' not allowed"
  1788. msgstr ""
  1789. #: scripts/Dpkg/Package.pm
  1790. msgid "must start with an alphanumeric character"
  1791. msgstr ""
  1792. #: scripts/Dpkg/Shlibs/Objdump.pm
  1793. #, perl-format
  1794. msgid "couldn't parse dynamic relocation record: %s"
  1795. msgstr ""
  1796. #: scripts/Dpkg/Shlibs/Objdump.pm
  1797. #, perl-format
  1798. msgid "couldn't parse dynamic symbol definition: %s"
  1799. msgstr ""
  1800. #: scripts/Dpkg/Shlibs/Symbol.pm
  1801. #, perl-format
  1802. msgid "symbol name unspecified: %s"
  1803. msgstr ""
  1804. #: scripts/Dpkg/Shlibs/Symbol.pm
  1805. #, perl-format
  1806. msgid "you can't use symver tag to catch unversioned symbols: %s"
  1807. msgstr ""
  1808. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1809. #, perl-format
  1810. msgid "symbol information must be preceded by a header (file %s, line %s)"
  1811. msgstr ""
  1812. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1813. #, perl-format
  1814. msgid "failed to parse line in %s: %s"
  1815. msgstr ""
  1816. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1817. #, perl-format
  1818. msgid "failed to parse a line in %s: %s"
  1819. msgstr ""
  1820. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1821. #, perl-format
  1822. msgid "tried to merge the same object (%s) twice in a symfile"
  1823. msgstr ""
  1824. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  1825. msgid "cannot merge symbols from objects without SONAME"
  1826. msgstr ""
  1827. #: scripts/Dpkg/Source/Archive.pm
  1828. msgid "write on tar input"
  1829. msgstr ""
  1830. #: scripts/Dpkg/Source/Archive.pm
  1831. msgid "close on tar input"
  1832. msgstr ""
  1833. #: scripts/Dpkg/Source/Archive.pm scripts/Dpkg/Source/Patch.pm
  1834. #, perl-format
  1835. msgid "cannot create directory %s"
  1836. msgstr ""
  1837. #: scripts/Dpkg/Source/Archive.pm scripts/Dpkg/Source/Package.pm
  1838. #: scripts/Dpkg/Source/Package/V2.pm
  1839. #, perl-format
  1840. msgid "cannot opendir %s"
  1841. msgstr ""
  1842. #: scripts/Dpkg/Source/Archive.pm
  1843. #, perl-format
  1844. msgid "unable to rename %s to %s"
  1845. msgstr ""
  1846. #: scripts/Dpkg/Source/Functions.pm
  1847. #, perl-format
  1848. msgid "cannot stat directory %s (before removal)"
  1849. msgstr ""
  1850. #: scripts/Dpkg/Source/Functions.pm
  1851. #, perl-format
  1852. msgid "unable to check for removal of directory '%s'"
  1853. msgstr ""
  1854. #: scripts/Dpkg/Source/Functions.pm
  1855. #, perl-format
  1856. msgid "rm -rf failed to remove '%s'"
  1857. msgstr ""
  1858. #: scripts/Dpkg/Source/Functions.pm scripts/Dpkg/Source/Patch.pm
  1859. #, perl-format
  1860. msgid "cannot change timestamp for %s"
  1861. msgstr ""
  1862. #: scripts/Dpkg/Source/Functions.pm
  1863. #, perl-format
  1864. msgid "cannot read timestamp from %s"
  1865. msgstr ""
  1866. #: scripts/Dpkg/Source/Package.pm
  1867. #, perl-format
  1868. msgid "%s is not the name of a file"
  1869. msgstr ""
  1870. #: scripts/Dpkg/Source/Package.pm
  1871. #, perl-format
  1872. msgid "missing critical source control field %s"
  1873. msgstr ""
  1874. #: scripts/Dpkg/Source/Package.pm
  1875. #, perl-format
  1876. msgid "source package format '%s' is not supported: %s"
  1877. msgstr ""
  1878. #: scripts/Dpkg/Source/Package.pm
  1879. msgid "format variant must be in lowercase"
  1880. msgstr ""
  1881. #: scripts/Dpkg/Source/Package.pm
  1882. #, perl-format
  1883. msgid "invalid Format field '%s'"
  1884. msgstr ""
  1885. #: scripts/Dpkg/Source/Package.pm
  1886. msgid "source package uses only weak checksums"
  1887. msgstr ""
  1888. #: scripts/Dpkg/Source/Package.pm
  1889. #, perl-format
  1890. msgid "%s and %s fields are required to compute the source basename"
  1891. msgstr ""
  1892. #: scripts/Dpkg/Source/Package.pm
  1893. #, perl-format
  1894. msgid "failed to verify signature on %s"
  1895. msgstr ""
  1896. #: scripts/Dpkg/Source/Package.pm
  1897. #, perl-format
  1898. msgid "cannot verify signature on %s since GnuPG is not installed"
  1899. msgstr ""
  1900. #: scripts/Dpkg/Source/Package.pm
  1901. #, perl-format
  1902. msgid "%s is not a valid option for %s"
  1903. msgstr ""
  1904. #: scripts/Dpkg/Source/Package.pm
  1905. #, perl-format
  1906. msgid "%s does not exist"
  1907. msgstr ""
  1908. #: scripts/Dpkg/Source/Package.pm
  1909. #, perl-format
  1910. msgid "cannot make %s executable"
  1911. msgstr ""
  1912. #: scripts/Dpkg/Source/Package.pm
  1913. #, perl-format
  1914. msgid "%s is not a plain file"
  1915. msgstr ""
  1916. #: scripts/Dpkg/Source/Package.pm
  1917. #, perl-format
  1918. msgid "'%s' is not supported by the source format '%s'"
  1919. msgstr ""
  1920. #: scripts/Dpkg/Source/Package/V1.pm
  1921. msgid "auto select original source"
  1922. msgstr ""
  1923. #: scripts/Dpkg/Source/Package/V1.pm
  1924. msgid "use packed original source (unpack and keep)"
  1925. msgstr ""
  1926. #: scripts/Dpkg/Source/Package/V1.pm
  1927. msgid "use packed original source (unpack and remove)"
  1928. msgstr ""
  1929. #: scripts/Dpkg/Source/Package/V1.pm
  1930. msgid "use unpacked original source (pack and keep)"
  1931. msgstr ""
  1932. #: scripts/Dpkg/Source/Package/V1.pm
  1933. msgid "use unpacked original source (pack and remove)"
  1934. msgstr ""
  1935. #: scripts/Dpkg/Source/Package/V1.pm
  1936. msgid "trust packed and unpacked original sources are same"
  1937. msgstr ""
  1938. #: scripts/Dpkg/Source/Package/V1.pm
  1939. msgid "there is no diff, do main tarfile only"
  1940. msgstr ""
  1941. #: scripts/Dpkg/Source/Package/V1.pm
  1942. msgid "like -sa, -sk, -sp, -su, -sr but may overwrite"
  1943. msgstr ""
  1944. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  1945. msgid "abort if generated diff has upstream files changes"
  1946. msgstr ""
  1947. #: scripts/Dpkg/Source/Package/V1.pm
  1948. msgid "leave original source packed in current directory"
  1949. msgstr ""
  1950. #: scripts/Dpkg/Source/Package/V1.pm
  1951. msgid "do not copy original source to current directory"
  1952. msgstr ""
  1953. #: scripts/Dpkg/Source/Package/V1.pm
  1954. msgid "unpack original source tree too"
  1955. msgstr ""
  1956. #: scripts/Dpkg/Source/Package/V1.pm
  1957. msgid "do not apply debian diff to upstream sources"
  1958. msgstr ""
  1959. #: scripts/Dpkg/Source/Package/V1.pm
  1960. #, perl-format
  1961. msgid "-s%s option overrides earlier -s%s option"
  1962. msgstr ""
  1963. #: scripts/Dpkg/Source/Package/V1.pm
  1964. #, perl-format
  1965. msgid "source handling style -s%s not allowed with -x"
  1966. msgstr ""
  1967. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  1968. msgid "multiple tarfiles in v1.0 source package"
  1969. msgstr ""
  1970. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  1971. #, perl-format
  1972. msgid "unrecognized file for a %s source package: %s"
  1973. msgstr ""
  1974. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  1975. msgid "no tarfile in Files field"
  1976. msgstr ""
  1977. #: scripts/Dpkg/Source/Package/V1.pm
  1978. msgid "native package with .orig.tar"
  1979. msgstr ""
  1980. #: scripts/Dpkg/Source/Package/V1.pm
  1981. #, perl-format
  1982. msgid "unable to rename '%s' to '%s'"
  1983. msgstr ""
  1984. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  1985. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  1986. #: scripts/Dpkg/Source/Package/V3/Native.pm
  1987. #, perl-format
  1988. msgid "unpacking %s"
  1989. msgstr ""
  1990. #: scripts/Dpkg/Source/Package/V1.pm
  1991. msgid "unable to keep orig directory (already exists)"
  1992. msgstr ""
  1993. #: scripts/Dpkg/Source/Package/V1.pm
  1994. #, perl-format
  1995. msgid "failed to rename newly-extracted %s to %s"
  1996. msgstr ""
  1997. #: scripts/Dpkg/Source/Package/V1.pm
  1998. #, perl-format
  1999. msgid "failed to rename saved %s to %s"
  2000. msgstr ""
  2001. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2002. #: scripts/Dpkg/Source/Quilt.pm
  2003. #, perl-format
  2004. msgid "applying %s"
  2005. msgstr ""
  2006. #: scripts/Dpkg/Source/Package/V1.pm
  2007. #, perl-format
  2008. msgid "upstream files that have been modified: %s"
  2009. msgstr ""
  2010. #: scripts/Dpkg/Source/Package/V1.pm
  2011. msgid "only supports gzip compression"
  2012. msgstr ""
  2013. #: scripts/Dpkg/Source/Package/V1.pm
  2014. msgid ""
  2015. "-b takes at most a directory and an orig source argument (with v1.0 source "
  2016. "package)"
  2017. msgstr ""
  2018. #: scripts/Dpkg/Source/Package/V1.pm
  2019. #, perl-format
  2020. msgid "source handling style -s%s not allowed with -b"
  2021. msgstr ""
  2022. #: scripts/Dpkg/Source/Package/V1.pm
  2023. #, perl-format
  2024. msgid "packed orig '%s' exists but is not a plain file"
  2025. msgstr ""
  2026. #: scripts/Dpkg/Source/Package/V1.pm
  2027. #, perl-format
  2028. msgid "cannot stat orig argument %s"
  2029. msgstr ""
  2030. #: scripts/Dpkg/Source/Package/V1.pm
  2031. #, perl-format
  2032. msgid ""
  2033. "orig argument is unpacked but source handling style -s%s calls for packed (."
  2034. "orig.tar.<ext>)"
  2035. msgstr ""
  2036. #: scripts/Dpkg/Source/Package/V1.pm
  2037. #, perl-format
  2038. msgid ""
  2039. "orig argument is packed but source handling style -s%s calls for unpacked (."
  2040. "orig/)"
  2041. msgstr ""
  2042. #: scripts/Dpkg/Source/Package/V1.pm
  2043. #, perl-format
  2044. msgid "orig argument %s is not a plain file or directory"
  2045. msgstr ""
  2046. #: scripts/Dpkg/Source/Package/V1.pm
  2047. #, perl-format
  2048. msgid ""
  2049. "orig argument is empty (means no orig, no diff) but source handling style -s"
  2050. "%s wants something"
  2051. msgstr ""
  2052. #: scripts/Dpkg/Source/Package/V1.pm
  2053. #, perl-format
  2054. msgid "unpacked orig '%s' exists but is not a directory"
  2055. msgstr ""
  2056. #: scripts/Dpkg/Source/Package/V1.pm
  2057. #, perl-format
  2058. msgid "unable to stat putative unpacked orig '%s'"
  2059. msgstr ""
  2060. #: scripts/Dpkg/Source/Package/V1.pm
  2061. #, perl-format
  2062. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  2063. msgstr ""
  2064. #: scripts/Dpkg/Source/Package/V1.pm
  2065. #, perl-format
  2066. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  2067. msgstr ""
  2068. #: scripts/Dpkg/Source/Package/V1.pm
  2069. #, perl-format
  2070. msgid ""
  2071. ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  2072. msgstr ""
  2073. #: scripts/Dpkg/Source/Package/V1.pm
  2074. #, perl-format
  2075. msgid ""
  2076. "tarfile '%s' already exists, not overwriting, giving up; use -sU or -sR to "
  2077. "override"
  2078. msgstr ""
  2079. #: scripts/Dpkg/Source/Package/V1.pm
  2080. #, perl-format
  2081. msgid "unable to check for existence of '%s'"
  2082. msgstr ""
  2083. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  2084. #, perl-format
  2085. msgid "unable to rename '%s' (newly created) to '%s'"
  2086. msgstr ""
  2087. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2088. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2089. #: scripts/Dpkg/Source/Package/V3/Quilt.pm scripts/Dpkg/Source/Quilt.pm
  2090. #, perl-format
  2091. msgid "unable to change permission of '%s'"
  2092. msgstr ""
  2093. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2094. #, perl-format
  2095. msgid "building %s using existing %s"
  2096. msgstr ""
  2097. #: scripts/Dpkg/Source/Package/V1.pm
  2098. #, perl-format
  2099. msgid ""
  2100. "orig directory '%s' already exists, not overwriting, giving up; use -sA, -sK "
  2101. "or -sP to override"
  2102. msgstr ""
  2103. #: scripts/Dpkg/Source/Package/V1.pm
  2104. #, perl-format
  2105. msgid "unable to check for existence of orig directory '%s'"
  2106. msgstr ""
  2107. #: scripts/Dpkg/Source/Package/V1.pm
  2108. #, perl-format
  2109. msgid "the diff modifies the following upstream files: %s"
  2110. msgstr ""
  2111. #: scripts/Dpkg/Source/Package/V1.pm
  2112. msgid ""
  2113. "use the '3.0 (quilt)' format to have separate and documented changes to "
  2114. "upstream files, see dpkg-source(1)"
  2115. msgstr ""
  2116. #: scripts/Dpkg/Source/Package/V1.pm
  2117. msgid "aborting due to --abort-on-upstream-changes"
  2118. msgstr ""
  2119. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2120. msgid "unrepresentable changes to source"
  2121. msgstr ""
  2122. #: scripts/Dpkg/Source/Package/V2.pm
  2123. msgid "include removed files in the patch"
  2124. msgstr ""
  2125. #: scripts/Dpkg/Source/Package/V2.pm
  2126. msgid "include timestamp in the patch"
  2127. msgstr ""
  2128. #: scripts/Dpkg/Source/Package/V2.pm
  2129. msgid "include binary files in the tarball"
  2130. msgstr ""
  2131. #: scripts/Dpkg/Source/Package/V2.pm
  2132. msgid "do not prepare build tree by applying patches"
  2133. msgstr ""
  2134. #: scripts/Dpkg/Source/Package/V2.pm
  2135. msgid "do not unapply patches if previously applied"
  2136. msgstr ""
  2137. #: scripts/Dpkg/Source/Package/V2.pm
  2138. msgid "unapply patches if previously applied (default)"
  2139. msgstr ""
  2140. #: scripts/Dpkg/Source/Package/V2.pm
  2141. msgid "create an empty original tarball if missing"
  2142. msgstr ""
  2143. #: scripts/Dpkg/Source/Package/V2.pm
  2144. msgid "record generated patches, instead of aborting"
  2145. msgstr ""
  2146. #: scripts/Dpkg/Source/Package/V2.pm
  2147. msgid "do not extract debian tarball into upstream sources"
  2148. msgstr ""
  2149. #: scripts/Dpkg/Source/Package/V2.pm
  2150. msgid "do not apply patches at the end of the extraction"
  2151. msgstr ""
  2152. #: scripts/Dpkg/Source/Package/V2.pm
  2153. #, perl-format
  2154. msgid "duplicate files in %s source package: %s"
  2155. msgstr ""
  2156. #: scripts/Dpkg/Source/Package/V2.pm
  2157. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  2158. msgstr ""
  2159. #: scripts/Dpkg/Source/Package/V2.pm
  2160. #, perl-format
  2161. msgid "mismatched orig.tar %s for signature %s in source package"
  2162. msgstr ""
  2163. #: scripts/Dpkg/Source/Package/V2.pm
  2164. #, perl-format
  2165. msgid "missing addon orig.tar for signature %s in source package"
  2166. msgstr ""
  2167. #: scripts/Dpkg/Source/Package/V2.pm
  2168. #, perl-format
  2169. msgid "mismatched addon orig.tar %s for signature %s in source package"
  2170. msgstr ""
  2171. #: scripts/Dpkg/Source/Package/V2.pm
  2172. #, perl-format
  2173. msgid "required removal of '%s' installed by original tarball"
  2174. msgstr ""
  2175. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Quilt.pm
  2176. #, perl-format
  2177. msgid "unapplying %s"
  2178. msgstr ""
  2179. #: scripts/Dpkg/Source/Package/V2.pm
  2180. #, perl-format
  2181. msgid "no upstream tarball found at %s"
  2182. msgstr ""
  2183. #: scripts/Dpkg/Source/Package/V2.pm
  2184. msgid "patches are not applied, applying them now"
  2185. msgstr ""
  2186. #: scripts/Dpkg/Source/Package/V2.pm
  2187. #, perl-format
  2188. msgid "several orig.tar files found (%s and %s) but only one is allowed"
  2189. msgstr ""
  2190. #: scripts/Dpkg/Source/Package/V2.pm
  2191. msgid "copy of the debian directory"
  2192. msgstr ""
  2193. #: scripts/Dpkg/Source/Package/V2.pm
  2194. msgid "local changes detected, the modified files are:"
  2195. msgstr ""
  2196. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Bzr.pm
  2197. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2198. #, perl-format
  2199. msgid "-b takes only one parameter with format '%s'"
  2200. msgstr ""
  2201. #: scripts/Dpkg/Source/Package/V2.pm
  2202. #, perl-format
  2203. msgid "unwanted binary file: %s"
  2204. msgstr ""
  2205. #: scripts/Dpkg/Source/Package/V2.pm
  2206. #, perl-format
  2207. msgid ""
  2208. "detected %d unwanted binary file (add it in debian/source/include-binaries "
  2209. "to allow its inclusion)."
  2210. msgid_plural ""
  2211. "detected %d unwanted binary files (add them in debian/source/include-"
  2212. "binaries to allow their inclusion)."
  2213. msgstr[0] ""
  2214. msgstr[1] ""
  2215. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  2216. #, perl-format
  2217. msgid "cannot represent change to %s: %s"
  2218. msgstr ""
  2219. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  2220. msgid "binary file contents changed"
  2221. msgstr ""
  2222. #: scripts/Dpkg/Source/Package/V2.pm
  2223. #, perl-format
  2224. msgid ""
  2225. "add %s in debian/source/include-binaries if you want to store the modified "
  2226. "binary in the debian tarball"
  2227. msgstr ""
  2228. #: scripts/Dpkg/Source/Package/V2.pm
  2229. #, perl-format
  2230. msgid "you can integrate the local changes with %s"
  2231. msgstr ""
  2232. #: scripts/Dpkg/Source/Package/V2.pm
  2233. #, perl-format
  2234. msgid "aborting due to unexpected upstream changes, see %s"
  2235. msgstr ""
  2236. #: scripts/Dpkg/Source/Package/V2.pm
  2237. #, perl-format
  2238. msgid "local changes have been recorded in a new patch: %s"
  2239. msgstr ""
  2240. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  2241. #, perl-format
  2242. msgid "cannot remove %s"
  2243. msgstr ""
  2244. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  2245. #: scripts/Dpkg/Source/Quilt.pm
  2246. #, perl-format
  2247. msgid "failed to copy %s to %s"
  2248. msgstr ""
  2249. #: scripts/Dpkg/Source/Package/V2.pm
  2250. #, perl-format
  2251. msgid "cannot register changes in %s, this patch already exists"
  2252. msgstr ""
  2253. #: scripts/Dpkg/Source/Package/V2.pm
  2254. #, perl-format
  2255. msgid "patch file '%s' doesn't exist"
  2256. msgstr ""
  2257. #: scripts/Dpkg/Source/Package/V2.pm
  2258. msgid "there are no local changes to record"
  2259. msgstr ""
  2260. #: scripts/Dpkg/Source/Package/V2.pm
  2261. msgid "Enter the desired patch name: "
  2262. msgstr ""
  2263. #: scripts/Dpkg/Source/Package/V2.pm
  2264. msgid "cannot find an editor"
  2265. msgstr ""
  2266. #: scripts/Dpkg/Source/Package/V2.pm
  2267. #, perl-format
  2268. msgid "adding %s to %s"
  2269. msgstr ""
  2270. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2271. msgid "cannot unpack bzr-format source package because bzr is not in the PATH"
  2272. msgstr ""
  2273. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2274. #, perl-format
  2275. msgid ""
  2276. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  2277. "present), but Format bzr was specified"
  2278. msgstr ""
  2279. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2280. #, perl-format
  2281. msgid "%s is a symlink"
  2282. msgstr ""
  2283. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2284. #, perl-format
  2285. msgid "%s is a symlink to outside %s"
  2286. msgstr ""
  2287. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2288. msgid "doesn't contain a bzr repository"
  2289. msgstr ""
  2290. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2291. msgid "bzr status exited nonzero"
  2292. msgstr ""
  2293. #: scripts/Dpkg/Source/Package/V3/Bzr.pm scripts/Dpkg/Source/Package/V3/Git.pm
  2294. #, perl-format
  2295. msgid "uncommitted, not-ignored changes in working directory: %s"
  2296. msgstr ""
  2297. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2298. msgid "format v3.0 uses only one source file"
  2299. msgstr ""
  2300. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2301. #, perl-format
  2302. msgid "expected %s, got %s"
  2303. msgstr ""
  2304. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  2305. msgid "define the format of the generated source package"
  2306. msgstr ""
  2307. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  2308. msgid "Format '3.0 (custom)' is only used to create source packages"
  2309. msgstr ""
  2310. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  2311. msgid "no files indicated on command line"
  2312. msgstr ""
  2313. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  2314. msgid "--target-format option is missing"
  2315. msgstr ""
  2316. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2317. msgid "cannot unpack git-format source package because git is not in the PATH"
  2318. msgstr ""
  2319. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2320. #, perl-format
  2321. msgid ""
  2322. "source directory is not the top directory of a git repository (%s/.git not "
  2323. "present), but Format git was specified"
  2324. msgstr ""
  2325. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2326. #, perl-format
  2327. msgid "git repository %s uses submodules; this is not yet supported"
  2328. msgstr ""
  2329. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2330. msgid "specify a git <ref> to include in the git bundle"
  2331. msgstr ""
  2332. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2333. msgid "create a shallow clone with <number> depth"
  2334. msgstr ""
  2335. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2336. msgid "doesn't contain a git repository"
  2337. msgstr ""
  2338. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2339. msgid "git ls-files exited nonzero"
  2340. msgstr ""
  2341. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2342. #, perl-format
  2343. msgid "creating shallow clone with depth %s"
  2344. msgstr ""
  2345. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2346. #, perl-format
  2347. msgid "bundling: %s"
  2348. msgstr ""
  2349. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2350. msgid "format v3.0 (git) uses only one .git file"
  2351. msgstr ""
  2352. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2353. msgid "format v3.0 (git) uses only one .gitshallow file"
  2354. msgstr ""
  2355. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2356. #, perl-format
  2357. msgid "format v3.0 (git) unknown file: %s"
  2358. msgstr ""
  2359. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2360. #, perl-format
  2361. msgid "format v3.0 (git) expected %s"
  2362. msgstr ""
  2363. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2364. #, perl-format
  2365. msgid "cloning %s"
  2366. msgstr ""
  2367. #: scripts/Dpkg/Source/Package/V3/Git.pm
  2368. msgid "setting up shallow clone"
  2369. msgstr ""
  2370. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2371. #, perl-format
  2372. msgid "unrecognized file for a native source package: %s"
  2373. msgstr ""
  2374. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2375. msgid "native package version may not have a revision"
  2376. msgstr ""
  2377. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2378. msgid "use a single debianization patch"
  2379. msgstr ""
  2380. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2381. msgid "accept quilt metadata <version> even if unknown"
  2382. msgstr ""
  2383. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2384. msgid "non-native package version does not contain a revision"
  2385. msgstr ""
  2386. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2387. #, perl-format
  2388. msgid "can't create symlink %s"
  2389. msgstr ""
  2390. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  2391. #, perl-format
  2392. msgid "unsupported version of the quilt metadata: %s"
  2393. msgstr ""
  2394. #: scripts/Dpkg/Source/Patch.pm
  2395. #, perl-format
  2396. msgid "file %s has no final newline (either original or modified version)"
  2397. msgstr ""
  2398. #: scripts/Dpkg/Source/Patch.pm
  2399. #, perl-format
  2400. msgid "unknown line from diff -u on %s: '%s'"
  2401. msgstr ""
  2402. #: scripts/Dpkg/Source/Patch.pm
  2403. msgid "failed to write"
  2404. msgstr ""
  2405. #: scripts/Dpkg/Source/Patch.pm
  2406. #, perl-format
  2407. msgid "diff on %s"
  2408. msgstr ""
  2409. #: scripts/Dpkg/Source/Patch.pm
  2410. #, perl-format
  2411. msgid "cannot stat file %s"
  2412. msgstr ""
  2413. #: scripts/Dpkg/Source/Patch.pm
  2414. #, perl-format
  2415. msgid "cannot read link %s"
  2416. msgstr ""
  2417. #: scripts/Dpkg/Source/Patch.pm
  2418. msgid "device or socket is not allowed"
  2419. msgstr ""
  2420. #: scripts/Dpkg/Source/Patch.pm
  2421. msgid "unknown file type"
  2422. msgstr ""
  2423. #: scripts/Dpkg/Source/Patch.pm
  2424. #, perl-format
  2425. msgid "ignoring deletion of file %s, use --include-removal to override"
  2426. msgstr ""
  2427. #: scripts/Dpkg/Source/Patch.pm
  2428. #, perl-format
  2429. msgid "ignoring deletion of directory %s"
  2430. msgstr ""
  2431. #: scripts/Dpkg/Source/Patch.pm
  2432. #, perl-format
  2433. msgid "ignoring deletion of symlink %s"
  2434. msgstr ""
  2435. #: scripts/Dpkg/Source/Patch.pm
  2436. #, perl-format
  2437. msgid "newly created empty file '%s' will not be represented in diff"
  2438. msgstr ""
  2439. #: scripts/Dpkg/Source/Patch.pm
  2440. #, perl-format
  2441. msgid "executable mode %04o of '%s' will not be represented in diff"
  2442. msgstr ""
  2443. #: scripts/Dpkg/Source/Patch.pm
  2444. #, perl-format
  2445. msgid "special mode %04o of '%s' will not be represented in diff"
  2446. msgstr ""
  2447. #: scripts/Dpkg/Source/Patch.pm
  2448. #, perl-format
  2449. msgid "cannot represent change to %s:"
  2450. msgstr ""
  2451. #: scripts/Dpkg/Source/Patch.pm
  2452. #, perl-format
  2453. msgid " new version is %s"
  2454. msgstr ""
  2455. #: scripts/Dpkg/Source/Patch.pm
  2456. #, perl-format
  2457. msgid " old version is %s"
  2458. msgstr ""
  2459. #: scripts/Dpkg/Source/Patch.pm
  2460. #, perl-format
  2461. msgid "diff %s patches file with C-style encoded filename"
  2462. msgstr ""
  2463. #: scripts/Dpkg/Source/Patch.pm
  2464. #, perl-format
  2465. msgid "expected ^--- in line %d of diff '%s'"
  2466. msgstr ""
  2467. #: scripts/Dpkg/Source/Patch.pm
  2468. #, perl-format
  2469. msgid "diff '%s' patches file with name ending in .dpkg-orig"
  2470. msgstr ""
  2471. #: scripts/Dpkg/Source/Patch.pm
  2472. #, perl-format
  2473. msgid "diff '%s' finishes in middle of ---/+++ (line %d)"
  2474. msgstr ""
  2475. #: scripts/Dpkg/Source/Patch.pm
  2476. #, perl-format
  2477. msgid "line after --- isn't as expected in diff '%s' (line %d)"
  2478. msgstr ""
  2479. #: scripts/Dpkg/Source/Patch.pm
  2480. #, perl-format
  2481. msgid "none of the filenames in ---/+++ are valid in diff '%s' (line %d)"
  2482. msgstr ""
  2483. #: scripts/Dpkg/Source/Patch.pm scripts/Dpkg/Source/Quilt.pm
  2484. #, perl-format
  2485. msgid "%s contains an insecure path: %s"
  2486. msgstr ""
  2487. #: scripts/Dpkg/Source/Patch.pm
  2488. #, perl-format
  2489. msgid "diff %s modifies file %s through a symlink: %s"
  2490. msgstr ""
  2491. #: scripts/Dpkg/Source/Patch.pm
  2492. #, perl-format
  2493. msgid "original and modified files are /dev/null in diff '%s' (line %d)"
  2494. msgstr ""
  2495. #: scripts/Dpkg/Source/Patch.pm
  2496. #, perl-format
  2497. msgid "file removal without proper filename in diff '%s' (line %d)"
  2498. msgstr ""
  2499. #: scripts/Dpkg/Source/Patch.pm
  2500. #, perl-format
  2501. msgid "diff %s removes a non-existing file %s (line %d)"
  2502. msgstr ""
  2503. #: scripts/Dpkg/Source/Patch.pm
  2504. #, perl-format
  2505. msgid "diff '%s' patches something which is not a plain file"
  2506. msgstr ""
  2507. #: scripts/Dpkg/Source/Patch.pm
  2508. #, perl-format
  2509. msgid ""
  2510. "diff '%s' patches files multiple times; split the diff in multiple files or "
  2511. "merge the hunks into a single one"
  2512. msgstr ""
  2513. #: scripts/Dpkg/Source/Patch.pm
  2514. #, perl-format
  2515. msgid "diff '%s' patches file %s more than once"
  2516. msgstr ""
  2517. #: scripts/Dpkg/Source/Patch.pm
  2518. #, perl-format
  2519. msgid "unexpected end of diff '%s'"
  2520. msgstr ""
  2521. #: scripts/Dpkg/Source/Patch.pm
  2522. #, perl-format
  2523. msgid "expected [ +-] at start of line %d of diff '%s'"
  2524. msgstr ""
  2525. #: scripts/Dpkg/Source/Patch.pm
  2526. #, perl-format
  2527. msgid "expected ^@@ at line %d of diff '%s'"
  2528. msgstr ""
  2529. #: scripts/Dpkg/Source/Patch.pm
  2530. #, perl-format
  2531. msgid "diff '%s' doesn't contain any patch"
  2532. msgstr ""
  2533. #: scripts/Dpkg/Source/Patch.pm
  2534. #, perl-format
  2535. msgid "remove patch backup file %s"
  2536. msgstr ""
  2537. #: scripts/Dpkg/Source/Patch.pm
  2538. msgid "nonexistent"
  2539. msgstr ""
  2540. #: scripts/Dpkg/Source/Patch.pm
  2541. msgid "plain file"
  2542. msgstr ""
  2543. #: scripts/Dpkg/Source/Patch.pm
  2544. msgid "directory"
  2545. msgstr ""
  2546. #: scripts/Dpkg/Source/Patch.pm
  2547. #, perl-format
  2548. msgid "symlink to %s"
  2549. msgstr ""
  2550. #: scripts/Dpkg/Source/Patch.pm
  2551. msgid "block device"
  2552. msgstr ""
  2553. #: scripts/Dpkg/Source/Patch.pm
  2554. msgid "character device"
  2555. msgstr ""
  2556. #: scripts/Dpkg/Source/Patch.pm
  2557. msgid "named pipe"
  2558. msgstr ""
  2559. #: scripts/Dpkg/Source/Patch.pm
  2560. msgid "named socket"
  2561. msgstr ""
  2562. #: scripts/Dpkg/Source/Quilt.pm
  2563. #, perl-format
  2564. msgid "cannot mkdir %s"
  2565. msgstr ""
  2566. #: scripts/Dpkg/Source/Quilt.pm
  2567. msgid "the patch has fuzz which is not allowed, or is malformed"
  2568. msgstr ""
  2569. #: scripts/Dpkg/Source/Quilt.pm
  2570. #, perl-format
  2571. msgid "if patch '%s' is correctly applied by quilt, use '%s' to update it"
  2572. msgstr ""
  2573. #: scripts/Dpkg/Source/Quilt.pm
  2574. #, perl-format
  2575. msgid "%s should be a directory or non-existing"
  2576. msgstr ""
  2577. #: scripts/Dpkg/Source/Quilt.pm
  2578. #, perl-format
  2579. msgid "%s should be a file or non-existing"
  2580. msgstr ""
  2581. #: scripts/Dpkg/Source/Quilt.pm
  2582. #, perl-format
  2583. msgid ""
  2584. "the series file (%s) contains unsupported options ('%s', line %s); dpkg-"
  2585. "source might fail when applying patches"
  2586. msgstr ""
  2587. #: scripts/Dpkg/Source/Quilt.pm
  2588. #, perl-format
  2589. msgid "restoring quilt backup files for %s"
  2590. msgstr ""
  2591. #: scripts/Dpkg/Substvars.pm
  2592. #, perl-format
  2593. msgid "bad line in substvars file %s at line %d"
  2594. msgstr ""
  2595. #: scripts/Dpkg/Substvars.pm
  2596. #, perl-format
  2597. msgid "too many substitutions - recursive ? - in '%s'"
  2598. msgstr ""
  2599. #: scripts/Dpkg/Substvars.pm
  2600. #, perl-format
  2601. msgid "deprecated substitution variable ${%s}"
  2602. msgstr ""
  2603. #: scripts/Dpkg/Substvars.pm
  2604. #, perl-format
  2605. msgid "unknown substitution variable ${%s}"
  2606. msgstr ""
  2607. #: scripts/Dpkg/Substvars.pm
  2608. #, perl-format
  2609. msgid "unused substitution variable ${%s}"
  2610. msgstr ""
  2611. #: scripts/Dpkg/Vars.pm
  2612. #, perl-format
  2613. msgid "source package name '%s' is illegal: %s"
  2614. msgstr ""
  2615. #: scripts/Dpkg/Vars.pm
  2616. #, perl-format
  2617. msgid "source package has two conflicting values - %s and %s"
  2618. msgstr ""
  2619. #: scripts/Dpkg/Vendor/Debian.pm
  2620. #, perl-format
  2621. msgid "unknown %s feature in %s variable: %s"
  2622. msgstr ""
  2623. #: scripts/Dpkg/Vendor/Debian.pm
  2624. #, perl-format
  2625. msgid "incorrect value in %s option of %s variable: %s"
  2626. msgstr ""
  2627. #: scripts/Dpkg/Vendor/Debian.pm
  2628. #, perl-format
  2629. msgid "unknown host architecture '%s'"
  2630. msgstr ""
  2631. #: scripts/Dpkg/Vendor/Ubuntu.pm
  2632. msgid ""
  2633. "Version number suggests Ubuntu changes, but Maintainer: does not have Ubuntu "
  2634. "address"
  2635. msgstr ""
  2636. #: scripts/Dpkg/Vendor/Ubuntu.pm
  2637. msgid ""
  2638. "Version number suggests Ubuntu changes, but there is no XSBC-Original-"
  2639. "Maintainer field"
  2640. msgstr ""
  2641. #: scripts/Dpkg/Vendor/Ubuntu.pm
  2642. msgid "'hardening' flag found but 'hardening-wrapper' not installed"
  2643. msgstr ""
  2644. #: scripts/Dpkg/Vendor/Ubuntu.pm
  2645. #, perl-format
  2646. msgid "overriding %s in environment: %s"
  2647. msgstr ""
  2648. #: scripts/Dpkg/Version.pm
  2649. #, perl-format
  2650. msgid "%s is not a valid version"
  2651. msgstr ""
  2652. #: scripts/Dpkg/Version.pm
  2653. msgid "version number cannot be empty"
  2654. msgstr ""
  2655. #: scripts/Dpkg/Version.pm
  2656. msgid "version number does not start with digit"
  2657. msgstr ""
  2658. #: scripts/Dpkg/Version.pm
  2659. #, perl-format
  2660. msgid "version number contains illegal character '%s'"
  2661. msgstr ""
  2662. #: scripts/Dpkg/Version.pm
  2663. #, perl-format
  2664. msgid "epoch part of the version number is not a number: '%s'"
  2665. msgstr ""