ku.po 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697
  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-10-28 18:12+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:2571 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\n"
  159. " dotty - Generate package graphs for GraphVis\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:1990 cmdline/apt-get.cc:2023
  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:2071 cmdline/apt-get.cc:2317
  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:2166
  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:2214 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:2223
  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. #: cmdline/apt-get.cc:1445 cmdline/apt-get.cc:1733
  754. msgid "The following information may help to resolve the situation:"
  755. msgstr ""
  756. #: cmdline/apt-get.cc:1449
  757. msgid "Internal Error, AutoRemover broke stuff"
  758. msgstr ""
  759. #: cmdline/apt-get.cc:1468
  760. msgid "Internal error, AllUpgrade broke stuff"
  761. msgstr ""
  762. #: cmdline/apt-get.cc:1523
  763. #, c-format
  764. msgid "Couldn't find task %s"
  765. msgstr "Peywira %s nehate dîtin"
  766. #: cmdline/apt-get.cc:1638 cmdline/apt-get.cc:1674
  767. #, c-format
  768. msgid "Couldn't find package %s"
  769. msgstr "Nikarî pakêta %s bibîne"
  770. #: cmdline/apt-get.cc:1661
  771. #, c-format
  772. msgid "Note, selecting %s for regex '%s'\n"
  773. msgstr ""
  774. #: cmdline/apt-get.cc:1692
  775. #, fuzzy, c-format
  776. msgid "%s set to manually installed.\n"
  777. msgstr "lê %s dê were sazkirin"
  778. #: cmdline/apt-get.cc:1705
  779. msgid "You might want to run `apt-get -f install' to correct these:"
  780. msgstr ""
  781. #: cmdline/apt-get.cc:1708
  782. msgid ""
  783. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  784. "solution)."
  785. msgstr ""
  786. #: cmdline/apt-get.cc:1720
  787. msgid ""
  788. "Some packages could not be installed. This may mean that you have\n"
  789. "requested an impossible situation or if you are using the unstable\n"
  790. "distribution that some required packages have not yet been created\n"
  791. "or been moved out of Incoming."
  792. msgstr ""
  793. #: cmdline/apt-get.cc:1728
  794. msgid ""
  795. "Since you only requested a single operation it is extremely likely that\n"
  796. "the package is simply not installable and a bug report against\n"
  797. "that package should be filed."
  798. msgstr ""
  799. #: cmdline/apt-get.cc:1736
  800. msgid "Broken packages"
  801. msgstr "Paketên şikestî"
  802. #: cmdline/apt-get.cc:1765
  803. msgid "The following extra packages will be installed:"
  804. msgstr ""
  805. #: cmdline/apt-get.cc:1854
  806. msgid "Suggested packages:"
  807. msgstr "Paketên tên pêşniyaz kirin:"
  808. #: cmdline/apt-get.cc:1855
  809. msgid "Recommended packages:"
  810. msgstr "Paketên tên tawsiyê kirin:"
  811. #: cmdline/apt-get.cc:1883
  812. msgid "Calculating upgrade... "
  813. msgstr "Bilindkirin tê hesibandin..."
  814. #: cmdline/apt-get.cc:1886 methods/ftp.cc:702 methods/connect.cc:112
  815. msgid "Failed"
  816. msgstr "Serneket"
  817. #: cmdline/apt-get.cc:1891
  818. msgid "Done"
  819. msgstr "Temam"
  820. #: cmdline/apt-get.cc:1958 cmdline/apt-get.cc:1966
  821. msgid "Internal error, problem resolver broke stuff"
  822. msgstr ""
  823. #: cmdline/apt-get.cc:2066
  824. msgid "Must specify at least one package to fetch source for"
  825. msgstr ""
  826. #: cmdline/apt-get.cc:2096 cmdline/apt-get.cc:2335
  827. #, c-format
  828. msgid "Unable to find a source package for %s"
  829. msgstr ""
  830. #: cmdline/apt-get.cc:2145
  831. #, c-format
  832. msgid "Skipping already downloaded file '%s'\n"
  833. msgstr ""
  834. #: cmdline/apt-get.cc:2173
  835. #, c-format
  836. msgid "You don't have enough free space in %s"
  837. msgstr "Cihê vala li %s têre nake"
  838. #: cmdline/apt-get.cc:2179
  839. #, c-format
  840. msgid "Need to get %sB/%sB of source archives.\n"
  841. msgstr ""
  842. #: cmdline/apt-get.cc:2182
  843. #, c-format
  844. msgid "Need to get %sB of source archives.\n"
  845. msgstr ""
  846. #: cmdline/apt-get.cc:2188
  847. #, c-format
  848. msgid "Fetch source %s\n"
  849. msgstr "Çavkanîna %s bîne\n"
  850. #: cmdline/apt-get.cc:2219
  851. msgid "Failed to fetch some archives."
  852. msgstr "Anîna çend arşîvan biserneket."
  853. #: cmdline/apt-get.cc:2247
  854. #, c-format
  855. msgid "Skipping unpack of already unpacked source in %s\n"
  856. msgstr ""
  857. #: cmdline/apt-get.cc:2259
  858. #, c-format
  859. msgid "Unpack command '%s' failed.\n"
  860. msgstr ""
  861. #: cmdline/apt-get.cc:2260
  862. #, c-format
  863. msgid "Check if the 'dpkg-dev' package is installed.\n"
  864. msgstr ""
  865. #: cmdline/apt-get.cc:2277
  866. #, c-format
  867. msgid "Build command '%s' failed.\n"
  868. msgstr ""
  869. #: cmdline/apt-get.cc:2296
  870. msgid "Child process failed"
  871. msgstr ""
  872. #: cmdline/apt-get.cc:2312
  873. msgid "Must specify at least one package to check builddeps for"
  874. msgstr ""
  875. #: cmdline/apt-get.cc:2340
  876. #, c-format
  877. msgid "Unable to get build-dependency information for %s"
  878. msgstr ""
  879. #: cmdline/apt-get.cc:2360
  880. #, c-format
  881. msgid "%s has no build depends.\n"
  882. msgstr ""
  883. #: cmdline/apt-get.cc:2412
  884. #, c-format
  885. msgid ""
  886. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  887. "found"
  888. msgstr ""
  889. #: cmdline/apt-get.cc:2465
  890. #, c-format
  891. msgid ""
  892. "%s dependency for %s cannot be satisfied because no available versions of "
  893. "package %s can satisfy version requirements"
  894. msgstr ""
  895. #: cmdline/apt-get.cc:2501
  896. #, c-format
  897. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  898. msgstr ""
  899. #: cmdline/apt-get.cc:2526
  900. #, c-format
  901. msgid "Failed to satisfy %s dependency for %s: %s"
  902. msgstr ""
  903. #: cmdline/apt-get.cc:2540
  904. #, c-format
  905. msgid "Build-dependencies for %s could not be satisfied."
  906. msgstr ""
  907. #: cmdline/apt-get.cc:2544
  908. msgid "Failed to process build dependencies"
  909. msgstr ""
  910. #: cmdline/apt-get.cc:2576
  911. msgid "Supported modules:"
  912. msgstr ""
  913. #: cmdline/apt-get.cc:2617
  914. msgid ""
  915. "Usage: apt-get [options] command\n"
  916. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  917. " apt-get [options] source pkg1 [pkg2 ...]\n"
  918. "\n"
  919. "apt-get is a simple command line interface for downloading and\n"
  920. "installing packages. The most frequently used commands are update\n"
  921. "and install.\n"
  922. "\n"
  923. "Commands:\n"
  924. " update - Retrieve new lists of packages\n"
  925. " upgrade - Perform an upgrade\n"
  926. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  927. " remove - Remove packages\n"
  928. " autoremove - Remove automatically all unused packages\n"
  929. " purge - Remove and purge packages\n"
  930. " source - Download source archives\n"
  931. " build-dep - Configure build-dependencies for source packages\n"
  932. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  933. " dselect-upgrade - Follow dselect selections\n"
  934. " clean - Erase downloaded archive files\n"
  935. " autoclean - Erase old downloaded archive files\n"
  936. " check - Verify that there are no broken dependencies\n"
  937. "\n"
  938. "Options:\n"
  939. " -h This help text.\n"
  940. " -q Loggable output - no progress indicator\n"
  941. " -qq No output except for errors\n"
  942. " -d Download only - do NOT install or unpack archives\n"
  943. " -s No-act. Perform ordering simulation\n"
  944. " -y Assume Yes to all queries and do not prompt\n"
  945. " -f Attempt to correct a system with broken dependencies in place\n"
  946. " -m Attempt to continue if archives are unlocatable\n"
  947. " -u Show a list of upgraded packages as well\n"
  948. " -b Build the source package after fetching it\n"
  949. " -V Show verbose version numbers\n"
  950. " -c=? Read this configuration file\n"
  951. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  952. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  953. "pages for more information and options.\n"
  954. " This APT has Super Cow Powers.\n"
  955. msgstr ""
  956. #: cmdline/acqprogress.cc:55
  957. msgid "Hit "
  958. msgstr ""
  959. #: cmdline/acqprogress.cc:79
  960. msgid "Get:"
  961. msgstr "Anîn:"
  962. #: cmdline/acqprogress.cc:110
  963. msgid "Ign "
  964. msgstr ""
  965. #: cmdline/acqprogress.cc:114
  966. msgid "Err "
  967. msgstr "Çewt"
  968. #: cmdline/acqprogress.cc:135
  969. #, fuzzy, c-format
  970. msgid "Fetched %sB in %s (%sB/s)\n"
  971. msgstr "%s hatine anîn..."
  972. #: cmdline/acqprogress.cc:225
  973. #, c-format
  974. msgid " [Working]"
  975. msgstr " [Dixebite]"
  976. #: cmdline/acqprogress.cc:271
  977. #, c-format
  978. msgid ""
  979. "Media change: please insert the disc labeled\n"
  980. " '%s'\n"
  981. "in the drive '%s' and press enter\n"
  982. msgstr ""
  983. #: cmdline/apt-sortpkgs.cc:86
  984. msgid "Unknown package record!"
  985. msgstr ""
  986. #: cmdline/apt-sortpkgs.cc:150
  987. msgid ""
  988. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  989. "\n"
  990. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  991. "to indicate what kind of file it is.\n"
  992. "\n"
  993. "Options:\n"
  994. " -h This help text\n"
  995. " -s Use source file sorting\n"
  996. " -c=? Read this configuration file\n"
  997. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  998. msgstr ""
  999. #: dselect/install:32
  1000. msgid "Bad default setting!"
  1001. msgstr ""
  1002. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1003. #: dselect/install:105 dselect/update:45
  1004. msgid "Press enter to continue."
  1005. msgstr ""
  1006. #: dselect/install:91
  1007. msgid "Do you want to erase any previously downloaded .deb files?"
  1008. msgstr ""
  1009. #: dselect/install:101
  1010. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1011. msgstr ""
  1012. #: dselect/install:102
  1013. msgid "packages that were installed. This may result in duplicate errors"
  1014. msgstr ""
  1015. #: dselect/install:103
  1016. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1017. msgstr ""
  1018. #: dselect/install:104
  1019. msgid ""
  1020. "above this message are important. Please fix them and run [I]nstall again"
  1021. msgstr ""
  1022. #: dselect/update:30
  1023. msgid "Merging available information"
  1024. msgstr ""
  1025. #: apt-inst/contrib/extracttar.cc:114
  1026. #, fuzzy
  1027. msgid "Failed to create pipes"
  1028. msgstr "%s ji hev nehate veçirandin"
  1029. #: apt-inst/contrib/extracttar.cc:141
  1030. msgid "Failed to exec gzip "
  1031. msgstr "Xebitandina gzip biserneket"
  1032. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
  1033. msgid "Corrupted archive"
  1034. msgstr ""
  1035. #: apt-inst/contrib/extracttar.cc:193
  1036. msgid "Tar checksum failed, archive corrupted"
  1037. msgstr ""
  1038. #: apt-inst/contrib/extracttar.cc:296
  1039. #, c-format
  1040. msgid "Unknown TAR header type %u, member %s"
  1041. msgstr ""
  1042. #: apt-inst/contrib/arfile.cc:70
  1043. msgid "Invalid archive signature"
  1044. msgstr ""
  1045. #: apt-inst/contrib/arfile.cc:78
  1046. msgid "Error reading archive member header"
  1047. msgstr ""
  1048. #: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
  1049. msgid "Invalid archive member header"
  1050. msgstr ""
  1051. #: apt-inst/contrib/arfile.cc:128
  1052. msgid "Archive is too short"
  1053. msgstr "Arşîv zêde kin e"
  1054. #: apt-inst/contrib/arfile.cc:132
  1055. msgid "Failed to read the archive headers"
  1056. msgstr ""
  1057. #: apt-inst/filelist.cc:380
  1058. msgid "DropNode called on still linked node"
  1059. msgstr ""
  1060. #: apt-inst/filelist.cc:412
  1061. msgid "Failed to locate the hash element!"
  1062. msgstr ""
  1063. #: apt-inst/filelist.cc:459
  1064. #, fuzzy
  1065. msgid "Failed to allocate diversion"
  1066. msgstr "%s venebû"
  1067. #: apt-inst/filelist.cc:464
  1068. msgid "Internal error in AddDiversion"
  1069. msgstr ""
  1070. #: apt-inst/filelist.cc:477
  1071. #, c-format
  1072. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1073. msgstr ""
  1074. #: apt-inst/filelist.cc:506
  1075. #, c-format
  1076. msgid "Double add of diversion %s -> %s"
  1077. msgstr ""
  1078. #: apt-inst/filelist.cc:549
  1079. #, c-format
  1080. msgid "Duplicate conf file %s/%s"
  1081. msgstr ""
  1082. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
  1083. #, c-format
  1084. msgid "Failed to write file %s"
  1085. msgstr "Nivîsîna pelê %s biserneket"
  1086. #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
  1087. #, c-format
  1088. msgid "Failed to close file %s"
  1089. msgstr "Girtina pelê %s biserneket"
  1090. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1091. #, c-format
  1092. msgid "The path %s is too long"
  1093. msgstr "Rêça %s zêde dirêj e"
  1094. #: apt-inst/extract.cc:124
  1095. #, c-format
  1096. msgid "Unpacking %s more than once"
  1097. msgstr ""
  1098. #: apt-inst/extract.cc:134
  1099. #, c-format
  1100. msgid "The directory %s is diverted"
  1101. msgstr ""
  1102. #: apt-inst/extract.cc:144
  1103. #, c-format
  1104. msgid "The package is trying to write to the diversion target %s/%s"
  1105. msgstr ""
  1106. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1107. #, fuzzy
  1108. msgid "The diversion path is too long"
  1109. msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e"
  1110. #: apt-inst/extract.cc:240
  1111. #, c-format
  1112. msgid "The directory %s is being replaced by a non-directory"
  1113. msgstr ""
  1114. #: apt-inst/extract.cc:280
  1115. msgid "Failed to locate node in its hash bucket"
  1116. msgstr ""
  1117. #: apt-inst/extract.cc:284
  1118. msgid "The path is too long"
  1119. msgstr "Rêç zêde dirêj e"
  1120. #: apt-inst/extract.cc:414
  1121. #, c-format
  1122. msgid "Overwrite package match with no version for %s"
  1123. msgstr ""
  1124. #: apt-inst/extract.cc:431
  1125. #, c-format
  1126. msgid "File %s/%s overwrites the one in the package %s"
  1127. msgstr ""
  1128. #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:821
  1129. #: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
  1130. #: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
  1131. #, c-format
  1132. msgid "Unable to read %s"
  1133. msgstr "Nikare %s bixwîne"
  1134. #: apt-inst/extract.cc:491
  1135. #, fuzzy, c-format
  1136. msgid "Unable to stat %s"
  1137. msgstr "Nivîsandin ji bo %s ne pêkane"
  1138. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1139. #, c-format
  1140. msgid "Failed to remove %s"
  1141. msgstr "Rakirina %s biserneket"
  1142. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1143. #, c-format
  1144. msgid "Unable to create %s"
  1145. msgstr "Nikare %s biafirîne"
  1146. #: apt-inst/deb/dpkgdb.cc:114
  1147. #, fuzzy, c-format
  1148. msgid "Failed to stat %sinfo"
  1149. msgstr "%s venebû"
  1150. #: apt-inst/deb/dpkgdb.cc:119
  1151. msgid "The info and temp directories need to be on the same filesystem"
  1152. msgstr ""
  1153. #. Build the status cache
  1154. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760
  1155. #: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834
  1156. #: apt-pkg/pkgcachegen.cc:957
  1157. msgid "Reading package lists"
  1158. msgstr "Lîsteya pakêtan tê xwendin"
  1159. #: apt-inst/deb/dpkgdb.cc:176
  1160. #, c-format
  1161. msgid "Failed to change to the admin dir %sinfo"
  1162. msgstr ""
  1163. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1164. #: apt-inst/deb/dpkgdb.cc:444
  1165. msgid "Internal error getting a package name"
  1166. msgstr ""
  1167. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1168. msgid "Reading file listing"
  1169. msgstr ""
  1170. #: apt-inst/deb/dpkgdb.cc:212
  1171. #, c-format
  1172. msgid ""
  1173. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1174. "then make it empty and immediately re-install the same version of the "
  1175. "package!"
  1176. msgstr ""
  1177. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1178. #, c-format
  1179. msgid "Failed reading the list file %sinfo/%s"
  1180. msgstr ""
  1181. #: apt-inst/deb/dpkgdb.cc:262
  1182. msgid "Internal error getting a node"
  1183. msgstr ""
  1184. #: apt-inst/deb/dpkgdb.cc:305
  1185. #, c-format
  1186. msgid "Failed to open the diversions file %sdiversions"
  1187. msgstr ""
  1188. #: apt-inst/deb/dpkgdb.cc:320
  1189. msgid "The diversion file is corrupted"
  1190. msgstr ""
  1191. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1192. #: apt-inst/deb/dpkgdb.cc:337
  1193. #, c-format
  1194. msgid "Invalid line in the diversion file: %s"
  1195. msgstr ""
  1196. #: apt-inst/deb/dpkgdb.cc:358
  1197. msgid "Internal error adding a diversion"
  1198. msgstr ""
  1199. #: apt-inst/deb/dpkgdb.cc:379
  1200. msgid "The pkg cache must be initialized first"
  1201. msgstr ""
  1202. #: apt-inst/deb/dpkgdb.cc:439
  1203. #, c-format
  1204. msgid "Failed to find a Package: header, offset %lu"
  1205. msgstr ""
  1206. #: apt-inst/deb/dpkgdb.cc:461
  1207. #, c-format
  1208. msgid "Bad ConfFile section in the status file. Offset %lu"
  1209. msgstr ""
  1210. #: apt-inst/deb/dpkgdb.cc:466
  1211. #, c-format
  1212. msgid "Error parsing MD5. Offset %lu"
  1213. msgstr ""
  1214. #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
  1215. #, c-format
  1216. msgid "This is not a valid DEB archive, missing '%s' member"
  1217. msgstr ""
  1218. #: apt-inst/deb/debfile.cc:50
  1219. #, c-format
  1220. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1221. msgstr ""
  1222. #: apt-inst/deb/debfile.cc:110
  1223. #, c-format
  1224. msgid "Couldn't change to %s"
  1225. msgstr "Nikarî li %s biguherîne"
  1226. #: apt-inst/deb/debfile.cc:140
  1227. msgid "Internal error, could not locate member"
  1228. msgstr ""
  1229. #: apt-inst/deb/debfile.cc:173
  1230. msgid "Failed to locate a valid control file"
  1231. msgstr ""
  1232. #: apt-inst/deb/debfile.cc:258
  1233. msgid "Unparsable control file"
  1234. msgstr ""
  1235. #: methods/cdrom.cc:114
  1236. #, fuzzy, c-format
  1237. msgid "Unable to read the cdrom database %s"
  1238. msgstr "Pakêt nehate dîtin %s"
  1239. #: methods/cdrom.cc:123
  1240. msgid ""
  1241. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1242. "cannot be used to add new CD-ROMs"
  1243. msgstr ""
  1244. #: methods/cdrom.cc:131
  1245. msgid "Wrong CD-ROM"
  1246. msgstr "CD-ROM a şaş"
  1247. #: methods/cdrom.cc:166
  1248. #, c-format
  1249. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1250. msgstr ""
  1251. #: methods/cdrom.cc:171
  1252. msgid "Disk not found."
  1253. msgstr "Dîsk nehate dîtin."
  1254. #: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
  1255. msgid "File not found"
  1256. msgstr "Pel nehate dîtin"
  1257. #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
  1258. #: methods/rred.cc:234 methods/rred.cc:243
  1259. #, fuzzy
  1260. msgid "Failed to stat"
  1261. msgstr "%s venebû"
  1262. #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
  1263. msgid "Failed to set modification time"
  1264. msgstr ""
  1265. #: methods/file.cc:44
  1266. msgid "Invalid URI, local URIS must not start with //"
  1267. msgstr ""
  1268. #. Login must be before getpeername otherwise dante won't work.
  1269. #: methods/ftp.cc:162
  1270. msgid "Logging in"
  1271. msgstr "Têketin"
  1272. #: methods/ftp.cc:168
  1273. msgid "Unable to determine the peer name"
  1274. msgstr ""
  1275. #: methods/ftp.cc:173
  1276. msgid "Unable to determine the local name"
  1277. msgstr "Nikare navê herêmî tesbît bike"
  1278. #: methods/ftp.cc:204 methods/ftp.cc:232
  1279. #, c-format
  1280. msgid "The server refused the connection and said: %s"
  1281. msgstr ""
  1282. #: methods/ftp.cc:210
  1283. #, c-format
  1284. msgid "USER failed, server said: %s"
  1285. msgstr ""
  1286. #: methods/ftp.cc:217
  1287. #, c-format
  1288. msgid "PASS failed, server said: %s"
  1289. msgstr ""
  1290. #: methods/ftp.cc:237
  1291. msgid ""
  1292. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1293. "is empty."
  1294. msgstr ""
  1295. #: methods/ftp.cc:265
  1296. #, c-format
  1297. msgid "Login script command '%s' failed, server said: %s"
  1298. msgstr ""
  1299. #: methods/ftp.cc:291
  1300. #, c-format
  1301. msgid "TYPE failed, server said: %s"
  1302. msgstr ""
  1303. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1304. msgid "Connection timeout"
  1305. msgstr ""
  1306. #: methods/ftp.cc:335
  1307. msgid "Server closed the connection"
  1308. msgstr ""
  1309. #: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:538 methods/rsh.cc:190
  1310. msgid "Read error"
  1311. msgstr "Çewiya xwendinê"
  1312. #: methods/ftp.cc:345 methods/rsh.cc:197
  1313. msgid "A response overflowed the buffer."
  1314. msgstr ""
  1315. #: methods/ftp.cc:362 methods/ftp.cc:374
  1316. msgid "Protocol corruption"
  1317. msgstr ""
  1318. #: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:577 methods/rsh.cc:232
  1319. msgid "Write error"
  1320. msgstr "Çewtiya nivîsînê"
  1321. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1322. msgid "Could not create a socket"
  1323. msgstr ""
  1324. #: methods/ftp.cc:698
  1325. msgid "Could not connect data socket, connection timed out"
  1326. msgstr ""
  1327. #: methods/ftp.cc:704
  1328. msgid "Could not connect passive socket."
  1329. msgstr ""
  1330. #: methods/ftp.cc:722
  1331. msgid "getaddrinfo was unable to get a listening socket"
  1332. msgstr ""
  1333. #: methods/ftp.cc:736
  1334. msgid "Could not bind a socket"
  1335. msgstr ""
  1336. #: methods/ftp.cc:740
  1337. msgid "Could not listen on the socket"
  1338. msgstr ""
  1339. #: methods/ftp.cc:747
  1340. msgid "Could not determine the socket's name"
  1341. msgstr ""
  1342. #: methods/ftp.cc:779
  1343. msgid "Unable to send PORT command"
  1344. msgstr ""
  1345. #: methods/ftp.cc:789
  1346. #, c-format
  1347. msgid "Unknown address family %u (AF_*)"
  1348. msgstr ""
  1349. #: methods/ftp.cc:798
  1350. #, c-format
  1351. msgid "EPRT failed, server said: %s"
  1352. msgstr ""
  1353. #: methods/ftp.cc:818
  1354. msgid "Data socket connect timed out"
  1355. msgstr ""
  1356. #: methods/ftp.cc:825
  1357. msgid "Unable to accept connection"
  1358. msgstr ""
  1359. #: methods/ftp.cc:864 methods/http.cc:960 methods/rsh.cc:303
  1360. msgid "Problem hashing file"
  1361. msgstr ""
  1362. #: methods/ftp.cc:877
  1363. #, fuzzy, c-format
  1364. msgid "Unable to fetch file, server said '%s'"
  1365. msgstr "Danegira %s nehate vekirin: %s"
  1366. #: methods/ftp.cc:892 methods/rsh.cc:322
  1367. msgid "Data socket timed out"
  1368. msgstr ""
  1369. #: methods/ftp.cc:922
  1370. #, c-format
  1371. msgid "Data transfer failed, server said '%s'"
  1372. msgstr ""
  1373. #. Get the files information
  1374. #: methods/ftp.cc:997
  1375. msgid "Query"
  1376. msgstr "Lêpirsîn"
  1377. #: methods/ftp.cc:1109
  1378. #, fuzzy
  1379. msgid "Unable to invoke "
  1380. msgstr "%s venebû"
  1381. #: methods/connect.cc:70
  1382. #, c-format
  1383. msgid "Connecting to %s (%s)"
  1384. msgstr "Girêdan bi %s (%s) re pêk tê"
  1385. #: methods/connect.cc:81
  1386. #, c-format
  1387. msgid "[IP: %s %s]"
  1388. msgstr "[IP: %s %s]"
  1389. #: methods/connect.cc:90
  1390. #, c-format
  1391. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1392. msgstr ""
  1393. #: methods/connect.cc:96
  1394. #, c-format
  1395. msgid "Cannot initiate the connection to %s:%s (%s)."
  1396. msgstr ""
  1397. #: methods/connect.cc:104
  1398. #, c-format
  1399. msgid "Could not connect to %s:%s (%s), connection timed out"
  1400. msgstr ""
  1401. #: methods/connect.cc:119
  1402. #, c-format
  1403. msgid "Could not connect to %s:%s (%s)."
  1404. msgstr ""
  1405. #. We say this mainly because the pause here is for the
  1406. #. ssh connection that is still going
  1407. #: methods/connect.cc:147 methods/rsh.cc:425
  1408. #, c-format
  1409. msgid "Connecting to %s"
  1410. msgstr "Bi %s re tê girêdan"
  1411. #: methods/connect.cc:165 methods/connect.cc:184
  1412. #, c-format
  1413. msgid "Could not resolve '%s'"
  1414. msgstr "Nikarî '%s' çareser bike"
  1415. #: methods/connect.cc:190
  1416. #, c-format
  1417. msgid "Temporary failure resolving '%s'"
  1418. msgstr ""
  1419. #: methods/connect.cc:193
  1420. #, c-format
  1421. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1422. msgstr ""
  1423. #: methods/connect.cc:240
  1424. #, c-format
  1425. msgid "Unable to connect to %s %s:"
  1426. msgstr "Nikare bi %s re girêdan pêk bîne %s:"
  1427. #: methods/gpgv.cc:65
  1428. #, c-format
  1429. msgid "Couldn't access keyring: '%s'"
  1430. msgstr ""
  1431. #: methods/gpgv.cc:101
  1432. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1433. msgstr ""
  1434. #: methods/gpgv.cc:205
  1435. msgid ""
  1436. "Internal error: Good signature, but could not determine key fingerprint?!"
  1437. msgstr ""
  1438. #: methods/gpgv.cc:210
  1439. msgid "At least one invalid signature was encountered."
  1440. msgstr ""
  1441. #: methods/gpgv.cc:214
  1442. #, c-format
  1443. msgid "Could not execute '%s' to verify signature (is gpgv installed?)"
  1444. msgstr ""
  1445. #: methods/gpgv.cc:219
  1446. msgid "Unknown error executing gpgv"
  1447. msgstr "Di xebitandina gpgv de çewtiya nenas"
  1448. #: methods/gpgv.cc:250
  1449. #, fuzzy
  1450. msgid "The following signatures were invalid:\n"
  1451. msgstr "Ev pakêtên NÛ dê werine sazkirin:"
  1452. #: methods/gpgv.cc:257
  1453. msgid ""
  1454. "The following signatures couldn't be verified because the public key is not "
  1455. "available:\n"
  1456. msgstr ""
  1457. #: methods/gzip.cc:64
  1458. #, c-format
  1459. msgid "Couldn't open pipe for %s"
  1460. msgstr ""
  1461. #: methods/gzip.cc:109
  1462. #, c-format
  1463. msgid "Read error from %s process"
  1464. msgstr ""
  1465. #: methods/http.cc:377
  1466. msgid "Waiting for headers"
  1467. msgstr ""
  1468. #: methods/http.cc:523
  1469. #, c-format
  1470. msgid "Got a single header line over %u chars"
  1471. msgstr ""
  1472. #: methods/http.cc:531
  1473. msgid "Bad header line"
  1474. msgstr ""
  1475. #: methods/http.cc:550 methods/http.cc:557
  1476. msgid "The HTTP server sent an invalid reply header"
  1477. msgstr ""
  1478. #: methods/http.cc:586
  1479. msgid "The HTTP server sent an invalid Content-Length header"
  1480. msgstr ""
  1481. #: methods/http.cc:601
  1482. msgid "The HTTP server sent an invalid Content-Range header"
  1483. msgstr ""
  1484. #: methods/http.cc:603
  1485. msgid "This HTTP server has broken range support"
  1486. msgstr ""
  1487. #: methods/http.cc:627
  1488. msgid "Unknown date format"
  1489. msgstr ""
  1490. #: methods/http.cc:774
  1491. msgid "Select failed"
  1492. msgstr "Hilbijartin neserketî"
  1493. #: methods/http.cc:779
  1494. msgid "Connection timed out"
  1495. msgstr ""
  1496. #: methods/http.cc:802
  1497. #, fuzzy
  1498. msgid "Error writing to output file"
  1499. msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
  1500. #: methods/http.cc:833
  1501. msgid "Error writing to file"
  1502. msgstr "Dema li pelî dihate nivîsîn çewtî"
  1503. #: methods/http.cc:861
  1504. msgid "Error writing to the file"
  1505. msgstr "Dema li pelî dihate nivîsîn çewtî"
  1506. #: methods/http.cc:875
  1507. msgid "Error reading from server. Remote end closed connection"
  1508. msgstr ""
  1509. #: methods/http.cc:877
  1510. msgid "Error reading from server"
  1511. msgstr ""
  1512. #: methods/http.cc:945 apt-pkg/contrib/mmap.cc:196
  1513. #, fuzzy
  1514. msgid "Failed to truncate file"
  1515. msgstr "Nivîsîna pelê %s biserneket"
  1516. #: methods/http.cc:1105
  1517. msgid "Bad header data"
  1518. msgstr ""
  1519. #: methods/http.cc:1122 methods/http.cc:1177
  1520. msgid "Connection failed"
  1521. msgstr "Girêdan pêk nehatiye"
  1522. #: methods/http.cc:1229
  1523. msgid "Internal error"
  1524. msgstr "Çewtiya hundirîn"
  1525. #: apt-pkg/contrib/mmap.cc:80
  1526. msgid "Can't mmap an empty file"
  1527. msgstr ""
  1528. #: apt-pkg/contrib/mmap.cc:85
  1529. #, c-format
  1530. msgid "Couldn't make mmap of %lu bytes"
  1531. msgstr ""
  1532. #: apt-pkg/contrib/mmap.cc:213
  1533. msgid "Dynamic MMap ran out of room"
  1534. msgstr ""
  1535. #: apt-pkg/contrib/strutl.cc:1014
  1536. #, c-format
  1537. msgid "Selection %s not found"
  1538. msgstr "Hilbijartina %s nehatiye dîtin"
  1539. #: apt-pkg/contrib/configuration.cc:439
  1540. #, c-format
  1541. msgid "Unrecognized type abbreviation: '%c'"
  1542. msgstr ""
  1543. #: apt-pkg/contrib/configuration.cc:497
  1544. #, c-format
  1545. msgid "Opening configuration file %s"
  1546. msgstr ""
  1547. #: apt-pkg/contrib/configuration.cc:662
  1548. #, c-format
  1549. msgid "Syntax error %s:%u: Block starts with no name."
  1550. msgstr ""
  1551. #: apt-pkg/contrib/configuration.cc:681
  1552. #, c-format
  1553. msgid "Syntax error %s:%u: Malformed tag"
  1554. msgstr ""
  1555. #: apt-pkg/contrib/configuration.cc:698
  1556. #, c-format
  1557. msgid "Syntax error %s:%u: Extra junk after value"
  1558. msgstr ""
  1559. #: apt-pkg/contrib/configuration.cc:738
  1560. #, c-format
  1561. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1562. msgstr ""
  1563. #: apt-pkg/contrib/configuration.cc:745
  1564. #, c-format
  1565. msgid "Syntax error %s:%u: Too many nested includes"
  1566. msgstr ""
  1567. #: apt-pkg/contrib/configuration.cc:749 apt-pkg/contrib/configuration.cc:754
  1568. #, c-format
  1569. msgid "Syntax error %s:%u: Included from here"
  1570. msgstr ""
  1571. #: apt-pkg/contrib/configuration.cc:758
  1572. #, c-format
  1573. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1574. msgstr ""
  1575. #: apt-pkg/contrib/configuration.cc:809
  1576. #, c-format
  1577. msgid "Syntax error %s:%u: Extra junk at end of file"
  1578. msgstr ""
  1579. #: apt-pkg/contrib/progress.cc:153
  1580. #, c-format
  1581. msgid "%c%s... Error!"
  1582. msgstr "%c%s... Çewtî!"
  1583. #: apt-pkg/contrib/progress.cc:155
  1584. #, c-format
  1585. msgid "%c%s... Done"
  1586. msgstr "%c%s... Çêbû"
  1587. #: apt-pkg/contrib/cmndline.cc:77
  1588. #, c-format
  1589. msgid "Command line option '%c' [from %s] is not known."
  1590. msgstr ""
  1591. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  1592. #: apt-pkg/contrib/cmndline.cc:119
  1593. #, c-format
  1594. msgid "Command line option %s is not understood"
  1595. msgstr ""
  1596. #: apt-pkg/contrib/cmndline.cc:124
  1597. #, c-format
  1598. msgid "Command line option %s is not boolean"
  1599. msgstr ""
  1600. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1601. #, c-format
  1602. msgid "Option %s requires an argument."
  1603. msgstr ""
  1604. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1605. #, c-format
  1606. msgid "Option %s: Configuration item specification must have an =<val>."
  1607. msgstr ""
  1608. #: apt-pkg/contrib/cmndline.cc:234
  1609. #, c-format
  1610. msgid "Option %s requires an integer argument, not '%s'"
  1611. msgstr ""
  1612. #: apt-pkg/contrib/cmndline.cc:265
  1613. #, c-format
  1614. msgid "Option '%s' is too long"
  1615. msgstr "Opsiyona '%s' zêde dirêj e"
  1616. #: apt-pkg/contrib/cmndline.cc:298
  1617. #, c-format
  1618. msgid "Sense %s is not understood, try true or false."
  1619. msgstr ""
  1620. #: apt-pkg/contrib/cmndline.cc:348
  1621. #, c-format
  1622. msgid "Invalid operation %s"
  1623. msgstr ""
  1624. #: apt-pkg/contrib/cdromutl.cc:52
  1625. #, fuzzy, c-format
  1626. msgid "Unable to stat the mount point %s"
  1627. msgstr "Nivîsandin ji bo %s ne pêkane"
  1628. #: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180
  1629. #: apt-pkg/acquire.cc:424 apt-pkg/acquire.cc:449 apt-pkg/clean.cc:40
  1630. #, c-format
  1631. msgid "Unable to change to %s"
  1632. msgstr "Nikarî derbasa %s bike"
  1633. #: apt-pkg/contrib/cdromutl.cc:188
  1634. msgid "Failed to stat the cdrom"
  1635. msgstr ""
  1636. #: apt-pkg/contrib/fileutl.cc:149
  1637. #, c-format
  1638. msgid "Not using locking for read only lock file %s"
  1639. msgstr ""
  1640. #: apt-pkg/contrib/fileutl.cc:154
  1641. #, c-format
  1642. msgid "Could not open lock file %s"
  1643. msgstr "Nikarî qufila pelê %s veke"
  1644. #: apt-pkg/contrib/fileutl.cc:172
  1645. #, c-format
  1646. msgid "Not using locking for nfs mounted lock file %s"
  1647. msgstr ""
  1648. #: apt-pkg/contrib/fileutl.cc:176
  1649. #, c-format
  1650. msgid "Could not get lock %s"
  1651. msgstr ""
  1652. #: apt-pkg/contrib/fileutl.cc:444
  1653. #, c-format
  1654. msgid "Waited for %s but it wasn't there"
  1655. msgstr ""
  1656. #: apt-pkg/contrib/fileutl.cc:454
  1657. #, c-format
  1658. msgid "Sub-process %s received a segmentation fault."
  1659. msgstr ""
  1660. #: apt-pkg/contrib/fileutl.cc:457
  1661. #, c-format
  1662. msgid "Sub-process %s returned an error code (%u)"
  1663. msgstr ""
  1664. #: apt-pkg/contrib/fileutl.cc:459
  1665. #, c-format
  1666. msgid "Sub-process %s exited unexpectedly"
  1667. msgstr ""
  1668. #: apt-pkg/contrib/fileutl.cc:503
  1669. #, c-format
  1670. msgid "Could not open file %s"
  1671. msgstr "Nikarî pelê %s veke"
  1672. #: apt-pkg/contrib/fileutl.cc:559
  1673. #, c-format
  1674. msgid "read, still have %lu to read but none left"
  1675. msgstr ""
  1676. #: apt-pkg/contrib/fileutl.cc:589
  1677. #, c-format
  1678. msgid "write, still have %lu to write but couldn't"
  1679. msgstr ""
  1680. #: apt-pkg/contrib/fileutl.cc:664
  1681. msgid "Problem closing the file"
  1682. msgstr "Di girtina pelî de pirsgirêkek derket"
  1683. #: apt-pkg/contrib/fileutl.cc:670
  1684. msgid "Problem unlinking the file"
  1685. msgstr ""
  1686. #: apt-pkg/contrib/fileutl.cc:681
  1687. msgid "Problem syncing the file"
  1688. msgstr ""
  1689. #: apt-pkg/pkgcache.cc:132
  1690. msgid "Empty package cache"
  1691. msgstr ""
  1692. #: apt-pkg/pkgcache.cc:138
  1693. msgid "The package cache file is corrupted"
  1694. msgstr ""
  1695. #: apt-pkg/pkgcache.cc:143
  1696. msgid "The package cache file is an incompatible version"
  1697. msgstr ""
  1698. #: apt-pkg/pkgcache.cc:148
  1699. #, c-format
  1700. msgid "This APT does not support the versioning system '%s'"
  1701. msgstr ""
  1702. #: apt-pkg/pkgcache.cc:153
  1703. msgid "The package cache was built for a different architecture"
  1704. msgstr ""
  1705. #: apt-pkg/pkgcache.cc:224
  1706. msgid "Depends"
  1707. msgstr "Bindest"
  1708. #: apt-pkg/pkgcache.cc:224
  1709. msgid "PreDepends"
  1710. msgstr "PêşBindest"
  1711. #: apt-pkg/pkgcache.cc:224
  1712. msgid "Suggests"
  1713. msgstr "Pêşniyaz dike"
  1714. #: apt-pkg/pkgcache.cc:225
  1715. msgid "Recommends"
  1716. msgstr "Tawsiye dike"
  1717. #: apt-pkg/pkgcache.cc:225
  1718. msgid "Conflicts"
  1719. msgstr "Nakokî"
  1720. #: apt-pkg/pkgcache.cc:225
  1721. msgid "Replaces"
  1722. msgstr "Dikeve şunve"
  1723. #: apt-pkg/pkgcache.cc:226
  1724. msgid "Obsoletes"
  1725. msgstr "Kevin dike"
  1726. #: apt-pkg/pkgcache.cc:226
  1727. msgid "Breaks"
  1728. msgstr "Dişkîne"
  1729. #: apt-pkg/pkgcache.cc:237
  1730. msgid "important"
  1731. msgstr "girîng"
  1732. #: apt-pkg/pkgcache.cc:237
  1733. msgid "required"
  1734. msgstr "pêwist"
  1735. #: apt-pkg/pkgcache.cc:237
  1736. msgid "standard"
  1737. msgstr "standard"
  1738. #: apt-pkg/pkgcache.cc:238
  1739. msgid "optional"
  1740. msgstr "opsiyonel"
  1741. #: apt-pkg/pkgcache.cc:238
  1742. msgid "extra"
  1743. msgstr "ekstra"
  1744. #: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
  1745. msgid "Building dependency tree"
  1746. msgstr ""
  1747. #: apt-pkg/depcache.cc:122
  1748. msgid "Candidate versions"
  1749. msgstr "Guhartoyên berendam"
  1750. #: apt-pkg/depcache.cc:151
  1751. msgid "Dependency generation"
  1752. msgstr ""
  1753. #: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
  1754. msgid "Reading state information"
  1755. msgstr ""
  1756. #: apt-pkg/depcache.cc:219
  1757. #, c-format
  1758. msgid "Failed to open StateFile %s"
  1759. msgstr "Vekirina StateFile %s biserneket"
  1760. #: apt-pkg/depcache.cc:225
  1761. #, fuzzy, c-format
  1762. msgid "Failed to write temporary StateFile %s"
  1763. msgstr "%s ji hev nehate veçirandin"
  1764. #: apt-pkg/tagfile.cc:102
  1765. #, fuzzy, c-format
  1766. msgid "Unable to parse package file %s (1)"
  1767. msgstr "Pakêt nehate dîtin %s"
  1768. #: apt-pkg/tagfile.cc:189
  1769. #, fuzzy, c-format
  1770. msgid "Unable to parse package file %s (2)"
  1771. msgstr "Pakêt nehate dîtin %s"
  1772. #: apt-pkg/sourcelist.cc:90
  1773. #, c-format
  1774. msgid "Malformed line %lu in source list %s (URI)"
  1775. msgstr ""
  1776. #: apt-pkg/sourcelist.cc:92
  1777. #, c-format
  1778. msgid "Malformed line %lu in source list %s (dist)"
  1779. msgstr ""
  1780. #: apt-pkg/sourcelist.cc:95
  1781. #, c-format
  1782. msgid "Malformed line %lu in source list %s (URI parse)"
  1783. msgstr ""
  1784. #: apt-pkg/sourcelist.cc:101
  1785. #, c-format
  1786. msgid "Malformed line %lu in source list %s (absolute dist)"
  1787. msgstr ""
  1788. #: apt-pkg/sourcelist.cc:108
  1789. #, c-format
  1790. msgid "Malformed line %lu in source list %s (dist parse)"
  1791. msgstr ""
  1792. #: apt-pkg/sourcelist.cc:199
  1793. #, c-format
  1794. msgid "Opening %s"
  1795. msgstr "%s tê vekirin"
  1796. #: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
  1797. #, c-format
  1798. msgid "Line %u too long in source list %s."
  1799. msgstr ""
  1800. #: apt-pkg/sourcelist.cc:236
  1801. #, c-format
  1802. msgid "Malformed line %u in source list %s (type)"
  1803. msgstr ""
  1804. #: apt-pkg/sourcelist.cc:240
  1805. #, c-format
  1806. msgid "Type '%s' is not known on line %u in source list %s"
  1807. msgstr ""
  1808. #: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
  1809. #, c-format
  1810. msgid "Malformed line %u in source list %s (vendor id)"
  1811. msgstr ""
  1812. #: apt-pkg/packagemanager.cc:428
  1813. #, c-format
  1814. msgid ""
  1815. "This installation run will require temporarily removing the essential "
  1816. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1817. "you really want to do it, activate the APT::Force-LoopBreak option."
  1818. msgstr ""
  1819. #: apt-pkg/pkgrecords.cc:32
  1820. #, c-format
  1821. msgid "Index file type '%s' is not supported"
  1822. msgstr ""
  1823. #: apt-pkg/algorithms.cc:248
  1824. #, c-format
  1825. msgid ""
  1826. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1827. msgstr ""
  1828. #: apt-pkg/algorithms.cc:1107
  1829. msgid ""
  1830. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1831. "held packages."
  1832. msgstr ""
  1833. #: apt-pkg/algorithms.cc:1109
  1834. msgid "Unable to correct problems, you have held broken packages."
  1835. msgstr ""
  1836. #: apt-pkg/algorithms.cc:1375 apt-pkg/algorithms.cc:1377
  1837. msgid ""
  1838. "Some index files failed to download, they have been ignored, or old ones "
  1839. "used instead."
  1840. msgstr ""
  1841. #: apt-pkg/acquire.cc:59
  1842. #, c-format
  1843. msgid "Lists directory %spartial is missing."
  1844. msgstr ""
  1845. #: apt-pkg/acquire.cc:63
  1846. #, c-format
  1847. msgid "Archive directory %spartial is missing."
  1848. msgstr ""
  1849. #. only show the ETA if it makes sense
  1850. #. two days
  1851. #: apt-pkg/acquire.cc:828
  1852. #, c-format
  1853. msgid "Retrieving file %li of %li (%s remaining)"
  1854. msgstr ""
  1855. #: apt-pkg/acquire.cc:830
  1856. #, c-format
  1857. msgid "Retrieving file %li of %li"
  1858. msgstr "Pel tê anîn %li ji %li"
  1859. #: apt-pkg/acquire-worker.cc:110
  1860. #, c-format
  1861. msgid "The method driver %s could not be found."
  1862. msgstr ""
  1863. #: apt-pkg/acquire-worker.cc:159
  1864. #, c-format
  1865. msgid "Method %s did not start correctly"
  1866. msgstr ""
  1867. #: apt-pkg/acquire-worker.cc:399
  1868. #, fuzzy, c-format
  1869. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  1870. msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne"
  1871. #: apt-pkg/init.cc:124
  1872. #, c-format
  1873. msgid "Packaging system '%s' is not supported"
  1874. msgstr ""
  1875. #: apt-pkg/init.cc:140
  1876. msgid "Unable to determine a suitable packaging system type"
  1877. msgstr ""
  1878. #: apt-pkg/clean.cc:57
  1879. #, fuzzy, c-format
  1880. msgid "Unable to stat %s."
  1881. msgstr "Nivîsandin ji bo %s ne pêkane"
  1882. #: apt-pkg/srcrecords.cc:44
  1883. msgid "You must put some 'source' URIs in your sources.list"
  1884. msgstr ""
  1885. #: apt-pkg/cachefile.cc:71
  1886. msgid "The package lists or status file could not be parsed or opened."
  1887. msgstr ""
  1888. #: apt-pkg/cachefile.cc:75
  1889. msgid "You may want to run apt-get update to correct these problems"
  1890. msgstr ""
  1891. #: apt-pkg/policy.cc:267
  1892. msgid "Invalid record in the preferences file, no Package header"
  1893. msgstr ""
  1894. #: apt-pkg/policy.cc:289
  1895. #, c-format
  1896. msgid "Did not understand pin type %s"
  1897. msgstr ""
  1898. #: apt-pkg/policy.cc:297
  1899. msgid "No priority (or zero) specified for pin"
  1900. msgstr ""
  1901. #: apt-pkg/pkgcachegen.cc:72
  1902. msgid "Cache has an incompatible versioning system"
  1903. msgstr ""
  1904. #: apt-pkg/pkgcachegen.cc:115
  1905. #, c-format
  1906. msgid "Error occurred while processing %s (NewPackage)"
  1907. msgstr ""
  1908. #: apt-pkg/pkgcachegen.cc:130
  1909. #, c-format
  1910. msgid "Error occurred while processing %s (UsePackage1)"
  1911. msgstr ""
  1912. #: apt-pkg/pkgcachegen.cc:164
  1913. #, c-format
  1914. msgid "Error occurred while processing %s (NewFileDesc1)"
  1915. msgstr ""
  1916. #: apt-pkg/pkgcachegen.cc:189
  1917. #, c-format
  1918. msgid "Error occurred while processing %s (UsePackage2)"
  1919. msgstr ""
  1920. #: apt-pkg/pkgcachegen.cc:193
  1921. #, c-format
  1922. msgid "Error occurred while processing %s (NewFileVer1)"
  1923. msgstr ""
  1924. #: apt-pkg/pkgcachegen.cc:224
  1925. #, c-format
  1926. msgid "Error occurred while processing %s (NewVersion1)"
  1927. msgstr ""
  1928. #: apt-pkg/pkgcachegen.cc:228
  1929. #, c-format
  1930. msgid "Error occurred while processing %s (UsePackage3)"
  1931. msgstr ""
  1932. #: apt-pkg/pkgcachegen.cc:232
  1933. #, c-format
  1934. msgid "Error occurred while processing %s (NewVersion2)"
  1935. msgstr ""
  1936. #: apt-pkg/pkgcachegen.cc:256
  1937. #, c-format
  1938. msgid "Error occurred while processing %s (NewFileDesc2)"
  1939. msgstr ""
  1940. #: apt-pkg/pkgcachegen.cc:262
  1941. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1942. msgstr ""
  1943. #: apt-pkg/pkgcachegen.cc:265
  1944. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1945. msgstr ""
  1946. #: apt-pkg/pkgcachegen.cc:268
  1947. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1948. msgstr ""
  1949. #: apt-pkg/pkgcachegen.cc:271
  1950. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1951. msgstr ""
  1952. #: apt-pkg/pkgcachegen.cc:299
  1953. #, c-format
  1954. msgid "Error occurred while processing %s (FindPkg)"
  1955. msgstr ""
  1956. #: apt-pkg/pkgcachegen.cc:312
  1957. #, c-format
  1958. msgid "Error occurred while processing %s (CollectFileProvides)"
  1959. msgstr ""
  1960. #: apt-pkg/pkgcachegen.cc:318
  1961. #, c-format
  1962. msgid "Package %s %s was not found while processing file dependencies"
  1963. msgstr ""
  1964. #: apt-pkg/pkgcachegen.cc:690
  1965. #, c-format
  1966. msgid "Couldn't stat source package list %s"
  1967. msgstr ""
  1968. #: apt-pkg/pkgcachegen.cc:775
  1969. msgid "Collecting File Provides"
  1970. msgstr ""
  1971. #: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909
  1972. msgid "IO Error saving source cache"
  1973. msgstr ""
  1974. #: apt-pkg/acquire-item.cc:127
  1975. #, c-format
  1976. msgid "rename failed, %s (%s -> %s)."
  1977. msgstr "nav guherandin biserneket, %s (%s -> %s)"
  1978. #: apt-pkg/acquire-item.cc:401
  1979. msgid "MD5Sum mismatch"
  1980. msgstr "MD5Sum li hev nayên"
  1981. #: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1421
  1982. msgid "Hash Sum mismatch"
  1983. msgstr "Hash Sum li hev nayên"
  1984. #: apt-pkg/acquire-item.cc:1113
  1985. msgid "There is no public key available for the following key IDs:\n"
  1986. msgstr ""
  1987. #: apt-pkg/acquire-item.cc:1226
  1988. #, c-format
  1989. msgid ""
  1990. "I wasn't able to locate a file for the %s package. This might mean you need "
  1991. "to manually fix this package. (due to missing arch)"
  1992. msgstr ""
  1993. #: apt-pkg/acquire-item.cc:1285
  1994. #, c-format
  1995. msgid ""
  1996. "I wasn't able to locate file for the %s package. This might mean you need to "
  1997. "manually fix this package."
  1998. msgstr ""
  1999. #: apt-pkg/acquire-item.cc:1326
  2000. #, c-format
  2001. msgid ""
  2002. "The package index files are corrupted. No Filename: field for package %s."
  2003. msgstr ""
  2004. #: apt-pkg/acquire-item.cc:1413
  2005. msgid "Size mismatch"
  2006. msgstr "Mezinahî li hev nayên"
  2007. #: apt-pkg/vendorlist.cc:66
  2008. #, c-format
  2009. msgid "Vendor block %s contains no fingerprint"
  2010. msgstr ""
  2011. #: apt-pkg/cdrom.cc:529
  2012. #, c-format
  2013. msgid ""
  2014. "Using CD-ROM mount point %s\n"
  2015. "Mounting CD-ROM\n"
  2016. msgstr ""
  2017. #: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
  2018. msgid "Identifying.. "
  2019. msgstr ""
  2020. #: apt-pkg/cdrom.cc:563
  2021. #, c-format
  2022. msgid "Stored label: %s\n"
  2023. msgstr ""
  2024. #: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
  2025. msgid "Unmounting CD-ROM...\n"
  2026. msgstr ""
  2027. #: apt-pkg/cdrom.cc:590
  2028. #, c-format
  2029. msgid "Using CD-ROM mount point %s\n"
  2030. msgstr ""
  2031. #: apt-pkg/cdrom.cc:608
  2032. msgid "Unmounting CD-ROM\n"
  2033. msgstr ""
  2034. #: apt-pkg/cdrom.cc:612
  2035. msgid "Waiting for disc...\n"
  2036. msgstr ""
  2037. #. Mount the new CDROM
  2038. #: apt-pkg/cdrom.cc:620
  2039. msgid "Mounting CD-ROM...\n"
  2040. msgstr ""
  2041. #: apt-pkg/cdrom.cc:638
  2042. msgid "Scanning disc for index files..\n"
  2043. msgstr ""
  2044. #: apt-pkg/cdrom.cc:678
  2045. #, c-format
  2046. msgid ""
  2047. "Found %zu package indexes, %zu source indexes, %zu translation indexes and %"
  2048. "zu signatures\n"
  2049. msgstr ""
  2050. #: apt-pkg/cdrom.cc:715
  2051. #, c-format
  2052. msgid "Found label '%s'\n"
  2053. msgstr "Etîketa '%s' hatiye dîtin\n"
  2054. #: apt-pkg/cdrom.cc:744
  2055. msgid "That is not a valid name, try again.\n"
  2056. msgstr ""
  2057. #: apt-pkg/cdrom.cc:760
  2058. #, c-format
  2059. msgid ""
  2060. "This disc is called: \n"
  2061. "'%s'\n"
  2062. msgstr ""
  2063. "Navê dîskê: \n"
  2064. "'%s'\n"
  2065. #: apt-pkg/cdrom.cc:764
  2066. msgid "Copying package lists..."
  2067. msgstr "Lîsteyên pakêtan tên jibergirtin..."
  2068. #: apt-pkg/cdrom.cc:790
  2069. msgid "Writing new source list\n"
  2070. msgstr ""
  2071. #: apt-pkg/cdrom.cc:799
  2072. msgid "Source list entries for this disc are:\n"
  2073. msgstr ""
  2074. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
  2075. #, c-format
  2076. msgid "Wrote %i records.\n"
  2077. msgstr "%i tomar hatin nivîsîn.\n"
  2078. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
  2079. #, c-format
  2080. msgid "Wrote %i records with %i missing files.\n"
  2081. msgstr ""
  2082. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
  2083. #, c-format
  2084. msgid "Wrote %i records with %i mismatched files\n"
  2085. msgstr ""
  2086. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
  2087. #, c-format
  2088. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2089. msgstr ""
  2090. #: apt-pkg/deb/dpkgpm.cc:49
  2091. #, fuzzy, c-format
  2092. msgid "Installing %s"
  2093. msgstr "%s hatine sazkirin"
  2094. #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:612
  2095. #, c-format
  2096. msgid "Configuring %s"
  2097. msgstr "%s tê mîhengkirin"
  2098. #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:627
  2099. #, c-format
  2100. msgid "Removing %s"
  2101. msgstr "%s tê rakirin"
  2102. #: apt-pkg/deb/dpkgpm.cc:52
  2103. #, c-format
  2104. msgid "Running post-installation trigger %s"
  2105. msgstr ""
  2106. #: apt-pkg/deb/dpkgpm.cc:521
  2107. #, c-format
  2108. msgid "Directory '%s' missing"
  2109. msgstr "Peldanka '%s' kêm e"
  2110. #: apt-pkg/deb/dpkgpm.cc:605
  2111. #, c-format
  2112. msgid "Preparing %s"
  2113. msgstr "%s tê amadekirin"
  2114. #: apt-pkg/deb/dpkgpm.cc:606
  2115. #, c-format
  2116. msgid "Unpacking %s"
  2117. msgstr "%s tê derxistin"
  2118. #: apt-pkg/deb/dpkgpm.cc:611
  2119. #, c-format
  2120. msgid "Preparing to configure %s"
  2121. msgstr "Mîhengkirina %s tê amadekirin"
  2122. #: apt-pkg/deb/dpkgpm.cc:614 apt-pkg/deb/dpkgpm.cc:615
  2123. #, fuzzy, c-format
  2124. msgid "Processing triggers for %s"
  2125. msgstr "Di şixulandina pêrista %s de çewtî"
  2126. #: apt-pkg/deb/dpkgpm.cc:617
  2127. #, c-format
  2128. msgid "Installed %s"
  2129. msgstr "%s hatine sazkirin"
  2130. #: apt-pkg/deb/dpkgpm.cc:622 apt-pkg/deb/dpkgpm.cc:624
  2131. #: apt-pkg/deb/dpkgpm.cc:625
  2132. #, c-format
  2133. msgid "Preparing for removal of %s"
  2134. msgstr "Rakirina %s tê amadekirin"
  2135. #: apt-pkg/deb/dpkgpm.cc:628
  2136. #, c-format
  2137. msgid "Removed %s"
  2138. msgstr "%s hatine rakirin"
  2139. #: apt-pkg/deb/dpkgpm.cc:633
  2140. #, c-format
  2141. msgid "Preparing to completely remove %s"
  2142. msgstr "Bi tevahî rakirina %s tê amadekirin"
  2143. #: apt-pkg/deb/dpkgpm.cc:634
  2144. #, c-format
  2145. msgid "Completely removed %s"
  2146. msgstr "%s bi tevahî hatine rakirin"
  2147. #: apt-pkg/deb/dpkgpm.cc:788
  2148. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2149. msgstr ""
  2150. #: methods/rred.cc:219
  2151. #, fuzzy
  2152. msgid "Could not patch file"
  2153. msgstr "Danegira %s nehate vekirin: %s"
  2154. #: methods/rsh.cc:330
  2155. msgid "Connection closed prematurely"
  2156. msgstr "Girêdan zû hatiye girtin"