dpkg-dev.pot 84 KB

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