ku.po 66 KB

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