dpkg-dev.pot 84 KB

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