he.po 61 KB

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