~ubuntu-branches/ubuntu/trusty/evince/trusty

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
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
# translation of evince.HEAD.he.po to Hebrew
# translation of he.po to Hebrew
# translation of gpdf.HEAD.he.po to Hebrew
# translation of xpdf.HEAD.po to Hebrew
# This file is distributed under the same license as the PACKAGE package.
# Yuval Tanny, 2005.
# Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER.
# Gil 'Dolfin' Osher <dolfin@rpg.org.il>, 2003.
# Yaron Shahrabani <sh.yaron@gmail.com>, 2010.
# Yosef Or Boczko <yoseforb@gmail.com>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: evince.HEAD.he\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-09-18 03:42+0300\n"
"PO-Revision-Date: 2013-09-18 03:42+0300\n"
"Last-Translator: Yosef Or Boczko <yoseforb@gmail.com>\n"
"Language-Team: עברית <>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Gtranslator 2.91.6\n"

#: ../backend/comics/comics-document.c:210
#, c-format
msgid ""
"Error launching the command “%s” in order to decompress the comic book: %s"
msgstr ""
"Error launching the command “%s” in order to decompress the comic book: %s"

#: ../backend/comics/comics-document.c:224
#, c-format
msgid "The command “%s” failed at decompressing the comic book."
msgstr "The command “%s” failed at decompressing the comic book."

#: ../backend/comics/comics-document.c:233
#, c-format
msgid "The command “%s” did not end normally."
msgstr "The command “%s” did not end normally."

#: ../backend/comics/comics-document.c:426
#, c-format
msgid "Not a comic book MIME type: %s"
msgstr "Not a comic book MIME type: %s"

#: ../backend/comics/comics-document.c:433
msgid "Can't find an appropriate command to decompress this type of comic book"
msgstr ""
"Can't find an appropriate command to decompress this type of comic book"

#: ../backend/comics/comics-document.c:488
msgid "File corrupted"
msgstr "File corrupted"

#: ../backend/comics/comics-document.c:501
msgid "No files in archive"
msgstr "No files in archive"

#: ../backend/comics/comics-document.c:540
#, c-format
msgid "No images found in archive %s"
msgstr "No images found in archive %s"

#: ../backend/comics/comics-document.c:787
#, c-format
msgid "There was an error deleting “%s”."
msgstr "There was an error deleting “%s”."

#: ../backend/comics/comics-document.c:880
#, c-format
msgid "Error %s"
msgstr "Error %s"

#: ../backend/comics/comicsdocument.evince-backend.in.h:1
msgid "Comic Books"
msgstr "ספרי קומיקס"

#: ../backend/djvu/djvu-document.c:175
msgid "DjVu document has incorrect format"
msgstr "DjVu document has incorrect format"

#: ../backend/djvu/djvu-document.c:263
msgid ""
"The document is composed of several files. One or more of these files cannot "
"be accessed."
msgstr "המסמך מורכב ממספר קבצים. לא ניתן לגשת לאחד או יותר מהם."

#: ../backend/djvu/djvudocument.evince-backend.in.h:1
msgid "DjVu Documents"
msgstr "מסמכי DjVu"

#: ../backend/dvi/dvi-document.c:110
msgid "DVI document has incorrect format"
msgstr "DVI document has incorrect format"

#: ../backend/dvi/dvidocument.evince-backend.in.h:1
msgid "DVI Documents"
msgstr "מסמכי DVI"

#: ../backend/pdf/ev-poppler.cc:636
msgid "This work is in the Public Domain"
msgstr "יצירה זו היא לרשות הציבור"

#. translators: this is the document security state
#: ../backend/pdf/ev-poppler.cc:889 ../backend/pdf/ev-poppler.cc:895
msgid "Yes"
msgstr "כן"

#. translators: this is the document security state
#: ../backend/pdf/ev-poppler.cc:892 ../backend/pdf/ev-poppler.cc:895
msgid "No"
msgstr "לא"

#: ../backend/pdf/ev-poppler.cc:1025
msgid "Type 1"
msgstr "Type 1"

#: ../backend/pdf/ev-poppler.cc:1027
msgid "Type 1C"
msgstr "Type 1C"

#: ../backend/pdf/ev-poppler.cc:1029
msgid "Type 3"
msgstr "Type 3"

#: ../backend/pdf/ev-poppler.cc:1031
msgid "TrueType"
msgstr "TrueType"

#: ../backend/pdf/ev-poppler.cc:1033
msgid "Type 1 (CID)"
msgstr "Type 1 (CID)"

#: ../backend/pdf/ev-poppler.cc:1035
msgid "Type 1C (CID)"
msgstr "Type 1C (CID)"

#: ../backend/pdf/ev-poppler.cc:1037
msgid "TrueType (CID)"
msgstr "TrueType (CID)"

#: ../backend/pdf/ev-poppler.cc:1039
msgid "Unknown font type"
msgstr "סוג גופן לא ידוע"

#: ../backend/pdf/ev-poppler.cc:1083
msgid ""
"This document contains non-embedded fonts that are not from the PDF Standard "
"14 fonts. If the substitute fonts selected by fontconfig are not the same as "
"the fonts used to create the PDF, the rendering may not be correct."
msgstr ""
"מסמך זה מכיל גופנים שאינם מוטמעים ושאינם חלק מ־14 גופני התקן של PDF. אם "
"גופני ההחלפה שנבחרו על ידי fontconfig אינם זהים לגופנים בהם נעשה שימוש "
"ליצירת ה־PDF, העיבוד עשוי להיות שגוי."

#: ../backend/pdf/ev-poppler.cc:1088
msgid "All fonts are either standard or embedded."
msgstr "כל הגופנים הם תקניים או מוטמעים."

#: ../backend/pdf/ev-poppler.cc:1120
msgid "No name"
msgstr "ללא שם"

#. translators: When a font type does not have
#. encoding information or it is unknown.  Example:
#. Encoding: None
#.
#. translators: Value for 'Page Scaling:' to not scale the document pages on printing
#. translators: This is used when a document property does
#. not have a value.  Examples:
#. Author: None
#. Keywords: None
#.
#: ../backend/pdf/ev-poppler.cc:1129 ../libview/ev-print-operation.c:1907
#: ../properties/ev-properties-view.c:192
msgid "None"
msgstr "ללא"

#: ../backend/pdf/ev-poppler.cc:1137
msgid "Embedded subset"
msgstr "תת־קבוצה מוטמעת"

#: ../backend/pdf/ev-poppler.cc:1139
msgid "Embedded"
msgstr "מוטמע"

#: ../backend/pdf/ev-poppler.cc:1141
msgid "Not embedded"
msgstr "לא מוטמע"

#. Translators: string starting with a space
#. * because it is directly appended to the font
#. * type. Example:
#. * "Type 1 (One of the Standard 14 Fonts)"
#.
#: ../backend/pdf/ev-poppler.cc:1148
msgid " (One of the Standard 14 Fonts)"
msgstr "(אחד מ־14 הגופנים הרגילים)"

#. Translators: string starting with a space
#. * because it is directly appended to the font
#. * type. Example:
#. * "TrueType (Not one of the Standard 14 Fonts)"
#.
#: ../backend/pdf/ev-poppler.cc:1155
msgid " (Not one of the Standard 14 Fonts)"
msgstr "(אף אחד מ־14 הגופנים הרגילים)"

#: ../backend/pdf/ev-poppler.cc:1162
msgid "Encoding"
msgstr "קידוד"

#: ../backend/pdf/ev-poppler.cc:1163
msgid "Substituting with"
msgstr "מוחלף ב־"

#: ../backend/pdf/pdfdocument.evince-backend.in.h:1
msgid "PDF Documents"
msgstr "מסמכי PDF"

#: ../backend/ps/ev-spectre.c:98
#, c-format
msgid "Failed to load document “%s”"
msgstr "לא ניתן לטעון את המסמך „%s“"

#: ../backend/ps/ev-spectre.c:131
#, c-format
msgid "Failed to save document “%s”"
msgstr "שמירת המסמך „%s“ נכשלה"

