blob: bf86f88bdd452f143f87de85f3c4930cbc5f7f7b (
plain)
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
|
# VDR plugin language source file.
# Copyright (C) 2007 Klaus Schmidinger <kls@cadsoft.de>
# This file is distributed under the same license as the VDR-LIVE package.
# Michael Rakowski <mrak@gmx.de>, 2002
#
msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
"POT-Creation-Date: 2007-10-19 19:14+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
#: channels.ecpp:12
msgid "channels"
msgstr ""
#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
#: edit_searchtimer.ecpp:177 edit_searchtimer.ecpp:178
#: edit_searchtimer.ecpp:296 edit_searchtimer.ecpp:297 pageelems.ecpp:164
msgid "mm/dd/yyyy"
msgstr ""
#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
#: edit_searchtimer.ecpp:588
msgid "Ignore missing EPG info"
msgstr ""
#: edit_searchtimer.ecpp:589
msgid "When active this can cause very many timers. So please always first test this search before using it as search timer!"
msgstr ""
#: edit_searchtimer.ecpp:602 searchepg.ecpp:358
msgid "Use channel"
msgstr ""
#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Nagraj"
#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
#: epg_events.cpp:243
msgid "Epg error"
msgstr ""
#: epg_events.cpp:252
msgid "Wrong channel id"
msgstr ""
#: epg_events.cpp:256
msgid "Channel has no schedule"
msgstr ""
#: epg_events.cpp:260
msgid "Wrong event id"
msgstr ""
#: epginfo.ecpp:47
msgid "Electronic program guide information"
msgstr ""
#: epginfo.ecpp:70
msgid "Couldn't find recording or no recordings available"
msgstr ""
#: epginfo.ecpp:78
msgid "Error aquiring schedules lock"
msgstr ""
#: epginfo.ecpp:82
msgid "Error aquiring schedules"
msgstr ""
#: epginfo.ecpp:118 recordings.ecpp:162
msgid "%b %d %y"
msgstr ""
#: epginfo.ecpp:119 epgsearch.cpp:314 epgsearch.cpp:320 ibox.ecpp:113
#: ibox.ecpp:118 ibox.ecpp:123 ibox.ecpp:128 infobox.ecpp:120 infobox.ecpp:125
#: infobox.ecpp:130 infobox.ecpp:135 recordings.ecpp:163 schedule.ecpp:93
#: schedule.ecpp:94 searchresults.ecpp:66 searchresults.ecpp:67
#: timers.ecpp:111 timers.ecpp:112 whats_on.ecpp:58 whats_on.ecpp:71
#: whats_on.ecpp:148 whats_on.ecpp:171
msgid "%I:%M %p"
msgstr ""
#: epgsearch.cpp:33
msgid "Required minimum version of epgsearch: "
msgstr ""
#: epgsearch.cpp:275
msgid "All"
msgstr ""
#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
#: epgsearch.cpp:380 epgsearch.cpp:393 epgsearch.cpp:433 epgsearch.cpp:445
#: epgsearch.cpp:502 epgsearch.cpp:526 epgsearch.cpp:551 epgsearch.cpp:589
#: epgsearch.cpp:600 epgsearch.cpp:636 epgsearch.cpp:645 epgsearch.cpp:654
msgid "EPGSearch version outdated! Please update."
msgstr ""
#: error.ecpp:72
msgid "Page error"
msgstr ""
#: grab.cpp:49
msgid "Couldn't aquire primary device"
msgstr ""
#: grab.cpp:56
msgid "Couldn't grab image from primary device"
msgstr ""
#: ibox.ecpp:50
msgid "playing recording"
msgstr ""
#: ibox.ecpp:81 infobox.ecpp:71
msgid "no epg info for current event!"
msgstr ""
#: ibox.ecpp:88 infobox.ecpp:82
msgid "no epg info for current channel!"
msgstr ""
#: ibox.ecpp:95 ibox.ecpp:104 infobox.ecpp:93 infobox.ecpp:106
msgid "no current channel!"
msgstr ""
#: ibox.ecpp:103 infobox.ecpp:105
msgid "error retrieving status info!"
msgstr ""
#: ibox.ecpp:113 ibox.ecpp:118 ibox.ecpp:123 ibox.ecpp:128 infobox.ecpp:120
#: infobox.ecpp:125 infobox.ecpp:130 infobox.ecpp:135
msgid "%I:%M:%S %p"
msgstr ""
#: login.ecpp:25
msgid "Wrong username or password"
msgstr ""
#: login.ecpp:39 login.ecpp:59
msgid "Login"
msgstr ""
#: login.ecpp:45
msgid "VDR Live Login"
msgstr ""
#: login.ecpp:52
msgid "User"
msgstr ""
#: login.ecpp:57
msgid "Password"
msgstr ""
#: menu.ecpp:36
msgid "What's on?"
msgstr ""
#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
#: menu.ecpp:43 recordings.ecpp:28
msgid "Recordings"
msgstr ""
#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
#: menu.ecpp:50
msgid "Logout"
msgstr ""
#: pageelems.ecpp:66
msgid "retrieving status ..."
msgstr ""
#: pageelems.ecpp:75
msgid "Toggle updates on/off."
msgstr ""
#: pageelems.ecpp:78
msgid "stop playback"
msgstr ""
#: pageelems.ecpp:79
msgid "resume playback"
msgstr ""
#: pageelems.ecpp:80
msgid "pause playback"
msgstr ""
#: pageelems.ecpp:81
msgid "fast rewind"
msgstr ""
#: pageelems.ecpp:82
msgid "fast forward"
msgstr ""
#: pageelems.ecpp:85
msgid "previous channel"
msgstr ""
#: pageelems.ecpp:86
msgid "next channel"
msgstr ""
#: pageelems.ecpp:94
msgid "No server response!"
msgstr ""
#: pageelems.ecpp:95
msgid "Failed to update infobox!"
msgstr ""
#: pageelems.ecpp:133
msgid "Edit this"
msgstr ""
#: pageelems.ecpp:136
msgid "Record this"
msgstr ""
#: pageelems.ecpp:157
msgid "loading data"
msgstr ""
#: pageelems.ecpp:158
msgid "an error occured!"
msgstr ""
#: pageelems.ecpp:161
msgid "Request succeeded!"
msgstr ""
#: pageelems.ecpp:162
msgid "Request failed!"
msgstr ""
#: pageelems.ecpp:164
msgid "April"
msgstr ""
#: pageelems.ecpp:164
msgid "August"
msgstr ""
#: pageelems.ecpp:164
msgid "December"
msgstr ""
#: pageelems.ecpp:164
msgid "February"
msgstr ""
#: pageelems.ecpp:164
msgid "January"
msgstr ""
#: pageelems.ecpp:164
msgid "July"
msgstr ""
#: pageelems.ecpp:164
msgid "June"
msgstr ""
#: pageelems.ecpp:164
msgid "March"
msgstr ""
#: pageelems.ecpp:164
msgid "May"
msgstr ""
#: pageelems.ecpp:164
msgid "November"
msgstr ""
#: pageelems.ecpp:164
msgid "October"
msgstr ""
#: pageelems.ecpp:164
msgid "September"
msgstr ""
#: pageelems.ecpp:225 pageelems.ecpp:240
msgid "Switch to this channel."
msgstr ""
#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
#: pageelems.ecpp:306
msgid "Authors"
msgstr ""
#: pageelems.ecpp:307
msgid "Project leader"
msgstr ""
#: pageelems.ecpp:309
msgid "Webserver"
msgstr ""
#: pageelems.ecpp:311 pageelems.ecpp:313
msgid "Content"
msgstr ""
#: pageelems.ecpp:315
msgid "Graphics"
msgstr ""
#: pageelems.ecpp:317
msgid "Information"
msgstr ""
#: pageelems.ecpp:318
msgid "LIVE version"
msgstr ""
#: pageelems.ecpp:320
msgid "VDR version"
msgstr ""
#: pageelems.ecpp:322
msgid "Features"
msgstr ""
#: pageelems.ecpp:329
msgid "active"
msgstr ""
#: pageelems.ecpp:331
msgid "required"
msgstr ""
#: pageelems.ecpp:333
msgid "Homepage"
msgstr ""
#: pageelems.ecpp:335
msgid "Bugs and suggestions"
msgstr ""
#: pageelems.ecpp:336
msgid "If you encounter any bugs or would like to suggest new features, please use our bugtracker"
msgstr ""
#: recordings.cpp:85
msgid "On archive DVD No."
msgstr ""
#: recordings.ecpp:42
msgid "List of recordings"
msgstr ""
#: recordings.ecpp:44
msgid "No recordings found"
msgstr ""
#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
#: recordings.ecpp:114 recordings.ecpp:170
msgid "play this recording."
msgstr ""
#: remote.ecpp:130
msgid "Interval"
msgstr ""
#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
#: searchepg.ecpp:258
msgid "Search settings"
msgstr ""
#: searchepg.ecpp:267
msgid "Extended search"
msgstr ""
#: searchepg.ecpp:362 searchepg.ecpp:462
msgid "no"
msgstr ""
#: searchresults.ecpp:27
msgid "Search results"
msgstr ""
#: searchresults.ecpp:57
msgid "No search results"
msgstr ""
#: searchtimers.ecpp:55
msgid "Expression"
msgstr ""
#: searchtimers.ecpp:56
msgid "Channel"
msgstr ""
#: searchtimers.ecpp:57
msgid "Starts between"
msgstr ""
#: searchtimers.ecpp:70
msgid "Toggle search timer actions (in)active"
msgstr ""
#: searchtimers.ecpp:71
msgid "Browse search timer results"
msgstr ""
#: searchtimers.ecpp:73
msgid "Delete search timer"
msgstr ""
#: searchtimers.ecpp:73
msgid "Delete this search timer?"
msgstr ""
#: searchtimers.ecpp:90
msgid "Trigger search timer update"
msgstr ""
#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
#: setup.cpp:255
msgid "No limit"
msgstr ""
#: setup.cpp:257
msgid "No"
msgstr ""
#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
#: setup.cpp:257
msgid "Yes"
msgstr ""
#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
#: setup.ecpp:39
msgid "Please set login and password!"
msgstr ""
#: setup.ecpp:60
msgid "Setup saved."
msgstr ""
#: setup.ecpp:63 setup.ecpp:118
msgid "Setup"
msgstr ""
#: setup.ecpp:139
msgid "Local net (no login required)"
msgstr ""
#: setup.ecpp:147
msgid "Show live logo image"
msgstr ""
#: setup.ecpp:153
msgid "Use ajax technology"
msgstr ""
#: setup.ecpp:159
msgid "Show dynamic VDR information box"
msgstr ""
#: setup.ecpp:167
msgid "additional fixed times in 'What's on?'"
msgstr ""
#: setup.ecpp:169
msgid "Format is HH:MM. Separate multiple times with a semicolon"
msgstr ""
#: setup.ecpp:172
msgid "Start page"
msgstr ""
#: setup.ecpp:182
msgid "Theme"
msgstr ""
#: tasks.cpp:42
msgid "Couldn't find channel or no channels available."
msgstr ""
#: tasks.cpp:47
msgid "Couldn't switch to channel."
msgstr ""
#: tasks.cpp:55 tasks.cpp:83 tasks.cpp:113 tasks.cpp:132 tasks.cpp:162
msgid "Couldn't find recording or no recordings available."
msgstr ""
#: tasks.cpp:70 tasks.cpp:101 tasks.cpp:150 tasks.cpp:180
msgid "Cannot control playback!"
msgstr ""
#: tasks.cpp:89 tasks.cpp:119 tasks.cpp:138 tasks.cpp:168
msgid "Not playing a recording."
msgstr ""
#: tasks.cpp:95 tasks.cpp:144 tasks.cpp:174
msgid "Not playing the same recording as from request."
msgstr ""
#: timers.cpp:86
#, c-format
msgid "%A, %x"
msgstr ""
#: timers.cpp:180 timers.cpp:211
msgid "Error in timer settings"
msgstr ""
#: timers.cpp:186
msgid "Timer already defined"
msgstr ""
#: timers.cpp:199 timers.cpp:223 timers.cpp:246
msgid "Timers are being edited - try again later"
msgstr ""
#: timers.cpp:205 timers.cpp:229 timers.cpp:252
msgid "Timer not defined"
msgstr ""
#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
#: whats_on.ecpp:58 whats_on.ecpp:71
msgid "What's running at"
msgstr ""
#: whats_on.ecpp:60
msgid "What's on next?"
msgstr ""
#: whats_on.ecpp:71
msgid "%a, %b %d"
msgstr ""
#: whats_on.ecpp:141 whats_on.ecpp:184
msgid "View the schedule of this channel"
msgstr ""
#: whats_on.ecpp:156
msgid "more"
msgstr ""
#: whats_on.ecpp:202
msgid "Now"
msgstr ""
#: whats_on.ecpp:204
msgid "Next"
msgstr ""
#: whats_on.ecpp:206
msgid "What's on"
msgstr ""
#: whats_on.ecpp:214 whats_on.ecpp:220
msgid "at"
msgstr ""
#: whats_on.ecpp:224
msgid "Details view"
msgstr ""
#: whats_on.ecpp:226
msgid "List view"
msgstr ""
|