~ubuntu-branches/ubuntu/edgy/language-pack-he/edgy-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
# English translation of apt_po.
# This file is put in the public domain.
# Lior Kaplan <webmaster@guides.co.il>, 2004.
#
#
msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.25\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-01-22 14:14+0000\n"
"PO-Revision-Date: 2008-01-22 23:04+0000\n"
"Last-Translator: Lior Kaplan <Unknown>\n"
"Language-Team: Hebrew\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2008-02-28 02:18+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

#: methods/cdrom.cc:114
#, c-format
msgid "Unable to read the cdrom database %s"
msgstr ""

#: methods/cdrom.cc:123
msgid ""
"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
"cannot be used to add new CD-ROMs"
msgstr ""

#: methods/cdrom.cc:131
msgid "Wrong CD-ROM"
msgstr ""

#: methods/cdrom.cc:164
#, c-format
msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
msgstr ""

#: methods/cdrom.cc:169
#, fuzzy
msgid "Disk not found."
msgstr "(לא נמצא)"

#: methods/cdrom.cc:177 methods/file.cc:79 methods/rsh.cc:264
msgid "File not found"
msgstr ""

#: methods/copy.cc:42 methods/gpgv.cc:281 methods/gzip.cc:134
#: methods/gzip.cc:143
msgid "Failed to stat"
msgstr ""

#: methods/copy.cc:79 methods/gpgv.cc:278 methods/gzip.cc:140
msgid "Failed to set modification time"
msgstr ""

#: methods/file.cc:44
msgid "Invalid URI, local URIS must not start with //"
msgstr ""

#. Login must be before getpeername otherwise dante won't work.
#: methods/ftp.cc:162
msgid "Logging in"
msgstr ""

#: methods/ftp.cc:168
msgid "Unable to determine the peer name"
msgstr ""

#: methods/ftp.cc:173
msgid "Unable to determine the local name"
msgstr ""

#: methods/ftp.cc:204 methods/ftp.cc:232
#, c-format
msgid "The server refused the connection and said: %s"
msgstr ""

#: methods/ftp.cc:210
#, c-format
msgid "USER failed, server said: %s"
msgstr ""

#: methods/ftp.cc:217
#, c-format
msgid "PASS failed, server said: %s"
msgstr ""

#: methods/ftp.cc:237
msgid ""
"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
"is empty."
msgstr ""

#: methods/ftp.cc:265
#, c-format
msgid "Login script command '%s' failed, server said: %s"
msgstr ""

#: methods/ftp.cc:291
#, c-format
msgid "TYPE failed, server said: %s"
msgstr ""

#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
msgid "Connection timeout"
msgstr ""

#: methods/ftp.cc:335
msgid "Server closed the connection"
msgstr ""

#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
msgid "Read error"
msgstr ""

#: methods/ftp.cc:345 methods/rsh.cc:197
msgid "A response overflowed the buffer."
msgstr ""

#: methods/ftp.cc:362 methods/ftp.cc:374
msgid "Protocol corruption"
msgstr ""

#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
msgid "Write error"
msgstr ""

#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
msgid "Could not create a socket"
msgstr ""

#: methods/ftp.cc:698
msgid "Could not connect data socket, connection timed out"
msgstr ""

#: methods/ftp.cc:702 methods/connect.cc:101
msgid "Failed"
msgstr ""

#: methods/ftp.cc:704
msgid "Could not connect passive socket."
msgstr ""

#: methods/ftp.cc:722
msgid "getaddrinfo was unable to get a listening socket"
msgstr ""

#: methods/ftp.cc:736
msgid "Could not bind a socket"
msgstr ""

#: methods/ftp.cc:740
msgid "Could not listen on the socket"
msgstr ""

#: methods/ftp.cc:747
msgid "Could not determine the socket's name"
msgstr ""

#: methods/ftp.cc:779
msgid "Unable to send PORT command"
msgstr ""

#: methods/ftp.cc:789
#, c-format
msgid "Unknown address family %u (AF_*)"
msgstr ""

#: methods/ftp.cc:798
#, c-format
msgid "EPRT failed, server said: %s"
msgstr ""

#: methods/ftp.cc:818
msgid "Data socket connect timed out"
msgstr ""

#: methods/ftp.cc:825
msgid "Unable to accept connection"
msgstr ""