#: ../backend/ps/psdocument.evince-backend.in.h:1
msgid "PostScript Documents"
msgstr "מסמכי PostScript"

#: ../backend/tiff/tiff-document.c:123
msgid "Invalid document"
msgstr "מסמך לא תקין"

#: ../backend/tiff/tiffdocument.evince-backend.in.h:1
msgid "TIFF Documents"
msgstr "מסמכי TIFF"

#: ../backend/xps/xpsdocument.evince-backend.in.h:1
msgid "XPS Documents"
msgstr "מסמכי XPS"

#: ../cut-n-paste/smclient/eggdesktopfile.c:165
#, c-format
msgid "File is not a valid .desktop file"
msgstr "הקובץ אינו קובץ ‎.desktop תקין"

#. translators: 'Version' is from a desktop file, and
#. * should not be translated. '%s' would probably be a
#. * version number.
#: ../cut-n-paste/smclient/eggdesktopfile.c:191
#, c-format
msgid "Unrecognized desktop file Version '%s'"
msgstr "גרסת קובץ שולחן עבודה '%s' אינה מזוהה"

#: ../cut-n-paste/smclient/eggdesktopfile.c:974
#, c-format
msgid "Starting %s"
msgstr "%s מופעל"

#: ../cut-n-paste/smclient/eggdesktopfile.c:1116
#, c-format
msgid "Application does not accept documents on command line"
msgstr "היישום אינו מקבל מסמכים בשורת בפקודה"

#: ../cut-n-paste/smclient/eggdesktopfile.c:1184
#, c-format
msgid "Unrecognized launch option: %d"
msgstr "אפשרות שיגור לא מוכרת: %d"

#. translators: The 'Type=Link' string is found in a
#. * desktop file, and should not be translated.
#: ../cut-n-paste/smclient/eggdesktopfile.c:1391
#, c-format
msgid "Can't pass document URIs to a 'Type=Link' desktop entry"
msgstr "לא ניתן להעביר כתובת מסמך לכניסת שולחן עבודה 'Type=Link'"

#: ../cut-n-paste/smclient/eggdesktopfile.c:1412
#, c-format
msgid "Not a launchable item"
msgstr "הפריט אינו ניתן לשיגור"

#: ../cut-n-paste/smclient/eggsmclient.c:226
msgid "Disable connection to session manager"
msgstr "Disable connection to session manager"

#: ../cut-n-paste/smclient/eggsmclient.c:229
msgid "Specify file containing saved configuration"
msgstr "Specify file containing saved configuration"

#: ../cut-n-paste/smclient/eggsmclient.c:229 ../previewer/ev-previewer.c:46
msgid "FILE"
msgstr "FILE"

#: ../cut-n-paste/smclient/eggsmclient.c:232
msgid "Specify session management ID"
msgstr "Specify session management ID"

#: ../cut-n-paste/smclient/eggsmclient.c:232
msgid "ID"
msgstr "ID"

#: ../cut-n-paste/smclient/eggsmclient.c:253
msgid "Session management options:"
msgstr "Session management options:"

#: ../cut-n-paste/smclient/eggsmclient.c:254
msgid "Show session management options"
msgstr "Show session management options"

#. Manually set name and icon
#: ../data/evince.desktop.in.in.h:1 ../shell/ev-window.c:5022
#: ../shell/ev-window-title.c:156 ../shell/main.c:312
#, c-format
msgid "Document Viewer"
msgstr "מציג מסמכים"

#: ../data/evince.desktop.in.in.h:2
msgid "View multi-page documents"
msgstr "הצגת מסמכים מרובי עמודים"

#: ../data/evince.desktop.in.in.h:3
msgid "pdf;ps;postscript;dvi;xps;djvu;tiff;document;presentation;"
msgstr "pdf;ps;פוסטסקריפט;dvi;xps;djvu;tiff;מסמך;מצגת;"

#: ../data/evince-previewer.desktop.in.in.h:1
msgid "Print Preview"
msgstr "תצוגה מקדימה"

#: ../data/evince-previewer.desktop.in.in.h:2
msgid "Preview before printing"
msgstr "תצוגה מקדימה להדפסה"

#: ../data/org.gnome.Evince.gschema.xml.in.h:1
msgid "Override document restrictions"
msgstr "Override document restrictions"

#: ../data/org.gnome.Evince.gschema.xml.in.h:2
msgid "Override document restrictions, like restriction to copy or to print."
msgstr "Override document restrictions, like restriction to copy or to print."

#: ../data/org.gnome.Evince.gschema.xml.in.h:3
msgid "Automatically reload the document"
msgstr "Automatically reload the document"

#: ../data/org.gnome.Evince.gschema.xml.in.h:4
msgid "The document is automatically reloaded on file change."
msgstr "The document is automatically reloaded on file change."

#: ../data/org.gnome.Evince.gschema.xml.in.h:5
msgid "The URI of the directory last used to open or save a document"
msgstr "The URI of the directory last used to open or save a document"

#: ../data/org.gnome.Evince.gschema.xml.in.h:6
msgid "The URI of the directory last used to save a picture"
msgstr "The URI of the directory last used to save a picture"

#: ../data/org.gnome.Evince.gschema.xml.in.h:7
msgid "Page cache size in MiB"
msgstr "גודל מטמון הדף ב־MiB"

#: ../data/org.gnome.Evince.gschema.xml.in.h:8
msgid ""
"The maximum size that will be used to cache rendered pages, limits maximum "
"zoom level."
msgstr ""
"הגודל המרבי שישמש לשמירה במטמון של דפים שעברו עיבוד, מגביל את רמת התקריב "
"המרבית."

#: ../data/org.gnome.Evince.gschema.xml.in.h:9
msgid ""
"Show a dialog to confirm that the user wants to activate the caret "
"navigation."
msgstr "הצגת תיבת דו־שיח לאישור שהמשתמש רוצה להפעיל את הניווט בעזרת הסמן."

#: ../libdocument/ev-attachment.c:310 ../libdocument/ev-attachment.c:331
#, c-format
msgid "Couldn't save attachment “%s”: %s"
msgstr "לא ניתן לשמור את הצרופה “%s”:‏ %s"

#: ../libdocument/ev-attachment.c:379
#, c-format
msgid "Couldn't open attachment “%s”: %s"
msgstr "לא ניתן לפתוח את הצרופה “%s”:‏ %s"

#: ../libdocument/ev-attachment.c:414
#, c-format
msgid "Couldn't open attachment “%s”"
msgstr "לא ניתן לפתוח את הצרופה “%s”"

#: ../libdocument/ev-document-factory.c:101
#, c-format
msgid "File type %s (%s) is not supported"
msgstr "סוג הקובץ %s ‏(%s) אינו נתמך"

#: ../libdocument/ev-document-factory.c:364
#: ../libdocument/ev-file-helpers.c:491 ../libdocument/ev-file-helpers.c:537
#: ../libdocument/ev-file-helpers.c:556
msgid "Unknown MIME Type"
msgstr "סוג MIME לא ידוע"

#: ../libdocument/ev-document-factory.c:552
msgid "All Documents"
msgstr "כל המסמכים"

#: ../libdocument/ev-document-factory.c:579 ../shell/ev-utils.c:336
msgid "All Files"
msgstr "כל הקבצים"

#: ../libdocument/ev-file-helpers.c:147
#, c-format
msgid "Failed to create a temporary file: %s"
msgstr "ארע כשל ביצירת הקובץ הזמני: %s"

#: ../libdocument/ev-file-helpers.c:309
#, c-format
msgid "Failed to create a temporary directory: %s"
msgstr "ארע כשל ביצירת התיקייה הזמנית: %s"

#: ../libmisc/ev-page-action-widget.c:85
#: ../libmisc/ev-page-action-widget.c:124
#, c-format
msgid "(%d of %d)"
msgstr "‏(%d מתוך %d)"

#: ../libmisc/ev-page-action-widget.c:87
#: ../libmisc/ev-page-action-widget.c:126
#, c-format
msgid "of %d"
msgstr "מתוך %d"

