ku.po 69 KB

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