#: methods/ftp.cc:864 methods/http.cc:958 methods/rsh.cc:303
msgid "Problem hashing file"
msgstr ""

#: methods/ftp.cc:877
#, c-format
msgid "Unable to fetch file, server said '%s'"
msgstr ""

#: methods/ftp.cc:892 methods/rsh.cc:322
msgid "Data socket timed out"
msgstr ""

#: methods/ftp.cc:922
#, c-format
msgid "Data transfer failed, server said '%s'"
msgstr ""

#. Get the files information
#: methods/ftp.cc:997
msgid "Query"
msgstr ""

#: methods/ftp.cc:1109
msgid "Unable to invoke "
msgstr ""

#: methods/connect.cc:64
#, c-format
msgid "Connecting to %s (%s)"
msgstr ""

#: methods/connect.cc:71
#, c-format
msgid "[IP: %s %s]"
msgstr ""

#: methods/connect.cc:80
#, c-format
msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
msgstr ""

#: methods/connect.cc:86
#, c-format
msgid "Cannot initiate the connection to %s:%s (%s)."
msgstr ""

#: methods/connect.cc:93
#, c-format
msgid "Could not connect to %s:%s (%s), connection timed out"
msgstr ""

#: methods/connect.cc:108
#, c-format
msgid "Could not connect to %s:%s (%s)."
msgstr ""

#. We say this mainly because the pause here is for the
#. ssh connection that is still going
#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
msgid "Connecting to %s"
msgstr ""

#: methods/connect.cc:167
#, c-format
msgid "Could not resolve '%s'"
msgstr ""

#: methods/connect.cc:173
#, c-format
msgid "Temporary failure resolving '%s'"
msgstr ""

#: methods/connect.cc:176
#, c-format
msgid "Something wicked happened resolving '%s:%s' (%i)"
msgstr ""

#: methods/connect.cc:223
#, c-format
msgid "Unable to connect to %s %s:"
msgstr ""

#: methods/gpgv.cc:65
#, c-format
msgid "Couldn't access keyring: '%s'"
msgstr ""

#: methods/gpgv.cc:100
msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
msgstr ""

#: methods/gpgv.cc:204
msgid ""
"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""

#: methods/gpgv.cc:209
msgid "At least one invalid signature was encountered."
msgstr ""

#: methods/gpgv.cc:213
#, c-format
msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
msgstr ""

#: methods/gpgv.cc:218
msgid "Unknown error executing gpgv"
msgstr ""

#: methods/gpgv.cc:249
#, fuzzy
msgid "The following signatures were invalid:\n"
msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:\n"

#: methods/gpgv.cc:256
msgid ""
"The following signatures couldn't be verified because the public key is not "
"available:\n"
msgstr ""

#: methods/gpgv.cc:272
#, c-format
msgid "Failed to stat %s"
msgstr ""

#: methods/gzip.cc:57
#, c-format
msgid "Couldn't open pipe for %s"
msgstr ""

#: methods/gzip.cc:102
#, c-format
msgid "Read error from %s process"
msgstr ""

#: methods/http.cc:376
msgid "Waiting for headers"
msgstr ""

#: methods/http.cc:522
#, c-format
msgid "Got a single header line over %u chars"
msgstr ""

#: methods/http.cc:530
msgid "Bad header line"
msgstr ""

#: methods/http.cc:549 methods/http.cc:556
msgid "The HTTP server sent an invalid reply header"
msgstr ""

#: methods/http.cc:585
msgid "The HTTP server sent an invalid Content-Length header"
msgstr ""

#: methods/http.cc:600
msgid "The HTTP server sent an invalid Content-Range header"
msgstr ""

#: methods/http.cc:602
msgid "This HTTP server has broken range support"
msgstr ""

#: methods/http.cc:626
msgid "Unknown date format"
msgstr ""

#: methods/http.cc:773
msgid "Select failed"
msgstr ""

#: methods/http.cc:778
msgid "Connection timed out"
msgstr ""

#: methods/http.cc:801
msgid "Error writing to output file"
msgstr ""

#: methods/http.cc:832
msgid "Error writing to file"
msgstr ""

#: methods/http.cc:860
msgid "Error writing to the file"
msgstr ""