#: ../libmisc/ev-page-action-widget.c:182 ../shell/ev-history.c:426
#: ../shell/ev-sidebar-bookmarks.c:312 ../shell/ev-window.c:875
#: ../shell/ev-window.c:4762
#, c-format
msgid "Page %s"
msgstr "עמוד %s"

#: ../libview/ev-jobs.c:1954
#, c-format
msgid "Failed to print page %d: %s"
msgstr "הדפסת עמוד %d נכשלה: ‏%s"

#. Initial state
#: ../libview/ev-print-operation.c:347
msgid "Preparing to print…"
msgstr "בהכנות להדפסה…"

#: ../libview/ev-print-operation.c:349
msgid "Finishing…"
msgstr "בשלבי סיום…"

#: ../libview/ev-print-operation.c:351
#, c-format
msgid "Printing page %d of %d…"
msgstr "מודפס עמוד %d מתוך %d…"

#: ../libview/ev-print-operation.c:1175
msgid "PostScript is not supported by this printer."
msgstr "מדפסת זו אינה תומכת ב־Postscript."

#: ../libview/ev-print-operation.c:1240
msgid "Invalid page selection"
msgstr "בחירת העמודים שגויה"

#: ../libview/ev-print-operation.c:1241
msgid "Warning"
msgstr "אזהרה"

#: ../libview/ev-print-operation.c:1243
msgid "Your print range selection does not include any pages"
msgstr "בחירת טווח ההדפסה שלך אינו כולל עמודים כלשהם"

#. translators: Title of the print dialog
#. translators: Print document currently shown in the Print Preview window
#: ../libview/ev-print-operation.c:1322 ../previewer/ev-previewer-window.c:284
msgid "Print"
msgstr "הדפס"

#: ../libview/ev-print-operation.c:1901
msgid "Page Scaling:"
msgstr "מידות העמוד:"

#: ../libview/ev-print-operation.c:1908
msgid "Shrink to Printable Area"
msgstr "כיווץ לאזור הניתן להדפסה"

#: ../libview/ev-print-operation.c:1909
msgid "Fit to Printable Area"
msgstr "התאמה לאזור הניתן להדפסה"

#: ../libview/ev-print-operation.c:1912
msgid ""
"Scale document pages to fit the selected printer page. Select from one of "
"the following:\n"
"\n"
"• \"None\": No page scaling is performed.\n"
"\n"
"• \"Shrink to Printable Area\": Document pages larger than the printable "
"area are reduced to fit the printable area of the printer page.\n"
"\n"
"• \"Fit to Printable Area\": Document pages are enlarged or reduced as "
"required to fit the printable area of the printer page.\n"
msgstr ""
"התאמת עמודי המסמך לגודל העמוד במדפסת. יש לבחור מהבאים:\n"
"\n"
"• \"ללא\": לא מתבצעות התאמות לעמוד.\n"
"\n"
"• \"כיווץ לאזור הניתן להדפסה\": עמודי המסמך גדולים מהאזור הניתן להדפסה "
"מוקטנים כדי שיתאימו לאזור עליו ניתן להדפיס בדפי המדפסת.\n"
"\n"
"• \"התאמה לאזור הניתן להדפסה\": עמודי המסמך מוגדלים או מוקטנים כדי להתאים "
"לאזור הניתן להדפסה בדף המדפסת.\n"

#: ../libview/ev-print-operation.c:1924
msgid "Auto Rotate and Center"
msgstr "הטיה ומרכוז אוטומטיים"

#: ../libview/ev-print-operation.c:1927
msgid ""
"Rotate printer page orientation of each page to match orientation of each "
"document page. Document pages will be centered within the printer page."
msgstr ""
"הטיית כיוון העמוד של כל עמוד בנפרד כך שיתאים להטיה של כל עמוד במסמך. עמודי "
"המסמך ימורכזו בדף המדפסת."

#: ../libview/ev-print-operation.c:1932
msgid "Select page size using document page size"
msgstr "בחירת גודל העמוד באמצעות גודל עמוד המסמך"

#: ../libview/ev-print-operation.c:1934
msgid ""
"When enabled, each page will be printed on the same size paper as the "
"document page."
msgstr "כאשר פעיל, כל עמוד יודפס באותו גודל הדף כמו עמוד המסמך."

#: ../libview/ev-print-operation.c:2023
msgid "Page Handling"
msgstr "טיפול בעמודים"

#: ../libview/ev-view-accessible.c:45
msgid "Scroll Up"
msgstr "גלילה למעלה"

#: ../libview/ev-view-accessible.c:46
msgid "Scroll Down"
msgstr "גלילה למטה"

#: ../libview/ev-view-accessible.c:52
msgid "Scroll View Up"
msgstr "גלילת התצוגה למעלה"

#: ../libview/ev-view-accessible.c:53
msgid "Scroll View Down"
msgstr "גלילת התצוגה למטה"

#: ../libview/ev-view-accessible.c:116
msgid "Document View"
msgstr "תצוגת מסמך"

#: ../libview/ev-view.c:1923
msgid "Go to first page"
msgstr "מעבר לעמוד הראשון"

#: ../libview/ev-view.c:1925
msgid "Go to previous page"
msgstr "מעבר לעמוד הקודם"

#: ../libview/ev-view.c:1927
msgid "Go to next page"
msgstr "מעבר לעמוד הבא"

#: ../libview/ev-view.c:1929
msgid "Go to last page"
msgstr "מעבר לעמוד האחרון"

#: ../libview/ev-view.c:1931
msgid "Go to page"
msgstr "מעבר לעמוד"

#: ../libview/ev-view.c:1933
msgid "Find"
msgstr "חיפוש"

#: ../libview/ev-view.c:1961
#, c-format
msgid "Go to page %s"
msgstr "מעבר לעמוד %s"

#: ../libview/ev-view.c:1967
#, c-format
msgid "Go to %s on file “%s”"
msgstr "מעבר ל־%s בקובץ „%s“"

#: ../libview/ev-view.c:1970
#, c-format
msgid "Go to file “%s”"
msgstr "מעבר לקובץ „%s“"

#: ../libview/ev-view.c:1978
#, c-format
msgid "Launch %s"
msgstr "שיגור %s"

#: ../libview/ev-view-presentation.c:710
msgid "Jump to page:"
msgstr "קפיצה לעמוד:"

#: ../libview/ev-view-presentation.c:1015
msgid "End of presentation. Click to exit."
msgstr "סוף המצגת. נא ללחוץ ליציאה."

#: ../previewer/ev-previewer.c:45
msgid "Delete the temporary file"
msgstr "מחיקת הקובץ הזמני"

#: ../previewer/ev-previewer.c:46
msgid "Print settings file"
msgstr "הדפסת קובץ ההגדרות"

#: ../previewer/ev-previewer.c:175 ../previewer/ev-previewer.c:207
msgid "GNOME Document Previewer"
msgstr "כלי להצגה מקדימה של מסמכים מבית GNOME"

#: ../previewer/ev-previewer-window.c:91 ../shell/ev-window.c:3393
msgid "Failed to print document"
msgstr "הדפסת המסמך נכשלה"

#: ../previewer/ev-previewer-window.c:223
#, c-format
msgid "The selected printer '%s' could not be found"
msgstr "המדפסת הנבחרת '%s' לא נמצאה"

#. Go menu
#: ../previewer/ev-previewer-window.c:270 ../shell/ev-window.c:6068
msgid "_Previous Page"
msgstr "העמוד ה_קודם"

#: ../previewer/ev-previewer-window.c:271 ../shell/ev-window.c:6069
msgid "Go to the previous page"
msgstr "מעבר לעמוד הקודם"

#: ../previewer/ev-previewer-window.c:273 ../shell/ev-window.c:6071
msgid "_Next Page"
msgstr "העמוד ה_בא"

#: ../previewer/ev-previewer-window.c:274 ../shell/ev-window.c:6072
msgid "Go to the next page"
msgstr "מעבר לעמוד הבא"

