ku.po 63 KB

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