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
|
# translation of totem.HEAD.he.po to Hebrew
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# Gil 'Dolfin' Osher <dolfin@rpg.org.il>, 2003
#
msgid ""
msgstr ""
"Project-Id-Version: totem.HEAD.he\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-07-26 04:49+0200\n"
"PO-Revision-Date: 2003-07-26 12:02+0300\n"
"Last-Translator: Gil 'Dolfin' Osher <dolfin@rpg.org.il>\n"
"Language-Team: Hebrew <he@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.1\n"
#: data/playlist.glade.h:1 src/totem-playlist.c:1240
msgid "Playlist"
msgstr "רשימת שמע"
#: data/playlist.glade.h:2
msgid "Repeat _mode"
msgstr "_מצב חזרה"
#: data/playlist.glade.h:3
msgid "_Add..."
msgstr "_הוסף..."
#: data/playlist.glade.h:4
msgid "_Save..."
msgstr "_שמור..."
#: data/properties.glade.h:1 data/totem.glade.h:1
msgid " "
msgstr " "
#: data/properties.glade.h:2 src/bacon-video-widget-properties.c:183
#: src/totem-properties-page.c:177
msgid "0 frames per second"
msgstr "0 פריימים לשנייה"
#. Bitrate
#: data/properties.glade.h:3 src/bacon-video-widget-properties.c:185
#: src/totem-properties-page.c:179
msgid "0 kbps"
msgstr "0 קסל\"ש"
#. 0 seconds
#: data/properties.glade.h:4 data/totem.glade.h:3
#: src/bacon-video-widget-properties.c:139 src/totem-properties-page.c:133
msgid "0 seconds"
msgstr "0 שניות"
#. Dimensions
#: data/properties.glade.h:5 src/bacon-video-widget-properties.c:178
#: src/totem-properties-page.c:172
msgid "0 x 0"
msgstr "0 x 0"
#: data/properties.glade.h:6
msgid "<b>Audio</b>"
msgstr "<b>שמע</b>"
#: data/properties.glade.h:7
msgid "<b>General</b>"
msgstr "<b>כללי</b>"
#: data/properties.glade.h:8
msgid "<b>Video</b>"
msgstr "<b>וידאו</b>"
#: data/properties.glade.h:9
msgid "Artist:"
msgstr "אמן:"
#: data/properties.glade.h:10
msgid "Bitrate:"
msgstr "קצב:"
#: data/properties.glade.h:11
msgid "Codec:"
msgstr "קידוד:"
#: data/properties.glade.h:12
msgid "Dimensions:"
msgstr "ממדים:"
#: data/properties.glade.h:13
msgid "Duration:"
msgstr "משך:"
#: data/properties.glade.h:14
msgid "Framerate:"
msgstr "קצב פריימים:"
#. Video Codec
#: data/properties.glade.h:15 src/bacon-video-widget-properties.c:180
#: src/bacon-video-widget-properties.c:187
#: src/bacon-video-widget-properties.c:256
#: src/bacon-video-widget-properties.c:288 src/totem-properties-page.c:174
#: src/totem-properties-page.c:181 src/totem-properties-page.c:250
#: src/totem-properties-page.c:282
msgid "N/A"
msgstr "ל/ז"
#: data/properties.glade.h:16 src/bacon-video-widget-properties.c:337
msgid "Properties"
msgstr "מאפיינים"
#: data/properties.glade.h:17
msgid "Title:"
msgstr "כותרת:"
#. Title
#: data/properties.glade.h:18 src/bacon-video-widget-properties.c:170
#: src/bacon-video-widget-properties.c:172
#: src/bacon-video-widget-properties.c:174
#: src/bacon-video-widget-properties.c:205
#: src/bacon-video-widget-properties.c:212
#: src/bacon-video-widget-properties.c:219 src/totem-properties-page.c:164
#: src/totem-properties-page.c:166 src/totem-properties-page.c:168
#: src/totem-properties-page.c:199 src/totem-properties-page.c:206
#: src/totem-properties-page.c:213
msgid "Unknown"
msgstr "לא ידוע"
#: data/properties.glade.h:19
msgid "Year:"
msgstr "שנה:"
#: data/totem-download.glade.h:1
msgid "Connecting to the server"
msgstr "מתחבר לשרת"
#: data/totem-download.glade.h:2
msgid "Done"
msgstr "סיים"
#: data/totem-download.glade.h:3
msgid "Downloading the plug-ins"
msgstr "מוריד את התוספים"
#: data/totem-download.glade.h:4
msgid "Installing the plug-ins"
msgstr "מתקין את התוספים"
#: data/totem-download.glade.h:5
msgid "Plug-ins Download"
msgstr "הורדת תוספים"
#: data/totem.desktop.in.h:1
msgid "Play movies and songs"
msgstr "מנגן סרטים ושירים"
#: data/totem.desktop.in.h:2 src/totem.c:3487
msgid "Totem Movie Player"
msgstr "נגן הסרטים טוטם"
#: data/totem.glade.h:2 data/uri.glade.h:1
msgid "*"
msgstr "*"
#: data/totem.glade.h:4
msgid "1.5 Mbps T1/Intranet/LAN"
msgstr "1.5 מסל\"ש T1/אינטראנט/LAN"
#: data/totem.glade.h:5
msgid "112 Kbps Dual ISDN/DSL"
msgstr "112 קסל\"ש ISDN כפול/DSL"
#: data/totem.glade.h:6
msgid "14.4 Kbps Modem"
msgstr "14.4 קסל\"ש מודם"
#: data/totem.glade.h:7
msgid "19.2 Kbps Modem"
msgstr "19.2 קסל\"ש מודם"
#: data/totem.glade.h:8
msgid "256 Kbps DSL/Cable"
msgstr "256 קסל\"ש DSL/כבלים"
#: data/totem.glade.h:9
msgid "28.8 Kbps Modem"
msgstr "28.8 קסל\"ש מודם"
#: data/totem.glade.h:10
msgid "33.6 Kbps Modem"
msgstr "33.6 קסל\"ש מודם"
#: data/totem.glade.h:11
msgid "34.4 Kbps Modem"
msgstr "34.4 קסל\"ש מודם"
#: data/totem.glade.h:12
msgid "384 Kbps DSL/Cable"
msgstr "384 קסל\"ש DSL/כבלים"
#: data/totem.glade.h:13
msgid "4-channel"
msgstr "4 ערוצים"
#: data/totem.glade.h:14
msgid "5.0-channel"
msgstr "5.0 ערוצים"
#: data/totem.glade.h:15
msgid "5.1-channel"
msgstr "5.1 ערוצים"
#: data/totem.glade.h:16
msgid "512 Kbps DSL/Cable"
msgstr "512 קסל\"ש DSL/כבלים"
#: data/totem.glade.h:17
msgid "56 Kbps Modem/ISDN"
msgstr "56 קסל\"ש מודם/ISDN"
#: data/totem.glade.h:18
msgid "<b>Audio Output</b>"
msgstr "<b>פלט שמע</b>"
#: data/totem.glade.h:19
msgid "<b>Brightness/Contrast</b>"
msgstr "<b>בהירות/ניגוד</b>"
#: data/totem.glade.h:20
msgid "<b>Display</b>"
msgstr "<b>תצוגה</b>"
#: data/totem.glade.h:21
msgid "<b>Networking</b>"
msgstr "<b>רשת</b>"
#: data/totem.glade.h:22
msgid "<b>Optical Device</b>"
msgstr "<b>התקן אופטי</b>"
#: data/totem.glade.h:23
msgid "<b>Preview</b>"
msgstr "<b>תצוגה מקדימה</b>"
#: data/totem.glade.h:24
msgid "<b>Proprietary Plugins</b>"
msgstr "<b>תוספים קניינים</b>"
#: data/totem.glade.h:25
msgid "<b>TV-Out</b>"
msgstr "<b>פלט טלוויזיה</b>"
#: data/totem.glade.h:26
msgid "<b>Visual Effects</b>"
msgstr "<b>אפקטים ויזואליים</b>"
#: data/totem.glade.h:27
msgid "AC3 Passthrough"
msgstr "מעבר AC3"
#: data/totem.glade.h:28
msgid "Always On _Top"
msgstr "תמיד למ_עלה"
#: data/totem.glade.h:29
msgid "Always on top"
msgstr "תמיד למעלה"
#: data/totem.glade.h:30
msgid "Angle menu"
msgstr "תפריט זווית"
#: data/totem.glade.h:31
msgid "Audio"
msgstr "שמע"
#: data/totem.glade.h:32
msgid "Audio menu"
msgstr "תפריט שמע"
#: data/totem.glade.h:33
msgid "Audio output type:"
msgstr "סוג פלט שמע:"
#: data/totem.glade.h:34
msgid "Automatically _resize the window when a new video is loaded"
msgstr "_שנה את גודל החלון באופן אוטומטי כאשר סרט חדש נטען"
#: data/totem.glade.h:35
msgid "Chapter menu"
msgstr "תפריט פרקים"
#: data/totem.glade.h:36
msgid "Co_ntrast:"
msgstr "_ניגוד:"
#: data/totem.glade.h:37
msgid "Connection _speed:"
msgstr "_מהירות חיבור:"
#: data/totem.glade.h:38
msgid "DVD menu"
msgstr "תפריט DVD"
#: data/totem.glade.h:39
msgid "Deinterlace"
msgstr "פירוק"
#: data/totem.glade.h:40
msgid "Display"
msgstr "תצוגה"
#: data/totem.glade.h:41
msgid "Exit Fullscreen"
msgstr "צא ממסך-מלא"
#: data/totem.glade.h:42
msgid "Extra Large"
msgstr "גדול במיוחד"
#: data/totem.glade.h:43
msgid "File name"
msgstr "שם הקובץ"
#: data/totem.glade.h:44
msgid "General"
msgstr "כללי"
#: data/totem.glade.h:45
msgid "Go to the DVD menu"
msgstr "לך לתפריט DVD"
#: data/totem.glade.h:46
msgid "Go to the angle menu"
msgstr "לך לתפריט זווית"
#: data/totem.glade.h:47
msgid "Go to the audio menu"
msgstr "לך לתפריט שמע"
#: data/totem.glade.h:48
msgid "Go to the chapter menu"
msgstr "לך לתפריט פרקים"
#: data/totem.glade.h:49
msgid "Go to the title menu"
msgstr "לך לתפריט כותרת"
#: data/totem.glade.h:50
msgid "Intranet/LAN"
msgstr "אינטראנט/LAN"
#: data/totem.glade.h:51
msgid "Languages"
msgstr "שפות"
#: data/totem.glade.h:52
msgid "Large"
msgstr "גדול"
#: data/totem.glade.h:53 src/totem.c:79
msgid "Next"
msgstr "הבא"
#: data/totem.glade.h:54
msgid "Next Chapter/Movie"
msgstr "הפרק/סרט הבא"
#: data/totem.glade.h:55
msgid "Next chapter or movie"
msgstr "הפרק או הסרט הבא"
#: data/totem.glade.h:56
msgid "No langage selection available"
msgstr "בחירת שפה לא זמינה"
#: data/totem.glade.h:57
msgid "No subtitles selection available"
msgstr "בחירת כתוביות לא זמינות"
#: data/totem.glade.h:58
msgid "Normal"
msgstr "רגיל"
#: data/totem.glade.h:59
msgid "Open _Location..."
msgstr "פתח _מיקום..."
#: data/totem.glade.h:60
msgid "Open a non-local file"
msgstr "פתח קובץ לא מקומי"
#: data/totem.glade.h:61
msgid "Optical device _path:"
msgstr "_נתיב התקן אופטי:"
#: data/totem.glade.h:62
msgid "Play _Audio CD"
msgstr "נגן תקליטור _שמע"
#: data/totem.glade.h:63
msgid "Play _DVD"
msgstr "נגן _DVD"
#: data/totem.glade.h:64
msgid "Play _VCD"
msgstr "נגן _VCD"
#: data/totem.glade.h:65
msgid "Play a Video CD"
msgstr "נגן תקליטור וידאו"
#: data/totem.glade.h:66
msgid "Play a Video DVD"
msgstr "נגן DVD וידאו"
#: data/totem.glade.h:67
msgid "Play an audio CD"
msgstr "נגן תקליטור שמע"
#: data/totem.glade.h:68
msgid "Play or pause the movie"
msgstr "נגן או הפסק את הסרט"
#: data/totem.glade.h:69 src/totem.c:78
msgid "Play/Pause"
msgstr "נגן/הפסק"
#: data/totem.glade.h:70 src/totem.c:80
msgid "Previous"
msgstr "הקודם"
#: data/totem.glade.h:71
msgid "Previous Chapter/Movie"
msgstr "הפרק/סרט הקודם"
#: data/totem.glade.h:72
msgid "Previous chapter or movie"
msgstr "הפרק או הסרט הקודם"
#: data/totem.glade.h:73
msgid "Save Screenshot"
msgstr "שמור תמונת מסך"
#: data/totem.glade.h:74
msgid "Save screenshot to _file:"
msgstr "שמור תמונת מסך ל_קובץ:"
#: data/totem.glade.h:75
msgid "Save screenshot to the _desktop"
msgstr "שמור תמונת מסך ל_שולחן העבודה"
#: data/totem.glade.h:76
msgid "Set the repeat mode"
msgstr "קבע את מצב החזרה"
#: data/totem.glade.h:77
msgid "Show Controls"
msgstr "הצג בקרים"
#: data/totem.glade.h:78
msgid "Show _visual effects when an audio file is played"
msgstr "הצג אפקטים _ויזואליים כאשר שמע מתנגן"
#: data/totem.glade.h:79
msgid "Show controls"
msgstr "הצג בקרים"
#: data/totem.glade.h:80
msgid "Show or hide the playlist"
msgstr "הצג או הסתר את רשימת השמע"
#: data/totem.glade.h:81
msgid "Show/Hide Playlist"
msgstr "הצג/הסתר את רשימת השמע"
#: data/totem.glade.h:82
msgid "Skip backwards"
msgstr "דלג אחורה"
#: data/totem.glade.h:83
msgid "Skip forward"
msgstr "דלג קדימה"
#: data/totem.glade.h:84
msgid "Skip to"
msgstr "דלג ל"
#: data/totem.glade.h:85
msgid "Skip to a specific time"
msgstr "דלג לזמן מסוים"
#: data/totem.glade.h:86
msgid "Small"
msgstr "קטן"
#: data/totem.glade.h:87
msgid "Stereo"
msgstr "סטריאו"
#: data/totem.glade.h:88
msgid "Subtitles"
msgstr "כתוביות"
#: data/totem.glade.h:89
msgid "Switch to double size"
msgstr "החלף לגודל כפול"
#: data/totem.glade.h:90
msgid "Switch to fullscreen"
msgstr "החלף למסך-מלא"
#: data/totem.glade.h:91
msgid "Take _Screenshot"
msgstr "קח _תמונת מסך"
#: data/totem.glade.h:92
msgid "Take a screenshot"
msgstr "קח תמונת מסך"
#: data/totem.glade.h:93
msgid "Time:"
msgstr "זמן:"
#: data/totem.glade.h:94
msgid "Title menu"
msgstr "תפריט כותרת"
#: data/totem.glade.h:95
msgid "Toggle _Aspect Ratio"
msgstr "מתג יחס _רוחב-גובה"
#: data/totem.glade.h:96
msgid "Toggle the aspect ratio"
msgstr "מתג את יחס הרוחב-גובה"
#. Title
#: data/totem.glade.h:97 src/totem.c:680 src/totem.c:707 src/totem.c:1849
msgid "Totem"
msgstr "טוטם"
#: data/totem.glade.h:98
msgid "Totem Preferences"
msgstr "העדפות טוטם"
#: data/totem.glade.h:99
msgid "Visualisation _size:"
msgstr "_גודל המחזה:"
#: data/totem.glade.h:100 src/totem.c:84
msgid "Volume Down"
msgstr "הקטן עוצמה"
#: data/totem.glade.h:101 src/totem.c:83
msgid "Volume Up"
msgstr "הגבר עוצמה"
#: data/totem.glade.h:102
msgid "Volume down"
msgstr "הקטן עוצמה"
#: data/totem.glade.h:103
msgid "Volume up"
msgstr "הגבר עוצמה"
#: data/totem.glade.h:104 data/vanity.glade.h:7
msgid "Zoom _1:1"
msgstr "קירוב _1:1"
#: data/totem.glade.h:105 data/vanity.glade.h:8
msgid "Zoom _2:1"
msgstr "קירוב _2:1"
#: data/totem.glade.h:106
msgid "Zoom to half size"
msgstr "קירוב לחצי גודל"
#: data/totem.glade.h:107
msgid "Zoom to one for one size"
msgstr "קירוב לגודל אחד על אחד"
#: data/totem.glade.h:108
msgid "_Add Proprietary Plugins..."
msgstr "_הוסף תוסף קנייני"
#: data/totem.glade.h:109
msgid "_Brightness:"
msgstr "_בהירות:"
#: data/totem.glade.h:110
msgid "_DXR3 TV-out"
msgstr "יציאת טלוויזיה _DXR3"
#: data/totem.glade.h:111
msgid "_Eject"
msgstr "_הוצא"
#: data/totem.glade.h:112
msgid "_Fullscreen"
msgstr "_מסך-מלא"
#: data/totem.glade.h:113
msgid "_Go"
msgstr "_מעבר"
#: data/totem.glade.h:114
msgid "_Movie"
msgstr "_סרט"
#: data/totem.glade.h:115
msgid "_No TV-out"
msgstr "_אין יציאת טלוויזיה"
#: data/totem.glade.h:116
msgid "_Play / Pause"
msgstr "_נגן / הפסק"
#: data/totem.glade.h:117
msgid "_Repeat Mode"
msgstr "מצב _חזרה"
#: data/totem.glade.h:118
msgid "_Show/Hide Playlist"
msgstr "ה_צג/הסתר את רשימת השמע"
#: data/totem.glade.h:119
msgid "_Skip to..."
msgstr "_דלג ל..."
#: data/totem.glade.h:120
msgid "_Skip to:"
msgstr "_דלג ל:"
#: data/totem.glade.h:121
msgid "_Sound"
msgstr "_קול"
#: data/totem.glade.h:122
msgid "_TV-out mode"
msgstr "מצב יציאת _טלוויזיה"
#: data/totem.glade.h:123
msgid "_Type of visualisation:"
msgstr "_סוג המחזה:"
#: data/totem.glade.h:124 data/vanity.glade.h:10
msgid "_Zoom 1:2"
msgstr "_קירוב 1:2"
#: data/totem.glade.h:125
msgid "seconds"
msgstr "שניות"
#: data/totem.schemas.in.h:1
msgid "Enable deinterlacing"
msgstr "אפשר פירוק"
#: data/totem.schemas.in.h:2
msgid "Name of the visual effects plugins"
msgstr "שמות תוספי האפקטים הויזואליים"
#: data/totem.schemas.in.h:3
msgid "Path to the optical media device"
msgstr "נתיב להתקן מדיה אופטית"
#: data/totem.schemas.in.h:4
msgid "Repeat mode"
msgstr "מצד חזרה"
#: data/totem.schemas.in.h:5
msgid "Resize the canvas automatically on file load"
msgstr "שנה את גודל האריגים באופן אוטומטי בטעינת קובץ"
#: data/totem.schemas.in.h:6
msgid "Show visual effects when no video is displayed"
msgstr "הצג אפקטים ויזואליים כאשר וידאו לא מוצג"
#: data/totem.schemas.in.h:7
msgid "Show visual effects when playing an audio only file"
msgstr "הצג אפקטים ויזואליים כאשר מנוגן קובץ שמע בלבד"
#: data/totem.schemas.in.h:8
msgid "The brightness of the video"
msgstr "בהירות הוידאו"
#: data/totem.schemas.in.h:9
msgid "The contrast of the video"
msgstr "ניגודיות הוידאו"
#: data/totem.schemas.in.h:10
msgid "Type of audio output to use"
msgstr "סוג פלט השמע לשימוש"
#: data/totem.schemas.in.h:11
msgid ""
"Type of audio output to use: \"0\" for stereo, \"1\" for 4-channel output, "
"\"2\" for 5.0 channel output, \"3\" for 5.1 channel output."
msgstr ""
"סוג פלט השמע לשימוש: \"0\" לסטריאו, \"1\" לפלט 4 ערוצים, \"2\" לפלט 5.0 "
"ערוצים, \"3\" לפלט 5.1 ערוצים."
#: data/totem.schemas.in.h:12
msgid "Whether to enable debug for the playback engine"
msgstr "האם לאפשר ניפוי למנוע הניגון החוזר"
#: data/totem.schemas.in.h:13
msgid "X coordinate for the Playlist"
msgstr "קורדינת ה X לרשימת השמע"
#: data/totem.schemas.in.h:14
msgid "Y coordinate for the Playlist"
msgstr "קורדינת ה Y לרשימת השמע"
#: data/uri.glade.h:2
msgid "Enter the _location (URI) of the file you would like to open:"
msgstr "כתוב את ה_מיקום של הקובץ שברצונך לפתוח:"
#: data/uri.glade.h:3
msgid "Open from URI"
msgstr "פתח את הכתובת"
#: data/vanity.desktop.in.h:1
msgid "Vanity Webcam utility"
msgstr "תוכנית שירות למצלמת רשת Vanity"
#: data/vanity.desktop.in.h:2
msgid "View live webcam and upload pictures"
msgstr "צפה במצלמת רשת חיה והעלה תמונות"
#: data/vanity.glade.h:1
msgid "Save File"
msgstr "שמור קובץ"
#: data/vanity.glade.h:2 src/vanity.c:247
msgid "Vanity"
msgstr "Vanity"
#: data/vanity.glade.h:3
msgid "Vanity Preferences"
msgstr "העדפות Vanity"
#: data/vanity.glade.h:4
msgid "Zoom 1:1"
msgstr "קירוב 1:1"
#: data/vanity.glade.h:5
msgid "Zoom 1:2"
msgstr "קירוב 1:2"
#: data/vanity.glade.h:6
msgid "Zoom 2:1"
msgstr "קירוב 2:1"
#: data/vanity.glade.h:9
msgid "_Picture"
msgstr "_תמונה"
#: src/bacon-cd-selection.c:234
msgid "Unnamed CDROM"
msgstr "תקליטור ללא-שם"
#: src/bacon-cd-selection.c:276
msgid "Select the drive"
msgstr "בחר את הכונן"
#: src/bacon-video-widget-gst.c:56
msgid "Totem Video Window"
msgstr "חלון וידאו של טוטם"
#. One hour
#: src/bacon-video-widget-properties.c:108 src/totem-properties-page.c:102
#, c-format
msgid "%d hour"
msgstr "שעה אחת"
#. Multiple hours
#: src/bacon-video-widget-properties.c:111 src/totem-properties-page.c:105
#, c-format
msgid "%d hours"
msgstr "%d שעות"
#. One minute
#: src/bacon-video-widget-properties.c:115 src/totem-properties-page.c:109
#, c-format
msgid "%d minute"
msgstr "דקה אחת"
#. Multiple minutes
#: src/bacon-video-widget-properties.c:118 src/totem-properties-page.c:112
#, c-format
msgid "%d minutes"
msgstr "%d דקות"
#. One second
#: src/bacon-video-widget-properties.c:122 src/totem-properties-page.c:116
#, c-format
msgid "%d second"
msgstr "שניה אחת"
#. Multiple seconds
#: src/bacon-video-widget-properties.c:125 src/totem-properties-page.c:119
#, c-format
msgid "%d seconds"
msgstr "%d שניות"
#. hour:minutes:seconds
#: src/bacon-video-widget-properties.c:130 src/totem-properties-page.c:124
#, c-format
msgid "%s %s %s"
msgstr "%s %s %s"
#. minutes:seconds
#: src/bacon-video-widget-properties.c:133 src/totem-properties-page.c:127
#, c-format
msgid "%s %s"
msgstr "%s %s"
#. seconds
#: src/bacon-video-widget-properties.c:136 src/totem-properties-page.c:130
#, c-format
msgid "%s"
msgstr "%s"
#. Duration
#: src/bacon-video-widget-properties.c:176 src/totem-properties-page.c:170
msgid "0 second"
msgstr "0 שניות"
#: src/bacon-video-widget-properties.c:261 src/totem-properties-page.c:255
#, c-format
msgid "%d frames per second"
msgstr "%d פריימים לשנייה"
#: src/bacon-video-widget-properties.c:279 src/totem-properties-page.c:273
#, c-format
msgid "%d kbps"
msgstr "%d קסל\"ש"
#: src/bacon-video-widget-xine.c:626
#, c-format
msgid ""
"Couldn't load the '%s' audio driver\n"
"Check that the device is not busy."
msgstr ""
"לא ניתן לטעון את מנהל התקן השמע '%s'\n"
"בדוק אם ההתקן לא עסוק."
#: src/bacon-video-widget-xine.c:1141
msgid "The server you are trying to connect to is not known."
msgstr "השרת אליו אתה מנסה להתחבר אינו ידוע."
#: src/bacon-video-widget-xine.c:1144
#, c-format
msgid "The device name you specified (%s) seems to be invalid."
msgstr "שם ההתקן שציינת (%s) נראה לא תקני."
#: src/bacon-video-widget-xine.c:1147
#, c-format
msgid "The server you are trying to connect to (%s) is unreachable."
msgstr "השרת אליו אתה מנסה להתחבר (%s) אינו נגיש."
#: src/bacon-video-widget-xine.c:1150
msgid "The connection to this server was refused."
msgstr "החיבור לשרת סורב."
#: src/bacon-video-widget-xine.c:1153
#, c-format
msgid "The specified movie '%s' could not be found."
msgstr "הסרט המצוין '%s' לא נמצא."
#: src/bacon-video-widget-xine.c:1156
#, c-format
msgid "The movie '%s' could not be read."
msgstr "לא ניתן לקרוא את הסרט '%s'."
#: src/bacon-video-widget-xine.c:1159
#, c-format
msgid "A problem occured while loading a library or a decoder (%s)."
msgstr "ארעה שגיאה בזמן טעינת ספרייה או מקודד (%s)."
#: src/bacon-video-widget-xine.c:1162
msgid ""
"The source seems encrypted, and can't be read. Are you trying to play an "
"encrypted DVD without libdvdcss?"
msgstr "המקור נראה מוצפן, ולא ניתן לקריאה. האם אתה מנסה לנגן DVD מוצפן ללא libdvdcss?"
#: src/bacon-video-widget-xine.c:1245
msgid "There is no plugin to handle this movie"
msgstr "אין תוספים לטיפול בסרט זה"
#: src/bacon-video-widget-xine.c:1249
msgid "This movie is broken and can not be played further"
msgstr "הסרט שבור ולא יכול להתנגן הלאה"
#: src/bacon-video-widget-xine.c:1253
msgid "This location is not a valid one"
msgstr "המיקום אינו תקני"
#: src/bacon-video-widget-xine.c:1257
msgid "This movie could not be opened"
msgstr "הסרט אינו יכול להפתח"
#: src/bacon-video-widget-xine.c:1260
msgid "Generic Error"
msgstr "שגיאה כללית"
#: src/bacon-video-widget-xine.c:1643
#, c-format
msgid ""
"Video codec '%s' is not handled. You might need to install additional "
"plugins to be able to play some types of movies"
msgstr ""
"מקודד הוידאו '%s' לא מטופל. ייתכן ותרצה להתקין מקודדים נוספים כדי שתוכל לנגן "
"סוגים מסוימים של סרטים"
#: src/bacon-video-widget-xine.c:1662
msgid "This is an audio-only file, and there is no audio output available"
msgstr "זהו קובץ שמע בלבד, ואין פלט שמע זמין"
#: src/bacon-video-widget-xine.c:2971
msgid "Movie is not playing"
msgstr "הסרט אינו מתנגן"
#: src/bacon-video-widget-xine.c:2979
msgid "No video to capture"
msgstr "אין וידאו לתפיסה"
#: src/bacon-video-widget-xine.c:2986
msgid "Video codec is not handled"
msgstr "מקודד הוידאו לא מטופל"
#: src/cd-drive.c:347
#, c-format
msgid "Unnamed SCSI CD-ROM (%s)"
msgstr "תקליטור SCSI ללא-שם (%s)"
#: src/cd-drive.c:793
msgid "File image"
msgstr "קובץ תמונה"
#: src/gnome-authn-manager.c:60
msgid "Your HTTP Proxy requires you to log in.\n"
msgstr "מתווך ה HTTP שלך דורש שתתחבר.\n"
#: src/gnome-authn-manager.c:61
#, c-format
msgid ""
"You must log in to access \"%s\".\n"
"\n"
"%s"
msgstr ""
"אתה חייב להתחבר כדי לגשת ל \"%s\".\n"
"\n"
"%s"
#: src/gnome-authn-manager.c:64
msgid "Your password will be transmitted unencrypted."
msgstr "סיסמתך תשלח לא מוצפנת."
#: src/gnome-authn-manager.c:65
msgid "Your password will be transmitted encrypted."
msgstr "סיסמתך תשלח מוצפנת."
#: src/gnome-authn-manager.c:68
msgid "Authentication Required"
msgstr "הזדהות דרושה"
#: src/gnome-password-dialog.c:227
msgid "_Username:"
msgstr "_שם משתמש:"
#: src/gnome-password-dialog.c:234
msgid "_Password:"
msgstr "_סיסמה:"
#: src/gnome-password-dialog.c:261
msgid "Remember this password"
msgstr "שמור סיסמה זו"
#: src/totem-playlist.c:635 src/totem.c:1518
msgid "Select files"
msgstr "בחר קבצים"
#: src/totem-playlist.c:794
msgid "Save playlist"
msgstr "שמור רשימת שמע"
#: src/totem-playlist.c:832
#, c-format
msgid ""
"A file named '%s' already exists.\n"
"Are you sure you want to overwrite it?"
msgstr ""
"קובץ בשם '%s' כבר קיים.\n"
"האם ברצונך להחליפו?"
#: src/totem-playlist.c:992
msgid "Filename"
msgstr "שם הקובץ"
#: src/totem-preferences.c:79
msgid ""
"It seems you are running Totem remotely.\n"
"Are you sure you want to enable the visual effects?"
msgstr ""
"נראה שאתה מפעיל את טוטם מרחוק.\n"
"אתה בטוח שברצונך להפעיל את האפקטים הויזאוליים?"
#: src/totem-preferences.c:131
msgid ""
"The change of this setting will only take effect for the next movie, or when "
"Totem is restarted"
msgstr "שינוי הגדרה זו תשפיע רק מהסרט הבא, או כאשר טוטם יופעל מחדש"
#: src/totem-preferences.c:176
msgid "Switching on or off this type of TV-Out requires a restart to take effect."
msgstr "פתיחה או סגירה של סוג זה של יציאת טלוויזיה דורשים הפעלה מחדש להשפעה."
#: src/totem-preferences.c:336
msgid "Changing the visuals effect type will require a restart to take effect."
msgstr "שינוי סוג האפקטים הויזואליים ידרוש הפעלה מחדש כדי להשפיע."
#: src/totem-properties-page.c:344
msgid "URI currently displayed"
msgstr "הכתובת המוצגת כעת"
#: src/totem-properties-page.c:410
msgid "Video and Audio information properties page"
msgstr "עמוד מאפייני וידאו ושמע"
#: src/totem-statusbar.c:138
msgid "Shadow type"
msgstr "סוג צללית"
#: src/totem-statusbar.c:139
msgid "Style of bevel around the statusbar text"
msgstr "סוג השיפוע סביב טקסט שורת המצב"
#: src/totem-statusbar.c:171 src/totem.c:330
msgid "Stopped"
msgstr "נעצר"
#: src/totem-statusbar.c:180
msgid "0:00 / 0:00"
msgstr "0:00 / 0:00"
#: src/totem-statusbar.c:205
#, c-format
msgid "%s (Streaming)"
msgstr "%s (זורם)"
#: src/totem.c:81
msgid "Seek Forwards"
msgstr "חיפוש קדימה"
#: src/totem.c:82
msgid "Seek Backwards"
msgstr "חיפוש אחורה"
#: src/totem.c:86
msgid "Toggle Fullscreen"
msgstr "מתג מסך-מלא"
#: src/totem.c:87
msgid "Quit"
msgstr "יציאה"
#: src/totem.c:88
msgid "Enqueue"
msgstr ""
#: src/totem.c:89
msgid "Replace"
msgstr "החלף"
#: src/totem.c:225
msgid "Download"
msgstr "הורד"
#: src/totem.c:316
msgid "Playing"
msgstr "מנגן"
#: src/totem.c:323
msgid "Paused"
msgstr "הופסק"
#: src/totem.c:389 src/totem.c:796 src/totem.c:917
#, c-format
msgid ""
"Totem could not play '%s'.\n"
"Reason: %s."
msgstr ""
"טוטם לא יכול לנגן את '%s'.\n"
"הסיבה: %s."
#: src/totem.c:417
msgid ""
"Totem cannot play this type of media because you do not have the appropriate "
"plugins to handle it.\n"
"Install the necessary plugins and restart Totem to be able to play this "
"media."
msgstr ""
"טוטם לא יכל לנגן את סוג המדיה הזה כיוון שאין לך את התוסף המתאים כדי לטפל "
"בו.\n"
"התקן את התוסף הדרוש והפעל מחדש את טוטם כדי שתוכל לנגן מדיה זו."
#: src/totem.c:425
msgid ""
"Totem could not play this media although a plugin is present to handle it.\n"
"You might want to check that a disc is present in the drive and that it is "
"correctly configured."
msgstr ""
"טוטם לא יכל לנגן מדיה זו למרות שישנו תוסף לטיפול בו.\n"
"ייתכן ותרצה לבדוק אם קיים דיסק בכונן ושהוא מוגדר כראוי."
#. Title
#: src/totem.c:656
#, c-format
msgid "%s - Totem"
msgstr "%s - טוטם"
#: src/totem.c:669 src/totem.c:3327
msgid "No file"
msgstr "אין קובץ"
#: src/totem.c:1219
msgid "Buffering"
msgstr "חציצה"
#: src/totem.c:1240 src/totem.c:1262
#, c-format
msgid "Buffering: %d%%"
msgstr "חציצה: %d%%"
#: src/totem.c:1569 src/totem.c:1580
msgid ""
"Couldn't load the 'Open Location...' interface.\n"
"Make sure that Totem is properly installed."
msgstr ""
"לא ניתן לפתוח את ממשק 'פתח מיקום...'.\n"
"ודא כי טוטם מותקן כראוי."
#: src/totem.c:1642
msgid "Totem could not eject the optical media."
msgstr "טוטם לא יכל להוציא את המדיה האופטית."
#: src/totem.c:1820 src/vanity.c:218
msgid "translator_credits"
msgstr ""
"גיל אשר\n"
"dolfin@rpg.org.il\n"
"\n"
"פרויקט linBrew\n"
"http://linbrew.sourceforge.net"
#: src/totem.c:1846
#, c-format
msgid "Movie Player using %s"
msgstr "נגן סרטים בשימוש %s"
#: src/totem.c:1929 src/totem.c:1940 src/vanity.c:306 src/vanity.c:317
#, c-format
msgid "Screenshot%d.png"
msgstr "תמונת-מסך%d.png"
#: src/totem.c:1993
#, c-format
msgid ""
"Totem could not get a screenshot of that film.\n"
"Reason: %s."
msgstr ""
"טוטם לא הצליח לקחת תמונת-מסך של סרט זה.\n"
"סיבה: %s."
#: src/totem.c:2003
msgid ""
"Totem could not get a screenshot of that film.\n"
"Please file a bug, this isn't supposed to happen"
msgstr ""
"טוטם לא הצליח לקחת תמונת-מסך של סרט זה.\n"
"אנא מלא באג, זה לא אמור לקרות"
#: src/totem.c:2029
#, c-format
msgid ""
"File '%s' already exists.\n"
"The screenshot was not saved."
msgstr ""
"הקובץ '%s' כבר קיים.\n"
"תמונת-המסך לא נשמרה."
#: src/totem.c:2040
#, c-format
msgid ""
"There was an error saving the screenshot.\n"
"Details: %s"
msgstr ""
"ארעה שגיאה בשמירת תמונת-המסך.\n"
"פרטים: %s"
#: src/totem.c:2057
msgid ""
"Totem couldn't show the movie properties window.\n"
"Make sure that Totem is correctly installed."
msgstr ""
"טוטם לא יכול להציג את חלון מאפייני הסרט.\n"
"אנא ודא כי טוטם מותקן כראוי."
#: src/totem.c:2126
#, c-format
msgid ""
"Totem could not seek in '%s'.\n"
"Reason: %s."
msgstr ""
"טוטם לא יכל לחפש ב '%s'.\n"
"סיבה: %s."
#: src/totem.c:2824 src/totem.c:2848
msgid "None"
msgstr "ללא"
#: src/totem.c:2828 src/totem.c:2851
msgid "Auto"
msgstr "אוטומטי"
#: src/totem.c:3227
#, c-format
msgid ""
"Totem could not startup:\n"
"%s"
msgstr ""
"טוטם לא יכל לעלות:\n"
"%s"
#: src/totem.c:3228 src/vanity.c:550
msgid "No reason"
msgstr "אין סיבה"
#: src/totem.c:3492
msgid ""
"Could not initialise the thread-safe libraries.\n"
"Verify your system installation. Totem will now exit."
msgstr ""
"לא ניתן לאתחל את ספריות thread-safe.\n"
"ודא את התקנת המערכת שלך. טוטם ייצא עכשיו."
#: src/totem.c:3514
#, c-format
msgid ""
"Totem couln't initialise the \n"
"configuration engine:\n"
"%s"
msgstr ""
"טוטם לא יכול לאתחל את\n"
"מנוע ההגדרות:\n"
"%s"
#: src/totem.c:3528 src/totem.c:3556
msgid ""
"Couldn't load the main interface (totem.glade).\n"
"Make sure that Totem is properly installed."
msgstr ""
"לא ניתן לטעון את הממשק הראשי (totem.glade).\n"
"ודא כי טוטם מותקן כראוי."
#: src/totem.c:3582
msgid ""
"Couldn't load the interface for the playlist.\n"
"Make sure that Totem is properly installed."
msgstr ""
"לא ניתן לטעון ממשק לרשימת השמע.\n"
"ודא כי טוטם מותקן כראוי."
#: src/vanity.c:55
msgid "Debug mode on"
msgstr "מצב ניפוי דולק"
#: src/vanity.c:244
#, c-format
msgid "Webcam utility using %s"
msgstr "תוכנית שירות למצלמת רשת בשימוש %s"
#: src/vanity.c:549
#, c-format
msgid ""
"Vanity could not startup:\n"
"%s"
msgstr ""
"Vanity לא יכל לעלות:\n"
"%s"
#: src/vanity.c:588
#, c-format
msgid ""
"Vanity could not contact the webcam.\n"
"Reason: %s"
msgstr ""
"Vanity לא יכל ליצור קשר עם מצלמת הרשת.\n"
"סיבה: %s"
#: src/vanity.c:604
#, c-format
msgid ""
"Vanity could not play video from the webcam.\n"
"Reason: %s"
msgstr ""
"Vanity לא יכל לנגן וידאו ממצלמת הרשת.\n"
"סיבה: %s"
#: src/vanity.c:640
msgid "Vanity Webcam Utility"
msgstr "תוכנית שירות למצלמת רשת Vanity"
#: src/vanity.c:646
msgid ""
"Could not initialise the thread-safe libraries.\n"
"Verify your system installation. Vanity will now exit."
msgstr ""
"לא ניתן לאתחל את ספריות thread-safe.\n"
"ודא את התקנת המערכת שלך. Vanity יצא עכשיו."
#: src/vanity.c:668
#, c-format
msgid ""
"Vanity couln't initialise the \n"
"configuration engine:\n"
"%s"
msgstr ""
"Vanity לא יכול לאתחל את\n"
"מנוע ההגדרות:\n"
"%s"
#: src/vanity.c:682 src/vanity.c:697
msgid ""
"Couldn't load the main interface (vanity.glade).\n"
"Make sure that Vanity is properly installed."
msgstr ""
"לא ניתן לטעון את הממשק הראשי (vanity.glade).\n"
"ודא כי Vanity מותקן כראוי."
|