#: ../previewer/ev-previewer-window.c:277 ../shell/ev-window.c:6055
msgid "Enlarge the document"
msgstr "הגדלת המסמך"

#: ../previewer/ev-previewer-window.c:280 ../shell/ev-window.c:6058
msgid "Shrink the document"
msgstr "הקטנת המסמך"

#: ../previewer/ev-previewer-window.c:285 ../shell/ev-window.c:6033
msgid "Print this document"
msgstr "הדפסת מסמך זה"

#: ../previewer/ev-previewer-window.c:317 ../shell/ev-window.c:6212
msgid "Fit Pa_ge"
msgstr "התאמה ל_עמוד"

#: ../previewer/ev-previewer-window.c:318 ../shell/ev-window.c:6213
msgid "Make the current document fill the window"
msgstr "הצגת המסמך הנוכחי כך שימלא את החלון"

#: ../previewer/ev-previewer-window.c:320 ../shell/ev-window.c:6215
msgid "Fit _Width"
msgstr "התאמה ל_רוחב"

#: ../previewer/ev-previewer-window.c:321 ../shell/ev-window.c:6216
msgid "Make the current document fill the window width"
msgstr "הצגת המסמך הנוכחי כך שימלא את רוחב העמוד"

#: ../previewer/ev-previewer-window.c:514 ../shell/ev-window.c:6325
msgid "Page"
msgstr "עמוד"

#: ../previewer/ev-previewer-window.c:515 ../shell/ev-window.c:6326
msgid "Select Page"
msgstr "בחירת עמוד"

#: ../properties/ev-properties-main.c:116
msgid "Document"
msgstr "מסמך"

#: ../properties/ev-properties-view.c:60
msgid "Title:"
msgstr "שם:"

#: ../properties/ev-properties-view.c:61
msgid "Location:"
msgstr "מיקום:"

#: ../properties/ev-properties-view.c:62
msgid "Subject:"
msgstr "‏נושא:"

#: ../properties/ev-properties-view.c:63
#: ../shell/ev-annotation-properties-dialog.c:154
msgid "Author:"
msgstr "‏מחבר:"

#: ../properties/ev-properties-view.c:64
msgid "Keywords:"
msgstr "‏מילות מפתח:"

#: ../properties/ev-properties-view.c:65
msgid "Producer:"
msgstr "יצרן:"

#: ../properties/ev-properties-view.c:66
msgid "Creator:"
msgstr "יוצר:"

#: ../properties/ev-properties-view.c:67
msgid "Created:"
msgstr "נוצר:"

#: ../properties/ev-properties-view.c:68
msgid "Modified:"
msgstr "‏השתנה:"

#: ../properties/ev-properties-view.c:69
msgid "Number of Pages:"
msgstr "מספר עמודים:"

#: ../properties/ev-properties-view.c:70
msgid "Optimized:"
msgstr "‏הוטב:"

#: ../properties/ev-properties-view.c:71
msgid "Format:"
msgstr "‏סוג:"

#: ../properties/ev-properties-view.c:72
msgid "Security:"
msgstr "‏אבטחה:"

#: ../properties/ev-properties-view.c:73
msgid "Paper Size:"
msgstr "‏גודל דף:"

#. Translate to the default units to use for presenting
#. * lengths to the user. Translate to default:inch if you
#. * want inches, otherwise translate to default:mm.
#. * Do *not* translate it to "predefinito:mm", if it
#. * it isn't default:mm or default:inch it will not work
#.
#: ../properties/ev-properties-view.c:220
msgid "default:mm"
msgstr "default:mm"

#: ../properties/ev-properties-view.c:264
#, c-format
msgid "%.0f × %.0f mm"
msgstr "%.0f x %.0f מילימטרים"

#: ../properties/ev-properties-view.c:268
#, c-format
msgid "%.2f × %.2f inch"
msgstr "%.2f x %.2f אינטשים"

#. Note to translators: first placeholder is the paper name (eg.
#. * A4), second placeholder is the paper size (eg. 297x210 mm)
#: ../properties/ev-properties-view.c:292
#, c-format
msgid "%s, Portrait (%s)"
msgstr "‏%s, דיוקן (%s)"

#. Note to translators: first placeholder is the paper name (eg.
#. * A4), second placeholder is the paper size (eg. 297x210 mm)
#: ../properties/ev-properties-view.c:299
#, c-format
msgid "%s, Landscape (%s)"
msgstr "‏%s, נוף (%s)"

#: ../shell/eggfindbar.c:277
msgid "_Whole Words Only"
msgstr "מילים _שלמות בלבד"

#: ../shell/eggfindbar.c:289
msgid "C_ase Sensitive"
msgstr "_תלוי רישיות"

#: ../shell/eggfindbar.c:391
msgid "Find options"
msgstr "אפשרויות חיפוש"

#: ../shell/eggfindbar.c:400
msgid "Find previous occurrence of the search string"
msgstr "חיפוש המופע הקודם של המחרוזת"

#: ../shell/eggfindbar.c:410
msgid "Find next occurrence of the search string"
msgstr "חיפוש המופע הבא של המחרוזת"

#: ../shell/ev-annotation-properties-dialog.c:94
msgid "Icon:"
msgstr "סמל:"

#: ../shell/ev-annotation-properties-dialog.c:100
msgid "Note"
msgstr "פתקית"

#: ../shell/ev-annotation-properties-dialog.c:101
msgid "Comment"
msgstr "הערה"

#: ../shell/ev-annotation-properties-dialog.c:102
msgid "Key"
msgstr "מפתח"

#: ../shell/ev-annotation-properties-dialog.c:103
msgid "Help"
msgstr "עזרה"

#: ../shell/ev-annotation-properties-dialog.c:104
msgid "New Paragraph"
msgstr "פסקה חדשה"

#: ../shell/ev-annotation-properties-dialog.c:105
msgid "Paragraph"
msgstr "פסקה"

#: ../shell/ev-annotation-properties-dialog.c:106
msgid "Insert"
msgstr "הוספה"

#: ../shell/ev-annotation-properties-dialog.c:107
msgid "Cross"
msgstr "צלב"

#: ../shell/ev-annotation-properties-dialog.c:108
msgid "Circle"
msgstr "עיגול"

#: ../shell/ev-annotation-properties-dialog.c:109
msgid "Unknown"
msgstr "לא ידוע"

#: ../shell/ev-annotation-properties-dialog.c:134
msgid "Annotation Properties"
msgstr "מאפייני הפרשנות"

#: ../shell/ev-annotation-properties-dialog.c:165
msgid "Color:"
msgstr "צבע:"

#: ../shell/ev-annotation-properties-dialog.c:175
msgid "Style:"
msgstr "סגנון:"

#: ../shell/ev-annotation-properties-dialog.c:190
msgid "Transparent"
msgstr "שקוף"

#: ../shell/ev-annotation-properties-dialog.c:197
msgid "Opaque"
msgstr "אטום"

#: ../shell/ev-annotation-properties-dialog.c:207
msgid "Initial window state:"
msgstr "מצב החלון ההתחלתי:"

#: ../shell/ev-annotation-properties-dialog.c:213
msgid "Open"
msgstr "פתיחה"

#: ../shell/ev-annotation-properties-dialog.c:214
msgid "Close"
msgstr "סגירה"

#: ../shell/ev-history-action-widget.c:227
msgid "Go to previous history item"
msgstr "מעבר לפריט הקודם בהיסטוריה"

#: ../shell/ev-history-action-widget.c:231
msgid "Go to next history item"
msgstr "מעבר לפריט הבא בהיסטוריה"

#: ../shell/ev-keyring.c:86
#, c-format
msgid "Password for document %s"
msgstr "ססמת המסמך %s"

#. Create tree view
#: ../shell/ev-loading-message.c:50 ../shell/ev-sidebar-annotations.c:131
#: ../shell/ev-sidebar-layers.c:125 ../shell/ev-sidebar-links.c:261
msgid "Loading…"
msgstr "בטעינה…"

#: ../shell/ev-open-recent-action.c:72
msgid "Open a recently used document"
msgstr "פתיחת מסמך שהיה בשימוש לאחרונה"