#: methods/http.cc:874
msgid "Error reading from server. Remote end closed connection"
msgstr ""

#: methods/http.cc:876
msgid "Error reading from server"
msgstr ""

#: methods/http.cc:1107
msgid "Bad header data"
msgstr ""

#: methods/http.cc:1124
msgid "Connection failed"
msgstr ""

#: methods/http.cc:1215
msgid "Internal error"
msgstr ""

#: apt-pkg/contrib/mmap.cc:82
msgid "Can't mmap an empty file"
msgstr ""

#: apt-pkg/contrib/mmap.cc:87
#, c-format
msgid "Couldn't make mmap of %lu bytes"
msgstr ""

#: apt-pkg/contrib/strutl.cc:981
#, c-format
msgid "Selection %s not found"
msgstr ""

#: apt-pkg/contrib/configuration.cc:436
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr ""

#: apt-pkg/contrib/configuration.cc:494
#, c-format
msgid "Opening configuration file %s"
msgstr ""

#: apt-pkg/contrib/configuration.cc:512
#, c-format
msgid "Line %d too long (max %d)"
msgstr ""

#: apt-pkg/contrib/configuration.cc:608
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr ""

#: apt-pkg/contrib/configuration.cc:627
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr ""

#: apt-pkg/contrib/configuration.cc:644
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""

#: apt-pkg/contrib/configuration.cc:684
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""

#: apt-pkg/contrib/configuration.cc:691
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""

#: apt-pkg/contrib/configuration.cc:695 apt-pkg/contrib/configuration.cc:700
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr ""

#: apt-pkg/contrib/configuration.cc:704
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""

#: apt-pkg/contrib/configuration.cc:738
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr ""

#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/cdromutl.cc:153
#: apt-pkg/sourcelist.cc:324 apt-pkg/acquire.cc:421 apt-pkg/clean.cc:38
#, c-format
msgid "Unable to read %s"
msgstr ""

#: apt-pkg/contrib/progress.cc:154
#, c-format
msgid "%c%s... Error!"
msgstr ""

#: apt-pkg/contrib/progress.cc:156
#, c-format
msgid "%c%s... Done"
msgstr ""

#: apt-pkg/contrib/cmndline.cc:80
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr ""

#: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
#: apt-pkg/contrib/cmndline.cc:122
#, c-format
msgid "Command line option %s is not understood"
msgstr ""

#: apt-pkg/contrib/cmndline.cc:127
#, c-format
msgid "Command line option %s is not boolean"
msgstr ""

#: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
#, c-format
msgid "Option %s requires an argument."
msgstr ""

#: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""

#: apt-pkg/contrib/cmndline.cc:237
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr ""

#: apt-pkg/contrib/cmndline.cc:268
#, c-format
msgid "Option '%s' is too long"
msgstr ""

#: apt-pkg/contrib/cmndline.cc:301
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr ""

#: apt-pkg/contrib/cmndline.cc:351
#, c-format
msgid "Invalid operation %s"
msgstr ""

#: apt-pkg/contrib/cdromutl.cc:55
#, c-format
msgid "Unable to stat the mount point %s"
msgstr ""

#: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:427 apt-pkg/clean.cc:44
#, c-format
msgid "Unable to change to %s"
msgstr ""

#: apt-pkg/contrib/cdromutl.cc:190
msgid "Failed to stat the cdrom"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:82
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:87
#, c-format
msgid "Could not open lock file %s"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:105
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:109
#, c-format
msgid "Could not get lock %s"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:377
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:387
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr ""

#: apt-pkg/contrib/fileutl.cc:390
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:392
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:436
#, c-format
msgid "Could not open file %s"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:492
#, c-format
msgid "read, still have %lu to read but none left"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:522
#, c-format
msgid "write, still have %lu to write but couldn't"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:597
msgid "Problem closing the file"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:603
msgid "Problem unlinking the file"
msgstr ""

#: apt-pkg/contrib/fileutl.cc:614
msgid "Problem syncing the file"
msgstr ""

#: apt-pkg/pkgcache.cc:137
msgid "Empty package cache"
msgstr ""

#: apt-pkg/pkgcache.cc:143
msgid "The package cache file is corrupted"
msgstr ""

#: apt-pkg/pkgcache.cc:148
msgid "The package cache file is an incompatible version"
msgstr ""

