ku.po 58 KB

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