#: ../shell/ev-password-view.c:142
msgid ""
"This document is locked and can only be read by entering the correct "
"password."
msgstr "מסמך זה נעול, ויש צורך בססמה כדי לקרוא אותו."

#: ../shell/ev-password-view.c:151 ../shell/ev-password-view.c:269
msgid "_Unlock Document"
msgstr "_שחרור המסמך"

#: ../shell/ev-password-view.c:261
msgid "Enter password"
msgstr "הזנת ססמה"

#: ../shell/ev-password-view.c:300
#, c-format
msgid ""
"The document “%s” is locked and requires a password before it can be opened."
msgstr "המסמך „%s“ נעול ונדרשת ססמה כדי לפתוח אותו."

#: ../shell/ev-password-view.c:303
msgid "Password required"
msgstr "נדרשת ססמה"

#: ../shell/ev-password-view.c:333
msgid "_Password:"
msgstr "_ססמה:"

#: ../shell/ev-password-view.c:364
msgid "Forget password _immediately"
msgstr "ה_תעלמות מהססמה מיידית"

#: ../shell/ev-password-view.c:376
msgid "Remember password until you _log out"
msgstr "שמירת הססמה _עד לניתוק"

#: ../shell/ev-password-view.c:388
msgid "Remember _forever"
msgstr "_שמירה לעד"

#: ../shell/ev-properties-dialog.c:62
msgid "Properties"
msgstr "מאפיינים"

#: ../shell/ev-properties-dialog.c:94
msgid "General"
msgstr "כללי"

#: ../shell/ev-properties-dialog.c:104
msgid "Fonts"
msgstr "גופנים"

#: ../shell/ev-properties-dialog.c:117
msgid "Document License"
msgstr "רישיון המסמך"

#: ../shell/ev-properties-fonts.c:142
msgid "Font"
msgstr "גופן"

#: ../shell/ev-properties-fonts.c:169
#, c-format
msgid "Gathering font information… %3d%%"
msgstr "נאסף מידע על הגופנים… %3d%%"

#: ../shell/ev-properties-license.c:134
msgid "Usage terms"
msgstr "תנאי שימוש"

#: ../shell/ev-properties-license.c:140
msgid "Text License"
msgstr "רישיון הטקסט"

#: ../shell/ev-properties-license.c:146
msgid "Further Information"
msgstr "מידע נוסף"

#: ../shell/ev-sidebar-annotations.c:159
msgid "List"
msgstr "רשימה"

#: ../shell/ev-sidebar-annotations.c:199 ../shell/ev-sidebar-annotations.c:529
msgid "Annotations"
msgstr "הערות"

#: ../shell/ev-sidebar-annotations.c:205
msgid "Text"
msgstr "טקסט"

#: ../shell/ev-sidebar-annotations.c:206
msgid "Add text annotation"
msgstr "הוספת פרשנות טקסט"

#: ../shell/ev-sidebar-annotations.c:217
msgid "Add"
msgstr "הוספה"

#: ../shell/ev-sidebar-annotations.c:362
msgid "Document contains no annotations"
msgstr "המסמך אינו מכיל הערות"

#: ../shell/ev-sidebar-annotations.c:394
#, c-format
msgid "Page %d"
msgstr "עמוד %d"

#: ../shell/ev-sidebar-attachments.c:697
msgid "Attachments"
msgstr "צרופות"

#: ../shell/ev-sidebar-bookmarks.c:153
msgid "_Open Bookmark"
msgstr "_פתיחת הסימנייה"

#: ../shell/ev-sidebar-bookmarks.c:155
msgid "_Rename Bookmark"
msgstr "_שינוי שם הסימנייה"

#: ../shell/ev-sidebar-bookmarks.c:157
msgid "_Remove Bookmark"
msgstr "ה_סרת הסימנייה"

#: ../shell/ev-sidebar-bookmarks.c:605
msgid "Bookmarks"
msgstr "סימניות"

#: ../shell/ev-sidebar-layers.c:446
msgid "Layers"
msgstr "שכבות"

#: ../shell/ev-sidebar-links.c:337
msgid "Print…"
msgstr "הדפסה…"

#: ../shell/ev-sidebar-links.c:725
msgid "Index"
msgstr "מפתח"

#: ../shell/ev-sidebar-thumbnails.c:960
msgid "Thumbnails"
msgstr "תמונות ממוזערות"

#: ../shell/ev-utils.c:332
msgid "Supported Image Files"
msgstr "קובצי תמונות נתמכים"

#: ../shell/ev-window.c:1533
msgid "The document contains no pages"
msgstr "המסמך אינו מכיל עמודים"

#: ../shell/ev-window.c:1536
msgid "The document contains only empty pages"
msgstr "המסמך מכיל עמודים ריקים בלבד"

#: ../shell/ev-window.c:1742 ../shell/ev-window.c:1913
#, c-format
msgid "Unable to open document “%s”."
msgstr "לא ניתן לפתוח את המסמך „%s“."

#: ../shell/ev-window.c:1877
#, c-format
msgid "Loading document from “%s”"
msgstr "המסמך מ־„%s“ נטען"

#: ../shell/ev-window.c:2028 ../shell/ev-window.c:2318
#, c-format
msgid "Downloading document (%d%%)"
msgstr "מוריד מסמך (%d%%)"

#: ../shell/ev-window.c:2061
msgid "Failed to load remote file."
msgstr "טעינת הקובץ המרוחק נכשלה."

#: ../shell/ev-window.c:2262
#, c-format
msgid "Reloading document from %s"
msgstr "המסמך מ־%s נטען מחדש"

#: ../shell/ev-window.c:2294
msgid "Failed to reload document."
msgstr "טעינת המסמך מחדש נכשלה."

#: ../shell/ev-window.c:2507
msgid "Open Document"
msgstr "פתיחת מסמך"

#: ../shell/ev-window.c:2780
#, c-format
msgid "Saving document to %s"
msgstr "המסמך נשמר ל־%s"

#: ../shell/ev-window.c:2783
#, c-format
msgid "Saving attachment to %s"
msgstr "הצרופה נשמרת ל־%s"

#: ../shell/ev-window.c:2786
#, c-format
msgid "Saving image to %s"
msgstr "התמונה נשמרת ל־%s"

#: ../shell/ev-window.c:2830 ../shell/ev-window.c:2930
#, c-format
msgid "The file could not be saved as “%s”."
msgstr "לא ניתן לשמור את הקובץ בשם „%s“."

#: ../shell/ev-window.c:2861
#, c-format
msgid "Uploading document (%d%%)"
msgstr "המסמך נשלח (%d%%)"

#: ../shell/ev-window.c:2865
#, c-format
msgid "Uploading attachment (%d%%)"
msgstr "הצרופה נשלחת (%d%%)"

#: ../shell/ev-window.c:2869
#, c-format
msgid "Uploading image (%d%%)"
msgstr "התמונה נשלחת (%d%%)"

#: ../shell/ev-window.c:2981
msgid "Save a Copy"
msgstr "שמירת העתק"

#: ../shell/ev-window.c:3045
msgid "Could not send current document"
msgstr "לא ניתן לשלוח את המסמך הנוכחי"

#: ../shell/ev-window.c:3076
msgid "Could not open the containing folder"
msgstr "לא ניתן לפתוח את התיקייה המכילה"

#: ../shell/ev-window.c:3337
#, c-format
msgid "%d pending job in queue"
msgid_plural "%d pending jobs in queue"
msgstr[0] "משימה אחת ממתינה בתור"
msgstr[1] "%d משימות ממתינות בתור"

#: ../shell/ev-window.c:3450
#, c-format
msgid "Printing job “%s”"
msgstr "המשימה „%s“ מודפסת"

#: ../shell/ev-window.c:3645
msgid ""
"Document contains form fields that have been filled out. If you don't save a "
"copy, changes will be permanently lost."
msgstr "המסמך מכיל שדות טופס שיש למלא. אם לא יישמר עותק, השינויים יאבדו לעד."