#: apt-pkg/pkgcache.cc:153
#, c-format
msgid "This APT does not support the versioning system '%s'"
msgstr ""

#: apt-pkg/pkgcache.cc:158
msgid "The package cache was built for a different architecture"
msgstr ""

#: apt-pkg/pkgcache.cc:229
msgid "Depends"
msgstr ""

#: apt-pkg/pkgcache.cc:229
msgid "PreDepends"
msgstr ""

#: apt-pkg/pkgcache.cc:229
msgid "Suggests"
msgstr ""

#: apt-pkg/pkgcache.cc:230
msgid "Recommends"
msgstr ""

#: apt-pkg/pkgcache.cc:230
msgid "Conflicts"
msgstr ""

#: apt-pkg/pkgcache.cc:230
msgid "Replaces"
msgstr ""

#: apt-pkg/pkgcache.cc:231
msgid "Obsoletes"
msgstr ""

#: apt-pkg/pkgcache.cc:231
msgid "Breaks"
msgstr ""

#: apt-pkg/pkgcache.cc:242
msgid "important"
msgstr ""

#: apt-pkg/pkgcache.cc:242
msgid "required"
msgstr ""

#: apt-pkg/pkgcache.cc:242
msgid "standard"
msgstr ""

#: apt-pkg/pkgcache.cc:243
msgid "optional"
msgstr ""

#: apt-pkg/pkgcache.cc:243
msgid "extra"
msgstr ""

#: apt-pkg/depcache.cc:101 apt-pkg/depcache.cc:130
msgid "Building dependency tree"
msgstr ""

#: apt-pkg/depcache.cc:102
msgid "Candidate versions"
msgstr ""

#: apt-pkg/depcache.cc:131
msgid "Dependency generation"
msgstr ""

#: apt-pkg/depcache.cc:152 apt-pkg/depcache.cc:171 apt-pkg/depcache.cc:175
msgid "Reading state information"
msgstr ""

#: apt-pkg/depcache.cc:199
#, fuzzy, c-format
msgid "Failed to open StateFile %s"
msgstr "כשלון בפתיחת %s"

#: apt-pkg/depcache.cc:205
#, fuzzy, c-format
msgid "Failed to write temporary StateFile %s"
msgstr "כשלון בפענוח %s"

#: apt-pkg/tagfile.cc:73
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr ""

#: apt-pkg/tagfile.cc:160
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr ""

#: apt-pkg/sourcelist.cc:94
#, c-format
msgid "Malformed line %lu in source list %s (URI)"
msgstr ""

#: apt-pkg/sourcelist.cc:96
#, c-format
msgid "Malformed line %lu in source list %s (dist)"
msgstr ""

#: apt-pkg/sourcelist.cc:99
#, c-format
msgid "Malformed line %lu in source list %s (URI parse)"
msgstr ""

#: apt-pkg/sourcelist.cc:105
#, c-format
msgid "Malformed line %lu in source list %s (absolute dist)"
msgstr ""

#: apt-pkg/sourcelist.cc:112
#, c-format
msgid "Malformed line %lu in source list %s (dist parse)"
msgstr ""

#: apt-pkg/sourcelist.cc:203
#, c-format
msgid "Opening %s"
msgstr ""

#: apt-pkg/sourcelist.cc:220 apt-pkg/cdrom.cc:450
#, c-format
msgid "Line %u too long in source list %s."
msgstr ""

#: apt-pkg/sourcelist.cc:240
#, c-format
msgid "Malformed line %u in source list %s (type)"
msgstr ""

#: apt-pkg/sourcelist.cc:244
#, c-format
msgid "Type '%s' is not known on line %u in source list %s"
msgstr ""

#: apt-pkg/sourcelist.cc:252 apt-pkg/sourcelist.cc:255
#, c-format
msgid "Malformed line %u in source list %s (vendor id)"
msgstr ""

#: apt-pkg/packagemanager.cc:402
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""

#: apt-pkg/pkgrecords.cc:37
#, c-format
msgid "Index file type '%s' is not supported"
msgstr ""

#: apt-pkg/algorithms.cc:248
#, c-format
msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""

#: apt-pkg/algorithms.cc:1096
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
msgstr ""

