he.po 65 KB

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