#: ../shell/ev-window.c:3649
msgid ""
"Document contains new or modified annotations. If you don't save a copy, "
"changes will be permanently lost."
msgstr ""
"המסמך מכיל הערות חדשות או ערוכות. אם לא יישמר עותק, השינויים יאבדו לעד."

#: ../shell/ev-window.c:3656
#, c-format
msgid "Save a copy of document “%s” before closing?"
msgstr "האם לשמור עותק של המסמך „%s“ לפני הסגירה?"

#: ../shell/ev-window.c:3675
msgid "Close _without Saving"
msgstr "_סגירה ללא שמירה"

#: ../shell/ev-window.c:3679
msgid "Save a _Copy"
msgstr "שמירת _עותק"

#: ../shell/ev-window.c:3753
#, c-format
msgid "Wait until print job “%s” finishes before closing?"
msgstr "האם להמתין לסיום משימת ההדפסה „%s“ לפני הסגירה?"

#. TRANS: the singular form is not really used as n_print_jobs > 1
#. but some languages distinguish between different plurals forms,
#. so the ngettext is needed.
#: ../shell/ev-window.c:3759
#, c-format
msgid "There is %d print job active. Wait until print finishes before closing?"
msgid_plural ""
"There are %d print jobs active. Wait until print finishes before closing?"
msgstr[0] "יש משימת הדפסה אחת פעילה. האם להמתין לסיום ההדפסה לפני הסגירה?"
msgstr[1] "יש %d משימות הדפסה פעילות. האם להמתין לסיום ההדפסות לפני הסגירה?"

#: ../shell/ev-window.c:3774
msgid "If you close the window, pending print jobs will not be printed."
msgstr "אם החלון ייסגר, משימות הדפסה הממתינות לא יודפסו."

#: ../shell/ev-window.c:3778
msgid "Cancel _print and Close"
msgstr "ביטול הה_דפסה וסגירה"

#: ../shell/ev-window.c:3782
msgid "Close _after Printing"
msgstr "_סגירה לאחר ההדפסה"

#: ../shell/ev-window.c:4315
msgid "Running in presentation mode"
msgstr "מופעל מצב מצגת"

#: ../shell/ev-window.c:5018
#, c-format
msgid ""
"Document Viewer\n"
"Using %s (%s)"
msgstr ""
"מציג מסמכים.\n"
"בעזרת %s (‏%s)"

#: ../shell/ev-window.c:5051
msgid ""
"Evince is free software; you can redistribute it and/or modify it under the "
"terms of the GNU General Public License as published by the Free Software "
"Foundation; either version 2 of the License, or (at your option) any later "
"version.\n"
msgstr ""
"Evince is free software; you can redistribute it and/or modify it under the "
"terms of the GNU General Public License as published by the Free Software "
"Foundation; either version 2 of the License, or (at your option) any later "
"version.\n"

#: ../shell/ev-window.c:5055
msgid ""
"Evince is distributed in the hope that it will be useful, but WITHOUT ANY "
"WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS "
"FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more "
"details.\n"
msgstr ""
"Evince is distributed in the hope that it will be useful, but WITHOUT ANY "
"WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS "
"FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more "
"details.\n"

#: ../shell/ev-window.c:5059
msgid ""
"You should have received a copy of the GNU General Public License along with "
"Evince; if not, write to the Free Software Foundation, Inc., 51 Franklin "
"Street, Fifth Floor, Boston, MA 02110-1301  USA\n"
msgstr ""
"ל־Evince אמור היה להיות מצורף עותק של הרישיון הציבורי הכללי של GNU; אם לא, "
"יש לכתוב אל Free Software Foundation, Inc., 59 Temple Place, Suite 330, "
"Boston, MA  02111-1307  USA\n"

#: ../shell/ev-window.c:5084
msgid "Evince"
msgstr "‏Evince"

#: ../shell/ev-window.c:5087
msgid "© 1996–2012 The Evince authors"
msgstr "© 1996—2012 יוצרי Evince"

#: ../shell/ev-window.c:5093
msgid "translator-credits"
msgstr ""
"יובל טנאי\n"
"Yo´av Moshe <black_jesus@myrealbox.com>\n"
"Yaron Shahrabani <sh.yaron@gmail.com>\n"
"פרויקט תרגום GNOME לעברית:\n"
"‏http://gnome-il.berlios.de"

#. TRANS: Sometimes this could be better translated as
#. "%d hit(s) on this page".  Therefore this string
#. contains plural cases.
#: ../shell/ev-window.c:5364
#, c-format
msgid "%d found on this page"
msgid_plural "%d found on this page"
msgstr[0] "‏אחד נמצא בעמוד זה"
msgstr[1] "‏%d נמצאו בעמוד זה"

#: ../shell/ev-window.c:5369
msgid "Not found"
msgstr "אין התאמה"

#: ../shell/ev-window.c:5375
#, c-format
msgid "%3d%% remaining to search"
msgstr "‏%3d%% נשארו לחיפוש"

#: ../shell/ev-window.c:5698
msgid "Enable caret navigation?"
msgstr "האם לאפשר ניווט בעזרת הסמן?"

#: ../shell/ev-window.c:5700
msgid "_Enable"
msgstr "_אפשור"

#: ../shell/ev-window.c:5703
msgid ""
"Pressing F7 turns the caret navigation on or off. This feature places a "
"moveable cursor in text pages, allowing you to move around and select text "
"with your keyboard. Do you want to enable the caret navigation on?"
msgstr ""
"לחיצה על F7 מפעילה את האפשרות לנווט בעזרת הסמן. תכונה זו מציבה סמן שניתן "
"להזיז בדפי טקסט המאפשר לך לנוע מסביב ולבחור טקסט בעזרת המקלדת שלך. האם "
"להפעיל את ניווט הסמן?"

#: ../shell/ev-window.c:5708
msgid "Don't show this message again"
msgstr "לא לה_ציג הודעה זו שוב"

#: ../shell/ev-window.c:6013
msgid "_Bookmarks"
msgstr "_סימניות"

#: ../shell/ev-window.c:6014
msgid "_Recent"
msgstr "_אחרונים"

#. File menu
#: ../shell/ev-window.c:6017 ../shell/ev-window.c:6363
msgid "_Open…"
msgstr "_פתיחה…"

#: ../shell/ev-window.c:6018 ../shell/ev-window.c:6364
msgid "Open an existing document"
msgstr "פתיחת מסמך קיים"

#: ../shell/ev-window.c:6020
msgid "Op_en a Copy"
msgstr "_פתיחת העתק"

#: ../shell/ev-window.c:6021
msgid "Open a copy of the current document in a new window"
msgstr "פתיחת העתק של המסמך הנוכחי בחלון חדש"

#: ../shell/ev-window.c:6023
msgid "_Save a Copy…"
msgstr "שמירת _עותק…"

#: ../shell/ev-window.c:6024
msgid "Save a copy of the current document"
msgstr "שמירת עותק של המסמך הנוכחי"

#: ../shell/ev-window.c:6026
msgid "Send _To…"
msgstr "_שליחה אל…"

#: ../shell/ev-window.c:6027
msgid "Send current document by mail, instant message…"
msgstr "שליחת המסמך הנוכחי בדוא״ל, הודעה מיידית…"

#: ../shell/ev-window.c:6029
msgid "Open Containing _Folder"
msgstr "פתיחת התיקייה המ_כילה"

#: ../shell/ev-window.c:6030
msgid "Show the folder which contains this file in the file manager"
msgstr "הצגת התיקייה המכילה קובץ זה במנהל הקבצים"

#: ../shell/ev-window.c:6032
msgid "_Print…"
msgstr "ה_דפסה…"

#: ../shell/ev-window.c:6035
msgid "P_roperties"
msgstr "מ_אפיינים"

#: ../shell/ev-window.c:6043
msgid "Select _All"
msgstr "_בחירת הכול"

#: ../shell/ev-window.c:6045
msgid "Rotate _Left"
msgstr "סיבוב _שמאלה"

#: ../shell/ev-window.c:6047
msgid "Rotate _Right"
msgstr "סיבוב _ימינה"