#: apt-pkg/algorithms.cc:1098
msgid "Unable to correct problems, you have held broken packages."
msgstr ""

#: apt-pkg/acquire.cc:62
#, c-format
msgid "Lists directory %spartial is missing."
msgstr ""

#: apt-pkg/acquire.cc:66
#, c-format
msgid "Archive directory %spartial is missing."
msgstr ""

#. only show the ETA if it makes sense
#. two days
#: apt-pkg/acquire.cc:823
#, c-format
msgid "Retrieving file %li of %li (%s remaining)"
msgstr ""

#: apt-pkg/acquire.cc:825
#, c-format
msgid "Retrieving file %li of %li"
msgstr ""

#: apt-pkg/acquire-worker.cc:113
#, c-format
msgid "The method driver %s could not be found."
msgstr ""

#: apt-pkg/acquire-worker.cc:162
#, c-format
msgid "Method %s did not start correctly"
msgstr ""

#: apt-pkg/acquire-worker.cc:384
#, c-format
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""

#: apt-pkg/init.cc:125
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr ""

#: apt-pkg/init.cc:141
msgid "Unable to determine a suitable packaging system type"
msgstr ""

#: apt-pkg/clean.cc:61
#, c-format
msgid "Unable to stat %s."
msgstr ""

#: apt-pkg/srcrecords.cc:48
msgid "You must put some 'source' URIs in your sources.list"
msgstr ""

#: apt-pkg/cachefile.cc:67
msgid "The list of sources could not be read."
msgstr "רשימת המקורות לא ניתנת לקריאה."

#: apt-pkg/cachefile.cc:73
msgid "The package lists or status file could not be parsed or opened."
msgstr ""

#: apt-pkg/cachefile.cc:77
msgid "You may want to run apt-get update to correct these problems"
msgstr ""

#: apt-pkg/policy.cc:269
msgid "Invalid record in the preferences file, no Package header"
msgstr ""

#: apt-pkg/policy.cc:291
#, c-format
msgid "Did not understand pin type %s"
msgstr ""

#: apt-pkg/policy.cc:299
msgid "No priority (or zero) specified for pin"
msgstr ""

#: apt-pkg/pkgcachegen.cc:76
msgid "Cache has an incompatible versioning system"
msgstr ""

#: apt-pkg/pkgcachegen.cc:119
#, c-format
msgid "Error occurred while processing %s (NewPackage)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:134
#, c-format
msgid "Error occurred while processing %s (UsePackage1)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:157
#, c-format
msgid "Error occured while processing %s (NewFileDesc1)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:182
#, c-format
msgid "Error occurred while processing %s (UsePackage2)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:186
#, c-format
msgid "Error occurred while processing %s (NewFileVer1)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:217
#, c-format
msgid "Error occurred while processing %s (NewVersion1)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:221
#, c-format
msgid "Error occurred while processing %s (UsePackage3)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:225
#, c-format
msgid "Error occurred while processing %s (NewVersion2)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:249
#, c-format
msgid "Error occured while processing %s (NewFileDesc2)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:255
msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""

#: apt-pkg/pkgcachegen.cc:258
msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""

#: apt-pkg/pkgcachegen.cc:261
msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""

#: apt-pkg/pkgcachegen.cc:264
msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""

#: apt-pkg/pkgcachegen.cc:292
#, c-format
msgid "Error occurred while processing %s (FindPkg)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:305
#, c-format
msgid "Error occurred while processing %s (CollectFileProvides)"
msgstr ""

#: apt-pkg/pkgcachegen.cc:311
#, c-format
msgid "Package %s %s was not found while processing file dependencies"
msgstr ""

#: apt-pkg/pkgcachegen.cc:682
#, c-format
msgid "Couldn't stat source package list %s"
msgstr ""

#. Build the status cache
#: apt-pkg/pkgcachegen.cc:752 apt-pkg/pkgcachegen.cc:821
#: apt-pkg/pkgcachegen.cc:826 apt-pkg/pkgcachegen.cc:949
msgid "Reading package lists"
msgstr ""

#: apt-pkg/pkgcachegen.cc:767
msgid "Collecting File Provides"
msgstr ""

#: apt-pkg/pkgcachegen.cc:819
#, c-format
msgid "Unable to write to %s"
msgstr "לא מצליח לכתוב ל-%s"

