ku.po 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351
  1. # translation of apt-ku.po to Kurdish
  2. # Kurdish translation for apt
  3. # This file is distributed under the same license as the apt package.
  4. #
  5. # FIRST AUTHOR <EMAIL@ADDRESS>, 2006.
  6. # Erdal Ronahi <erdal dot ronahi at gmail dot com>, 2008.
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt-ku\n"
  10. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  11. "POT-Creation-Date: 2014-05-05 16:26+0200\n"
  12. "PO-Revision-Date: 2008-05-08 12:48+0200\n"
  13. "Last-Translator: Erdal Ronahi <erdal dot ronahi at gmail dot com>\n"
  14. "Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n"
  15. "Language: \n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "X-Generator: KAider 0.1\n"
  20. "Plural-Forms: nplurals=2; plural= n != 1;\n"
  21. #: cmdline/apt-cache.cc:149
  22. #, c-format
  23. msgid "Package %s version %s has an unmet dep:\n"
  24. msgstr ""
  25. #: cmdline/apt-cache.cc:277
  26. msgid "Total package names: "
  27. msgstr "Navên paketan bi giştî :"
  28. #: cmdline/apt-cache.cc:279
  29. #, fuzzy
  30. msgid "Total package structures: "
  31. msgstr "Navên paketan bi giştî :"
  32. #: cmdline/apt-cache.cc:319
  33. msgid " Normal packages: "
  34. msgstr " Pakêtên normal:"
  35. #: cmdline/apt-cache.cc:320
  36. msgid " Pure virtual packages: "
  37. msgstr " Pakêtên farazî yên safî:"
  38. #: cmdline/apt-cache.cc:321
  39. msgid " Single virtual packages: "
  40. msgstr " Pakêta tenê ya farazî:"
  41. #: cmdline/apt-cache.cc:322
  42. msgid " Mixed virtual packages: "
  43. msgstr " Pakêtên hevbeş yên farazî:"
  44. #: cmdline/apt-cache.cc:323
  45. msgid " Missing: "
  46. msgstr " Winda: "
  47. #: cmdline/apt-cache.cc:325
  48. msgid "Total distinct versions: "
  49. msgstr "Guhertoyên vekirî yên giştî:"
  50. #: cmdline/apt-cache.cc:327
  51. #, fuzzy
  52. msgid "Total distinct descriptions: "
  53. msgstr "Guhertoyên vekirî yên giştî:"
  54. #: cmdline/apt-cache.cc:329
  55. msgid "Total dependencies: "
  56. msgstr "Bindestên giştî:"
  57. #: cmdline/apt-cache.cc:332
  58. msgid "Total ver/file relations: "
  59. msgstr ""
  60. #: cmdline/apt-cache.cc:334
  61. #, fuzzy
  62. msgid "Total Desc/File relations: "
  63. msgstr "Guhertoyên vekirî yên giştî:"
  64. #: cmdline/apt-cache.cc:336
  65. msgid "Total Provides mappings: "
  66. msgstr ""
  67. #: cmdline/apt-cache.cc:348
  68. msgid "Total globbed strings: "
  69. msgstr ""
  70. #: cmdline/apt-cache.cc:362
  71. msgid "Total dependency version space: "
  72. msgstr ""
  73. #: cmdline/apt-cache.cc:367
  74. msgid "Total slack space: "
  75. msgstr "Cihê giştî yê sist:"
  76. #: cmdline/apt-cache.cc:375
  77. msgid "Total space accounted for: "
  78. msgstr "Cihê giştî yê veqetandî: "
  79. #: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155
  80. #: apt-private/private-show.cc:58
  81. #, c-format
  82. msgid "Package file %s is out of sync."
  83. msgstr "Pakêta dosya %s li derveyî demê ye."
  84. #: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441
  85. #: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59
  86. #: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232
  87. #: apt-private/private-show.cc:171 apt-private/private-show.cc:173
  88. msgid "No packages found"
  89. msgstr "Pakêt nayên dîtin"
  90. #: cmdline/apt-cache.cc:1254
  91. #, fuzzy
  92. msgid "You must give at least one search pattern"
  93. msgstr "Pêwist e tu mînakekê bidî"
  94. #: cmdline/apt-cache.cc:1420
  95. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  96. msgstr ""
  97. #: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596
  98. #, c-format
  99. msgid "Unable to locate package %s"
  100. msgstr "Pakêt nehate dîtin %s"
  101. #: cmdline/apt-cache.cc:1545
  102. msgid "Package files:"
  103. msgstr "Pelgehên Pakêt:"
  104. #: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643
  105. msgid "Cache is out of sync, can't x-ref a package file"
  106. msgstr ""
  107. #. Show any packages have explicit pins
  108. #: cmdline/apt-cache.cc:1566
  109. msgid "Pinned packages:"
  110. msgstr ""
  111. #: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623
  112. msgid "(not found)"
  113. msgstr "(nehate dîtin)"
  114. #: cmdline/apt-cache.cc:1586
  115. msgid " Installed: "
  116. msgstr " Sazkirî: "
  117. #: cmdline/apt-cache.cc:1587
  118. msgid " Candidate: "
  119. msgstr " Berendam: "
  120. #: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613
  121. msgid "(none)"
  122. msgstr "(ne tiştek)"
  123. #: cmdline/apt-cache.cc:1620
  124. msgid " Package pin: "
  125. msgstr " Destika pakêtê:"
  126. #. Show the priority tables
  127. #: cmdline/apt-cache.cc:1629
  128. msgid " Version table:"
  129. msgstr " Tabloya guhertoyan:"
  130. #: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83
  131. #: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388
  132. #: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217
  133. #: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42
  134. #: cmdline/apt-sortpkgs.cc:147
  135. #, fuzzy, c-format
  136. msgid "%s %s for %s compiled on %s %s\n"
  137. msgstr "%s %s ji bo %s %s komkirî di %s %s de\n"
  138. #: cmdline/apt-cache.cc:1749
  139. msgid ""
  140. "Usage: apt-cache [options] command\n"
  141. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  142. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  143. "\n"
  144. "apt-cache is a low-level tool used to query information\n"
  145. "from APT's binary cache files\n"
  146. "\n"
  147. "Commands:\n"
  148. " gencaches - Build both the package and source cache\n"
  149. " showpkg - Show some general information for a single package\n"
  150. " showsrc - Show source records\n"
  151. " stats - Show some basic statistics\n"
  152. " dump - Show the entire file in a terse form\n"
  153. " dumpavail - Print an available file to stdout\n"
  154. " unmet - Show unmet dependencies\n"
  155. " search - Search the package list for a regex pattern\n"
  156. " show - Show a readable record for the package\n"
  157. " depends - Show raw dependency information for a package\n"
  158. " rdepends - Show reverse dependency information for a package\n"
  159. " pkgnames - List the names of all packages in the system\n"
  160. " dotty - Generate package graphs for GraphViz\n"
  161. " xvcg - Generate package graphs for xvcg\n"
  162. " policy - Show policy settings\n"
  163. "\n"
  164. "Options:\n"
  165. " -h This help text.\n"
  166. " -p=? The package cache.\n"
  167. " -s=? The source cache.\n"
  168. " -q Disable progress indicator.\n"
  169. " -i Show only important deps for the unmet command.\n"
  170. " -c=? Read this configuration file\n"
  171. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  172. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  173. msgstr ""
  174. #: cmdline/apt-cdrom.cc:76
  175. #, fuzzy
  176. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  177. msgstr "Ji kerema xwe re navekî li vî Dîsketî bike, wekî 'Debian 2.1r1 Disk 1'"
  178. #: cmdline/apt-cdrom.cc:91
  179. msgid "Please insert a Disc in the drive and press enter"
  180. msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne"
  181. #: cmdline/apt-cdrom.cc:139
  182. #, fuzzy, c-format
  183. msgid "Failed to mount '%s' to '%s'"
  184. msgstr "Anîna %s %s biserneket\n"
  185. #: cmdline/apt-cdrom.cc:178
  186. msgid ""
  187. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  188. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  189. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  190. "mount point."
  191. msgstr ""
  192. #: cmdline/apt-cdrom.cc:182
  193. msgid "Repeat this process for the rest of the CDs in your set."
  194. msgstr ""
  195. #: cmdline/apt-config.cc:48
  196. msgid "Arguments not in pairs"
  197. msgstr ""
  198. #: cmdline/apt-config.cc:89
  199. msgid ""
  200. "Usage: apt-config [options] command\n"
  201. "\n"
  202. "apt-config is a simple tool to read the APT config file\n"
  203. "\n"
  204. "Commands:\n"
  205. " shell - Shell mode\n"
  206. " dump - Show the configuration\n"
  207. "\n"
  208. "Options:\n"
  209. " -h This help text.\n"
  210. " -c=? Read this configuration file\n"
  211. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  212. msgstr ""
  213. "Bikaranîn: apt-config [vebijark] ferman\n"
  214. "apt-config, amûra xwendina dosyeya mîhengên APTê ye\n"
  215. "\n"
  216. "Ferman\n"
  217. " shell - moda shell\n"
  218. " dump - Mîhengan nîşan dide\n"
  219. "\n"
  220. "Vebijark:\n"
  221. " -h Ev dosyeya alîkariyê ye.\n"
  222. " -c=? Dosyeya mîhengan nîşan dide\n"
  223. " -o=? Rê li ber vedike ku tu karibe li gorî dilê xwe vebijarkan diyar bike. "
  224. "mînak -o dir::cache=/tmp\n"
  225. #: cmdline/apt-get.cc:245
  226. #, fuzzy, c-format
  227. msgid "Can not find a package for architecture '%s'"
  228. msgstr "Nikarî pakêta %s bibîne"
  229. #: cmdline/apt-get.cc:327
  230. #, fuzzy, c-format
  231. msgid "Can not find a package '%s' with version '%s'"
  232. msgstr "Nikarî pakêta %s bibîne"
  233. #: cmdline/apt-get.cc:330
  234. #, fuzzy, c-format
  235. msgid "Can not find a package '%s' with release '%s'"
  236. msgstr "Nikarî pakêta %s bibîne"
  237. #: cmdline/apt-get.cc:367
  238. #, c-format
  239. msgid "Picking '%s' as source package instead of '%s'\n"
  240. msgstr ""
  241. #: cmdline/apt-get.cc:423
  242. #, c-format
  243. msgid "Can not find version '%s' of package '%s'"
  244. msgstr ""
  245. #: cmdline/apt-get.cc:454
  246. #, c-format
  247. msgid "Couldn't find package %s"
  248. msgstr "Nikarî pakêta %s bibîne"
  249. #: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81
  250. #, fuzzy, c-format
  251. msgid "%s set to manually installed.\n"
  252. msgstr "lê %s dê were sazkirin"
  253. #: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83
  254. #, fuzzy, c-format
  255. msgid "%s set to automatically installed.\n"
  256. msgstr "lê %s dê were sazkirin"
  257. #: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127
  258. msgid ""
  259. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  260. "instead."
  261. msgstr ""
  262. #: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546
  263. msgid "Internal error, problem resolver broke stuff"
  264. msgstr ""
  265. #: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611
  266. msgid "Unable to lock the download directory"
  267. msgstr "Pelrêça daxistinê nayê quflekirin"
  268. #: cmdline/apt-get.cc:726
  269. msgid "Must specify at least one package to fetch source for"
  270. msgstr ""
  271. #: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058
  272. #, c-format
  273. msgid "Unable to find a source package for %s"
  274. msgstr ""
  275. #: cmdline/apt-get.cc:782
  276. #, c-format
  277. msgid ""
  278. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  279. "%s\n"
  280. msgstr ""
  281. #: cmdline/apt-get.cc:787
  282. #, c-format
  283. msgid ""
  284. "Please use:\n"
  285. "bzr branch %s\n"
  286. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  287. msgstr ""
  288. #: cmdline/apt-get.cc:839
  289. #, c-format
  290. msgid "Skipping already downloaded file '%s'\n"
  291. msgstr ""
  292. #: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864
  293. #: apt-private/private-install.cc:186 apt-private/private-install.cc:189
  294. #, c-format
  295. msgid "Couldn't determine free space in %s"
  296. msgstr "Nikarî cihê vala li %s tesbît bike"
  297. #: cmdline/apt-get.cc:874
  298. #, c-format
  299. msgid "You don't have enough free space in %s"
  300. msgstr "Cihê vala li %s têre nake"
  301. #. TRANSLATOR: The required space between number and unit is already included
  302. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  303. #: cmdline/apt-get.cc:883
  304. #, c-format
  305. msgid "Need to get %sB/%sB of source archives.\n"
  306. msgstr ""
  307. #. TRANSLATOR: The required space between number and unit is already included
  308. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  309. #: cmdline/apt-get.cc:888
  310. #, c-format
  311. msgid "Need to get %sB of source archives.\n"
  312. msgstr ""
  313. #: cmdline/apt-get.cc:894
  314. #, c-format
  315. msgid "Fetch source %s\n"
  316. msgstr "Çavkanîna %s bîne\n"
  317. #: cmdline/apt-get.cc:912
  318. msgid "Failed to fetch some archives."
  319. msgstr "Anîna çend arşîvan biserneket."
  320. #: cmdline/apt-get.cc:917 apt-private/private-install.cc:313
  321. msgid "Download complete and in download only mode"
  322. msgstr ""
  323. #: cmdline/apt-get.cc:942
  324. #, c-format
  325. msgid "Skipping unpack of already unpacked source in %s\n"
  326. msgstr ""
  327. #: cmdline/apt-get.cc:954
  328. #, c-format
  329. msgid "Unpack command '%s' failed.\n"
  330. msgstr ""
  331. #: cmdline/apt-get.cc:955
  332. #, c-format
  333. msgid "Check if the 'dpkg-dev' package is installed.\n"
  334. msgstr ""
  335. #: cmdline/apt-get.cc:983
  336. #, c-format
  337. msgid "Build command '%s' failed.\n"
  338. msgstr ""
  339. #: cmdline/apt-get.cc:1002
  340. msgid "Child process failed"
  341. msgstr ""
  342. #: cmdline/apt-get.cc:1021
  343. msgid "Must specify at least one package to check builddeps for"
  344. msgstr ""
  345. #: cmdline/apt-get.cc:1046
  346. #, c-format
  347. msgid ""
  348. "No architecture information available for %s. See apt.conf(5) APT::"
  349. "Architectures for setup"
  350. msgstr ""
  351. #: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073
  352. #, c-format
  353. msgid "Unable to get build-dependency information for %s"
  354. msgstr ""
  355. #: cmdline/apt-get.cc:1093
  356. #, c-format
  357. msgid "%s has no build depends.\n"
  358. msgstr ""
  359. #: cmdline/apt-get.cc:1263
  360. #, c-format
  361. msgid ""
  362. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  363. "packages"
  364. msgstr ""
  365. #: cmdline/apt-get.cc:1281
  366. #, c-format
  367. msgid ""
  368. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  369. "found"
  370. msgstr ""
  371. #: cmdline/apt-get.cc:1304
  372. #, c-format
  373. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  374. msgstr ""
  375. #: cmdline/apt-get.cc:1343
  376. #, c-format
  377. msgid ""
  378. "%s dependency for %s cannot be satisfied because candidate version of "
  379. "package %s can't satisfy version requirements"
  380. msgstr ""
  381. #: cmdline/apt-get.cc:1349
  382. #, c-format
  383. msgid ""
  384. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  385. "version"
  386. msgstr ""
  387. #: cmdline/apt-get.cc:1372
  388. #, c-format
  389. msgid "Failed to satisfy %s dependency for %s: %s"
  390. msgstr ""
  391. #: cmdline/apt-get.cc:1387
  392. #, c-format
  393. msgid "Build-dependencies for %s could not be satisfied."
  394. msgstr ""
  395. #: cmdline/apt-get.cc:1392
  396. msgid "Failed to process build dependencies"
  397. msgstr ""
  398. #: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497
  399. #, fuzzy, c-format
  400. msgid "Changelog for %s (%s)"
  401. msgstr "Girêdan bi %s (%s) re pêk tê"
  402. #: cmdline/apt-get.cc:1583
  403. msgid "Supported modules:"
  404. msgstr ""
  405. #: cmdline/apt-get.cc:1624
  406. msgid ""
  407. "Usage: apt-get [options] command\n"
  408. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  409. " apt-get [options] source pkg1 [pkg2 ...]\n"
  410. "\n"
  411. "apt-get is a simple command line interface for downloading and\n"
  412. "installing packages. The most frequently used commands are update\n"
  413. "and install.\n"
  414. "\n"
  415. "Commands:\n"
  416. " update - Retrieve new lists of packages\n"
  417. " upgrade - Perform an upgrade\n"
  418. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  419. " remove - Remove packages\n"
  420. " autoremove - Remove automatically all unused packages\n"
  421. " purge - Remove packages and config files\n"
  422. " source - Download source archives\n"
  423. " build-dep - Configure build-dependencies for source packages\n"
  424. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  425. " dselect-upgrade - Follow dselect selections\n"
  426. " clean - Erase downloaded archive files\n"
  427. " autoclean - Erase old downloaded archive files\n"
  428. " check - Verify that there are no broken dependencies\n"
  429. " changelog - Download and display the changelog for the given package\n"
  430. " download - Download the binary package into the current directory\n"
  431. "\n"
  432. "Options:\n"
  433. " -h This help text.\n"
  434. " -q Loggable output - no progress indicator\n"
  435. " -qq No output except for errors\n"
  436. " -d Download only - do NOT install or unpack archives\n"
  437. " -s No-act. Perform ordering simulation\n"
  438. " -y Assume Yes to all queries and do not prompt\n"
  439. " -f Attempt to correct a system with broken dependencies in place\n"
  440. " -m Attempt to continue if archives are unlocatable\n"
  441. " -u Show a list of upgraded packages as well\n"
  442. " -b Build the source package after fetching it\n"
  443. " -V Show verbose version numbers\n"
  444. " -c=? Read this configuration file\n"
  445. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  446. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  447. "pages for more information and options.\n"
  448. " This APT has Super Cow Powers.\n"
  449. msgstr ""
  450. #: cmdline/apt-helper.cc:35
  451. msgid "Must specify at least one pair url/filename"
  452. msgstr ""
  453. #: cmdline/apt-helper.cc:52
  454. msgid "Download Failed"
  455. msgstr ""
  456. #: cmdline/apt-helper.cc:65
  457. msgid ""
  458. "Usage: apt-helper [options] command\n"
  459. " apt-helper [options] download-file uri target-path\n"
  460. "\n"
  461. "apt-helper is a internal helper for apt\n"
  462. "\n"
  463. "Commands:\n"
  464. " download-file - download the given uri to the target-path\n"
  465. "\n"
  466. " This APT helper has Super Meep Powers.\n"
  467. msgstr ""
  468. #: cmdline/apt-mark.cc:68
  469. #, fuzzy, c-format
  470. msgid "%s can not be marked as it is not installed.\n"
  471. msgstr "lê ne sazkirî ye"
  472. #: cmdline/apt-mark.cc:74
  473. #, fuzzy, c-format
  474. msgid "%s was already set to manually installed.\n"
  475. msgstr "lê %s dê were sazkirin"
  476. #: cmdline/apt-mark.cc:76
  477. #, fuzzy, c-format
  478. msgid "%s was already set to automatically installed.\n"
  479. msgstr "lê %s dê were sazkirin"
  480. #: cmdline/apt-mark.cc:241
  481. #, fuzzy, c-format
  482. msgid "%s was already set on hold.\n"
  483. msgstr "%s jixwe guhertoya nûtirîn e.\n"
  484. #: cmdline/apt-mark.cc:243
  485. #, fuzzy, c-format
  486. msgid "%s was already not hold.\n"
  487. msgstr "%s jixwe guhertoya nûtirîn e.\n"
  488. #: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 apt-pkg/deb/dpkgpm.cc:1202
  489. #: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219
  490. #, c-format
  491. msgid "Waited for %s but it wasn't there"
  492. msgstr ""
  493. #: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322
  494. #, fuzzy, c-format
  495. msgid "%s set on hold.\n"
  496. msgstr "lê %s dê were sazkirin"
  497. #: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327
  498. #, fuzzy, c-format
  499. msgid "Canceled hold on %s.\n"
  500. msgstr "%s venebû"
  501. #: cmdline/apt-mark.cc:345
  502. msgid "Executing dpkg failed. Are you root?"
  503. msgstr ""
  504. #: cmdline/apt-mark.cc:392
  505. msgid ""
  506. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  507. "\n"
  508. "apt-mark is a simple command line interface for marking packages\n"
  509. "as manually or automatically installed. It can also list marks.\n"
  510. "\n"
  511. "Commands:\n"
  512. " auto - Mark the given packages as automatically installed\n"
  513. " manual - Mark the given packages as manually installed\n"
  514. " hold - Mark a package as held back\n"
  515. " unhold - Unset a package set as held back\n"
  516. " showauto - Print the list of automatically installed packages\n"
  517. " showmanual - Print the list of manually installed packages\n"
  518. " showhold - Print the list of package on hold\n"
  519. "\n"
  520. "Options:\n"
  521. " -h This help text.\n"
  522. " -q Loggable output - no progress indicator\n"
  523. " -qq No output except for errors\n"
  524. " -s No-act. Just prints what would be done.\n"
  525. " -f read/write auto/manual marking in the given file\n"
  526. " -c=? Read this configuration file\n"
  527. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  528. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  529. msgstr ""
  530. #: cmdline/apt.cc:47
  531. msgid ""
  532. "Usage: apt [options] command\n"
  533. "\n"
  534. "CLI for apt.\n"
  535. "Basic commands: \n"
  536. " list - list packages based on package names\n"
  537. " search - search in package descriptions\n"
  538. " show - show package details\n"
  539. "\n"
  540. " update - update list of available packages\n"
  541. "\n"
  542. " install - install packages\n"
  543. " remove - remove packages\n"
  544. "\n"
  545. " upgrade - upgrade the system by installing/upgrading packages\n"
  546. " full-upgrade - upgrade the system by removing/installing/upgrading "
  547. "packages\n"
  548. "\n"
  549. " edit-sources - edit the source information file\n"
  550. msgstr ""
  551. #: methods/cdrom.cc:203
  552. #, fuzzy, c-format
  553. msgid "Unable to read the cdrom database %s"
  554. msgstr "Pakêt nehate dîtin %s"
  555. #: methods/cdrom.cc:212
  556. msgid ""
  557. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  558. "cannot be used to add new CD-ROMs"
  559. msgstr ""
  560. #: methods/cdrom.cc:222
  561. msgid "Wrong CD-ROM"
  562. msgstr "CD-ROM a şaş"
  563. #: methods/cdrom.cc:249
  564. #, c-format
  565. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  566. msgstr ""
  567. #: methods/cdrom.cc:254
  568. msgid "Disk not found."
  569. msgstr "Dîsk nehate dîtin."
  570. #: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278
  571. msgid "File not found"
  572. msgstr "Pel nehate dîtin"
  573. #: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598
  574. #: methods/rred.cc:608
  575. #, fuzzy
  576. msgid "Failed to stat"
  577. msgstr "%s venebû"
  578. #: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605
  579. msgid "Failed to set modification time"
  580. msgstr ""
  581. #: methods/file.cc:48
  582. msgid "Invalid URI, local URIS must not start with //"
  583. msgstr ""
  584. #. Login must be before getpeername otherwise dante won't work.
  585. #: methods/ftp.cc:177
  586. msgid "Logging in"
  587. msgstr "Têketin"
  588. #: methods/ftp.cc:183
  589. msgid "Unable to determine the peer name"
  590. msgstr ""
  591. #: methods/ftp.cc:188
  592. msgid "Unable to determine the local name"
  593. msgstr "Nikare navê herêmî tesbît bike"
  594. #: methods/ftp.cc:219 methods/ftp.cc:247
  595. #, c-format
  596. msgid "The server refused the connection and said: %s"
  597. msgstr ""
  598. #: methods/ftp.cc:225
  599. #, c-format
  600. msgid "USER failed, server said: %s"
  601. msgstr ""
  602. #: methods/ftp.cc:232
  603. #, c-format
  604. msgid "PASS failed, server said: %s"
  605. msgstr ""
  606. #: methods/ftp.cc:252
  607. msgid ""
  608. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  609. "is empty."
  610. msgstr ""
  611. #: methods/ftp.cc:280
  612. #, c-format
  613. msgid "Login script command '%s' failed, server said: %s"
  614. msgstr ""
  615. #: methods/ftp.cc:306
  616. #, c-format
  617. msgid "TYPE failed, server said: %s"
  618. msgstr ""
  619. #: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240
  620. msgid "Connection timeout"
  621. msgstr ""
  622. #: methods/ftp.cc:350
  623. msgid "Server closed the connection"
  624. msgstr ""
  625. #: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475
  626. #: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489
  627. #: apt-pkg/contrib/fileutl.cc:1491
  628. msgid "Read error"
  629. msgstr "Çewiya xwendinê"
  630. #: methods/ftp.cc:360 methods/rsh.cc:209
  631. msgid "A response overflowed the buffer."
  632. msgstr ""
  633. #: methods/ftp.cc:377 methods/ftp.cc:389
  634. msgid "Protocol corruption"
  635. msgstr ""
  636. #: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872
  637. #: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606
  638. #: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613
  639. #: apt-pkg/contrib/fileutl.cc:1638
  640. msgid "Write error"
  641. msgstr "Çewtiya nivîsînê"
  642. #: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742
  643. msgid "Could not create a socket"
  644. msgstr ""
  645. #: methods/ftp.cc:712
  646. msgid "Could not connect data socket, connection timed out"
  647. msgstr ""
  648. #: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28
  649. msgid "Failed"
  650. msgstr "Serneket"
  651. #: methods/ftp.cc:718
  652. msgid "Could not connect passive socket."
  653. msgstr ""
  654. #: methods/ftp.cc:735
  655. msgid "getaddrinfo was unable to get a listening socket"
  656. msgstr ""
  657. #: methods/ftp.cc:749
  658. msgid "Could not bind a socket"
  659. msgstr ""
  660. #: methods/ftp.cc:753
  661. msgid "Could not listen on the socket"
  662. msgstr ""
  663. #: methods/ftp.cc:760
  664. msgid "Could not determine the socket's name"
  665. msgstr ""
  666. #: methods/ftp.cc:792
  667. msgid "Unable to send PORT command"
  668. msgstr ""
  669. #: methods/ftp.cc:802
  670. #, c-format
  671. msgid "Unknown address family %u (AF_*)"
  672. msgstr ""
  673. #: methods/ftp.cc:811
  674. #, c-format
  675. msgid "EPRT failed, server said: %s"
  676. msgstr ""
  677. #: methods/ftp.cc:831
  678. msgid "Data socket connect timed out"
  679. msgstr ""
  680. #: methods/ftp.cc:838
  681. msgid "Unable to accept connection"
  682. msgstr ""
  683. #: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316
  684. msgid "Problem hashing file"
  685. msgstr ""
  686. #: methods/ftp.cc:890
  687. #, fuzzy, c-format
  688. msgid "Unable to fetch file, server said '%s'"
  689. msgstr "Danegira %s nehate vekirin: %s"
  690. #: methods/ftp.cc:905 methods/rsh.cc:335
  691. msgid "Data socket timed out"
  692. msgstr ""
  693. #: methods/ftp.cc:935
  694. #, c-format
  695. msgid "Data transfer failed, server said '%s'"
  696. msgstr ""
  697. #. Get the files information
  698. #: methods/ftp.cc:1014
  699. msgid "Query"
  700. msgstr "Lêpirsîn"
  701. #: methods/ftp.cc:1128
  702. #, fuzzy
  703. msgid "Unable to invoke "
  704. msgstr "%s venebû"
  705. #: methods/connect.cc:76
  706. #, c-format
  707. msgid "Connecting to %s (%s)"
  708. msgstr "Girêdan bi %s (%s) re pêk tê"
  709. #: methods/connect.cc:87
  710. #, c-format
  711. msgid "[IP: %s %s]"
  712. msgstr "[IP: %s %s]"
  713. #: methods/connect.cc:94
  714. #, c-format
  715. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  716. msgstr ""
  717. #: methods/connect.cc:100
  718. #, c-format
  719. msgid "Cannot initiate the connection to %s:%s (%s)."
  720. msgstr ""
  721. #: methods/connect.cc:108
  722. #, c-format
  723. msgid "Could not connect to %s:%s (%s), connection timed out"
  724. msgstr ""
  725. #: methods/connect.cc:126
  726. #, c-format
  727. msgid "Could not connect to %s:%s (%s)."
  728. msgstr ""
  729. #. We say this mainly because the pause here is for the
  730. #. ssh connection that is still going
  731. #: methods/connect.cc:154 methods/rsh.cc:439
  732. #, c-format
  733. msgid "Connecting to %s"
  734. msgstr "Bi %s re tê girêdan"
  735. #: methods/connect.cc:180 methods/connect.cc:199
  736. #, c-format
  737. msgid "Could not resolve '%s'"
  738. msgstr "Nikarî '%s' çareser bike"
  739. #: methods/connect.cc:205
  740. #, c-format
  741. msgid "Temporary failure resolving '%s'"
  742. msgstr ""
  743. #: methods/connect.cc:209
  744. #, c-format
  745. msgid "System error resolving '%s:%s'"
  746. msgstr ""
  747. #: methods/connect.cc:211
  748. #, c-format
  749. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  750. msgstr ""
  751. #: methods/connect.cc:258
  752. #, fuzzy, c-format
  753. msgid "Unable to connect to %s:%s:"
  754. msgstr "Nikare bi %s re girêdan pêk bîne %s:"
  755. #: methods/gpgv.cc:168
  756. msgid ""
  757. "Internal error: Good signature, but could not determine key fingerprint?!"
  758. msgstr ""
  759. #: methods/gpgv.cc:172
  760. msgid "At least one invalid signature was encountered."
  761. msgstr ""
  762. #: methods/gpgv.cc:174
  763. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  764. msgstr ""
  765. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  766. #: methods/gpgv.cc:180
  767. #, c-format
  768. msgid ""
  769. "Clearsigned file isn't valid, got '%s' (does the network require "
  770. "authentication?)"
  771. msgstr ""
  772. #: methods/gpgv.cc:184
  773. msgid "Unknown error executing gpgv"
  774. msgstr "Di xebitandina gpgv de çewtiya nenas"
  775. #: methods/gpgv.cc:217 methods/gpgv.cc:224
  776. #, fuzzy
  777. msgid "The following signatures were invalid:\n"
  778. msgstr "Ev pakêtên NÛ dê werine sazkirin:"
  779. #: methods/gpgv.cc:231
  780. msgid ""
  781. "The following signatures couldn't be verified because the public key is not "
  782. "available:\n"
  783. msgstr ""
  784. #: methods/gzip.cc:69
  785. msgid "Empty files can't be valid archives"
  786. msgstr ""
  787. #: methods/http.cc:509
  788. msgid "Error writing to the file"
  789. msgstr "Dema li pelî dihate nivîsîn çewtî"
  790. #: methods/http.cc:523
  791. msgid "Error reading from server. Remote end closed connection"
  792. msgstr ""
  793. #: methods/http.cc:525
  794. msgid "Error reading from server"
  795. msgstr ""
  796. #: methods/http.cc:561
  797. msgid "Error writing to file"
  798. msgstr "Dema li pelî dihate nivîsîn çewtî"
  799. #: methods/http.cc:621
  800. msgid "Select failed"
  801. msgstr "Hilbijartin neserketî"
  802. #: methods/http.cc:626
  803. msgid "Connection timed out"
  804. msgstr ""
  805. #: methods/http.cc:649
  806. #, fuzzy
  807. msgid "Error writing to output file"
  808. msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
  809. #: methods/server.cc:51
  810. msgid "Waiting for headers"
  811. msgstr ""
  812. #: methods/server.cc:109
  813. msgid "Bad header line"
  814. msgstr ""
  815. #: methods/server.cc:134 methods/server.cc:141
  816. msgid "The HTTP server sent an invalid reply header"
  817. msgstr ""
  818. #: methods/server.cc:171
  819. msgid "The HTTP server sent an invalid Content-Length header"
  820. msgstr ""
  821. #: methods/server.cc:194
  822. msgid "The HTTP server sent an invalid Content-Range header"
  823. msgstr ""
  824. #: methods/server.cc:196
  825. msgid "This HTTP server has broken range support"
  826. msgstr ""
  827. #: methods/server.cc:220
  828. msgid "Unknown date format"
  829. msgstr ""
  830. #: methods/server.cc:489
  831. msgid "Bad header data"
  832. msgstr ""
  833. #: methods/server.cc:506 methods/server.cc:562
  834. msgid "Connection failed"
  835. msgstr "Girêdan pêk nehatiye"
  836. #: methods/server.cc:654
  837. msgid "Internal error"
  838. msgstr "Çewtiya hundirîn"
  839. #: apt-private/private-upgrade.cc:25
  840. msgid "Calculating upgrade... "
  841. msgstr "Bilindkirin tê hesibandin..."
  842. #: apt-private/private-upgrade.cc:30
  843. msgid "Internal error, Upgrade broke stuff"
  844. msgstr ""
  845. #: apt-private/private-upgrade.cc:32
  846. msgid "Done"
  847. msgstr "Temam"
  848. #: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47
  849. msgid "Sorting"
  850. msgstr ""
  851. #: apt-private/private-list.cc:131
  852. msgid "Listing"
  853. msgstr ""
  854. #: apt-private/private-list.cc:164
  855. #, c-format
  856. msgid "There is %i additional version. Please use the '-a' switch to see it"
  857. msgid_plural ""
  858. "There are %i additional versions. Please use the '-a' switch to see them."
  859. msgstr[0] ""
  860. msgstr[1] ""
  861. #: apt-private/private-cachefile.cc:93
  862. msgid "Correcting dependencies..."
  863. msgstr "Bindestî tên serrastkirin..."
  864. #: apt-private/private-cachefile.cc:96
  865. msgid " failed."
  866. msgstr " neserketî."
  867. #: apt-private/private-cachefile.cc:99
  868. msgid "Unable to correct dependencies"
  869. msgstr "Nikare bindestiyan rast kirin"
  870. #: apt-private/private-cachefile.cc:102
  871. msgid "Unable to minimize the upgrade set"
  872. msgstr ""
  873. #: apt-private/private-cachefile.cc:104
  874. msgid " Done"
  875. msgstr " Temam"
  876. #: apt-private/private-cachefile.cc:108
  877. msgid "You might want to run 'apt-get -f install' to correct these."
  878. msgstr ""
  879. #: apt-private/private-cachefile.cc:111
  880. msgid "Unmet dependencies. Try using -f."
  881. msgstr ""
  882. #: apt-private/private-output.cc:102 apt-private/private-show.cc:84
  883. #: apt-private/private-show.cc:89
  884. msgid "unknown"
  885. msgstr ""
  886. #: apt-private/private-output.cc:232
  887. #, fuzzy, c-format
  888. msgid "[installed,upgradable to: %s]"
  889. msgstr " [Sazkirî]"
  890. #: apt-private/private-output.cc:236
  891. #, fuzzy
  892. msgid "[installed,local]"
  893. msgstr " [Sazkirî]"
  894. #: apt-private/private-output.cc:239
  895. msgid "[installed,auto-removable]"
  896. msgstr ""
  897. #: apt-private/private-output.cc:241
  898. #, fuzzy
  899. msgid "[installed,automatic]"
  900. msgstr " [Sazkirî]"
  901. #: apt-private/private-output.cc:243
  902. #, fuzzy
  903. msgid "[installed]"
  904. msgstr " [Sazkirî]"
  905. #: apt-private/private-output.cc:247
  906. #, c-format
  907. msgid "[upgradable from: %s]"
  908. msgstr ""
  909. #: apt-private/private-output.cc:251
  910. msgid "[residual-config]"
  911. msgstr ""
  912. #: apt-private/private-output.cc:351
  913. msgid "The following packages have unmet dependencies:"
  914. msgstr ""
  915. #: apt-private/private-output.cc:441
  916. #, c-format
  917. msgid "but %s is installed"
  918. msgstr "lê %s sazkirî ye"
  919. #: apt-private/private-output.cc:443
  920. #, c-format
  921. msgid "but %s is to be installed"
  922. msgstr "lê %s dê were sazkirin"
  923. #: apt-private/private-output.cc:450
  924. msgid "but it is not installable"
  925. msgstr "lê sazkirina wê ne gengaz e"
  926. #: apt-private/private-output.cc:452
  927. msgid "but it is a virtual package"
  928. msgstr "lê paketeke farazî ye"
  929. #: apt-private/private-output.cc:455
  930. msgid "but it is not installed"
  931. msgstr "lê ne sazkirî ye"
  932. #: apt-private/private-output.cc:455
  933. msgid "but it is not going to be installed"
  934. msgstr "lê dê neyê sazkirin"
  935. #: apt-private/private-output.cc:460
  936. msgid " or"
  937. msgstr " û"
  938. #: apt-private/private-output.cc:489
  939. msgid "The following NEW packages will be installed:"
  940. msgstr "Ev pakêtên NÛ dê werine sazkirin:"
  941. #: apt-private/private-output.cc:515
  942. msgid "The following packages will be REMOVED:"
  943. msgstr "Ev pakêt dê werine RAKIRIN:"
  944. #: apt-private/private-output.cc:537
  945. msgid "The following packages have been kept back:"
  946. msgstr ""
  947. #: apt-private/private-output.cc:558
  948. msgid "The following packages will be upgraded:"
  949. msgstr "Ev paket dê werine bilindkirin:"
  950. #: apt-private/private-output.cc:579
  951. msgid "The following packages will be DOWNGRADED:"
  952. msgstr ""
  953. #: apt-private/private-output.cc:599
  954. msgid "The following held packages will be changed:"
  955. msgstr ""
  956. #: apt-private/private-output.cc:654
  957. #, c-format
  958. msgid "%s (due to %s) "
  959. msgstr "%s (ji ber %s)"
  960. #: apt-private/private-output.cc:662
  961. msgid ""
  962. "WARNING: The following essential packages will be removed.\n"
  963. "This should NOT be done unless you know exactly what you are doing!"
  964. msgstr ""
  965. #: apt-private/private-output.cc:693
  966. #, c-format
  967. msgid "%lu upgraded, %lu newly installed, "
  968. msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin."
  969. #: apt-private/private-output.cc:697
  970. #, c-format
  971. msgid "%lu reinstalled, "
  972. msgstr "%lu ji nû ve sazkirî,"
  973. #: apt-private/private-output.cc:699
  974. #, c-format
  975. msgid "%lu downgraded, "
  976. msgstr "%lu hatine nizmkirin."
  977. #: apt-private/private-output.cc:701
  978. #, c-format
  979. msgid "%lu to remove and %lu not upgraded.\n"
  980. msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n"
  981. #: apt-private/private-output.cc:705
  982. #, c-format
  983. msgid "%lu not fully installed or removed.\n"
  984. msgstr ""
  985. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  986. #. e.g. "Do you want to continue? [Y/n] "
  987. #. The user has to answer with an input matching the
  988. #. YESEXPR/NOEXPR defined in your l10n.
  989. #: apt-private/private-output.cc:727
  990. #, fuzzy
  991. msgid "[Y/n]"
  992. msgstr "[E/n]"
  993. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  994. #. e.g. "Should this file be removed? [y/N] "
  995. #. The user has to answer with an input matching the
  996. #. YESEXPR/NOEXPR defined in your l10n.
  997. #: apt-private/private-output.cc:733
  998. msgid "[y/N]"
  999. msgstr ""
  1000. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1001. #: apt-private/private-output.cc:744
  1002. msgid "Y"
  1003. msgstr "E"
  1004. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1005. #: apt-private/private-output.cc:750
  1006. msgid "N"
  1007. msgstr ""
  1008. #: apt-private/private-output.cc:772 apt-pkg/cachefilter.cc:35
  1009. #, c-format
  1010. msgid "Regex compilation error - %s"
  1011. msgstr ""
  1012. #: apt-private/private-update.cc:31
  1013. msgid "The update command takes no arguments"
  1014. msgstr ""
  1015. #: apt-private/private-show.cc:156
  1016. #, c-format
  1017. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1018. msgid_plural ""
  1019. "There are %i additional records. Please use the '-a' switch to see them."
  1020. msgstr[0] ""
  1021. msgstr[1] ""
  1022. #: apt-private/private-show.cc:163
  1023. msgid "not a real package (virtual)"
  1024. msgstr ""
  1025. #: apt-private/private-install.cc:81
  1026. msgid "Internal error, InstallPackages was called with broken packages!"
  1027. msgstr ""
  1028. #: apt-private/private-install.cc:90
  1029. msgid "Packages need to be removed but remove is disabled."
  1030. msgstr ""
  1031. #: apt-private/private-install.cc:109
  1032. msgid "Internal error, Ordering didn't finish"
  1033. msgstr ""
  1034. #: apt-private/private-install.cc:147
  1035. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  1036. msgstr ""
  1037. #. TRANSLATOR: The required space between number and unit is already included
  1038. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1039. #: apt-private/private-install.cc:154
  1040. #, c-format
  1041. msgid "Need to get %sB/%sB of archives.\n"
  1042. msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\n"
  1043. #. TRANSLATOR: The required space between number and unit is already included
  1044. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1045. #: apt-private/private-install.cc:159
  1046. #, c-format
  1047. msgid "Need to get %sB of archives.\n"
  1048. msgstr "Anîna %sB ji arşîvan pêwist e.\n"
  1049. #. TRANSLATOR: The required space between number and unit is already included
  1050. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1051. #: apt-private/private-install.cc:166
  1052. #, c-format
  1053. msgid "After this operation, %sB of additional disk space will be used.\n"
  1054. msgstr ""
  1055. #. TRANSLATOR: The required space between number and unit is already included
  1056. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1057. #: apt-private/private-install.cc:171
  1058. #, c-format
  1059. msgid "After this operation, %sB disk space will be freed.\n"
  1060. msgstr ""
  1061. #: apt-private/private-install.cc:199
  1062. #, c-format
  1063. msgid "You don't have enough free space in %s."
  1064. msgstr "Cihê vala li %s têre nake."
  1065. #: apt-private/private-install.cc:209 apt-private/private-download.cc:54
  1066. msgid "There are problems and -y was used without --force-yes"
  1067. msgstr ""
  1068. #: apt-private/private-install.cc:215 apt-private/private-install.cc:237
  1069. msgid "Trivial Only specified but this is not a trivial operation."
  1070. msgstr ""
  1071. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1072. #. careful with hard to type or special characters (like non-breaking spaces)
  1073. #: apt-private/private-install.cc:219
  1074. msgid "Yes, do as I say!"
  1075. msgstr "Erê, wusa bike!"
  1076. #: apt-private/private-install.cc:221
  1077. #, c-format
  1078. msgid ""
  1079. "You are about to do something potentially harmful.\n"
  1080. "To continue type in the phrase '%s'\n"
  1081. " ?] "
  1082. msgstr ""
  1083. #: apt-private/private-install.cc:227 apt-private/private-install.cc:245
  1084. msgid "Abort."
  1085. msgstr "Betal."
  1086. #: apt-private/private-install.cc:242
  1087. msgid "Do you want to continue?"
  1088. msgstr "Dixwazî bidomînî?"
  1089. #: apt-private/private-install.cc:312
  1090. msgid "Some files failed to download"
  1091. msgstr "Daxistina çend pelan biserneket"
  1092. #: apt-private/private-install.cc:319
  1093. msgid ""
  1094. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1095. "missing?"
  1096. msgstr ""
  1097. #: apt-private/private-install.cc:323
  1098. msgid "--fix-missing and media swapping is not currently supported"
  1099. msgstr ""
  1100. #: apt-private/private-install.cc:328
  1101. msgid "Unable to correct missing packages."
  1102. msgstr ""
  1103. #: apt-private/private-install.cc:329
  1104. msgid "Aborting install."
  1105. msgstr "Sazkirin tê betalkirin."
  1106. #: apt-private/private-install.cc:365
  1107. msgid ""
  1108. "The following package disappeared from your system as\n"
  1109. "all files have been overwritten by other packages:"
  1110. msgid_plural ""
  1111. "The following packages disappeared from your system as\n"
  1112. "all files have been overwritten by other packages:"
  1113. msgstr[0] ""
  1114. msgstr[1] ""
  1115. #: apt-private/private-install.cc:369
  1116. msgid "Note: This is done automatically and on purpose by dpkg."
  1117. msgstr ""
  1118. #: apt-private/private-install.cc:390
  1119. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1120. msgstr ""
  1121. #: apt-private/private-install.cc:498
  1122. msgid ""
  1123. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1124. "shouldn't happen. Please file a bug report against apt."
  1125. msgstr ""
  1126. #.
  1127. #. if (Packages == 1)
  1128. #. {
  1129. #. c1out << std::endl;
  1130. #. c1out <<
  1131. #. _("Since you only requested a single operation it is extremely likely that\n"
  1132. #. "the package is simply not installable and a bug report against\n"
  1133. #. "that package should be filed.") << std::endl;
  1134. #. }
  1135. #.
  1136. #: apt-private/private-install.cc:501 apt-private/private-install.cc:642
  1137. msgid "The following information may help to resolve the situation:"
  1138. msgstr ""
  1139. #: apt-private/private-install.cc:505
  1140. msgid "Internal Error, AutoRemover broke stuff"
  1141. msgstr ""
  1142. #: apt-private/private-install.cc:512
  1143. #, fuzzy
  1144. msgid ""
  1145. "The following package was automatically installed and is no longer required:"
  1146. msgid_plural ""
  1147. "The following packages were automatically installed and are no longer "
  1148. "required:"
  1149. msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:"
  1150. msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:"
  1151. #: apt-private/private-install.cc:516
  1152. #, fuzzy, c-format
  1153. msgid "%lu package was automatically installed and is no longer required.\n"
  1154. msgid_plural ""
  1155. "%lu packages were automatically installed and are no longer required.\n"
  1156. msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:"
  1157. msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:"
  1158. #: apt-private/private-install.cc:518
  1159. msgid "Use 'apt-get autoremove' to remove it."
  1160. msgid_plural "Use 'apt-get autoremove' to remove them."
  1161. msgstr[0] ""
  1162. msgstr[1] ""
  1163. #: apt-private/private-install.cc:612
  1164. msgid "You might want to run 'apt-get -f install' to correct these:"
  1165. msgstr ""
  1166. #: apt-private/private-install.cc:614
  1167. msgid ""
  1168. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1169. "solution)."
  1170. msgstr ""
  1171. #: apt-private/private-install.cc:627
  1172. msgid ""
  1173. "Some packages could not be installed. This may mean that you have\n"
  1174. "requested an impossible situation or if you are using the unstable\n"
  1175. "distribution that some required packages have not yet been created\n"
  1176. "or been moved out of Incoming."
  1177. msgstr ""
  1178. #: apt-private/private-install.cc:648
  1179. msgid "Broken packages"
  1180. msgstr "Paketên şikestî"
  1181. #: apt-private/private-install.cc:701
  1182. msgid "The following extra packages will be installed:"
  1183. msgstr ""
  1184. #: apt-private/private-install.cc:791
  1185. msgid "Suggested packages:"
  1186. msgstr "Paketên tên pêşniyaz kirin:"
  1187. #: apt-private/private-install.cc:792
  1188. msgid "Recommended packages:"
  1189. msgstr "Paketên tên tawsiyê kirin:"
  1190. #: apt-private/private-main.cc:32
  1191. msgid ""
  1192. "NOTE: This is only a simulation!\n"
  1193. " apt-get needs root privileges for real execution.\n"
  1194. " Keep also in mind that locking is deactivated,\n"
  1195. " so don't depend on the relevance to the real current situation!"
  1196. msgstr ""
  1197. #: apt-private/private-download.cc:31
  1198. msgid "WARNING: The following packages cannot be authenticated!"
  1199. msgstr ""
  1200. #: apt-private/private-download.cc:35
  1201. msgid "Authentication warning overridden.\n"
  1202. msgstr ""
  1203. #: apt-private/private-download.cc:40 apt-private/private-download.cc:47
  1204. msgid "Some packages could not be authenticated"
  1205. msgstr ""
  1206. #: apt-private/private-download.cc:45
  1207. msgid "Install these packages without verification?"
  1208. msgstr ""
  1209. #: apt-private/private-download.cc:86 apt-pkg/update.cc:77
  1210. #, c-format
  1211. msgid "Failed to fetch %s %s\n"
  1212. msgstr "Anîna %s %s biserneket\n"
  1213. #: apt-private/private-sources.cc:58
  1214. #, fuzzy, c-format
  1215. msgid "Failed to parse %s. Edit again? "
  1216. msgstr "%s ji hev nehate veçirandin"
  1217. #: apt-private/private-sources.cc:70
  1218. #, c-format
  1219. msgid "Your '%s' file changed, please run 'apt-get update'."
  1220. msgstr ""
  1221. #: apt-private/private-search.cc:51
  1222. msgid "Full Text Search"
  1223. msgstr ""
  1224. #: apt-private/acqprogress.cc:66
  1225. msgid "Hit "
  1226. msgstr ""
  1227. #: apt-private/acqprogress.cc:90
  1228. msgid "Get:"
  1229. msgstr "Anîn:"
  1230. #: apt-private/acqprogress.cc:121
  1231. msgid "Ign "
  1232. msgstr ""
  1233. #: apt-private/acqprogress.cc:125
  1234. msgid "Err "
  1235. msgstr "Çewt"
  1236. #: apt-private/acqprogress.cc:146
  1237. #, fuzzy, c-format
  1238. msgid "Fetched %sB in %s (%sB/s)\n"
  1239. msgstr "%s hatine anîn..."
  1240. #: apt-private/acqprogress.cc:236
  1241. #, c-format
  1242. msgid " [Working]"
  1243. msgstr " [Dixebite]"
  1244. #: apt-private/acqprogress.cc:297
  1245. #, c-format
  1246. msgid ""
  1247. "Media change: please insert the disc labeled\n"
  1248. " '%s'\n"
  1249. "in the drive '%s' and press enter\n"
  1250. msgstr ""
  1251. #. Only warn if there are no sources.list.d.
  1252. #. Only warn if there is no sources.list file.
  1253. #: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/clean.cc:40
  1254. #: apt-pkg/init.cc:103 apt-pkg/init.cc:111 apt-pkg/acquire.cc:491
  1255. #: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286
  1256. #: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481
  1257. #: apt-pkg/contrib/cdromutl.cc:205
  1258. #, c-format
  1259. msgid "Unable to read %s"
  1260. msgstr "Nikare %s bixwîne"
  1261. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:46
  1262. #: apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 apt-pkg/acquire.cc:497
  1263. #: apt-pkg/acquire.cc:522 apt-pkg/contrib/cdromutl.cc:201
  1264. #: apt-pkg/contrib/cdromutl.cc:235
  1265. #, c-format
  1266. msgid "Unable to change to %s"
  1267. msgstr "Nikarî derbasa %s bike"
  1268. #. FIXME: fallback to a default mirror here instead
  1269. #. and provide a config option to define that default
  1270. #: methods/mirror.cc:280
  1271. #, c-format
  1272. msgid "No mirror file '%s' found "
  1273. msgstr ""
  1274. #. FIXME: fallback to a default mirror here instead
  1275. #. and provide a config option to define that default
  1276. #: methods/mirror.cc:287
  1277. #, fuzzy, c-format
  1278. msgid "Can not read mirror file '%s'"
  1279. msgstr "Nikarî pelê %s veke"
  1280. #: methods/mirror.cc:315
  1281. #, fuzzy, c-format
  1282. msgid "No entry found in mirror file '%s'"
  1283. msgstr "Nikarî pelê %s veke"
  1284. #: methods/mirror.cc:445
  1285. #, c-format
  1286. msgid "[Mirror: %s]"
  1287. msgstr ""
  1288. #: methods/rsh.cc:102 ftparchive/multicompress.cc:171
  1289. msgid "Failed to create IPC pipe to subprocess"
  1290. msgstr ""
  1291. #: methods/rsh.cc:343
  1292. msgid "Connection closed prematurely"
  1293. msgstr "Girêdan zû hatiye girtin"
  1294. #: dselect/install:33
  1295. msgid "Bad default setting!"
  1296. msgstr ""
  1297. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1298. #: dselect/install:106 dselect/update:45
  1299. msgid "Press enter to continue."
  1300. msgstr ""
  1301. #: dselect/install:92
  1302. msgid "Do you want to erase any previously downloaded .deb files?"
  1303. msgstr ""
  1304. #: dselect/install:102
  1305. msgid "Some errors occurred while unpacking. Packages that were installed"
  1306. msgstr ""
  1307. #: dselect/install:103
  1308. msgid "will be configured. This may result in duplicate errors"
  1309. msgstr ""
  1310. #: dselect/install:104
  1311. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1312. msgstr ""
  1313. #: dselect/install:105
  1314. msgid ""
  1315. "above this message are important. Please fix them and run [I]nstall again"
  1316. msgstr ""
  1317. #: dselect/update:30
  1318. msgid "Merging available information"
  1319. msgstr ""
  1320. #: apt-inst/filelist.cc:380
  1321. msgid "DropNode called on still linked node"
  1322. msgstr ""
  1323. #: apt-inst/filelist.cc:412
  1324. msgid "Failed to locate the hash element!"
  1325. msgstr ""
  1326. #: apt-inst/filelist.cc:459
  1327. #, fuzzy
  1328. msgid "Failed to allocate diversion"
  1329. msgstr "%s venebû"
  1330. #: apt-inst/filelist.cc:464
  1331. msgid "Internal error in AddDiversion"
  1332. msgstr ""
  1333. #: apt-inst/filelist.cc:477
  1334. #, c-format
  1335. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1336. msgstr ""
  1337. #: apt-inst/filelist.cc:506
  1338. #, c-format
  1339. msgid "Double add of diversion %s -> %s"
  1340. msgstr ""
  1341. #: apt-inst/filelist.cc:549
  1342. #, c-format
  1343. msgid "Duplicate conf file %s/%s"
  1344. msgstr ""
  1345. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  1346. #, c-format
  1347. msgid "The path %s is too long"
  1348. msgstr "Rêça %s zêde dirêj e"
  1349. #: apt-inst/extract.cc:132
  1350. #, c-format
  1351. msgid "Unpacking %s more than once"
  1352. msgstr ""
  1353. #: apt-inst/extract.cc:142
  1354. #, c-format
  1355. msgid "The directory %s is diverted"
  1356. msgstr ""
  1357. #: apt-inst/extract.cc:152
  1358. #, c-format
  1359. msgid "The package is trying to write to the diversion target %s/%s"
  1360. msgstr ""
  1361. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  1362. #, fuzzy
  1363. msgid "The diversion path is too long"
  1364. msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e"
  1365. #: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216
  1366. #: ftparchive/cachedb.cc:131
  1367. #, c-format
  1368. msgid "Failed to stat %s"
  1369. msgstr ""
  1370. #: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374
  1371. #, c-format
  1372. msgid "Failed to rename %s to %s"
  1373. msgstr ""
  1374. #: apt-inst/extract.cc:249
  1375. #, c-format
  1376. msgid "The directory %s is being replaced by a non-directory"
  1377. msgstr ""
  1378. #: apt-inst/extract.cc:289
  1379. msgid "Failed to locate node in its hash bucket"
  1380. msgstr ""
  1381. #: apt-inst/extract.cc:293
  1382. msgid "The path is too long"
  1383. msgstr "Rêç zêde dirêj e"
  1384. #: apt-inst/extract.cc:421
  1385. #, c-format
  1386. msgid "Overwrite package match with no version for %s"
  1387. msgstr ""
  1388. #: apt-inst/extract.cc:438
  1389. #, c-format
  1390. msgid "File %s/%s overwrites the one in the package %s"
  1391. msgstr ""
  1392. #: apt-inst/extract.cc:498
  1393. #, fuzzy, c-format
  1394. msgid "Unable to stat %s"
  1395. msgstr "Nivîsandin ji bo %s ne pêkane"
  1396. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  1397. #, c-format
  1398. msgid "Failed to write file %s"
  1399. msgstr "Nivîsîna pelê %s biserneket"
  1400. #: apt-inst/dirstream.cc:105
  1401. #, c-format
  1402. msgid "Failed to close file %s"
  1403. msgstr "Girtina pelê %s biserneket"
  1404. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  1405. #: apt-inst/deb/debfile.cc:63
  1406. #, c-format
  1407. msgid "This is not a valid DEB archive, missing '%s' member"
  1408. msgstr ""
  1409. #: apt-inst/deb/debfile.cc:132
  1410. #, c-format
  1411. msgid "Internal error, could not locate member %s"
  1412. msgstr ""
  1413. #: apt-inst/deb/debfile.cc:227
  1414. msgid "Unparsable control file"
  1415. msgstr ""
  1416. #: apt-inst/contrib/arfile.cc:76
  1417. msgid "Invalid archive signature"
  1418. msgstr ""
  1419. #: apt-inst/contrib/arfile.cc:84
  1420. msgid "Error reading archive member header"
  1421. msgstr ""
  1422. #: apt-inst/contrib/arfile.cc:96
  1423. #, c-format
  1424. msgid "Invalid archive member header %s"
  1425. msgstr ""
  1426. #: apt-inst/contrib/arfile.cc:108
  1427. msgid "Invalid archive member header"
  1428. msgstr ""
  1429. #: apt-inst/contrib/arfile.cc:137
  1430. msgid "Archive is too short"
  1431. msgstr "Arşîv zêde kin e"
  1432. #: apt-inst/contrib/arfile.cc:141
  1433. msgid "Failed to read the archive headers"
  1434. msgstr ""
  1435. #: apt-inst/contrib/extracttar.cc:124
  1436. #, fuzzy
  1437. msgid "Failed to create pipes"
  1438. msgstr "%s ji hev nehate veçirandin"
  1439. #: apt-inst/contrib/extracttar.cc:151
  1440. msgid "Failed to exec gzip "
  1441. msgstr "Xebitandina gzip biserneket"
  1442. #: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218
  1443. msgid "Corrupted archive"
  1444. msgstr ""
  1445. #: apt-inst/contrib/extracttar.cc:203
  1446. msgid "Tar checksum failed, archive corrupted"
  1447. msgstr ""
  1448. #: apt-inst/contrib/extracttar.cc:308
  1449. #, c-format
  1450. msgid "Unknown TAR header type %u, member %s"
  1451. msgstr ""
  1452. #: apt-pkg/clean.cc:61
  1453. #, fuzzy, c-format
  1454. msgid "Unable to stat %s."
  1455. msgstr "Nivîsandin ji bo %s ne pêkane"
  1456. #: apt-pkg/install-progress.cc:57
  1457. #, c-format
  1458. msgid "Progress: [%3i%%]"
  1459. msgstr ""
  1460. #: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174
  1461. msgid "Running dpkg"
  1462. msgstr ""
  1463. #: apt-pkg/init.cc:146
  1464. #, c-format
  1465. msgid "Packaging system '%s' is not supported"
  1466. msgstr ""
  1467. #: apt-pkg/init.cc:162
  1468. msgid "Unable to determine a suitable packaging system type"
  1469. msgstr ""
  1470. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773
  1471. #, c-format
  1472. msgid "Wrote %i records.\n"
  1473. msgstr "%i tomar hatin nivîsîn.\n"
  1474. #: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775
  1475. #, c-format
  1476. msgid "Wrote %i records with %i missing files.\n"
  1477. msgstr ""
  1478. #: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778
  1479. #, c-format
  1480. msgid "Wrote %i records with %i mismatched files\n"
  1481. msgstr ""
  1482. #: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781
  1483. #, c-format
  1484. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1485. msgstr ""
  1486. #: apt-pkg/indexcopy.cc:515
  1487. #, c-format
  1488. msgid "Can't find authentication record for: %s"
  1489. msgstr ""
  1490. #: apt-pkg/indexcopy.cc:521
  1491. #, fuzzy, c-format
  1492. msgid "Hash mismatch for: %s"
  1493. msgstr "Hash Sum li hev nayên"
  1494. #: apt-pkg/acquire-worker.cc:116
  1495. #, c-format
  1496. msgid "The method driver %s could not be found."
  1497. msgstr ""
  1498. #: apt-pkg/acquire-worker.cc:118
  1499. #, c-format
  1500. msgid "Is the package %s installed?"
  1501. msgstr ""
  1502. #: apt-pkg/acquire-worker.cc:169
  1503. #, c-format
  1504. msgid "Method %s did not start correctly"
  1505. msgstr ""
  1506. #: apt-pkg/acquire-worker.cc:455
  1507. #, fuzzy, c-format
  1508. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  1509. msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne"
  1510. #: apt-pkg/cachefile.cc:94
  1511. msgid "The package lists or status file could not be parsed or opened."
  1512. msgstr ""
  1513. #: apt-pkg/cachefile.cc:98
  1514. msgid "You may want to run apt-get update to correct these problems"
  1515. msgstr ""
  1516. #: apt-pkg/cachefile.cc:116
  1517. msgid "The list of sources could not be read."
  1518. msgstr ""
  1519. #: apt-pkg/pkgcache.cc:155
  1520. msgid "Empty package cache"
  1521. msgstr ""
  1522. #: apt-pkg/pkgcache.cc:161
  1523. msgid "The package cache file is corrupted"
  1524. msgstr ""
  1525. #: apt-pkg/pkgcache.cc:166
  1526. msgid "The package cache file is an incompatible version"
  1527. msgstr ""
  1528. #: apt-pkg/pkgcache.cc:169
  1529. msgid "The package cache file is corrupted, it is too small"
  1530. msgstr ""
  1531. #: apt-pkg/pkgcache.cc:174
  1532. #, c-format
  1533. msgid "This APT does not support the versioning system '%s'"
  1534. msgstr ""
  1535. #: apt-pkg/pkgcache.cc:179
  1536. msgid "The package cache was built for a different architecture"
  1537. msgstr ""
  1538. #: apt-pkg/pkgcache.cc:321
  1539. msgid "Depends"
  1540. msgstr "Bindest"
  1541. #: apt-pkg/pkgcache.cc:321
  1542. msgid "PreDepends"
  1543. msgstr "PêşBindest"
  1544. #: apt-pkg/pkgcache.cc:321
  1545. msgid "Suggests"
  1546. msgstr "Pêşniyaz dike"
  1547. #: apt-pkg/pkgcache.cc:322
  1548. msgid "Recommends"
  1549. msgstr "Tawsiye dike"
  1550. #: apt-pkg/pkgcache.cc:322
  1551. msgid "Conflicts"
  1552. msgstr "Nakokî"
  1553. #: apt-pkg/pkgcache.cc:322
  1554. msgid "Replaces"
  1555. msgstr "Dikeve şunve"
  1556. #: apt-pkg/pkgcache.cc:323
  1557. msgid "Obsoletes"
  1558. msgstr "Kevin dike"
  1559. #: apt-pkg/pkgcache.cc:323
  1560. msgid "Breaks"
  1561. msgstr "Dişkîne"
  1562. #: apt-pkg/pkgcache.cc:323
  1563. msgid "Enhances"
  1564. msgstr ""
  1565. #: apt-pkg/pkgcache.cc:334
  1566. msgid "important"
  1567. msgstr "girîng"
  1568. #: apt-pkg/pkgcache.cc:334
  1569. msgid "required"
  1570. msgstr "pêwist"
  1571. #: apt-pkg/pkgcache.cc:334
  1572. msgid "standard"
  1573. msgstr "standard"
  1574. #: apt-pkg/pkgcache.cc:335
  1575. msgid "optional"
  1576. msgstr "opsiyonel"
  1577. #: apt-pkg/pkgcache.cc:335
  1578. msgid "extra"
  1579. msgstr "ekstra"
  1580. #: apt-pkg/pkgrecords.cc:38
  1581. #, c-format
  1582. msgid "Index file type '%s' is not supported"
  1583. msgstr ""
  1584. #: apt-pkg/pkgcachegen.cc:93
  1585. msgid "Cache has an incompatible versioning system"
  1586. msgstr ""
  1587. #. TRANSLATOR: The first placeholder is a package name,
  1588. #. the other two should be copied verbatim as they include debug info
  1589. #: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234
  1590. #: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327
  1591. #: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382
  1592. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403
  1593. #: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415
  1594. #: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440
  1595. #: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517
  1596. #: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555
  1597. #: apt-pkg/pkgcachegen.cc:569
  1598. #, fuzzy, c-format
  1599. msgid "Error occurred while processing %s (%s%d)"
  1600. msgstr "Dema şixulandina naveroka %s çewtî"
  1601. #: apt-pkg/pkgcachegen.cc:257
  1602. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1603. msgstr ""
  1604. #: apt-pkg/pkgcachegen.cc:260
  1605. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1606. msgstr ""
  1607. #: apt-pkg/pkgcachegen.cc:263
  1608. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1609. msgstr ""
  1610. #: apt-pkg/pkgcachegen.cc:266
  1611. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1612. msgstr ""
  1613. #: apt-pkg/pkgcachegen.cc:576
  1614. #, c-format
  1615. msgid "Package %s %s was not found while processing file dependencies"
  1616. msgstr ""
  1617. #: apt-pkg/pkgcachegen.cc:1211
  1618. #, c-format
  1619. msgid "Couldn't stat source package list %s"
  1620. msgstr ""
  1621. #: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403
  1622. #: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566
  1623. msgid "Reading package lists"
  1624. msgstr "Lîsteya pakêtan tê xwendin"
  1625. #: apt-pkg/pkgcachegen.cc:1316
  1626. msgid "Collecting File Provides"
  1627. msgstr ""
  1628. #: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259
  1629. #, c-format
  1630. msgid "Unable to write to %s"
  1631. msgstr "Nivîsandin ji bo %s ne pêkane"
  1632. #: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515
  1633. msgid "IO Error saving source cache"
  1634. msgstr ""
  1635. #: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70
  1636. msgid "Send scenario to solver"
  1637. msgstr ""
  1638. #: apt-pkg/edsp.cc:216
  1639. msgid "Send request to solver"
  1640. msgstr ""
  1641. #: apt-pkg/edsp.cc:286
  1642. msgid "Prepare for receiving solution"
  1643. msgstr ""
  1644. #: apt-pkg/edsp.cc:293
  1645. msgid "External solver failed without a proper error message"
  1646. msgstr ""
  1647. #: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571
  1648. msgid "Execute external solver"
  1649. msgstr ""
  1650. #: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2045
  1651. #, c-format
  1652. msgid "rename failed, %s (%s -> %s)."
  1653. msgstr "nav guherandin biserneket, %s (%s -> %s)"
  1654. #: apt-pkg/acquire-item.cc:163
  1655. msgid "Hash Sum mismatch"
  1656. msgstr "Hash Sum li hev nayên"
  1657. #: apt-pkg/acquire-item.cc:168
  1658. msgid "Size mismatch"
  1659. msgstr "Mezinahî li hev nayên"
  1660. #: apt-pkg/acquire-item.cc:173
  1661. msgid "Invalid file format"
  1662. msgstr ""
  1663. #: apt-pkg/acquire-item.cc:1579
  1664. #, c-format
  1665. msgid ""
  1666. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  1667. "or malformed file)"
  1668. msgstr ""
  1669. #: apt-pkg/acquire-item.cc:1595
  1670. #, fuzzy, c-format
  1671. msgid "Unable to find hash sum for '%s' in Release file"
  1672. msgstr "Pakêt nehate dîtin %s"
  1673. #: apt-pkg/acquire-item.cc:1637
  1674. msgid "There is no public key available for the following key IDs:\n"
  1675. msgstr ""
  1676. #: apt-pkg/acquire-item.cc:1675
  1677. #, c-format
  1678. msgid ""
  1679. "Release file for %s is expired (invalid since %s). Updates for this "
  1680. "repository will not be applied."
  1681. msgstr ""
  1682. #: apt-pkg/acquire-item.cc:1697
  1683. #, c-format
  1684. msgid "Conflicting distribution: %s (expected %s but got %s)"
  1685. msgstr ""
  1686. #: apt-pkg/acquire-item.cc:1727
  1687. #, c-format
  1688. msgid ""
  1689. "An error occurred during the signature verification. The repository is not "
  1690. "updated and the previous index files will be used. GPG error: %s: %s\n"
  1691. msgstr ""
  1692. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  1693. #: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742
  1694. #, c-format
  1695. msgid "GPG error: %s: %s"
  1696. msgstr ""
  1697. #: apt-pkg/acquire-item.cc:1865
  1698. #, c-format
  1699. msgid ""
  1700. "I wasn't able to locate a file for the %s package. This might mean you need "
  1701. "to manually fix this package. (due to missing arch)"
  1702. msgstr ""
  1703. #: apt-pkg/acquire-item.cc:1931
  1704. #, c-format
  1705. msgid "Can't find a source to download version '%s' of '%s'"
  1706. msgstr ""
  1707. #: apt-pkg/acquire-item.cc:1989
  1708. #, c-format
  1709. msgid ""
  1710. "The package index files are corrupted. No Filename: field for package %s."
  1711. msgstr ""
  1712. #: apt-pkg/vendorlist.cc:85
  1713. #, c-format
  1714. msgid "Vendor block %s contains no fingerprint"
  1715. msgstr ""
  1716. #: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829
  1717. #, fuzzy, c-format
  1718. msgid "List directory %spartial is missing."
  1719. msgstr "Peldanka '%s' kêm e"
  1720. #: apt-pkg/acquire.cc:91
  1721. #, fuzzy, c-format
  1722. msgid "Archives directory %spartial is missing."
  1723. msgstr "Peldanka '%s' kêm e"
  1724. #: apt-pkg/acquire.cc:99
  1725. #, fuzzy, c-format
  1726. msgid "Unable to lock directory %s"
  1727. msgstr "W: pelrêça %s nayê xwendin\n"
  1728. #. only show the ETA if it makes sense
  1729. #. two days
  1730. #: apt-pkg/acquire.cc:899
  1731. #, c-format
  1732. msgid "Retrieving file %li of %li (%s remaining)"
  1733. msgstr ""
  1734. #: apt-pkg/acquire.cc:901
  1735. #, c-format
  1736. msgid "Retrieving file %li of %li"
  1737. msgstr "Pel tê anîn %li ji %li"
  1738. #: apt-pkg/update.cc:103 apt-pkg/update.cc:105
  1739. msgid ""
  1740. "Some index files failed to download. They have been ignored, or old ones "
  1741. "used instead."
  1742. msgstr ""
  1743. #: apt-pkg/srcrecords.cc:52
  1744. msgid "You must put some 'source' URIs in your sources.list"
  1745. msgstr ""
  1746. #: apt-pkg/policy.cc:83
  1747. #, c-format
  1748. msgid ""
  1749. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  1750. "available in the sources"
  1751. msgstr ""
  1752. #: apt-pkg/policy.cc:422
  1753. #, c-format
  1754. msgid "Invalid record in the preferences file %s, no Package header"
  1755. msgstr ""
  1756. #: apt-pkg/policy.cc:444
  1757. #, c-format
  1758. msgid "Did not understand pin type %s"
  1759. msgstr ""
  1760. #: apt-pkg/policy.cc:452
  1761. msgid "No priority (or zero) specified for pin"
  1762. msgstr ""
  1763. #: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932
  1764. #, c-format
  1765. msgid ""
  1766. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  1767. "under APT::Immediate-Configure for details. (%d)"
  1768. msgstr ""
  1769. #: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535
  1770. #, fuzzy, c-format
  1771. msgid "Could not configure '%s'. "
  1772. msgstr "Nikarî pelê %s veke"
  1773. #: apt-pkg/packagemanager.cc:577
  1774. #, c-format
  1775. msgid ""
  1776. "This installation run will require temporarily removing the essential "
  1777. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1778. "you really want to do it, activate the APT::Force-LoopBreak option."
  1779. msgstr ""
  1780. #: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347
  1781. #, c-format
  1782. msgid "Line %u too long in source list %s."
  1783. msgstr ""
  1784. #: apt-pkg/cdrom.cc:571
  1785. msgid "Unmounting CD-ROM...\n"
  1786. msgstr ""
  1787. #: apt-pkg/cdrom.cc:586
  1788. #, c-format
  1789. msgid "Using CD-ROM mount point %s\n"
  1790. msgstr ""
  1791. #: apt-pkg/cdrom.cc:599
  1792. msgid "Waiting for disc...\n"
  1793. msgstr ""
  1794. #: apt-pkg/cdrom.cc:609
  1795. msgid "Mounting CD-ROM...\n"
  1796. msgstr ""
  1797. #: apt-pkg/cdrom.cc:620
  1798. msgid "Identifying... "
  1799. msgstr ""
  1800. #: apt-pkg/cdrom.cc:662
  1801. #, c-format
  1802. msgid "Stored label: %s\n"
  1803. msgstr ""
  1804. #: apt-pkg/cdrom.cc:680
  1805. msgid "Scanning disc for index files...\n"
  1806. msgstr ""
  1807. #: apt-pkg/cdrom.cc:734
  1808. #, c-format
  1809. msgid ""
  1810. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  1811. "%zu signatures\n"
  1812. msgstr ""
  1813. #: apt-pkg/cdrom.cc:744
  1814. msgid ""
  1815. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  1816. "wrong architecture?"
  1817. msgstr ""
  1818. #: apt-pkg/cdrom.cc:771
  1819. #, c-format
  1820. msgid "Found label '%s'\n"
  1821. msgstr "Etîketa '%s' hatiye dîtin\n"
  1822. #: apt-pkg/cdrom.cc:800
  1823. msgid "That is not a valid name, try again.\n"
  1824. msgstr ""
  1825. #: apt-pkg/cdrom.cc:817
  1826. #, c-format
  1827. msgid ""
  1828. "This disc is called: \n"
  1829. "'%s'\n"
  1830. msgstr ""
  1831. "Navê dîskê: \n"
  1832. "'%s'\n"
  1833. #: apt-pkg/cdrom.cc:819
  1834. msgid "Copying package lists..."
  1835. msgstr "Lîsteyên pakêtan tên jibergirtin..."
  1836. #: apt-pkg/cdrom.cc:863
  1837. msgid "Writing new source list\n"
  1838. msgstr ""
  1839. #: apt-pkg/cdrom.cc:874
  1840. msgid "Source list entries for this disc are:\n"
  1841. msgstr ""
  1842. #: apt-pkg/algorithms.cc:265
  1843. #, c-format
  1844. msgid ""
  1845. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1846. msgstr ""
  1847. #: apt-pkg/algorithms.cc:1086
  1848. msgid ""
  1849. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1850. "held packages."
  1851. msgstr ""
  1852. #: apt-pkg/algorithms.cc:1088
  1853. msgid "Unable to correct problems, you have held broken packages."
  1854. msgstr ""
  1855. #: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167
  1856. msgid "Building dependency tree"
  1857. msgstr ""
  1858. #: apt-pkg/depcache.cc:139
  1859. msgid "Candidate versions"
  1860. msgstr "Guhartoyên berendam"
  1861. #: apt-pkg/depcache.cc:168
  1862. msgid "Dependency generation"
  1863. msgstr ""
  1864. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  1865. msgid "Reading state information"
  1866. msgstr ""
  1867. #: apt-pkg/depcache.cc:250
  1868. #, c-format
  1869. msgid "Failed to open StateFile %s"
  1870. msgstr "Vekirina StateFile %s biserneket"
  1871. #: apt-pkg/depcache.cc:256
  1872. #, fuzzy, c-format
  1873. msgid "Failed to write temporary StateFile %s"
  1874. msgstr "%s ji hev nehate veçirandin"
  1875. #: apt-pkg/tagfile.cc:140
  1876. #, fuzzy, c-format
  1877. msgid "Unable to parse package file %s (1)"
  1878. msgstr "Pakêt nehate dîtin %s"
  1879. #: apt-pkg/tagfile.cc:237
  1880. #, fuzzy, c-format
  1881. msgid "Unable to parse package file %s (2)"
  1882. msgstr "Pakêt nehate dîtin %s"
  1883. #: apt-pkg/cacheset.cc:489
  1884. #, c-format
  1885. msgid "Release '%s' for '%s' was not found"
  1886. msgstr ""
  1887. #: apt-pkg/cacheset.cc:492
  1888. #, c-format
  1889. msgid "Version '%s' for '%s' was not found"
  1890. msgstr ""
  1891. #: apt-pkg/cacheset.cc:603
  1892. #, fuzzy, c-format
  1893. msgid "Couldn't find task '%s'"
  1894. msgstr "Peywira %s nehate dîtin"
  1895. #: apt-pkg/cacheset.cc:609
  1896. #, fuzzy, c-format
  1897. msgid "Couldn't find any package by regex '%s'"
  1898. msgstr "Nikarî pakêta %s bibîne"
  1899. #: apt-pkg/cacheset.cc:615
  1900. #, fuzzy, c-format
  1901. msgid "Couldn't find any package by glob '%s'"
  1902. msgstr "Nikarî pakêta %s bibîne"
  1903. #: apt-pkg/cacheset.cc:626
  1904. #, c-format
  1905. msgid "Can't select versions from package '%s' as it is purely virtual"
  1906. msgstr ""
  1907. #: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640
  1908. #, c-format
  1909. msgid ""
  1910. "Can't select installed nor candidate version from package '%s' as it has "
  1911. "neither of them"
  1912. msgstr ""
  1913. #: apt-pkg/cacheset.cc:647
  1914. #, c-format
  1915. msgid "Can't select newest version from package '%s' as it is purely virtual"
  1916. msgstr ""
  1917. #: apt-pkg/cacheset.cc:655
  1918. #, c-format
  1919. msgid "Can't select candidate version from package %s as it has no candidate"
  1920. msgstr ""
  1921. #: apt-pkg/cacheset.cc:663
  1922. #, c-format
  1923. msgid "Can't select installed version from package %s as it is not installed"
  1924. msgstr ""
  1925. #: apt-pkg/indexrecords.cc:78
  1926. #, fuzzy, c-format
  1927. msgid "Unable to parse Release file %s"
  1928. msgstr "Pakêt nehate dîtin %s"
  1929. #: apt-pkg/indexrecords.cc:86
  1930. #, c-format
  1931. msgid "No sections in Release file %s"
  1932. msgstr ""
  1933. #: apt-pkg/indexrecords.cc:117
  1934. #, c-format
  1935. msgid "No Hash entry in Release file %s"
  1936. msgstr ""
  1937. #: apt-pkg/indexrecords.cc:130
  1938. #, c-format
  1939. msgid "Invalid 'Valid-Until' entry in Release file %s"
  1940. msgstr ""
  1941. #: apt-pkg/indexrecords.cc:149
  1942. #, fuzzy, c-format
  1943. msgid "Invalid 'Date' entry in Release file %s"
  1944. msgstr "Pakêt nehate dîtin %s"
  1945. #: apt-pkg/sourcelist.cc:127
  1946. #, c-format
  1947. msgid "Malformed stanza %u in source list %s (URI parse)"
  1948. msgstr ""
  1949. #: apt-pkg/sourcelist.cc:170
  1950. #, c-format
  1951. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  1952. msgstr ""
  1953. #: apt-pkg/sourcelist.cc:173
  1954. #, c-format
  1955. msgid "Malformed line %lu in source list %s ([option] too short)"
  1956. msgstr ""
  1957. #: apt-pkg/sourcelist.cc:184
  1958. #, c-format
  1959. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  1960. msgstr ""
  1961. #: apt-pkg/sourcelist.cc:190
  1962. #, c-format
  1963. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  1964. msgstr ""
  1965. #: apt-pkg/sourcelist.cc:193
  1966. #, c-format
  1967. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  1968. msgstr ""
  1969. #: apt-pkg/sourcelist.cc:206
  1970. #, c-format
  1971. msgid "Malformed line %lu in source list %s (URI)"
  1972. msgstr ""
  1973. #: apt-pkg/sourcelist.cc:208
  1974. #, c-format
  1975. msgid "Malformed line %lu in source list %s (dist)"
  1976. msgstr ""
  1977. #: apt-pkg/sourcelist.cc:211
  1978. #, c-format
  1979. msgid "Malformed line %lu in source list %s (URI parse)"
  1980. msgstr ""
  1981. #: apt-pkg/sourcelist.cc:217
  1982. #, c-format
  1983. msgid "Malformed line %lu in source list %s (absolute dist)"
  1984. msgstr ""
  1985. #: apt-pkg/sourcelist.cc:224
  1986. #, c-format
  1987. msgid "Malformed line %lu in source list %s (dist parse)"
  1988. msgstr ""
  1989. #: apt-pkg/sourcelist.cc:335
  1990. #, c-format
  1991. msgid "Opening %s"
  1992. msgstr "%s tê vekirin"
  1993. #: apt-pkg/sourcelist.cc:371
  1994. #, c-format
  1995. msgid "Malformed line %u in source list %s (type)"
  1996. msgstr ""
  1997. #: apt-pkg/sourcelist.cc:375
  1998. #, c-format
  1999. msgid "Type '%s' is not known on line %u in source list %s"
  2000. msgstr ""
  2001. #: apt-pkg/sourcelist.cc:416
  2002. #, c-format
  2003. msgid "Type '%s' is not known on stanza %u in source list %s"
  2004. msgstr ""
  2005. #: apt-pkg/deb/dpkgpm.cc:95
  2006. #, fuzzy, c-format
  2007. msgid "Installing %s"
  2008. msgstr "%s hatine sazkirin"
  2009. #: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996
  2010. #, c-format
  2011. msgid "Configuring %s"
  2012. msgstr "%s tê mîhengkirin"
  2013. #: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003
  2014. #, c-format
  2015. msgid "Removing %s"
  2016. msgstr "%s tê rakirin"
  2017. #: apt-pkg/deb/dpkgpm.cc:98
  2018. #, fuzzy, c-format
  2019. msgid "Completely removing %s"
  2020. msgstr "%s bi tevahî hatine rakirin"
  2021. #: apt-pkg/deb/dpkgpm.cc:99
  2022. #, c-format
  2023. msgid "Noting disappearance of %s"
  2024. msgstr ""
  2025. #: apt-pkg/deb/dpkgpm.cc:100
  2026. #, c-format
  2027. msgid "Running post-installation trigger %s"
  2028. msgstr ""
  2029. #. FIXME: use a better string after freeze
  2030. #: apt-pkg/deb/dpkgpm.cc:827
  2031. #, c-format
  2032. msgid "Directory '%s' missing"
  2033. msgstr "Peldanka '%s' kêm e"
  2034. #: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864
  2035. #, fuzzy, c-format
  2036. msgid "Could not open file '%s'"
  2037. msgstr "Nikarî pelê %s veke"
  2038. #: apt-pkg/deb/dpkgpm.cc:989
  2039. #, c-format
  2040. msgid "Preparing %s"
  2041. msgstr "%s tê amadekirin"
  2042. #: apt-pkg/deb/dpkgpm.cc:990
  2043. #, c-format
  2044. msgid "Unpacking %s"
  2045. msgstr "%s tê derxistin"
  2046. #: apt-pkg/deb/dpkgpm.cc:995
  2047. #, c-format
  2048. msgid "Preparing to configure %s"
  2049. msgstr "Mîhengkirina %s tê amadekirin"
  2050. #: apt-pkg/deb/dpkgpm.cc:997
  2051. #, c-format
  2052. msgid "Installed %s"
  2053. msgstr "%s hatine sazkirin"
  2054. #: apt-pkg/deb/dpkgpm.cc:1002
  2055. #, c-format
  2056. msgid "Preparing for removal of %s"
  2057. msgstr "Rakirina %s tê amadekirin"
  2058. #: apt-pkg/deb/dpkgpm.cc:1004
  2059. #, c-format
  2060. msgid "Removed %s"
  2061. msgstr "%s hatine rakirin"
  2062. #: apt-pkg/deb/dpkgpm.cc:1009
  2063. #, c-format
  2064. msgid "Preparing to completely remove %s"
  2065. msgstr "Bi tevahî rakirina %s tê amadekirin"
  2066. #: apt-pkg/deb/dpkgpm.cc:1010
  2067. #, c-format
  2068. msgid "Completely removed %s"
  2069. msgstr "%s bi tevahî hatine rakirin"
  2070. #: apt-pkg/deb/dpkgpm.cc:1066
  2071. msgid "ioctl(TIOCGWINSZ) failed"
  2072. msgstr ""
  2073. #: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090
  2074. #, fuzzy, c-format
  2075. msgid "Can not write log (%s)"
  2076. msgstr "Nivîsandin ji bo %s ne pêkane"
  2077. #: apt-pkg/deb/dpkgpm.cc:1069
  2078. msgid "Is /dev/pts mounted?"
  2079. msgstr ""
  2080. #: apt-pkg/deb/dpkgpm.cc:1090
  2081. msgid "Is stdout a terminal?"
  2082. msgstr ""
  2083. #: apt-pkg/deb/dpkgpm.cc:1568
  2084. msgid "Operation was interrupted before it could finish"
  2085. msgstr ""
  2086. #: apt-pkg/deb/dpkgpm.cc:1630
  2087. msgid "No apport report written because MaxReports is reached already"
  2088. msgstr ""
  2089. #. check if its not a follow up error
  2090. #: apt-pkg/deb/dpkgpm.cc:1635
  2091. msgid "dependency problems - leaving unconfigured"
  2092. msgstr ""
  2093. #: apt-pkg/deb/dpkgpm.cc:1637
  2094. msgid ""
  2095. "No apport report written because the error message indicates its a followup "
  2096. "error from a previous failure."
  2097. msgstr ""
  2098. #: apt-pkg/deb/dpkgpm.cc:1643
  2099. msgid ""
  2100. "No apport report written because the error message indicates a disk full "
  2101. "error"
  2102. msgstr ""
  2103. #: apt-pkg/deb/dpkgpm.cc:1650
  2104. msgid ""
  2105. "No apport report written because the error message indicates a out of memory "
  2106. "error"
  2107. msgstr ""
  2108. #: apt-pkg/deb/dpkgpm.cc:1657 apt-pkg/deb/dpkgpm.cc:1663
  2109. msgid ""
  2110. "No apport report written because the error message indicates an issue on the "
  2111. "local system"
  2112. msgstr ""
  2113. #: apt-pkg/deb/dpkgpm.cc:1684
  2114. msgid ""
  2115. "No apport report written because the error message indicates a dpkg I/O error"
  2116. msgstr ""
  2117. #: apt-pkg/deb/debsystem.cc:91
  2118. #, c-format
  2119. msgid ""
  2120. "Unable to lock the administration directory (%s), is another process using "
  2121. "it?"
  2122. msgstr ""
  2123. #: apt-pkg/deb/debsystem.cc:94
  2124. #, fuzzy, c-format
  2125. msgid "Unable to lock the administration directory (%s), are you root?"
  2126. msgstr "Pelrêça daxistinê nayê quflekirin"
  2127. #. TRANSLATORS: the %s contains the recovery command, usually
  2128. #. dpkg --configure -a
  2129. #: apt-pkg/deb/debsystem.cc:110
  2130. #, c-format
  2131. msgid ""
  2132. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2133. msgstr ""
  2134. #: apt-pkg/deb/debsystem.cc:128
  2135. msgid "Not locked"
  2136. msgstr ""
  2137. #. d means days, h means hours, min means minutes, s means seconds
  2138. #: apt-pkg/contrib/strutl.cc:406
  2139. #, c-format
  2140. msgid "%lid %lih %limin %lis"
  2141. msgstr ""
  2142. #. h means hours, min means minutes, s means seconds
  2143. #: apt-pkg/contrib/strutl.cc:413
  2144. #, c-format
  2145. msgid "%lih %limin %lis"
  2146. msgstr ""
  2147. #. min means minutes, s means seconds
  2148. #: apt-pkg/contrib/strutl.cc:420
  2149. #, c-format
  2150. msgid "%limin %lis"
  2151. msgstr ""
  2152. #. s means seconds
  2153. #: apt-pkg/contrib/strutl.cc:425
  2154. #, c-format
  2155. msgid "%lis"
  2156. msgstr ""
  2157. #: apt-pkg/contrib/strutl.cc:1236
  2158. #, c-format
  2159. msgid "Selection %s not found"
  2160. msgstr "Hilbijartina %s nehatiye dîtin"
  2161. #: apt-pkg/contrib/fileutl.cc:190
  2162. #, c-format
  2163. msgid "Not using locking for read only lock file %s"
  2164. msgstr ""
  2165. #: apt-pkg/contrib/fileutl.cc:195
  2166. #, c-format
  2167. msgid "Could not open lock file %s"
  2168. msgstr "Nikarî qufila pelê %s veke"
  2169. #: apt-pkg/contrib/fileutl.cc:218
  2170. #, c-format
  2171. msgid "Not using locking for nfs mounted lock file %s"
  2172. msgstr ""
  2173. #: apt-pkg/contrib/fileutl.cc:223
  2174. #, c-format
  2175. msgid "Could not get lock %s"
  2176. msgstr ""
  2177. #: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474
  2178. #, c-format
  2179. msgid "List of files can't be created as '%s' is not a directory"
  2180. msgstr ""
  2181. #: apt-pkg/contrib/fileutl.cc:394
  2182. #, c-format
  2183. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2184. msgstr ""
  2185. #: apt-pkg/contrib/fileutl.cc:412
  2186. #, c-format
  2187. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2188. msgstr ""
  2189. #: apt-pkg/contrib/fileutl.cc:421
  2190. #, c-format
  2191. msgid ""
  2192. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2193. msgstr ""
  2194. #: apt-pkg/contrib/fileutl.cc:824
  2195. #, c-format
  2196. msgid "Sub-process %s received a segmentation fault."
  2197. msgstr ""
  2198. #: apt-pkg/contrib/fileutl.cc:826
  2199. #, c-format
  2200. msgid "Sub-process %s received signal %u."
  2201. msgstr ""
  2202. #: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239
  2203. #, c-format
  2204. msgid "Sub-process %s returned an error code (%u)"
  2205. msgstr ""
  2206. #: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232
  2207. #, c-format
  2208. msgid "Sub-process %s exited unexpectedly"
  2209. msgstr ""
  2210. #: apt-pkg/contrib/fileutl.cc:913
  2211. #, fuzzy, c-format
  2212. msgid "Problem closing the gzip file %s"
  2213. msgstr "Di girtina pelî de pirsgirêkek derket"
  2214. #: apt-pkg/contrib/fileutl.cc:1101
  2215. #, c-format
  2216. msgid "Could not open file %s"
  2217. msgstr "Nikarî pelê %s veke"
  2218. #: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207
  2219. #, fuzzy, c-format
  2220. msgid "Could not open file descriptor %d"
  2221. msgstr "Nikarî pelê %s veke"
  2222. #: apt-pkg/contrib/fileutl.cc:1314
  2223. msgid "Failed to create subprocess IPC"
  2224. msgstr ""
  2225. #: apt-pkg/contrib/fileutl.cc:1372
  2226. msgid "Failed to exec compressor "
  2227. msgstr ""
  2228. #: apt-pkg/contrib/fileutl.cc:1513
  2229. #, c-format
  2230. msgid "read, still have %llu to read but none left"
  2231. msgstr ""
  2232. #: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648
  2233. #, c-format
  2234. msgid "write, still have %llu to write but couldn't"
  2235. msgstr ""
  2236. #: apt-pkg/contrib/fileutl.cc:1913
  2237. #, fuzzy, c-format
  2238. msgid "Problem closing the file %s"
  2239. msgstr "Di girtina pelî de pirsgirêkek derket"
  2240. #: apt-pkg/contrib/fileutl.cc:1925
  2241. #, fuzzy, c-format
  2242. msgid "Problem renaming the file %s to %s"
  2243. msgstr "Di girtina pelî de pirsgirêkek derket"
  2244. #: apt-pkg/contrib/fileutl.cc:1936
  2245. #, fuzzy, c-format
  2246. msgid "Problem unlinking the file %s"
  2247. msgstr "Di girtina pelî de pirsgirêkek derket"
  2248. #: apt-pkg/contrib/fileutl.cc:1949
  2249. msgid "Problem syncing the file"
  2250. msgstr ""
  2251. #: apt-pkg/contrib/progress.cc:148
  2252. #, c-format
  2253. msgid "%c%s... Error!"
  2254. msgstr "%c%s... Çewtî!"
  2255. #: apt-pkg/contrib/progress.cc:150
  2256. #, c-format
  2257. msgid "%c%s... Done"
  2258. msgstr "%c%s... Çêbû"
  2259. #: apt-pkg/contrib/progress.cc:181
  2260. msgid "..."
  2261. msgstr ""
  2262. #. Print the spinner
  2263. #: apt-pkg/contrib/progress.cc:197
  2264. #, fuzzy, c-format
  2265. msgid "%c%s... %u%%"
  2266. msgstr "%c%s... Çêbû"
  2267. #: apt-pkg/contrib/mmap.cc:79
  2268. msgid "Can't mmap an empty file"
  2269. msgstr ""
  2270. #: apt-pkg/contrib/mmap.cc:111
  2271. #, c-format
  2272. msgid "Couldn't duplicate file descriptor %i"
  2273. msgstr ""
  2274. #: apt-pkg/contrib/mmap.cc:119
  2275. #, fuzzy, c-format
  2276. msgid "Couldn't make mmap of %llu bytes"
  2277. msgstr "Nikarî li %s biguherîne"
  2278. #: apt-pkg/contrib/mmap.cc:146
  2279. #, fuzzy
  2280. msgid "Unable to close mmap"
  2281. msgstr "%s venebû"
  2282. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  2283. #, fuzzy
  2284. msgid "Unable to synchronize mmap"
  2285. msgstr "%s venebû"
  2286. #: apt-pkg/contrib/mmap.cc:290
  2287. #, c-format
  2288. msgid "Couldn't make mmap of %lu bytes"
  2289. msgstr ""
  2290. #: apt-pkg/contrib/mmap.cc:322
  2291. #, fuzzy
  2292. msgid "Failed to truncate file"
  2293. msgstr "Nivîsîna pelê %s biserneket"
  2294. #: apt-pkg/contrib/mmap.cc:341
  2295. #, c-format
  2296. msgid ""
  2297. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2298. "Current value: %lu. (man 5 apt.conf)"
  2299. msgstr ""
  2300. #: apt-pkg/contrib/mmap.cc:446
  2301. #, c-format
  2302. msgid ""
  2303. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2304. "reached."
  2305. msgstr ""
  2306. #: apt-pkg/contrib/mmap.cc:449
  2307. msgid ""
  2308. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2309. msgstr ""
  2310. #: apt-pkg/contrib/cdromutl.cc:65
  2311. #, fuzzy, c-format
  2312. msgid "Unable to stat the mount point %s"
  2313. msgstr "Nivîsandin ji bo %s ne pêkane"
  2314. #: apt-pkg/contrib/cdromutl.cc:246
  2315. msgid "Failed to stat the cdrom"
  2316. msgstr ""
  2317. #: apt-pkg/contrib/configuration.cc:519
  2318. #, c-format
  2319. msgid "Unrecognized type abbreviation: '%c'"
  2320. msgstr ""
  2321. #: apt-pkg/contrib/configuration.cc:633
  2322. #, c-format
  2323. msgid "Opening configuration file %s"
  2324. msgstr ""
  2325. #: apt-pkg/contrib/configuration.cc:801
  2326. #, c-format
  2327. msgid "Syntax error %s:%u: Block starts with no name."
  2328. msgstr ""
  2329. #: apt-pkg/contrib/configuration.cc:820
  2330. #, c-format
  2331. msgid "Syntax error %s:%u: Malformed tag"
  2332. msgstr ""
  2333. #: apt-pkg/contrib/configuration.cc:837
  2334. #, c-format
  2335. msgid "Syntax error %s:%u: Extra junk after value"
  2336. msgstr ""
  2337. #: apt-pkg/contrib/configuration.cc:877
  2338. #, c-format
  2339. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2340. msgstr ""
  2341. #: apt-pkg/contrib/configuration.cc:884
  2342. #, c-format
  2343. msgid "Syntax error %s:%u: Too many nested includes"
  2344. msgstr ""
  2345. #: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893
  2346. #, c-format
  2347. msgid "Syntax error %s:%u: Included from here"
  2348. msgstr ""
  2349. #: apt-pkg/contrib/configuration.cc:897
  2350. #, c-format
  2351. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2352. msgstr ""
  2353. #: apt-pkg/contrib/configuration.cc:900
  2354. #, c-format
  2355. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2356. msgstr ""
  2357. #: apt-pkg/contrib/configuration.cc:950
  2358. #, c-format
  2359. msgid "Syntax error %s:%u: Extra junk at end of file"
  2360. msgstr ""
  2361. #. TRANSLATOR: %s is the trusted keyring parts directory
  2362. #: apt-pkg/contrib/gpgv.cc:72
  2363. #, fuzzy, c-format
  2364. msgid "No keyring installed in %s."
  2365. msgstr "Sazkirin tê betalkirin."
  2366. #: apt-pkg/contrib/cmndline.cc:121
  2367. #, c-format
  2368. msgid "Command line option '%c' [from %s] is not known."
  2369. msgstr ""
  2370. #: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155
  2371. #: apt-pkg/contrib/cmndline.cc:163
  2372. #, c-format
  2373. msgid "Command line option %s is not understood"
  2374. msgstr ""
  2375. #: apt-pkg/contrib/cmndline.cc:168
  2376. #, c-format
  2377. msgid "Command line option %s is not boolean"
  2378. msgstr ""
  2379. #: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230
  2380. #, c-format
  2381. msgid "Option %s requires an argument."
  2382. msgstr ""
  2383. #: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249
  2384. #, c-format
  2385. msgid "Option %s: Configuration item specification must have an =<val>."
  2386. msgstr ""
  2387. #: apt-pkg/contrib/cmndline.cc:278
  2388. #, c-format
  2389. msgid "Option %s requires an integer argument, not '%s'"
  2390. msgstr ""
  2391. #: apt-pkg/contrib/cmndline.cc:309
  2392. #, c-format
  2393. msgid "Option '%s' is too long"
  2394. msgstr "Opsiyona '%s' zêde dirêj e"
  2395. #: apt-pkg/contrib/cmndline.cc:341
  2396. #, c-format
  2397. msgid "Sense %s is not understood, try true or false."
  2398. msgstr ""
  2399. #: apt-pkg/contrib/cmndline.cc:391
  2400. #, c-format
  2401. msgid "Invalid operation %s"
  2402. msgstr ""
  2403. #: cmdline/apt-extracttemplates.cc:224
  2404. msgid ""
  2405. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2406. "\n"
  2407. "apt-extracttemplates is a tool to extract config and template info\n"
  2408. "from debian packages\n"
  2409. "\n"
  2410. "Options:\n"
  2411. " -h This help text\n"
  2412. " -t Set the temp dir\n"
  2413. " -c=? Read this configuration file\n"
  2414. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2415. msgstr ""
  2416. #: cmdline/apt-extracttemplates.cc:254
  2417. #, fuzzy, c-format
  2418. msgid "Unable to mkstemp %s"
  2419. msgstr "Nivîsandin ji bo %s ne pêkane"
  2420. #: cmdline/apt-extracttemplates.cc:300
  2421. msgid "Cannot get debconf version. Is debconf installed?"
  2422. msgstr "Guhertoya debconf nehate stendin. debconf sazkirî ye?"
  2423. #: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358
  2424. msgid "Package extension list is too long"
  2425. msgstr "Lîsteya dirêjahiya pakêtê zêde dirêj e"
  2426. #: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199
  2427. #: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273
  2428. #: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309
  2429. #, c-format
  2430. msgid "Error processing directory %s"
  2431. msgstr "Di şixulandina pêrista %s de çewtî"
  2432. #: ftparchive/apt-ftparchive.cc:271
  2433. msgid "Source extension list is too long"
  2434. msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e"
  2435. #: ftparchive/apt-ftparchive.cc:388
  2436. msgid "Error writing header to contents file"
  2437. msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
  2438. #: ftparchive/apt-ftparchive.cc:418
  2439. #, c-format
  2440. msgid "Error processing contents %s"
  2441. msgstr "Dema şixulandina naveroka %s çewtî"
  2442. #: ftparchive/apt-ftparchive.cc:606
  2443. msgid ""
  2444. "Usage: apt-ftparchive [options] command\n"
  2445. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2446. " sources srcpath [overridefile [pathprefix]]\n"
  2447. " contents path\n"
  2448. " release path\n"
  2449. " generate config [groups]\n"
  2450. " clean config\n"
  2451. "\n"
  2452. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2453. "many styles of generation from fully automated to functional replacements\n"
  2454. "for dpkg-scanpackages and dpkg-scansources\n"
  2455. "\n"
  2456. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2457. "Package file contains the contents of all the control fields from\n"
  2458. "each package as well as the MD5 hash and filesize. An override file\n"
  2459. "is supported to force the value of Priority and Section.\n"
  2460. "\n"
  2461. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2462. "The --source-override option can be used to specify a src override file\n"
  2463. "\n"
  2464. "The 'packages' and 'sources' command should be run in the root of the\n"
  2465. "tree. BinaryPath should point to the base of the recursive search and \n"
  2466. "override file should contain the override flags. Pathprefix is\n"
  2467. "appended to the filename fields if present. Example usage from the \n"
  2468. "Debian archive:\n"
  2469. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2470. " dists/potato/main/binary-i386/Packages\n"
  2471. "\n"
  2472. "Options:\n"
  2473. " -h This help text\n"
  2474. " --md5 Control MD5 generation\n"
  2475. " -s=? Source override file\n"
  2476. " -q Quiet\n"
  2477. " -d=? Select the optional caching database\n"
  2478. " --no-delink Enable delinking debug mode\n"
  2479. " --contents Control contents file generation\n"
  2480. " -c=? Read this configuration file\n"
  2481. " -o=? Set an arbitrary configuration option"
  2482. msgstr ""
  2483. #: ftparchive/apt-ftparchive.cc:812
  2484. msgid "No selections matched"
  2485. msgstr ""
  2486. #: ftparchive/apt-ftparchive.cc:890
  2487. #, c-format
  2488. msgid "Some files are missing in the package file group `%s'"
  2489. msgstr "Di koma pelgehên pakêta '%s' de hin pelgeh kêm in"
  2490. #: ftparchive/cachedb.cc:51
  2491. #, c-format
  2492. msgid "DB was corrupted, file renamed to %s.old"
  2493. msgstr "DB xerabe ye, navê dosyeyê weke %s.old hate guherandin"
  2494. #: ftparchive/cachedb.cc:69
  2495. #, c-format
  2496. msgid "DB is old, attempting to upgrade %s"
  2497. msgstr "Danegir kevn e, ji bo bilindkirina %s hewl dide"
  2498. #: ftparchive/cachedb.cc:80
  2499. msgid ""
  2500. "DB format is invalid. If you upgraded from an older version of apt, please "
  2501. "remove and re-create the database."
  2502. msgstr ""
  2503. #: ftparchive/cachedb.cc:85
  2504. #, c-format
  2505. msgid "Unable to open DB file %s: %s"
  2506. msgstr "Danegira %s nehate vekirin: %s"
  2507. #: ftparchive/cachedb.cc:253
  2508. msgid "Archive has no control record"
  2509. msgstr "Tomara kontrola arşîvê tuneye"
  2510. #: ftparchive/cachedb.cc:494
  2511. msgid "Unable to get a cursor"
  2512. msgstr ""
  2513. #: ftparchive/writer.cc:91
  2514. #, c-format
  2515. msgid "W: Unable to read directory %s\n"
  2516. msgstr "W: pelrêça %s nayê xwendin\n"
  2517. #: ftparchive/writer.cc:96
  2518. #, c-format
  2519. msgid "W: Unable to stat %s\n"
  2520. msgstr ""
  2521. #: ftparchive/writer.cc:152
  2522. msgid "E: "
  2523. msgstr "E: "
  2524. #: ftparchive/writer.cc:154
  2525. msgid "W: "
  2526. msgstr "W: "
  2527. #: ftparchive/writer.cc:161
  2528. msgid "E: Errors apply to file "
  2529. msgstr ""
  2530. #: ftparchive/writer.cc:179 ftparchive/writer.cc:211
  2531. #, c-format
  2532. msgid "Failed to resolve %s"
  2533. msgstr "%s ji hev nehate veçirandin"
  2534. #: ftparchive/writer.cc:192
  2535. msgid "Tree walking failed"
  2536. msgstr ""
  2537. #: ftparchive/writer.cc:219
  2538. #, c-format
  2539. msgid "Failed to open %s"
  2540. msgstr "%s venebû"
  2541. #: ftparchive/writer.cc:278
  2542. #, c-format
  2543. msgid " DeLink %s [%s]\n"
  2544. msgstr ""
  2545. #: ftparchive/writer.cc:286
  2546. #, c-format
  2547. msgid "Failed to readlink %s"
  2548. msgstr ""
  2549. #: ftparchive/writer.cc:290
  2550. #, c-format
  2551. msgid "Failed to unlink %s"
  2552. msgstr ""
  2553. #: ftparchive/writer.cc:298
  2554. #, c-format
  2555. msgid "*** Failed to link %s to %s"
  2556. msgstr ""
  2557. #: ftparchive/writer.cc:308
  2558. #, c-format
  2559. msgid " DeLink limit of %sB hit.\n"
  2560. msgstr ""
  2561. #: ftparchive/writer.cc:413
  2562. msgid "Archive had no package field"
  2563. msgstr "Di arşîvê de qada pakêtê tuneye"
  2564. #: ftparchive/writer.cc:421 ftparchive/writer.cc:711
  2565. #, c-format
  2566. msgid " %s has no override entry\n"
  2567. msgstr ""
  2568. #: ftparchive/writer.cc:489 ftparchive/writer.cc:855
  2569. #, c-format
  2570. msgid " %s maintainer is %s not %s\n"
  2571. msgstr ""
  2572. #: ftparchive/writer.cc:721
  2573. #, c-format
  2574. msgid " %s has no source override entry\n"
  2575. msgstr ""
  2576. #: ftparchive/writer.cc:725
  2577. #, c-format
  2578. msgid " %s has no binary override entry either\n"
  2579. msgstr ""
  2580. #: ftparchive/contents.cc:340 ftparchive/contents.cc:371
  2581. msgid "realloc - Failed to allocate memory"
  2582. msgstr ""
  2583. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  2584. #, c-format
  2585. msgid "Unable to open %s"
  2586. msgstr "%s venebû"
  2587. #. skip spaces
  2588. #. find end of word
  2589. #: ftparchive/override.cc:68
  2590. #, c-format
  2591. msgid "Malformed override %s line %llu (%s)"
  2592. msgstr ""
  2593. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  2594. #, c-format
  2595. msgid "Failed to read the override file %s"
  2596. msgstr ""
  2597. #: ftparchive/override.cc:166
  2598. #, c-format
  2599. msgid "Malformed override %s line %llu #1"
  2600. msgstr ""
  2601. #: ftparchive/override.cc:178
  2602. #, c-format
  2603. msgid "Malformed override %s line %llu #2"
  2604. msgstr ""
  2605. #: ftparchive/override.cc:191
  2606. #, c-format
  2607. msgid "Malformed override %s line %llu #3"
  2608. msgstr ""
  2609. #: ftparchive/multicompress.cc:73
  2610. #, c-format
  2611. msgid "Unknown compression algorithm '%s'"
  2612. msgstr ""
  2613. #: ftparchive/multicompress.cc:103
  2614. #, c-format
  2615. msgid "Compressed output %s needs a compression set"
  2616. msgstr ""
  2617. #: ftparchive/multicompress.cc:192
  2618. msgid "Failed to create FILE*"
  2619. msgstr ""
  2620. #: ftparchive/multicompress.cc:195
  2621. msgid "Failed to fork"
  2622. msgstr ""
  2623. #: ftparchive/multicompress.cc:209
  2624. msgid "Compress child"
  2625. msgstr ""
  2626. #: ftparchive/multicompress.cc:232
  2627. #, c-format
  2628. msgid "Internal error, failed to create %s"
  2629. msgstr ""
  2630. #: ftparchive/multicompress.cc:305
  2631. msgid "IO to subprocess/file failed"
  2632. msgstr ""
  2633. #: ftparchive/multicompress.cc:343
  2634. msgid "Failed to read while computing MD5"
  2635. msgstr ""
  2636. #: ftparchive/multicompress.cc:359
  2637. #, c-format
  2638. msgid "Problem unlinking %s"
  2639. msgstr ""
  2640. #: cmdline/apt-internal-solver.cc:46
  2641. #, fuzzy
  2642. msgid ""
  2643. "Usage: apt-internal-solver\n"
  2644. "\n"
  2645. "apt-internal-solver is an interface to use the current internal\n"
  2646. "like an external resolver for the APT family for debugging or alike\n"
  2647. "\n"
  2648. "Options:\n"
  2649. " -h This help text.\n"
  2650. " -q Loggable output - no progress indicator\n"
  2651. " -c=? Read this configuration file\n"
  2652. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2653. msgstr ""
  2654. "Bikaranîn: apt-config [vebijark] ferman\n"
  2655. "apt-config, amûra xwendina dosyeya mîhengên APTê ye\n"
  2656. "\n"
  2657. "Ferman\n"
  2658. " shell - moda shell\n"
  2659. " dump - Mîhengan nîşan dide\n"
  2660. "\n"
  2661. "Vebijark:\n"
  2662. " -h Ev dosyeya alîkariyê ye.\n"
  2663. " -c=? Dosyeya mîhengan nîşan dide\n"
  2664. " -o=? Rê li ber vedike ku tu karibe li gorî dilê xwe vebijarkan diyar bike. "
  2665. "mînak -o dir::cache=/tmp\n"
  2666. #: cmdline/apt-sortpkgs.cc:89
  2667. msgid "Unknown package record!"
  2668. msgstr ""
  2669. #: cmdline/apt-sortpkgs.cc:153
  2670. msgid ""
  2671. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  2672. "\n"
  2673. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  2674. "to indicate what kind of file it is.\n"
  2675. "\n"
  2676. "Options:\n"
  2677. " -h This help text\n"
  2678. " -s Use source file sorting\n"
  2679. " -c=? Read this configuration file\n"
  2680. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2681. msgstr ""
  2682. #~ msgid "%s not a valid DEB package."
  2683. #~ msgstr "%s ne paketeke DEB ya derbasdar e."
  2684. #, fuzzy
  2685. #~ msgid " [Not candidate version]"
  2686. #~ msgstr "Guhartoyên berendam"
  2687. #~ msgid "%s is already the newest version.\n"
  2688. #~ msgstr "%s jixwe guhertoya nûtirîn e.\n"
  2689. #~ msgid "MD5Sum mismatch"
  2690. #~ msgstr "MD5Sum li hev nayên"
  2691. #~ msgid "Failed to remove %s"
  2692. #~ msgstr "Rakirina %s biserneket"
  2693. #~ msgid "Unable to create %s"
  2694. #~ msgstr "Nikare %s biafirîne"
  2695. #, fuzzy
  2696. #~ msgid "Failed to stat %sinfo"
  2697. #~ msgstr "%s venebû"
  2698. #~ msgid "Couldn't change to %s"
  2699. #~ msgstr "Nikarî li %s biguherîne"
  2700. #, fuzzy
  2701. #~ msgid "Couldn't open pipe for %s"
  2702. #~ msgstr "Nikarî pelê %s veke"
  2703. #, fuzzy
  2704. #~ msgid "Could not patch file"
  2705. #~ msgstr "Danegira %s nehate vekirin: %s"
  2706. #~ msgid " %4i %s\n"
  2707. #~ msgstr " %4i %s\n"
  2708. #~ msgid "%4i %s\n"
  2709. #~ msgstr "%4i %s\n"
  2710. #, fuzzy
  2711. #~ msgid "Processing triggers for %s"
  2712. #~ msgstr "Di şixulandina pêrista %s de çewtî"