#: ../shell/ev-window.c:6049
msgid "Save Current Settings as _Default"
msgstr "שמירת ההגדרות ה_נוכחיות כבררת מחדל"

#: ../shell/ev-window.c:6060
msgid "_Reload"
msgstr "_טעינה מחדש"

#: ../shell/ev-window.c:6061
msgid "Reload the document"
msgstr "טעינה מחדש של המסמך"

#: ../shell/ev-window.c:6064
msgid "Auto_scroll"
msgstr "_גלילה אוטומטית"

#: ../shell/ev-window.c:6074
msgid "_First Page"
msgstr "עמוד _ראשון"

#: ../shell/ev-window.c:6075
msgid "Go to the first page"
msgstr "מעבר לעמוד הראשון"

#: ../shell/ev-window.c:6077
msgid "_Last Page"
msgstr "עמוד _אחרון"

#: ../shell/ev-window.c:6078
msgid "Go to the last page"
msgstr "מעבר לעמוד האחרון"

#: ../shell/ev-window.c:6080
msgid "Go to Pa_ge"
msgstr "מעבר ל_עמוד"

#: ../shell/ev-window.c:6081
msgid "Go to Page"
msgstr "מעבר לעמוד"

#. Bookmarks menu
#: ../shell/ev-window.c:6085
msgid "_Add Bookmark"
msgstr "הוס_פת סימניה"

#: ../shell/ev-window.c:6086
msgid "Add a bookmark for the current page"
msgstr "הוספת סימניה לעמוד הנוכחי"

#: ../shell/ev-window.c:6089
msgid "_About"
msgstr "על _אודות"

#. Toolbar-only
#: ../shell/ev-window.c:6093
msgid "Leave Fullscreen"
msgstr "יציאה ממסך מלא"

#: ../shell/ev-window.c:6094
msgid "Leave fullscreen mode"
msgstr "יציאה ממצב מסך מלא"

#: ../shell/ev-window.c:6096
msgid "Start Presentation"
msgstr "ה_תחלת המצגת"

#: ../shell/ev-window.c:6097
msgid "Start a presentation"
msgstr "התחלת המצגת"

#. View Menu
#: ../shell/ev-window.c:6158
msgid "Side _Pane"
msgstr "סרגל _צד"

#: ../shell/ev-window.c:6159
msgid "Show or hide the side pane"
msgstr "הצגה או הסתרה של סרגל הצד"

#: ../shell/ev-window.c:6161
msgid "_Continuous"
msgstr "_רציף"

#: ../shell/ev-window.c:6162
msgid "Show the entire document"
msgstr "הצגת כל המסמך"

#: ../shell/ev-window.c:6164
msgid "_Dual"
msgstr "_זוגי"

#: ../shell/ev-window.c:6165
msgid "Show two pages at once"
msgstr "הצגת שני עמודים יחד"

#: ../shell/ev-window.c:6167
msgid "_Odd Pages Left"
msgstr "אי־זוגיים מ_שמאל"

#: ../shell/ev-window.c:6168
msgid "Show odd pages on the left in dual mode"
msgstr "הצגת עמודים אי־זוגיים משמאל במצב זוגי"

#: ../shell/ev-window.c:6170
msgid "_Fullscreen"
msgstr "מ_סך מלא"

#: ../shell/ev-window.c:6171
msgid "Expand the window to fill the screen"
msgstr "הרחבת החלון לכל המסך"

#: ../shell/ev-window.c:6173
msgid "Pre_sentation"
msgstr "מ_צגת"

#: ../shell/ev-window.c:6174
msgid "Run document as a presentation"
msgstr "הרצת המסמך כמצגת"

#: ../shell/ev-window.c:6176
msgid "_Inverted Colors"
msgstr "צבעים ה_פוכים"

#: ../shell/ev-window.c:6177
msgid "Show page contents with the colors inverted"
msgstr "הצגת תוכן העמוד עם הצבעים הפוכים"

#: ../shell/ev-window.c:6180
msgid "_Find…"
msgstr "_חיפוש…"

#: ../shell/ev-window.c:6181
msgid "Find a word or phrase in the document"
msgstr "חיפוש מילה או משפט במסמך"

#. Links
#: ../shell/ev-window.c:6188
msgid "_Open Link"
msgstr "פתיחת _קישור"

#: ../shell/ev-window.c:6190
msgid "_Go To"
msgstr "מ_עבר"

#: ../shell/ev-window.c:6192
msgid "Open in New _Window"
msgstr "פתיחה ב_חלון חדש"

#: ../shell/ev-window.c:6194
msgid "_Copy Link Address"
msgstr "העתקת מיקום ה_קישור"

#: ../shell/ev-window.c:6196
msgid "_Save Image As…"
msgstr "שמירת תמונה _בשם…"

#: ../shell/ev-window.c:6198
msgid "Copy _Image"
msgstr "העתקת ת_מונה"

#: ../shell/ev-window.c:6200
msgid "Annotation Properties…"
msgstr "מאפייני הפרשנות…"

#: ../shell/ev-window.c:6205
msgid "_Open Attachment"
msgstr "_פתיחת צרופה"

#: ../shell/ev-window.c:6207
msgid "_Save Attachment As…"
msgstr "_שמירת הקובץ המצורף בשם…"

#: ../shell/ev-window.c:6218
msgid "_Automatic"
msgstr "_אוטומטית"

#: ../shell/ev-window.c:6339
msgid "Zoom"
msgstr "תקריב"

#: ../shell/ev-window.c:6341
msgid "Adjust the zoom level"
msgstr "שינוי רמת התקריב"

#: ../shell/ev-window.c:6354
msgid "History"
msgstr "היסטוריה"

#. translators: this is the label for toolbar button
#: ../shell/ev-window.c:6383
msgid "Open Folder"
msgstr "פתיחת תיקייה"

#. translators: this is the label for toolbar button
#: ../shell/ev-window.c:6387
msgid "Send To"
msgstr "שליחה אל"

#. translators: this is the label for toolbar button
#: ../shell/ev-window.c:6393
msgid "Previous"
msgstr "הקודם"

#. translators: this is the label for toolbar button
#: ../shell/ev-window.c:6398
msgid "Next"
msgstr "הבא"

#. translators: this is the label for toolbar button
#: ../shell/ev-window.c:6402
msgid "Zoom In"
msgstr "התקרבות"

#. translators: this is the label for toolbar button
#: ../shell/ev-window.c:6406
msgid "Zoom Out"
msgstr "התרחקות"

#: ../shell/ev-window.c:6538 ../shell/ev-window.c:6554
msgid "Unable to launch external application."
msgstr "לא ניתן לשגר יישום חיצוני"

#: ../shell/ev-window.c:6611
msgid "Unable to open external link"
msgstr "לא ניתן לפתוח קישור חיצוני"

#: ../shell/ev-window.c:6804
msgid "Couldn't find appropriate format to save image"
msgstr "לא נמצאה התצורה המתאימה לשמירת התמונה"

#: ../shell/ev-window.c:6836
msgid "The image could not be saved."
msgstr "לא ניתן לשמור את התמונה."

#: ../shell/ev-window.c:6868
msgid "Save Image"
msgstr "שמירת התמונה"

#: ../shell/ev-window.c:6999
msgid "Unable to open attachment"
msgstr "לא ניתן לפתוח את הצרופה"

#: ../shell/ev-window.c:7055
msgid "The attachment could not be saved."
msgstr "לא ניתן לשמור את הצרופה."

#: ../shell/ev-window.c:7100
msgid "Save Attachment"
msgstr "שמירת צרופה"

#: ../shell/ev-window-title.c:169
#, c-format
msgid "%s — Password Required"
msgstr "%s — נדרשת ססמה"

#: ../shell/main.c:70 ../shell/main.c:276
msgid "GNOME Document Viewer"
msgstr "GNOME Document Viewer"

#: ../shell/main.c:78
msgid "The page label of the document to display."
msgstr "The page label of the document to display."

#: ../shell/main.c:78
msgid "PAGE"
msgstr "PAGE"

