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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2002-11-21 22:42-0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: src/audio_out/audio_alsa_out.c:193 src/audio_out/audio_alsa_out.c:827
#: src/audio_out/audio_alsa_out.c:1013 src/audio_out/audio_alsa_out.c:1057
msgid "device used for mono output"
msgstr ""
#: src/audio_out/audio_alsa_out.c:203 src/audio_out/audio_alsa_out.c:1020
msgid "device used for stereo output"
msgstr ""
#: src/audio_out/audio_alsa_out.c:213 src/audio_out/audio_alsa_out.c:1027
msgid "device used for 4-channel output"
msgstr ""
#: src/audio_out/audio_alsa_out.c:223 src/audio_out/audio_alsa_out.c:1034
msgid "device used for 5-channel output"
msgstr ""
#: src/audio_out/audio_alsa_out.c:233 src/audio_out/audio_alsa_out.c:244
#: src/audio_out/audio_alsa_out.c:1041 src/audio_out/audio_alsa_out.c:1048
msgid "device used for 5.1-channel output"
msgstr ""
#: src/audio_out/audio_alsa_out.c:959 src/audio_out/audio_alsa_out.c:1172
msgid "alsa mixer device"
msgstr ""
#: src/audio_out/audio_alsa_out.c:1111 src/audio_out/audio_alsa_out.c:1124
#: src/audio_out/audio_alsa_out.c:1137 src/audio_out/audio_alsa_out.c:1155
msgid "used to inform xine about what the sound card can do"
msgstr ""
#: src/audio_out/audio_alsa_out.c:1205
msgid "xine audio output plugin using alsa-compliant audio devices/drivers"
msgstr ""
#: src/audio_out/audio_esd_out.c:415
msgid "esd audio output latency (adjust a/v sync)"
msgstr ""
#: src/audio_out/audio_esd_out.c:440
msgid "xine audio output plugin using esd"
msgstr ""
#: src/audio_out/audio_oss_out.c:673
msgid "/dev/dsp# device to use for oss output, -1 => auto_detect"
msgstr ""
#: src/audio_out/audio_oss_out.c:741
msgid "A/V sync method to use by OSS, depends on driver/hardware"
msgstr ""
#: src/audio_out/audio_oss_out.c:808
msgid "Adjust a/v sync for OSS softsync"
msgstr ""
#: src/audio_out/audio_oss_out.c:809
msgid "Use this to manually adjust a/v sync if you're using softsync"
msgstr ""
#: src/audio_out/audio_oss_out.c:843
msgid "Enable 4.0 channel analog surround output"
msgstr ""
#: src/audio_out/audio_oss_out.c:854
msgid "Enable 5.0 channel analog surround output"
msgstr ""
#: src/audio_out/audio_oss_out.c:865
msgid "Enable 5.1 channel analog surround output"
msgstr ""
#: src/audio_out/audio_oss_out.c:876
msgid "Enable A52 / AC5 digital audio output via spdif"
msgstr ""
#: src/audio_out/audio_oss_out.c:892
msgid "oss mixer device"
msgstr ""
#: src/audio_out/audio_oss_out.c:966
msgid "xine audio output plugin using oss-compliant audio devices/drivers"
msgstr ""
#: src/audio_out/audio_sun_out.c:878
msgid "device used for audio output with the 'Sun' audio plugin"
msgstr ""
#: src/audio_out/audio_sun_out.c:966
msgid "xine audio output plugin using sun-compliant audio devices/drivers"
msgstr ""
#: src/audio_out/audio_arts_out.c:358
msgid "xine audio output plugin using arts-compliant audio devices/drivers"
msgstr ""
#: src/audio_out/audio_irixal_out.c:385
msgid "irixal audio output maximum gap length in 1/90000s"
msgstr ""
#: src/audio_out/audio_irixal_out.c:411
msgid "xine audio output plugin using IRIX libaudio"
msgstr ""
#: src/demuxers/demux_avi.c:424
msgid "Restoring index..."
msgstr ""
#: src/demuxers/demux_avi.c:654
msgid "demux_avi: avi index is broken\n"
msgstr ""
#: src/demuxers/demux_mpgaudio.c:469
msgid "demux_mpgaudio: no audio driver!\n"
msgstr ""
#: src/demuxers/demux_pes.c:529 src/demuxers/demux_pes.c:612
msgid "valid mrls for pes demuxer"
msgstr ""
#: src/demuxers/demux_pes.c:559 src/demuxers/demux_pes.c:616
msgid "valid mrls ending for pes demuxer"
msgstr ""
#: src/demuxers/demux_qt.c:2120
msgid "demux_qt.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_qt.c:2125
msgid "demux_qt.c: input is block organized, can not handle!\n"
msgstr ""
#: src/demuxers/demux_qt.c:2211
#, c-format
msgid "demux_qt: Apple Quicktime file, %srunning time: %d min, %d sec\n"
msgstr ""
#: src/demuxers/demux_qt.c:2217
#, c-format
msgid "demux_qt: '%c%c%c%c' video @ %dx%d\n"
msgstr ""
#: src/demuxers/demux_qt.c:2226
#, c-format
msgid "demux_qt: '%c%c%c%c' audio @ %d Hz, %d bits, %d %s\n"
msgstr ""
#: src/demuxers/demux_qt.c:2234 src/demuxers/demux_smjpeg.c:500
#: src/demuxers/demux_wav.c:379
msgid "channel"
msgid_plural "channels"
msgstr[0] ""
msgstr[1] ""
#: src/demuxers/demux_ogg.c:416
msgid "ogg: vorbis audio track indicated but no vorbis stream header found.\n"
msgstr ""
#: src/demuxers/demux_cda.c:179
msgid "demux_cda.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_film.c:176
msgid "invalid FILM chunk size\n"
msgstr ""
#: src/demuxers/demux_film.c:259
msgid "unrecognized FILM chunk\n"
msgstr ""
#: src/demuxers/demux_film.c:649
msgid "demux_film.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_film.c:718
#, c-format
msgid "demux_film: FILM version %c%c%c%c, running time: %d min, %d sec\n"
msgstr ""
#: src/demuxers/demux_film.c:727
#, c-format
msgid "demux_film: %c%c%c%c video @ %dx%d, %d Hz playback clock\n"
msgstr ""
#: src/demuxers/demux_film.c:737
#, c-format
msgid "demux_film: %d Hz, %d-bit %s%s PCM audio\n"
msgstr ""
#: src/demuxers/demux_mpeg_block.c:300
msgid ""
"demux_mpeg_block: too many errors, stopping playback. Maybe this stream is "
"scrambled?\n"
msgstr ""
#: src/demuxers/demux_mpeg_block.c:415
#, c-format
msgid ""
"demux_mpeg_block: warning: pes header indicates that this stream may be "
"encrypted (encryption mode %d)\n"
msgstr ""
#: src/demuxers/demux_roq.c:400
msgid "demux_roq.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_roq.c:467
#, c-format
msgid "demux_roq: RoQ file, video is %dx%d, %d frames/sec\n"
msgstr ""
#: src/demuxers/demux_roq.c:471
#, c-format
msgid "demux_roq: 16-bit, 22050 Hz %s RoQ DPCM audio\n"
msgstr ""
#: src/demuxers/demux_fli.c:279
msgid "demux_fli.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_fli.c:347
#, c-format
msgid "demux_fli: FLI type: %04X, speed: %d/%d\n"
msgstr ""
#: src/demuxers/demux_fli.c:351
#, c-format
msgid "demux_fli: %d frames, %dx%d\n"
msgstr ""
#: src/demuxers/demux_fli.c:354
#, c-format
msgid "demux_fli: running time: %d min, %d sec\n"
msgstr ""
#: src/demuxers/demux_idcin.c:454
msgid "demux_idcin.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_idcin.c:521
#, c-format
msgid "demux_idcin: Id CIN file, video is %dx%d, 14 frames/sec\n"
msgstr ""
#: src/demuxers/demux_idcin.c:526
#, c-format
msgid "demux_idcin: %d-bit, %d Hz %s PCM audio\n"
msgstr ""
#: src/demuxers/demux_smjpeg.c:411
msgid "demux_smjpeg.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_smjpeg.c:478
#, c-format
msgid "demux_smjpeg: SMJPEG file, running time: %d min, %d sec\n"
msgstr ""
#: src/demuxers/demux_smjpeg.c:483
#, c-format
msgid "demux_smjpeg: '%c%c%c%c' video @ %dx%d\n"
msgstr ""
#: src/demuxers/demux_smjpeg.c:492
#, c-format
msgid "demux_smjpeg: '%c%c%c%c' audio @ %d Hz, %d bits, %d %s\n"
msgstr ""
#: src/demuxers/demux_wav.c:307
msgid "demux_wav.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_wav.c:374
#, c-format
msgid "demux_wav: format 0x%X audio, %d Hz, %d bits/sample, %d %s\n"
msgstr ""
#: src/demuxers/demux_wav.c:381
#, c-format
msgid "demux_wav: running time = %lld min, %lld sec\n"
msgstr ""
#: src/demuxers/demux_wav.c:385
#, c-format
msgid "demux_wav: average bytes/sec = %d, block alignment = %d\n"
msgstr ""
#: src/demuxers/demux_aiff.c:332
msgid "demux_aiff.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_aiff.c:399
#, c-format
msgid "demux_aiff: %d Hz, %d channels, %d bits, %d frames\n"
msgstr ""
#: src/demuxers/demux_aiff.c:405
#, c-format
msgid "demux_aiff: running time: %d min, %d sec\n"
msgstr ""
#: src/demuxers/demux_snd.c:121
msgid "demux_snd: bad header parameters\n"
msgstr ""
#: src/demuxers/demux_snd.c:156
#, c-format
msgid "demux_snd: unsupported audio type: %d\n"
msgstr ""
#: src/demuxers/demux_snd.c:315
msgid "demux_snd.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_snd.c:383
#, c-format
msgid "demux_snd: %d Hz, %d channels, %d bits, %d frames\n"
msgstr ""
#: src/demuxers/demux_snd.c:389
#, c-format
msgid "demux_snd: running time: %d min, %d sec\n"
msgstr ""
#: src/demuxers/demux_voc.c:126
#, c-format
msgid "unknown VOC block type (0x%02X); please report to xine developers\n"
msgstr ""
#: src/demuxers/demux_voc.c:142
#, c-format
msgid ""
"unknown VOC compression type (0x%02X); please report to xine developers\n"
msgstr ""
#: src/demuxers/demux_voc.c:308
msgid "demux_voc.c: input not seekable, can not handle!\n"
msgstr ""
#: src/demuxers/demux_voc.c:375
#, c-format
msgid "demux_voc: VOC format 0x%X audio, %d Hz, running time: %d min, %d sec\n"
msgstr ""
#: src/demuxers/demux_wc3movie.c:210
#, c-format
msgid "demux_wc3movie: SHOT chunk referenced invalid palette (%d >= %d)\n"
msgstr ""
#. report an unknown chunk and skip it
#: src/demuxers/demux_wc3movie.c:297 src/demuxers/demux_wc3movie.c:502
#, c-format
msgid "demux_wc3movie: encountered unknown chunk: %c%c%c%c\n"
msgstr ""
#: src/demuxers/demux_wc3movie.c:428
msgid "demux_wc3movie: There was a problem while loading palette chunks\n"
msgstr ""
#: src/demuxers/demux_wc3movie.c:666
msgid "demux_mve.c: input not seekable, can not handle!\n"
msgstr ""
#: src/input/input_net.c:102
#, c-format
msgid "input_net: socket(): %s\n"
msgstr ""
#: src/input/input_net.c:111
#, c-format
msgid "input_net: connect(): %s\n"
msgstr ""
#: src/input/input_net.c:126
#, c-format
msgid "input_net: unable to resolve '%s'.\n"
msgstr ""
#: src/input/input_net.c:138
#, c-format
msgid "input_net: unable to connect to '%s'.\n"
msgstr ""
#: src/input/input_net.c:294
msgid "net input plugin as shipped with xine"
msgstr ""
#: src/input/input_rtp.c:157
#, c-format
msgid "socket(): %s.\n"
msgstr ""
#: src/input/input_rtp.c:167
#, c-format
msgid "bind(): %s.\n"
msgstr ""
#: src/input/input_rtp.c:185
#, c-format
msgid "setsockopt(IP_ADD_MEMBERSHIP) failed (multicast kernel?): %s.\n"
msgstr ""
#: src/input/input_rtp.c:205
#, c-format
msgid "unable to resolve '%s'.\n"
msgstr ""
#: src/input/input_rtp.c:218
#, c-format
msgid "unable to connect to '%s'.\n"
msgstr ""
#: src/input/input_rtp.c:241
msgid "OUCH - ran out of buffers\n"
msgstr ""
#: src/input/input_rtp.c:271
#, c-format
msgid "OUCH - dropped input packet %d %d\n"
msgstr ""
#: src/input/input_rtp.c:312
#, c-format
msgid "Opening >%s<\n"
msgstr ""
#: src/input/input_rtp.c:340
#, c-format
msgid "input_rtp: can't create new thread (%s)\n"
msgstr ""
#: src/input/input_rtp.c:443
msgid "rtp input plugin as shipped with xine"
msgstr ""
#: src/input/input_rtp.c:511 src/input/input_rtp.c:516
msgid "unable to allocate input buffer.\n"
msgstr ""
#: src/input/input_stdin_fifo.c:358
msgid "stdin streaming input plugin"
msgstr ""
#: src/input/input_file.c:115
#, c-format
msgid "input_file: read error (%s)\n"
msgstr ""
#: src/input/input_file.c:282
#, c-format
msgid "input_file: trying to open subtitle file '%s'\n"
msgstr ""
#: src/input/input_file.c:500
msgid "file input plugin"
msgstr ""
#: src/input/input_file.c:859
msgid "file browsing start location"
msgstr ""
#: src/input/input_file.c:866
msgid "list hidden files"
msgstr ""
#: src/input/input_vcd.c:902
msgid "Video CD input plugin"
msgstr ""
#: src/input/input_vcd.c:1132
msgid "path to your local vcd device file"
msgstr ""
#: src/input/input_http.c:117
msgid "input_http: failed to open socket\n"
msgstr ""
#: src/input/input_http.c:126
msgid "input_http: cannot connect to host\n"
msgstr ""
#: src/input/input_http.c:141
#, c-format
msgid "input_http: unable to resolve >%s<\n"
msgstr ""
#: src/input/input_http.c:153
#, c-format
msgid "http: unable to connect to >%s<\n"
msgstr ""
#: src/input/input_http.c:440 src/input/input_http.c:779
msgid "input_http: EAGAIN\n"
msgstr ""
#: src/input/input_http.c:443
#, c-format
msgid "input_http: read error %d\n"
msgstr ""
#: src/input/input_http.c:695
#, c-format
msgid "input_http: opening >/%s< on host >%s<"
msgstr ""
#: src/input/input_http.c:699
#, c-format
msgid "%s via proxy >%s<"
msgstr ""
#: src/input/input_http.c:782
msgid "input_http: read error\n"
msgstr ""
#: src/input/input_http.c:814
msgid "input_http: invalid http answer\n"
msgstr ""
#: src/input/input_http.c:825
#, c-format
msgid "input_http: 3xx redirection not implemented: >%d %s<\n"
msgstr ""
#: src/input/input_http.c:832
#, c-format
msgid "input_http: http status not 2xx: >%d %s<\n"
msgstr ""
#: src/input/input_http.c:843
#, c-format
msgid "input_http: content length = %Ld bytes\n"
msgstr ""
#: src/input/input_http.c:849
msgid "input_http: Location redirection not implemented\n"
msgstr ""
#: src/input/input_http.c:919
msgid "http input plugin"
msgstr ""
#: src/input/input_cda.c:435 src/input/input_cda.c:493
#, c-format
msgid "input_cda: fopen(%s) failed: %s\n"
msgstr ""
#: src/input/input_cda.c:582
#, c-format
msgid "input_cda: server '%s:%d' successfuly connected.\n"
msgstr ""
#: src/input/input_cda.c:587
#, c-format
msgid "input_cda: opening server '%s:%d' failed: %s\n"
msgstr ""
#: src/input/input_cda.c:755
#, c-format
msgid "input_cda: ioctl(CDROM_MEDIA_CHANGED) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:822
#, c-format
msgid "input_cda: ioctl(CDROMSUBCHNL) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:957
#, c-format
msgid "input_cda: ioctl(CDIOCSTART) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:963
#, c-format
msgid "input_cda: ioctl(CDROMSTART) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:969
#, c-format
msgid "input_cda: ioctl(CDIOCPLAYMSF) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:975
#, c-format
msgid "input_cda: ioctl(CDROMPLAYMSF) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:997
#, c-format
msgid "input_cda: No rights to open %s.\n"
msgstr ""
#: src/input/input_cda.c:1000
#, c-format
msgid "input_cda: open(%s) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:1094
#, c-format
msgid "input_cda: ioctl(CDROMCLOSETRAY) failed: %s\n"
msgstr ""
#: src/input/input_cda.c:1099 src/input/input_cda.c:1115
#: src/input/input_cda.c:1120
#, c-format
msgid "input_cda: ioctl(CDROMEJECT) failed: %s\n"
msgstr ""
#: src/input/input_cda.c:1105
#, c-format
msgid "input_cda: ioctl(CDROM_DRIVE_STATUS) failed: %s\n"
msgstr ""
#: src/input/input_cda.c:1111
#, c-format
msgid "input_cda: ioctl(CDROMALLOW) failed: %s\n"
msgstr ""
#: src/input/input_cda.c:1151
#, c-format
msgid "input_cda: ioctl(CDIOREADTOCHEADER) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:1159
#, c-format
msgid "input_cda: ioctl(CDROMREADTOCHDR) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:1196
#, c-format
msgid "input_cda: ioctl(CDIOREADTOCENTRYS) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:1219
#, c-format
msgid "input_cda: ioctl(CDROMREADTOCENTRY) failed: %s.\n"
msgstr ""
#: src/input/input_cda.c:1403
msgid "input_cda: malformed MRL. Use cda:/<track #>\n"
msgstr ""
#: src/input/input_cda.c:1409
#, c-format
msgid "input_cda: invalid track %d (valid range: 1 .. %d)\n"
msgstr ""
#: src/input/input_cda.c:1492
#, c-format
msgid "input_cda: error seek to origin %d not implemented!\n"
msgstr ""
#: src/input/input_cda.c:1608
msgid "cd audio plugin as shipped with xine"
msgstr ""
#: src/input/input_cda.c:1834
msgid "path to your local cd audio device file"
msgstr ""
#: src/input/input_cda.c:1839
msgid "cddbp server name"
msgstr ""
#: src/input/input_cda.c:1843
msgid "cddbp server port"
msgstr ""
#: src/input/input_cda.c:1850
msgid "cddbp cache directory"
msgstr ""
#: src/input/net_buf_ctrl.c:55
msgid "Buffering..."
msgstr ""
#: src/libw32dll/w32codec.c:1386 src/libw32dll/w32codec.c:1462
msgid "path to win32 codec dlls"
msgstr ""
#: src/video_out/video_out_aa.c:301
msgid "xine video output plugin using the ascii-art library"
msgstr ""
#: src/video_out/video_out_syncfb.c:818
msgid "syncfb (teletux) device node"
msgstr ""
#: src/video_out/video_out_syncfb.c:990
msgid ""
"xine video output plugin using the SyncFB module for Matrox G200/G400 cards"
msgstr ""
#: src/video_out/video_out_xshm.c:1065 src/video_out/video_out_fb.c:645
msgid "disable all video scaling (faster!)"
msgstr ""
#: src/video_out/video_out_xshm.c:1212
msgid "gamma correction for XShm driver"
msgstr ""
#: src/video_out/video_out_xshm.c:1231
msgid "xine video output plugin using the MIT X shared memory extension"
msgstr ""
#: src/video_out/video_out_xv.c:1202
msgid "Colorkey used for Xv video overlay"
msgstr ""
#: src/video_out/video_out_xv.c:1209
msgid "Make Xv autopaint its colorkey"
msgstr ""
#: src/video_out/video_out_xv.c:1216
msgid "bilinear scaling mode (permedia 2/3)"
msgstr ""
#: src/video_out/video_out_xv.c:1222
msgid "double buffer to sync video to the retrace"
msgstr ""
#: src/video_out/video_out_xv.c:1269
msgid "Software deinterlace method (Key I toggles deinterlacer on/off)"
msgstr ""
#: src/video_out/video_out_xv.c:1285
msgid "xine video output plugin using the MIT X video extension"
msgstr ""
#: src/video_out/video_out_fb.c:577
msgid "framebuffer device"
msgstr ""
#: src/video_out/video_out_fb.c:758
msgid "xine video output plugin using linux framebuffer device"
msgstr ""
#: src/video_out/video_out_sdl.c:538
msgid "xine video output plugin using Simple DirectMedia Layer"
msgstr ""
#: src/video_out/video_out_opengl.c:944
msgid "gamma correction for OpenGL driver"
msgstr ""
#: src/video_out/video_out_opengl.c:961
msgid "xine video output plugin using OpenGL - TNG"
msgstr ""
#: src/video_out/video_out_directfb.c:564
msgid "xine video output plugin using the DirectFB library."
msgstr ""
#: src/video_out/video_out_vidix.c:733
msgid "xine video output plugin using libvidix"
msgstr ""
#: src/xine-engine/tvmode.c:269
msgid "NVidia TV-Out support."
msgstr ""
#: src/xine-engine/video_out.c:330
#, c-format
msgid "%d frames delivered, %d frames skipped, %d frames discarded\n"
msgstr ""
#: src/xine-engine/video_out.c:468
#, c-format
msgid ""
"video_out: throwing away image with pts %lld because it's too old (diff : %"
"lld).\n"
msgstr ""
#: src/xine-engine/video_out.c:1071
#, c-format
msgid "video_out: can't create thread (%s)\n"
msgstr ""
#. FIXME: how does this happen ?
#: src/xine-engine/video_out.c:1074
msgid "video_out: sorry, this should not happen. please restart xine.\n"
msgstr ""
#: src/xine-engine/xine.c:392 src/xine-engine/xine.c:560
msgid "xine: cannot find input plugin for this MRL\n"
msgstr ""
#: src/xine-engine/xine.c:427
#, c-format
msgid "xine: specified demuxer %s failed to start\n"
msgstr ""
#: src/xine-engine/xine.c:584
#, c-format
msgid "xine: couldn't find demux for >%s<\n"
msgstr ""
#: src/xine-engine/xine.c:616
msgid "xine: demuxer failed to start\n"
msgstr ""
#: src/xine-engine/xine.c:705
msgid "xine_play: no demux available\n"
msgstr ""
#: src/xine-engine/xine.c:720
msgid "xine_play: demux failed to start\n"
msgstr ""
#: src/xine-engine/xine.c:1127
msgid "messages"
msgstr ""
#: src/xine-engine/xine.c:1128
msgid "plugin"
msgstr ""
#: src/xine-engine/audio_out.c:1092
msgid "adjust whether resampling is done or not"
msgstr ""
#: src/xine-engine/audio_out.c:1095
msgid "if !=0 always resample to given rate"
msgstr ""
#: src/xine-engine/audio_out.c:1101
msgid "adjust if audio is offsync"
msgstr ""
#: src/xine-engine/audio_out.c:1145
msgid "Audio volume"
msgstr ""
#: src/xine-engine/audio_out.c:1149
msgid "restore volume level at startup"
msgstr ""
#: src/xine-engine/audio_out.c:1150
msgid "if this not set, xine will not touch any mixer settings at startup"
msgstr ""
#: src/xine-engine/osd.c:851
msgid "Palette (foreground-border-background) to use on subtitles"
msgstr ""
#: src/xine-engine/load_plugins.c:237
#, c-format
msgid "load_plugins: unable to stat %s\n"
msgstr ""
#: src/xine-engine/load_plugins.c:267
#, c-format
msgid "load_plugins: plugin %s found\n"
msgstr ""
#: src/xine-engine/load_plugins.c:300
#, c-format
msgid "load_plugins: unknown plugin type %d in %s\n"
msgstr ""
#: src/xine-engine/load_plugins.c:310
#, c-format
msgid ""
"load_plugins: can't get plugin info from %s:\n"
"%s\n"
msgstr ""
#: src/xine-engine/load_plugins.c:343
#, c-format
msgid ""
"load_plugins: cannot (stage 2) open plugin lib %s:\n"
"%s\n"
msgstr ""
#: src/libffmpeg/xine_decoder.c:734
msgid "allow illegal vlc codes in mpeg4 streams"
msgstr ""
#: src/dxr3/video_out_dxr3.c:223
msgid "swap odd and even lines"
msgstr ""
#: src/dxr3/video_out_dxr3.c:226
msgid "Add black bars to correct aspect ratio"
msgstr ""
#: src/dxr3/video_out_dxr3.c:227
msgid "If disabled, will assume source has 4:3 aspect ratio."
msgstr ""
#: src/dxr3/video_out_dxr3.c:231
msgid "dxr3: use alternate play mode for mpeg encoder playback"
msgstr ""
#: src/dxr3/video_out_dxr3.c:232 src/dxr3/dxr3_decode_video.c:254
msgid "Enabling this option will utilise a smoother play mode."
msgstr ""
#: src/dxr3/video_out_dxr3.c:279
msgid "the encoder for non mpeg content"
msgstr ""
#: src/dxr3/video_out_dxr3.c:280
msgid ""
"Content other than mpeg has to pass an additional reencoding stage, because "
"the dxr3 handles mpeg only."
msgstr ""
#: src/dxr3/video_out_dxr3.c:309
msgid "Dxr3: contrast control"
msgstr ""
#: src/dxr3/video_out_dxr3.c:311
msgid "Dxr3: saturation control"
msgstr ""
#: src/dxr3/video_out_dxr3.c:313
msgid "Dxr3: brightness control"
msgstr ""
#: src/dxr3/video_out_dxr3.c:322
msgid "Dxr3: videoout mode (tv or overlay)"
msgstr ""
#: src/dxr3/video_out_dxr3.c:349
msgid "Dxr3: overlay colorkey value"
msgstr ""
#: src/dxr3/video_out_dxr3.c:352
msgid "Dxr3: overlay colorkey range"
msgstr ""
#: src/dxr3/video_out_dxr3.c:353
msgid "A greater value widens the tolerance for the overlay keycolor"
msgstr ""
#: src/dxr3/video_out_dxr3.c:366
msgid "dxr3 preferred tv mode"
msgstr ""
#. data for the device name config entry
#: src/dxr3/dxr3.h:33
msgid "Dxr3: Device Name"
msgstr ""
#: src/dxr3/dxr3.h:34
msgid "The device file of the dxr3 mpeg decoder card control device."
msgstr ""
#: src/dxr3/dxr3_decode_video.c:249
msgid "Try to sync video every frame"
msgstr ""
#: src/dxr3/dxr3_decode_video.c:250
msgid "This is relevant for progressive video only (most PAL films)."
msgstr ""
#: src/dxr3/dxr3_decode_video.c:253
msgid "Use alternate Play mode"
msgstr ""
#: src/dxr3/dxr3_decode_video.c:257
msgid "Correct frame durations in broken streams"
msgstr ""
#: src/dxr3/dxr3_decode_video.c:258
msgid "Enable this for streams with wrong frame durations."
msgstr ""
#: src/dxr3/dxr3_scr.c:80
msgid "Dxr3: SCR plugin priority"
msgstr ""
#: src/dxr3/dxr3_scr.c:81
msgid "Scr priorities greater 5 make the dxr3 xine's master clock."
msgstr ""
#: src/dxr3/dxr3_mpeg_encoders.c:182
msgid "Dxr3enc: rte mpeg output bitrate (kbit/s)"
msgstr ""
#: src/dxr3/dxr3_mpeg_encoders.c:183
msgid ""
"The bitrate the mpeg encoder library librte should use for dxr3's encoding "
"mode"
msgstr ""
#: src/dxr3/dxr3_mpeg_encoders.c:389
msgid "Dxr3enc: fame mpeg encoding quality"
msgstr ""
#: src/dxr3/dxr3_mpeg_encoders.c:390
msgid "The encoding quality of the libfame mpeg encoder library."
msgstr ""
#: src/liba52/xine_decoder.c:494
msgid "a/52 volume control"
msgstr ""
#: src/liba52/xine_decoder.c:497
msgid "enable a/52 dynamic range compensation"
msgstr ""
#: src/liba52/xine_decoder.c:500
msgid "enable audio downmixing to 2.0 surround stereo"
msgstr ""
#: src/libdivx4/xine_decoder.c:563
msgid "Relative path to libdivxdecore.so to open"
msgstr ""
#: src/libdivx4/xine_decoder.c:588
msgid "the postprocessing level, 0 = none and fast, 6 = all and slow"
msgstr ""
#: src/libdivx4/xine_decoder.c:591
msgid "use divx4 plugin for msmpeg4v3 streams"
msgstr ""
#: src/libdivx4/xine_decoder.c:596
msgid "Divx version to check for (set to 0 (default) if unsure)"
msgstr ""
#: src/xine-utils/memcpy.c:447
msgid "Memcopy method to use in xine for large data chunks."
msgstr ""
#: src/libsputext/xine_decoder.c:1062
msgid "font for avi subtitles"
msgstr ""
#: src/libsputext/xine_decoder.c:1068
msgid "subtitle size (relative window size)"
msgstr ""
#: src/libsputext/xine_decoder.c:1073
msgid "source encoding of subtitles"
msgstr ""
#: src/libsputext/xine_decoder.c:1078
msgid "target encoding for subtitles (have to match font encoding)"
msgstr ""
#: src/libsputext/xine_decoder.c:1083
msgid "subtitle time offset in 1/100 sec"
msgstr ""
#: src/libspucc/xine_decoder.c:219
msgid "Enable closed captions in MPEG-2 streams"
msgstr ""
#: src/libspucc/xine_decoder.c:226
msgid "Closed-captioning foreground/background scheme"
msgstr ""
#: src/libspucc/xine_decoder.c:232
msgid "Standard closed captioning font"
msgstr ""
#: src/libspucc/xine_decoder.c:238
msgid "Italic closed captioning font"
msgstr ""
#: src/libspucc/xine_decoder.c:244
msgid "Closed captioning font size"
msgstr ""
#: src/libspucc/xine_decoder.c:249
msgid "Center-adjust closed captions"
msgstr ""
#: src/libxvid/xine_decoder.c:220
#, c-format
msgid ""
"xvid: there is mismatch between API used by currently installed XviD\n"
"xvid: library (%d.%d) and library used to compile this plugin (%d.%d).\n"
"xvid: Compiling this plugin against current XviD library should help.\n"
msgstr ""
#: src/libxinevdec/fli.c:356
#, c-format
msgid ""
"FLI: in chunk FLI_COPY : source data (%d bytes) bigger than image, skipping "
"chunk\n"
msgstr ""
#: src/libxinevdec/fli.c:372
#, c-format
msgid "FLI: Unrecognized chunk type: %d\n"
msgstr ""
#: src/libxinevdec/fli.c:400
#, c-format
msgid ""
" warning: processed FLI chunk where chunk size = %d\n"
" and final chunk ptr = %d\n"
msgstr ""
#. *************************************************************************
#. * MS RLE specific decode functions
#. ************************************************************************
#: src/libxinevdec/msrle.c:75
msgid "MS RLE: stream ptr just went out of bounds (1)\n"
msgstr ""
#: src/libxinevdec/msrle.c:115
msgid "MS RLE: frame ptr just went out of bounds (1)\n"
msgstr ""
#: src/libxinevdec/msrle.c:122
msgid "MS RLE: stream ptr just went out of bounds (2)\n"
msgstr ""
#: src/libxinevdec/msrle.c:145
msgid "MS RLE: frame ptr just went out of bounds (2)\n"
msgstr ""
#: src/libxinevdec/msrle.c:166
#, c-format
msgid "MS RLE: ended frame decode with bytes left over (%d < %d)\n"
msgstr ""
|