dpkg-dev.pot 82 KB

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