#: apt-pkg/pkgcachegen.cc:894 apt-pkg/pkgcachegen.cc:901
msgid "IO Error saving source cache"
msgstr ""

#: apt-pkg/acquire-item.cc:126
#, c-format
msgid "rename failed, %s (%s -> %s)."
msgstr ""

#: apt-pkg/acquire-item.cc:236 apt-pkg/acquire-item.cc:980
msgid "MD5Sum mismatch"
msgstr ""

#: apt-pkg/acquire-item.cc:675
msgid "There are no public key available for the following key IDs:\n"
msgstr ""

#: apt-pkg/acquire-item.cc:788
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
"to manually fix this package. (due to missing arch)"
msgstr ""

#: apt-pkg/acquire-item.cc:847
#, c-format
msgid ""
"I wasn't able to locate file for the %s package. This might mean you need to "
"manually fix this package."
msgstr ""

#: apt-pkg/acquire-item.cc:883
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""

#: apt-pkg/acquire-item.cc:970
msgid "Size mismatch"
msgstr ""

#: apt-pkg/vendorlist.cc:66
#, c-format
msgid "Vendor block %s contains no fingerprint"
msgstr ""

#: apt-pkg/cdrom.cc:531
#, c-format
msgid ""
"Using CD-ROM mount point %s\n"
"Mounting CD-ROM\n"
msgstr ""

#: apt-pkg/cdrom.cc:540 apt-pkg/cdrom.cc:622
msgid "Identifying.. "
msgstr ""

#: apt-pkg/cdrom.cc:565
#, c-format
msgid "Stored label: %s \n"
msgstr ""

#: apt-pkg/cdrom.cc:585
#, c-format
msgid "Using CD-ROM mount point %s\n"
msgstr ""

#: apt-pkg/cdrom.cc:603
msgid "Unmounting CD-ROM\n"
msgstr ""

#: apt-pkg/cdrom.cc:607
msgid "Waiting for disc...\n"
msgstr ""

#. Mount the new CDROM
#: apt-pkg/cdrom.cc:615
msgid "Mounting CD-ROM...\n"
msgstr ""

#: apt-pkg/cdrom.cc:633
msgid "Scanning disc for index files..\n"
msgstr ""

#: apt-pkg/cdrom.cc:673
#, c-format
msgid ""
"Found %i package indexes, %i source indexes, %i translation indexes and %i "
"signatures\n"
msgstr ""

#: apt-pkg/cdrom.cc:737
msgid "That is not a valid name, try again.\n"
msgstr ""

#: apt-pkg/cdrom.cc:753
#, c-format
msgid ""
"This disc is called: \n"
"'%s'\n"
msgstr ""

#: apt-pkg/cdrom.cc:757
msgid "Copying package lists..."
msgstr ""

#: apt-pkg/cdrom.cc:783
msgid "Writing new source list\n"
msgstr ""

#: apt-pkg/cdrom.cc:792
msgid "Source list entries for this disc are:\n"
msgstr ""

#: apt-pkg/cdrom.cc:832
msgid "Unmounting CD-ROM..."
msgstr ""

#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:830
#, c-format
msgid "Wrote %i records.\n"
msgstr ""

#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:832
#, c-format
msgid "Wrote %i records with %i missing files.\n"
msgstr ""

#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:835
#, c-format
msgid "Wrote %i records with %i mismatched files\n"
msgstr ""

#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:838
#, c-format
msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:358
#, c-format
msgid "Preparing %s"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:359
#, c-format
msgid "Unpacking %s"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:364
#, c-format
msgid "Preparing to configure %s"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:365
#, c-format
msgid "Configuring %s"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:366
#, c-format
msgid "Installed %s"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:371
#, c-format
msgid "Preparing for removal of %s"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:372
#, c-format
msgid "Removing %s"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:373
#, c-format
msgid "Removed %s"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:378
#, c-format
msgid "Preparing to completely remove %s"
msgstr ""

#: apt-pkg/deb/dpkgpm.cc:379
#, c-format
msgid "Completely removed %s"
msgstr ""

#: methods/rsh.cc:91
msgid "Failed to create IPC pipe to subprocess"
msgstr ""

#: methods/rsh.cc:330
msgid "Connection closed prematurely"
msgstr ""