#: ../shell/main.c:79
msgid "The page number of the document to display."
msgstr "The page number of the document to display."

#: ../shell/main.c:79
msgid "NUMBER"
msgstr "NUMBER"

#: ../shell/main.c:80
msgid "Named destination to display."
msgstr "Named destination to display."

#: ../shell/main.c:80
msgid "DEST"
msgstr "DEST"

#: ../shell/main.c:81
msgid "Run evince in fullscreen mode"
msgstr "Run evince in fullscreen mode"

#: ../shell/main.c:82
msgid "Run evince in presentation mode"
msgstr "Run evince in presentation mode"

#: ../shell/main.c:83
msgid "Run evince as a previewer"
msgstr "Run evince as a previewer"

#: ../shell/main.c:84
msgid "The word or phrase to find in the document"
msgstr "The word or phrase to find in the document"

#: ../shell/main.c:84
msgid "STRING"
msgstr "STRING"

#: ../shell/main.c:88
msgid "[FILE…]"
msgstr "[FILE…]"

#: ../shell/evince-appmenu.ui.h:1
msgid "_Help"
msgstr "ע_זרה"

#~ msgid "Fit Page"
#~ msgstr "התאמה לעמוד"

#~ msgid "Fit Width"
#~ msgstr "התאמה לרוחב"

#~ msgid "50%"
#~ msgstr "50%"

#~ msgid "70%"
#~ msgstr "70%"

#~ msgid "85%"
#~ msgstr "85%"

#~ msgid "100%"
#~ msgstr "100%"

#~ msgid "125%"
#~ msgstr "125%"

#~ msgid "150%"
#~ msgstr "150%"

#~ msgid "175%"
#~ msgstr "175%"

#~ msgid "200%"
#~ msgstr "200%"

#~ msgid "300%"
#~ msgstr "300%"

#~ msgid "400%"
#~ msgstr "400%"

#~ msgid "800%"
#~ msgstr "800%"

#~ msgid "1600%"
#~ msgstr "1600%"

#~ msgid "3200%"
#~ msgstr "3200%"

#~ msgid "6400%"
#~ msgstr "6400%"

#~ msgid "By extension"
#~ msgstr "לפי סיומת"

#~ msgid "Send _To..."
#~ msgstr "שלי_חה אל…"

#~ msgid "Page %s — %s"
#~ msgstr "עמוד %s — %s"

#~ msgid "Navigation"
#~ msgstr "ניווט"

#~ msgid "Back"
#~ msgstr "חזרה"

#~ msgid "Move across visited pages"
#~ msgstr "מעבר בין העמודים בהם ביקרת"

#~ msgid "Show “_%s”"
#~ msgstr "הצגת „_%s“"

#~ msgid "_Move on Toolbar"
#~ msgstr "ה_זזה בסרגל הכלים"

#~ msgid "Move the selected item on the toolbar"
#~ msgstr "הזזת הפריט הנבחר בסרגל הכלים"

#~ msgid "_Remove from Toolbar"
#~ msgstr "ה_סרה מסרגל כלים"

#~ msgid "Remove the selected item from the toolbar"
#~ msgstr "הסרת הפריט הנבחר מסרגל הכלים"

#~ msgid "_Delete Toolbar"
#~ msgstr "_מחיקת סרגל כלים"

#~ msgid "Remove the selected toolbar"
#~ msgstr "ה_סרת סרגל הכלים הנבחר"

#~ msgid "Separator"
#~ msgstr "מפריד"

#~ msgid "Best Fit"
#~ msgstr "ההתאמה הטובה ביותר"

#~ msgid "Fit Page Width"
#~ msgstr "התאמה לרוחב העמוד"

#~ msgid "_Best Fit"
#~ msgstr "ההתאמה ה_טובה ביותר"

#~ msgid "Fit Page _Width"
#~ msgstr "התאמה ל_רוחב עמוד"

#~ msgid "Find:"
#~ msgstr "חיפוש:"

#~ msgid "Find Pre_vious"
#~ msgstr "חיפוש ה_קודם"

#~ msgid "Find Ne_xt"
#~ msgstr "חיפוש ה_בא"

#~ msgid "Toolbar Editor"
#~ msgstr "עורך סרגלי הכלים"

#~ msgid "_File"
#~ msgstr "_קובץ"

#~ msgid "_Edit"
#~ msgstr "ע_ריכה"

#~ msgid "_View"
#~ msgstr "_תצוגה"

#~ msgid "_Go"
#~ msgstr "מ_עבר"

#~ msgid "T_oolbar"
#~ msgstr "_סרגל כלים"

#~ msgid "_Contents"
#~ msgstr "תוכן _עניינים"

#~ msgid "_Toolbar"
#~ msgstr "סרגל _כלים"

#~ msgid "Show or hide the toolbar"
#~ msgstr "הצגה או הסתרה של סרגל הכלים"

#~ msgid "_Dual (Even pages left)"
#~ msgstr "_דו־צדדי (עמודים זוגיים מימין)"

#~ msgid "Show two pages at once with even pages on the left"
#~ msgstr "הצגת שני עמודים יחד כאשר העמודים הזוגיים מימין"

#~ msgid "There was an error displaying help"
#~ msgstr "ארעה שגיאה בהצגת העזרה"

#~ msgid "Toggle case sensitive search"
#~ msgstr "בחירה בחיפוש תלוי רשיות"

#~ msgid ""
#~ "Boolean options available: true enables thumbnailing and false disables "
#~ "the creation of new thumbnails"
#~ msgstr ""
#~ "Boolean options available: true enables thumbnailing and false disables "
#~ "the creation of new thumbnails"

#~ msgid "Enable thumbnailing of PDF Documents"
#~ msgstr "Enable thumbnailing of PDF Documents"

#~ msgid "Thumbnail command for PDF Documents"
#~ msgstr "Thumbnail command for PDF Documents"

#~ msgid ""
#~ "Valid command plus arguments for the PDF Document thumbnailer. See "
#~ "Nautilus thumbnailer documentation for more information."
#~ msgstr ""
#~ "Valid command plus arguments for the PDF Document thumbnailer. See "
#~ "Nautilus thumbnailer documentation for more information."

#~ msgid "Converting %s"
#~ msgstr "%s בהליכי המרה"

#~ msgid "%d of %d documents converted"
#~ msgstr "‏%d מתוך %d מסמכים הומרו"

#~ msgid "Converting metadata"
#~ msgstr "נתוני העל מומרים"

#~ msgid ""
#~ "The metadata format used by Evince has changed, and hence it needs to be "
#~ "migrated. If the migration is cancelled the metadata storage will not "
#~ "work."
#~ msgstr ""
#~ "מבנה נתוני העל בו Evince עשה שימוש שונה ולכן יש לייבא אותו. אם תהליך "
#~ "הייבוא יבוטל אחסון נתוני העל לא יעבוד."

#~ msgid "Impress Slides"
#~ msgstr "מצגות Impress"

#~ msgid "No error"
#~ msgstr "ללא שגיאה"

#~ msgid "Not enough memory"
#~ msgstr "אין מספיק זיכרון"

#~ msgid "Cannot find ZIP signature"
#~ msgstr "חתימת ה־zip לא נמצאה"

#~ msgid "Invalid ZIP file"
#~ msgstr "קובץ ה־zip אינו תקין"

#~ msgid "Multi file ZIPs are not supported"
#~ msgstr "קובצי zip מחולקים אינם נתמכים"

#~ msgid "Cannot read data from file"
#~ msgstr "לא ניתן לקרוא מהקובץ"

#~ msgid "Cannot find file in the ZIP archive"
#~ msgstr "לא נמצא קובץ בארכיון ה־zip"

#~ msgid "Unknown error"
#~ msgstr "שגיאה לא ידועה"

#~ msgid "DJVU document has incorrect format"
#~ msgstr "למסמך ה־DJVU תצורה שגויה"

#~ msgid "Print..."
#~ msgstr "הדפס..."

#~ msgid "_Save a Copy..."
#~ msgstr "ש_מור העתק..."