summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--epgsearch.cpp5
-rw-r--r--epgsearch.h3
-rw-r--r--pages/edit_searchtimer.ecpp13
-rw-r--r--po/ca_ES.po246
-rw-r--r--po/cs_CZ.po246
-rw-r--r--po/da_DK.po246
-rw-r--r--po/de_DE.po308
-rw-r--r--po/el_GR.po246
-rw-r--r--po/es_ES.po246
-rw-r--r--po/et_EE.po246
-rw-r--r--po/fi_FI.po247
-rw-r--r--po/fr_FR.po246
-rw-r--r--po/hr_HR.po246
-rw-r--r--po/hu_HU.po246
-rw-r--r--po/it_IT.po246
-rw-r--r--po/nl_NL.po246
-rw-r--r--po/nn_NO.po246
-rw-r--r--po/pl_PL.po246
-rw-r--r--po/pt_PT.po246
-rw-r--r--po/ro_RO.po246
-rw-r--r--po/ru_RU.po246
-rw-r--r--po/sl_SI.po246
-rw-r--r--po/sv_SE.po246
-rw-r--r--po/tr_TR.po246
24 files changed, 2718 insertions, 2532 deletions
diff --git a/epgsearch.cpp b/epgsearch.cpp
index 94d1722..e905bd9 100644
--- a/epgsearch.cpp
+++ b/epgsearch.cpp
@@ -87,6 +87,7 @@ void SearchTimer::Init()
m_useAsSearchTimerFrom = 0;
m_useAsSearchTimerTil = 0;
m_catvaluesAvoidRepeat = 0;
+ m_ignoreMissingEPGCats = false;
}
SearchTimer::SearchTimer( string const& data )
@@ -146,6 +147,7 @@ SearchTimer::SearchTimer( string const& data )
case 46: m_delAfterDaysOfFirstRec = lexical_cast< int >( *part ); break;
case 47: m_useAsSearchTimerFrom = lexical_cast< time_t >( *part ); break;
case 48: m_useAsSearchTimerTil = lexical_cast< time_t >( *part ); break;
+ case 49: m_ignoreMissingEPGCats = lexical_cast< bool >( *part ); break;
}
}
} catch ( bad_lexical_cast const& ex ) {
@@ -261,7 +263,8 @@ std::string SearchTimer::ToText()
<< m_delAfterCountRecs << ":"
<< m_delAfterDaysOfFirstRec << ":"
<< (long) m_useAsSearchTimerFrom << ":"
- << (long) m_useAsSearchTimerTil;
+ << (long) m_useAsSearchTimerTil << ":"
+ << m_ignoreMissingEPGCats;
return os.str();
}
diff --git a/epgsearch.h b/epgsearch.h
index fd47496..4519490 100644
--- a/epgsearch.h
+++ b/epgsearch.h
@@ -133,6 +133,8 @@ public:
void SetUseAsSearchTimerFrom(std::string const& datestring, std::string const& format);
std::string UseAsSearchTimerTil(std::string const& format);
void SetUseAsSearchTimerTil(std::string const& datestring, std::string const& format);
+ bool IgnoreMissingEPGCats() const { return m_ignoreMissingEPGCats; }
+ void SetIgnoreMissingEPGCats(bool ignoreMissingEPGCats) { m_ignoreMissingEPGCats = ignoreMissingEPGCats; }
private:
int m_id;
@@ -186,6 +188,7 @@ private:
int m_delAfterDaysOfFirstRec;
time_t m_useAsSearchTimerFrom;
time_t m_useAsSearchTimerTil;
+ bool m_ignoreMissingEPGCats;
void ParseChannel( std::string const& data );
void ParseChannelIDs( std::string const& data );
diff --git a/pages/edit_searchtimer.ecpp b/pages/edit_searchtimer.ecpp
index f9b448b..71a2acf 100644
--- a/pages/edit_searchtimer.ecpp
+++ b/pages/edit_searchtimer.ecpp
@@ -81,6 +81,7 @@ using namespace vdrlive;
string blacklistids_internal;
string useassearchtimerfrom;
string useassearchtimerto;
+ bool ignoreMissingEPGCats = false;
</%args>
<%session scope="global">
bool logged_in(false);
@@ -133,6 +134,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
infos.push_back(os.str());
}
searchtimer.SetExtEPGInfo(infos);
+ searchtimer.SetIgnoreMissingEPGCats(ignoreMissingEPGCats);
}
searchtimer.SetUseChannel((SearchTimer::eUseChannel)usechannel);
if (usechannel == SearchTimer::Interval)
@@ -314,6 +316,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
else
extepgvalues.push_back("");
}
+ ignoreMissingEPGCats = searchtimer->IgnoreMissingEPGCats();
avoidrepeats = searchtimer->AvoidRepeats();
allowedrepeats = searchtimer->AllowedRepeats();
repeatswithindays = searchtimer->RepeatsWithinDays();
@@ -577,6 +580,16 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
</tr>
% }
% }
+ <!-- Ignore missing EPG categories -->
+ <tr>
+ <td>
+ <div class="dotted">
+ <input type="checkbox" name="ignoreMissingEPGCats" value="1" <{ CHECKIF(ignoreMissingEPGCats) }> />
+ <label for="ignoreMissingEPGCats"><$ tr("Ignore missing EPG info") $> </label>
+ <& tooltip.help text=(tr("When active this can cause very many timers. So please always first test this search before using it as search timer!")) &>
+ </div>
+ </td>
+ </tr>
</table>
</div>
</td>
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 631aafd..b62cb32 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Jordi Vilà <jvila@tinet.org>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -21,329 +21,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Gravar"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -383,11 +391,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -396,17 +404,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -467,27 +475,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -611,11 +619,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -687,7 +695,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -700,20 +708,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -741,7 +749,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -769,31 +777,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -903,27 +911,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 6e26349..5c07fcc 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Vladimír Bárta <vladimir.barta@k2atmitec.cz>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Nahrát"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -381,11 +389,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -394,17 +402,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -465,27 +473,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -609,11 +617,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -685,7 +693,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -698,20 +706,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -739,7 +747,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -767,31 +775,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -901,27 +909,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/da_DK.po b/po/da_DK.po
index 2466551..ddbb7ff 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Optag"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -381,11 +389,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -394,17 +402,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -465,27 +473,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -609,11 +617,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -685,7 +693,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -698,20 +706,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -739,7 +747,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -767,31 +775,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -901,27 +909,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/de_DE.po b/po/de_DE.po
index c8c2560..a9326fc 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Klaus Schmidinger <kls@cadsoft.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:177 edit_searchtimer.ecpp:178
+#: edit_searchtimer.ecpp:296 edit_searchtimer.ecpp:297 pageelems.ecpp:164
msgid "mm/dd/yyyy"
msgstr "dd.mm.yyyy"
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr "Suchtimer bearbeiten"
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr "Neuen Suchtimer anlegen"
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr "Suchtext zu kurz - trotzdem verwenden?"
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr "Suchbegriff"
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr "Suchmodus"
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr "Ausdruck"
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr "alle Worte"
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr "ein Wort"
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr "exakt"
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
-msgstr "regulärer Ausdruck"
+msgstr "regul�rer Ausdruck"
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr "unscharf"
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr "Toleranz"
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
-msgstr "Groß/klein"
+msgstr "Gro�/klein"
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr "Suche in"
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr "Titel"
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr "Episode"
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr "Beschreibung"
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr "Verw. erweiterte EPG Info"
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: edit_searchtimer.ecpp:588
+msgid "Ignore missing EPG info"
+msgstr "Ignoriere fehlende EPG Info"
+
+#: 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 "Diese Einstellung kann bei Aktivierung sehr viele Timer erzeugen. Also bitte immer zuerst die Suche testen, bevor sie als Suchtimer verwendet wird!"
+
+#: edit_searchtimer.ecpp:602 searchepg.ecpp:358
msgid "Use channel"
msgstr "Verw. Kanal"
-#: edit_searchtimer.ecpp:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr "Bereich"
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr "Kanalgruppe"
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr "ohne PayTV"
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr "von Kanal"
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr "bis Kanal"
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr "Verw. Uhrzeit"
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr "Start nach"
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
-msgstr "Die Zeit, zu der die Sendung frühestens anfangen darf"
+msgstr "Die Zeit, zu der die Sendung fr�hestens anfangen darf"
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr "Start vor"
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
-msgstr "Die Zeit, zu der die Sendung spätestens angefangen haben muss"
+msgstr "Die Zeit, zu der die Sendung sp�testens angefangen haben muss"
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr "Verw. Dauer"
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr "Min. Dauer"
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr "Max. Dauer"
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr "Verw. Wochentag"
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr "Montag"
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr "Dienstag"
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr "Mittwoch"
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr "Donnerstag"
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr "Freitag"
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr "Samstag"
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr "Sonntag"
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr "Verw. Ausschlusslisten"
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr "Auswahl"
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr "alle"
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
-msgstr "In Favoritenmenü verw."
+msgstr "In Favoritenmen� verw."
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr "Als Suchtimer verwenden"
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr "benutzer-definiert"
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr "ab Datum"
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr "bis Datum"
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Aufnehmen"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
-msgstr "Nur ankündigen"
+msgstr "Nur ank�ndigen"
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr "Nur umschalten"
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr "Serienaufnahme"
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr "Verzeichnis"
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
-msgstr "Aufn. nach ... Tagen löschen"
+msgstr "Aufn. nach ... Tagen l�schen"
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr "Behalte ... Aufnahmen"
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr "Pause, wenn ... Aufnahmen exist."
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr "Vermeide Wiederholung"
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr "Erlaubte Wiederholungen"
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr "Nur Wiederh. innerhalb ... Tagen"
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr "Vergleiche Titel"
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr "Vergleiche Untertitel"
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr "Vergleiche Beschreibung"
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr "Vergleiche"
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr "VPS verwenden"
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
-msgstr "Suchtimer automatisch löschen"
+msgstr "Suchtimer automatisch l�schen"
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr "nach ... Aufnahmen"
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr "nach ... Tagen nach erster Aufnahme"
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr "Umschalten ... Minuten vor Start"
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr "Testen"
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr "Speichern"
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr "Abbrechen"
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr "Konnte Timer nicht finden. Evtl. fehlerhafte Anforderung?"
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
-msgstr "Bitte einen Titel für den Timer angeben!"
+msgstr "Bitte einen Titel f�r den Timer angeben!"
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr "Timer bearbeiten"
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr "Neuen Timer anlegen"
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr "Wochentag"
@@ -381,30 +389,30 @@ msgstr ""
msgid "%b %d %y"
msgstr "%d.%m.%y"
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 "%H:%M Uhr"
#: epgsearch.cpp:33
msgid "Required minimum version of epgsearch: "
-msgstr "Benötigte Mindestversion von epgsearch: "
+msgstr "Ben�tigte Mindestversion von epgsearch: "
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr "Alle"
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 "EPGSearch-Version zu alt, bitte updaten!"
@@ -438,7 +446,7 @@ msgstr "Keinen Kanal gefunden!"
#: ibox.ecpp:103 infobox.ecpp:105
msgid "error retrieving status info!"
-msgstr "Fehler: Status nicht verfügbar!"
+msgstr "Fehler: Status nicht verf�gbar!"
#: ibox.ecpp:113 ibox.ecpp:118 ibox.ecpp:123 ibox.ecpp:128 infobox.ecpp:120
#: infobox.ecpp:125 infobox.ecpp:130 infobox.ecpp:135
@@ -465,27 +473,27 @@ msgstr "Benutzer"
msgid "Password"
msgstr "Passwort"
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
-msgstr "Was läuft?"
+msgstr "Was l�uft?"
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr "Suchen"
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr "Suchtimer"
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr "Aufnahmen"
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr "Fernbedienung"
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr "Abmelden"
@@ -511,15 +519,15 @@ msgstr "Pause"
#: pageelems.ecpp:81
msgid "fast rewind"
-msgstr "Suchlauf rückwärts"
+msgstr "Suchlauf r�ckw�rts"
#: pageelems.ecpp:82
msgid "fast forward"
-msgstr "Suchlauf vorwärts"
+msgstr "Suchlauf vorw�rts"
#: pageelems.ecpp:85
msgid "previous channel"
-msgstr "Sender zurück"
+msgstr "Sender zur�ck"
#: pageelems.ecpp:86
msgid "next channel"
@@ -551,7 +559,7 @@ msgstr "Es ist ein Fehler aufgetreten!"
#: pageelems.ecpp:161
msgid "Request succeeded!"
-msgstr "Aktion durchgeführt!"
+msgstr "Aktion durchgef�hrt!"
#: pageelems.ecpp:162
msgid "Request failed!"
@@ -587,7 +595,7 @@ msgstr "Juni"
#: pageelems.ecpp:164
msgid "March"
-msgstr "März"
+msgstr "M�rz"
#: pageelems.ecpp:164
msgid "May"
@@ -609,11 +617,11 @@ msgstr "September"
msgid "Switch to this channel."
msgstr "Zu diesem Kanal umschalten."
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr "Nach Wiederholungen suchen."
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr "Weitere Informationen in der Internet Movie Database."
@@ -651,7 +659,7 @@ msgstr "VDR Version"
#: pageelems.ecpp:322
msgid "Features"
-msgstr "Unterstütze Plugins"
+msgstr "Unterst�tze Plugins"
#: pageelems.ecpp:329
msgid "active"
@@ -667,11 +675,11 @@ msgstr "Homepage"
#: pageelems.ecpp:335
msgid "Bugs and suggestions"
-msgstr "Fehlerberichte und Vorschläge"
+msgstr "Fehlerberichte und Vorschl�ge"
#: pageelems.ecpp:336
msgid "If you encounter any bugs or would like to suggest new features, please use our bugtracker"
-msgstr "Für Fehler oder Verbesserungsvorschläge steht unser Bugtracker bereit"
+msgstr "F�r Fehler oder Verbesserungsvorschl�ge steht unser Bugtracker bereit"
#: recordings.cpp:85
msgid "On archive DVD No."
@@ -685,10 +693,10 @@ msgstr "Liste der Aufnahmen"
msgid "No recordings found"
msgstr "Keine Aufnahmen vorhanden"
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
-msgstr "Für Details klicken."
+msgstr "F�r Details klicken."
#: recordings.ecpp:114 recordings.ecpp:170
msgid "play this recording."
@@ -698,20 +706,20 @@ msgstr "Diese Aufnahme abspielen."
msgid "Interval"
msgstr "Intervall"
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
-msgstr "Konnte Kanal nicht finden oder keine Kanäle verfügbar. Ist die Anfrage korrekt?"
+msgstr "Konnte Kanal nicht finden oder keine Kan�le verf�gbar. Ist die Anfrage korrekt?"
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
-msgstr "Für diesen Kanal liegen keine EPG-Informationen vor"
+msgstr "F�r diesen Kanal liegen keine EPG-Informationen vor"
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr "%A, %d.%m.%Y"
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr "Zeige Programm dieses Kanals"
@@ -739,7 +747,7 @@ msgstr "keine Suchergebnisse"
msgid "Expression"
msgstr "Suchbegriff"
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -757,41 +765,41 @@ msgstr "Suchtimerergebnisse betrachten"
#: searchtimers.ecpp:73
msgid "Delete search timer"
-msgstr "Suchtimer löschen"
+msgstr "Suchtimer l�schen"
#: searchtimers.ecpp:73
msgid "Delete this search timer?"
-msgstr "Diesen Suchtimer löschen?"
+msgstr "Diesen Suchtimer l�schen?"
#: searchtimers.ecpp:90
msgid "Trigger search timer update"
msgstr "Suchtimer-Update starten"
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr "Letzer angezeigter Kanal"
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr "Alle zeigen"
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr "Nein"
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr "Authentifizierung nutzen"
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr "Ja"
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr "Admin Login"
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr "Admin Passwort"
@@ -826,7 +834,7 @@ msgstr "Zeige dynamische VDR Status Box"
#: setup.ecpp:167
msgid "additional fixed times in 'What's on?'"
-msgstr "zusätzliche Zeitpunkte in 'Was läuft?'"
+msgstr "zus�tzliche Zeitpunkte in 'Was l�uft?'"
#: setup.ecpp:169
msgid "Format is HH:MM. Separate multiple times with a semicolon"
@@ -901,33 +909,33 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr "Keine Timer vorhanden"
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr "Timer aktiv/inaktiv schalten"
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
-msgstr "Timer löschen"
+msgstr "Timer l�schen"
#: whats_on.ecpp:58 whats_on.ecpp:71
msgid "What's running at"
-msgstr "Was läuft um"
+msgstr "Was l�uft um"
#: whats_on.ecpp:71
msgid "%a, %b %d"
@@ -947,11 +955,11 @@ msgstr "Jetzt"
#: whats_on.ecpp:204
msgid "Next"
-msgstr "als Nächstes"
+msgstr "als N�chstes"
#: whats_on.ecpp:206
msgid "What's on"
-msgstr "Was läuft"
+msgstr "Was l�uft"
#: whats_on.ecpp:214 whats_on.ecpp:220
msgid "at"
@@ -959,7 +967,7 @@ msgstr "um"
#: whats_on.ecpp:224
msgid "Details view"
-msgstr "Ausführliche Ansicht"
+msgstr "Ausf�hrliche Ansicht"
#: whats_on.ecpp:226
msgid "List view"
diff --git a/po/el_GR.po b/po/el_GR.po
index 01aef8e..9a24aae 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "ÅããñáöÞ"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -381,11 +389,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -394,17 +402,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -465,27 +473,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -609,11 +617,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -685,7 +693,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -698,20 +706,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -739,7 +747,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -767,31 +775,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -901,27 +909,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/es_ES.po b/po/es_ES.po
index b53e1b3..81623bf 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Ruben Nunez Francisco <ruben.nunez@tang-it.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Grabar"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -381,11 +389,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -394,17 +402,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -465,27 +473,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -609,11 +617,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -685,7 +693,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -698,20 +706,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -739,7 +747,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -767,31 +775,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -901,27 +909,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/et_EE.po b/po/et_EE.po
index 524947a..33a7e03 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Salvesta"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -381,11 +389,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -394,17 +402,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -465,27 +473,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -609,11 +617,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -685,7 +693,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -698,20 +706,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -739,7 +747,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -767,31 +775,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -901,27 +909,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/fi_FI.po b/po/fi_FI.po
index d963fc5..1e338e2 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:55+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -22,329 +22,337 @@ msgstr ""
msgid "channels"
msgstr "kanavat"
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr "Kanavien käyttäminen epäonnistui! Yritä myöhemmin uudelleen."
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr "Hakuajastimia ei löydetä! Onko pyyntö oikein kirjoitettu?"
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:177 edit_searchtimer.ecpp:178
+#: edit_searchtimer.ecpp:296 edit_searchtimer.ecpp:297 pageelems.ecpp:164
msgid "mm/dd/yyyy"
msgstr "mm/dd/yyyy"
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr "Muokkaa hakuajastinta"
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr "Luo uusi hakuajastin"
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr "Liian suppea hakuehto - etsitäänkö silti?"
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr "Hakuehto"
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr "Hakutapa"
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr "fraasi"
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr "kaikki sanat"
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr "yksi sana"
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr "täsmällinen"
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr "säännöllinen lauseke"
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr "sumea"
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr "Toleranssi"
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr "Huomioi kirjainkoko"
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr "Hae kentistä"
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr "Otsikko"
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr "Jakson nimi"
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr "Kuvaus"
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr "Käytä laajennettua ohjelmaopasta"
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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 "Käytä kanavaa"
-#: edit_searchtimer.ecpp:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr "kyllä"
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr "kanavaryhmä"
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr "vapaat kanavat"
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr "Kanavasta"
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr "Kanavaan"
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr "Käytä aloitusaikaa"
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr "Aloitusaika aikaisintaan"
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr "Lähetyksen aloitusaika aikaisintaan"
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr "Aloitusaika viimeistään"
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr "Lähetyksen aloitusaika viimeistään"
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr "Käytä kestoaikaa"
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr "Kestoaika vähintään"
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr "Kestoaika enintään"
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr "Käytä viikonpäivää"
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr "Maanantai"
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr "Tiistai"
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr "Keskiviikko"
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr "Torstai"
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr "Perjantai"
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr "Lauantai"
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr "Sunnuntai"
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr "Käytä mustia listoja"
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr "valittu"
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr "kaikki"
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr "Käytä suosikkina"
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr "Käytä hakuajastimena"
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr "käyttäjän määrittelemä"
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr "alkaen"
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr "päättyen"
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Tallenna"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr "Muistutus"
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr "Kanavanvaihto"
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr "Sarjatallennus"
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr "Hakemisto"
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr "Poista tallenteet ... päivän jälkeen"
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr "Säilytä ... tallennetta"
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr "Keskeytä ... tallenteen jälkeen"
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr "Estä uusinnat"
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr "Sallittujen uusintojen lukumäärä"
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr "Vain uusinnat ... päivän sisällä"
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr "Vertaa nimeä"
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr "Vertaa jakson nimeä"
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr "Vertaa kuvausta"
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr "Vertaa"
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr "Käytä VPS-toimintoa"
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr "Poista automaattisesti hakuajastimet"
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr "... tallenteen jälkeen"
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr "... päivän jälkeen ensimmäisestä"
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr "Vaihda ... minuuttia ennen alkua"
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr "Testaa"
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr "Tallenna"
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr "Peru"
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr "Ajastinta ei löydy. Kirjoititko varmasti oikein?"
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr "Aseta nimi ajastimelle!"
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr "Muokkaa ajastinta"
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr "Luo uusi ajastin"
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr "Viikonpäivä"
@@ -384,11 +392,11 @@ msgstr "Ohjelmatietojen haku epäonnistui!"
msgid "%b %d %y"
msgstr "%d.%m.%y"
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 "%H:%M"
@@ -397,17 +405,17 @@ msgstr "%H:%M"
msgid "Required minimum version of epgsearch: "
msgstr "Vaadittava versio EPGSearch-laajennoksesta: "
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr "Kaikki"
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr "Vapaat"
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 "EPGSearch-laajennos pitäisi päivittää!"
@@ -468,27 +476,27 @@ msgstr "Käyttäjä"
msgid "Password"
msgstr "Salasana"
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr "Menossa?"
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr "Etsi"
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr "Hakuajastimet"
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr "Tallenteet"
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr "Kauko-ohjain"
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr "Kirjaudu ulos"
@@ -612,11 +620,11 @@ msgstr "Syyskuu"
msgid "Switch to this channel."
msgstr "Vaihda kanavalle"
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr "Etsi toistuvat"
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr "Hae IMDB:stä"
@@ -688,7 +696,7 @@ msgstr "Tallennelistaus"
msgid "No recordings found"
msgstr "Tallenteita ei löydy"
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr "Napsauta katsoaksesi lisätietoja."
@@ -701,20 +709,20 @@ msgstr "Toista tallenne"
msgid "Interval"
msgstr "Päivitysväli"
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr "Kanavaa ei löydy. Kirjoititko varmasti oikein?"
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr "Tälle kanavalle ei ole saatavilla ohjelmistoa"
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr "%A, %d.%m.%Y"
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr "Näytä kanavan ohjelmisto"
@@ -742,7 +750,7 @@ msgstr "Ei hakutuloksia"
msgid "Expression"
msgstr "Hakutermi"
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr "Kanava"
@@ -770,31 +778,31 @@ msgstr "Poistetaanko tämä hakuajastin?"
msgid "Trigger search timer update"
msgstr "Päivitä hakuajastimet"
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr "Näytä viimeisenä kanava"
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr "ei rajoitusta"
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr "ei"
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr "Käytä autentikointia"
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr "kyllä"
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr "Ylläpidon käyttäjätunnus"
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr "Ylläpidon salasana"
@@ -904,27 +912,27 @@ msgstr "Ajastimia muokataan - yritä uudelleen myöhemmin"
msgid "Timer not defined"
msgstr "Ajastinta ei ole määritelty"
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr "Ajastinta ei ole määritelty"
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr "Aloitus"
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr "Lopetus"
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr "Tiedosto"
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr "Aseta ajastin päälle/pois"
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr "Poista ajastin"
@@ -967,4 +975,3 @@ msgstr "Ruudukkonäkymä"
#: whats_on.ecpp:226
msgid "List view"
msgstr "Listanäkymä"
-
diff --git a/po/fr_FR.po b/po/fr_FR.po
index b855cbd..b839f14 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -22,329 +22,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr "Editer l'expression de recherche"
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr "Créer nouvelle programmation de recherche"
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr "Texte de recherche est trop court - l'utiliser quand même?"
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr "Mot clé"
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr "Mode de recherche"
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr "Phrase"
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr "tout les mots"
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr "un mot"
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr "correspond exactement"
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr "expression réguliere"
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr "imprécis"
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr "Tolérance"
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr "Maj/Minuscule"
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr "Recherche dans"
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr "Titre"
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr "Épisode"
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr "Description"
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr "Utiliser les infos EPG avancées"
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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 "Utiliser la chaîne"
-#: edit_searchtimer.ecpp:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr "intervalle"
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr "Groupe de chaînes"
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr "sans TV-Payante"
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr "de la chaîne"
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr "à la chaîne"
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr "Utiliser l'heure"
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr "Départ après"
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr "L'heure lorsque l'émission doit commencer au plus tôt"
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr "Départ avant"
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr "L'heure lorsque l'émission doit commencer au plus tard"
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr "Durée d'utilisation"
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr "Durée min."
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr "Durée max."
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr "Utiliser les jours de la semaine"
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr "Lundi"
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr "Mardi"
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr "Mercredi"
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr "Jeudi"
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr "Vendredi"
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr "Samedi"
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr "Dimanche"
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr "Utiliser la liste des exclus"
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr "Selection"
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr "tous"
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr "Utiliser dans le menu favoris"
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr "Utiliser la recherche"
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Enregistre"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr "Annoncer seulement le début de l'émission"
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr "Seulement changer de chaine"
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr "Enregistrement de série"
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr "Dossier"
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr "Effacer l'enregistrement après ... jours"
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr "Garder .... les enregistrements"
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr "Pause, lorsque ... l'enregistrement existe."
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr "Eviter les répétitions"
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr "Répétitions autorisées"
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr "Que répétition, pendant ... jours"
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr "Comparer titres"
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr "Comparer les sous-titres"
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr "Comparer les descriptions"
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr "Comparer"
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr "Utiliser VPS"
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr "Changer ... minutes avant le début"
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr "Tester"
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr "Sauvegarde"
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr "Interrompre"
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr "N'a pas pu trouver la programmation. Peut-être vous avez une erreur dans votre requête?"
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr "Veuillez indiquer un titre pour la programmation!"
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr "Editer la programmation"
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr "Nouvelle programmation"
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr "Jour de la semaine"
@@ -384,11 +392,11 @@ msgstr ""
msgid "%b %d %y"
msgstr "%d.%m.%y"
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 "%H:%M"
@@ -397,17 +405,17 @@ msgstr "%H:%M"
msgid "Required minimum version of epgsearch: "
msgstr "Version minimum requise d'epgsearch: "
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr "Tout"
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 "Version EPGSearch périmée! Mettre à jour Svp."
@@ -468,27 +476,27 @@ msgstr "Utilisateur"
msgid "Password"
msgstr "Mot de passe"
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr "Actuellement?"
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr "Recherche"
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr "Recherche"
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr "Enregistrements"
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr "Télécommande"
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr "Fin de la session"
@@ -612,11 +620,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr "Changer vers cette chaîne. "
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr "Recherche de répétitions."
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr "Trouver plus d'information du film dans la base de données film IMDB."
@@ -688,7 +696,7 @@ msgstr "Liste des enregistrements"
msgid "No recordings found"
msgstr "Pas d'enregistrement"
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr "Clic pour voire les détails."
@@ -701,20 +709,20 @@ msgstr "lire cette enregistrement."
msgid "Interval"
msgstr "Intervalle"
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr "N'a pas pu trouver la chaîne. Votre requête est t'elle corrête? "
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr "%A, %d.%m.%Y"
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr "Montrer le programme de la chaîne"
@@ -742,7 +750,7 @@ msgstr "pas de résultat de recherche"
msgid "Expression"
msgstr "Expression de recherche"
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -770,31 +778,31 @@ msgstr "Effacer cette programmation de recherche?"
msgid "Trigger search timer update"
msgstr "Mise à jour des recherches de programmation maintenant"
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr "Dernière chaîne affichée"
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr "Afficher tout"
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr "Non"
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr "Utiliser l'authentification"
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr "Oui"
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr "Ouverture Admin"
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr "Mot de passe de l'Admin"
@@ -904,27 +912,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr "Aucune programmation définie"
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr "Programmation basculer actif/inactif"
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr "Effacer la programmation"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index b636461..8b0a1da 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -20,329 +20,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Snimi"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -382,11 +390,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -395,17 +403,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -466,27 +474,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -610,11 +618,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -686,7 +694,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -699,20 +707,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -740,7 +748,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -768,31 +776,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -902,27 +910,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/hu_HU.po b/po/hu_HU.po
index b363442..d3e54a3 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -20,329 +20,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Felvenni"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -382,11 +390,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -395,17 +403,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -466,27 +474,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -610,11 +618,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -686,7 +694,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -699,20 +707,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -740,7 +748,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -768,31 +776,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -902,27 +910,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/it_IT.po b/po/it_IT.po
index 55d7ddb..191ab96 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Sean Carlos <seanc@libero.it>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -21,329 +21,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr "Il testo da cercare è troppo corto. Continuare lo stesso?"
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr "frase"
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr "tutte le parole"
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr "almeno una parola"
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr "esatta corrispondenza"
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr "espressione regolare"
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr "Mai uscolo/Minuscolo"
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr "Utilizzare informazioni EPG estesa"
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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 "Utilizzare canale"
-#: edit_searchtimer.ecpp:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr "intervallo"
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr "gruppo canali"
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr "solo FTA"
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr "da canale"
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr "a canale"
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr "Utilizzare l'orario"
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr "Comincia dopo"
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr "Comincia prima"
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr "Utilizzare durata"
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr "Durata Minima"
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr "Durata Massima"
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr "Utilizzare giorno della settimana"
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr "Utilizzare come timer di ricerca"
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Registra"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr "Solo annuncio (niente timer)"
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr "Registrazione serie"
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr "Cartella"
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -383,11 +391,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -396,17 +404,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -467,27 +475,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -611,11 +619,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -687,7 +695,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -700,20 +708,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -741,7 +749,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -769,31 +777,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -903,27 +911,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 04b595e..7ea6b71 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -21,329 +21,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr "Zoek tekst tekort - toch gebruiken?"
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr "uitdruk"
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr "alle woorden"
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr "ten minste een woord"
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr "precies passend"
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr "reguliere uitdruk king"
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr "Idem case"
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr "Gebruik uitgebreide EPG info"
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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 "Gebruik kanaal"
-#: edit_searchtimer.ecpp:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr "interval"
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr "kanaal groep"
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr "alleen FTA"
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr "van kanaal"
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr "tot kanaal"
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr "Gebruik tijd"
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr "Start na"
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr "Start voor"
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr "Gebruiks duur"
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr "Min. duur"
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr "Max. duur"
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr "Gebruik dag van de week"
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr "Gebruik als zoek timer"
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Opnemen"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr "Alleen aankondigen (geen timer)"
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr "Serie's opnemen"
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr "Directory"
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -383,11 +391,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -396,17 +404,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -467,27 +475,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -611,11 +619,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -687,7 +695,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -700,20 +708,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -741,7 +749,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -769,31 +777,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -903,27 +911,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/nn_NO.po b/po/nn_NO.po
index 1c0cb29..401b51b 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -20,329 +20,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Ta opp"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -382,11 +390,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -395,17 +403,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -466,27 +474,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -610,11 +618,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -686,7 +694,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -699,20 +707,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -740,7 +748,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -768,31 +776,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -902,27 +910,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/pl_PL.po b/po/pl_PL.po
index 1f8a151..7c89d00 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+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"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Nagraj"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -381,11 +389,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -394,17 +402,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -465,27 +473,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -609,11 +617,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -685,7 +693,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -698,20 +706,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -739,7 +747,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -767,31 +775,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -901,27 +909,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/pt_PT.po b/po/pt_PT.po
index fca5c17..76e5e56 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Paulo Lopes <pmml@netvita.pt>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Gravar"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -381,11 +389,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -394,17 +402,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -465,27 +473,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -609,11 +617,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -685,7 +693,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -698,20 +706,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -739,7 +747,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -767,31 +775,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -901,27 +909,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/ro_RO.po b/po/ro_RO.po
index bdbfc89..a691236 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -20,329 +20,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Înregistr."
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -382,11 +390,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -395,17 +403,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -466,27 +474,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -610,11 +618,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -686,7 +694,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -699,20 +707,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -740,7 +748,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -768,31 +776,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -902,27 +910,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/ru_RU.po b/po/ru_RU.po
index c960cac..117bcab 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "·ÐßØáì"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -381,11 +389,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -394,17 +402,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -465,27 +473,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -609,11 +617,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -685,7 +693,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -698,20 +706,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -739,7 +747,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -767,31 +775,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -901,27 +909,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/sl_SI.po b/po/sl_SI.po
index ceb910b..904edd0 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -20,329 +20,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Posnemi"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -382,11 +390,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -395,17 +403,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -466,27 +474,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -610,11 +618,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -686,7 +694,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -699,20 +707,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -740,7 +748,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -768,31 +776,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -902,27 +910,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 452487d..927d4e4 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Tomas Prybil <tomas@prybil.se>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -20,329 +20,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr "Inspelning"
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -382,11 +390,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -395,17 +403,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -466,27 +474,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -610,11 +618,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -686,7 +694,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -699,20 +707,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -740,7 +748,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -768,31 +776,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -902,27 +910,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""
diff --git a/po/tr_TR.po b/po/tr_TR.po
index f12efeb..3bbfcf8 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR-LIVE 0.2.0\n"
"Report-Msgid-Bugs-To: <cwieninger@gmx.de>\n"
-"POT-Creation-Date: 2007-09-19 19:52+0200\n"
+"POT-Creation-Date: 2007-10-19 18:12+0200\n"
"PO-Revision-Date: 2007-08-19 20:15+0200\n"
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -19,329 +19,337 @@ msgstr ""
msgid "channels"
msgstr ""
-#: channels_widget.ecpp:25 schedule.ecpp:38
+#: channels_widget.ecpp:25 schedule.ecpp:39
msgid "Couldn't aquire access to channels, please try again later."
msgstr ""
-#: edit_searchtimer.ecpp:112 edit_searchtimer.ecpp:229
+#: edit_searchtimer.ecpp:114 edit_searchtimer.ecpp:232
msgid "Couldn't find searchtimer. Maybe you mistyped your request?"
msgstr ""
-#: edit_searchtimer.ecpp:174 edit_searchtimer.ecpp:175
-#: edit_searchtimer.ecpp:293 edit_searchtimer.ecpp:294 pageelems.ecpp:164
+#: 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:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:72
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:72
msgid "Edit search timer"
msgstr ""
-#: edit_searchtimer.ecpp:224 edit_searchtimer.ecpp:356
-#: edit_searchtimer.ecpp:497 searchtimers.ecpp:88
+#: edit_searchtimer.ecpp:227 edit_searchtimer.ecpp:360
+#: edit_searchtimer.ecpp:501 searchtimers.ecpp:88
msgid "New search timer"
msgstr ""
-#: edit_searchtimer.ecpp:381 searchepg.ecpp:173
+#: edit_searchtimer.ecpp:385 searchepg.ecpp:173
msgid "Search text too short - use anyway?"
msgstr ""
-#: edit_searchtimer.ecpp:502 searchepg.ecpp:263
+#: edit_searchtimer.ecpp:506 searchepg.ecpp:263
msgid "Search term"
msgstr ""
-#: edit_searchtimer.ecpp:508 searchepg.ecpp:274
+#: edit_searchtimer.ecpp:512 searchepg.ecpp:274
msgid "Search mode"
msgstr ""
-#: edit_searchtimer.ecpp:512 searchepg.ecpp:278
+#: edit_searchtimer.ecpp:516 searchepg.ecpp:278
msgid "phrase"
msgstr ""
-#: edit_searchtimer.ecpp:513 searchepg.ecpp:279
+#: edit_searchtimer.ecpp:517 searchepg.ecpp:279
msgid "all words"
msgstr ""
-#: edit_searchtimer.ecpp:514 searchepg.ecpp:280
+#: edit_searchtimer.ecpp:518 searchepg.ecpp:280
msgid "at least one word"
msgstr ""
-#: edit_searchtimer.ecpp:515 searchepg.ecpp:281
+#: edit_searchtimer.ecpp:519 searchepg.ecpp:281
msgid "match exactly"
msgstr ""
-#: edit_searchtimer.ecpp:516 searchepg.ecpp:282
+#: edit_searchtimer.ecpp:520 searchepg.ecpp:282
msgid "regular expression"
msgstr ""
-#: edit_searchtimer.ecpp:517 searchepg.ecpp:283
+#: edit_searchtimer.ecpp:521 searchepg.ecpp:283
msgid "fuzzy"
msgstr ""
-#: edit_searchtimer.ecpp:521 searchepg.ecpp:287
+#: edit_searchtimer.ecpp:525 searchepg.ecpp:287
msgid "Tolerance"
msgstr ""
-#: edit_searchtimer.ecpp:529 searchepg.ecpp:295
+#: edit_searchtimer.ecpp:533 searchepg.ecpp:295
msgid "Match case"
msgstr ""
-#: edit_searchtimer.ecpp:535 searchepg.ecpp:301
+#: edit_searchtimer.ecpp:539 searchepg.ecpp:301
msgid "Search in"
msgstr ""
-#: edit_searchtimer.ecpp:539 edit_timer.ecpp:166 searchepg.ecpp:305
+#: edit_searchtimer.ecpp:543 edit_timer.ecpp:167 searchepg.ecpp:305
msgid "Title"
msgstr ""
-#: edit_searchtimer.ecpp:543 searchepg.ecpp:310
+#: edit_searchtimer.ecpp:547 searchepg.ecpp:310
msgid "Episode"
msgstr ""
-#: edit_searchtimer.ecpp:547 searchepg.ecpp:315
+#: edit_searchtimer.ecpp:551 searchepg.ecpp:315
msgid "Description"
msgstr ""
-#: edit_searchtimer.ecpp:555 searchepg.ecpp:323
+#: edit_searchtimer.ecpp:559 searchepg.ecpp:323
msgid "Use extended EPG info"
msgstr ""
-#: edit_searchtimer.ecpp:588 searchepg.ecpp:358
+#: 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:592 searchepg.ecpp:363
+#: edit_searchtimer.ecpp:606 searchepg.ecpp:363
msgid "interval"
msgstr ""
-#: edit_searchtimer.ecpp:593 searchepg.ecpp:364
+#: edit_searchtimer.ecpp:607 searchepg.ecpp:364
msgid "channel group"
msgstr ""
-#: edit_searchtimer.ecpp:594 searchepg.ecpp:365
+#: edit_searchtimer.ecpp:608 searchepg.ecpp:365
msgid "only FTA"
msgstr ""
-#: edit_searchtimer.ecpp:600 searchepg.ecpp:371
+#: edit_searchtimer.ecpp:614 searchepg.ecpp:371
msgid "from channel"
msgstr ""
-#: edit_searchtimer.ecpp:604 searchepg.ecpp:375
+#: edit_searchtimer.ecpp:618 searchepg.ecpp:375
msgid "to channel"
msgstr ""
-#: edit_searchtimer.ecpp:624 searchepg.ecpp:395
+#: edit_searchtimer.ecpp:638 searchepg.ecpp:395
msgid "Use time"
msgstr ""
-#: edit_searchtimer.ecpp:630 searchepg.ecpp:401
+#: edit_searchtimer.ecpp:644 searchepg.ecpp:401
msgid "Start after"
msgstr ""
-#: edit_searchtimer.ecpp:633 searchepg.ecpp:404
+#: edit_searchtimer.ecpp:647 searchepg.ecpp:404
msgid "The time the show may start at the earliest"
msgstr ""
-#: edit_searchtimer.ecpp:637 searchepg.ecpp:408
+#: edit_searchtimer.ecpp:651 searchepg.ecpp:408
msgid "Start before"
msgstr ""
-#: edit_searchtimer.ecpp:640 searchepg.ecpp:411
+#: edit_searchtimer.ecpp:654 searchepg.ecpp:411
msgid "The time the show may start at the latest"
msgstr ""
-#: edit_searchtimer.ecpp:650 searchepg.ecpp:421
+#: edit_searchtimer.ecpp:664 searchepg.ecpp:421
msgid "Use duration"
msgstr ""
-#: edit_searchtimer.ecpp:656 searchepg.ecpp:427
+#: edit_searchtimer.ecpp:670 searchepg.ecpp:427
msgid "Min. duration"
msgstr ""
-#: edit_searchtimer.ecpp:660 searchepg.ecpp:431
+#: edit_searchtimer.ecpp:674 searchepg.ecpp:431
msgid "Max. duration"
msgstr ""
-#: edit_searchtimer.ecpp:670 searchepg.ecpp:441
+#: edit_searchtimer.ecpp:684 searchepg.ecpp:441
msgid "Use day of week"
msgstr ""
-#: edit_searchtimer.ecpp:674 edit_timer.ecpp:180 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:688 edit_timer.ecpp:181 pageelems.ecpp:164
#: searchepg.ecpp:445
msgid "Monday"
msgstr ""
-#: edit_searchtimer.ecpp:675 edit_timer.ecpp:184 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:689 edit_timer.ecpp:185 pageelems.ecpp:164
#: searchepg.ecpp:446
msgid "Tuesday"
msgstr ""
-#: edit_searchtimer.ecpp:676 edit_timer.ecpp:188 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:690 edit_timer.ecpp:189 pageelems.ecpp:164
#: searchepg.ecpp:447
msgid "Wednesday"
msgstr ""
-#: edit_searchtimer.ecpp:677 edit_timer.ecpp:192 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:691 edit_timer.ecpp:193 pageelems.ecpp:164
#: searchepg.ecpp:448
msgid "Thursday"
msgstr ""
-#: edit_searchtimer.ecpp:678 edit_timer.ecpp:196 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:692 edit_timer.ecpp:197 pageelems.ecpp:164
#: searchepg.ecpp:449
msgid "Friday"
msgstr ""
-#: edit_searchtimer.ecpp:679 edit_timer.ecpp:200 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:693 edit_timer.ecpp:201 pageelems.ecpp:164
#: searchepg.ecpp:450
msgid "Saturday"
msgstr ""
-#: edit_searchtimer.ecpp:680 edit_timer.ecpp:204 pageelems.ecpp:164
+#: edit_searchtimer.ecpp:694 edit_timer.ecpp:205 pageelems.ecpp:164
#: searchepg.ecpp:451
msgid "Sunday"
msgstr ""
-#: edit_searchtimer.ecpp:688 searchepg.ecpp:459
+#: edit_searchtimer.ecpp:702 searchepg.ecpp:459
msgid "Use blacklists"
msgstr ""
-#: edit_searchtimer.ecpp:692 searchepg.ecpp:463
+#: edit_searchtimer.ecpp:706 searchepg.ecpp:463
msgid "Selection"
msgstr ""
-#: edit_searchtimer.ecpp:693 searchepg.ecpp:464
+#: edit_searchtimer.ecpp:707 searchepg.ecpp:464
msgid "all"
msgstr ""
-#: edit_searchtimer.ecpp:709
+#: edit_searchtimer.ecpp:723
msgid "Use in favorites menu"
msgstr ""
-#: edit_searchtimer.ecpp:715
+#: edit_searchtimer.ecpp:729
msgid "Use as search timer"
msgstr ""
-#: edit_searchtimer.ecpp:721
+#: edit_searchtimer.ecpp:735
msgid "user defined"
msgstr ""
-#: edit_searchtimer.ecpp:727
+#: edit_searchtimer.ecpp:741
msgid "from date"
msgstr ""
-#: edit_searchtimer.ecpp:731
+#: edit_searchtimer.ecpp:745
msgid "to date"
msgstr ""
-#: edit_searchtimer.ecpp:738
+#: edit_searchtimer.ecpp:752
msgid "Record"
msgstr ""
-#: edit_searchtimer.ecpp:739
+#: edit_searchtimer.ecpp:753
msgid "Announce only"
msgstr ""
-#: edit_searchtimer.ecpp:740
+#: edit_searchtimer.ecpp:754
msgid "Switch only"
msgstr ""
-#: edit_searchtimer.ecpp:746
+#: edit_searchtimer.ecpp:760
msgid "Series recording"
msgstr ""
-#: edit_searchtimer.ecpp:751
+#: edit_searchtimer.ecpp:765
msgid "Directory"
msgstr ""
-#: edit_searchtimer.ecpp:763
+#: edit_searchtimer.ecpp:777
msgid "Delete recordings after ... days"
msgstr ""
-#: edit_searchtimer.ecpp:766
+#: edit_searchtimer.ecpp:780
msgid "Keep ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:772
+#: edit_searchtimer.ecpp:786
msgid "Pause when ... recordings exist"
msgstr ""
-#: edit_searchtimer.ecpp:777
+#: edit_searchtimer.ecpp:791
msgid "Avoid repeats"
msgstr ""
-#: edit_searchtimer.ecpp:782
+#: edit_searchtimer.ecpp:796
msgid "Allowed repeats"
msgstr ""
-#: edit_searchtimer.ecpp:784
+#: edit_searchtimer.ecpp:798
msgid "Only repeats within ... days"
msgstr ""
-#: edit_searchtimer.ecpp:789
+#: edit_searchtimer.ecpp:803
msgid "Compare title"
msgstr ""
-#: edit_searchtimer.ecpp:794
+#: edit_searchtimer.ecpp:808
msgid "Compare subtitle"
msgstr ""
-#: edit_searchtimer.ecpp:799
+#: edit_searchtimer.ecpp:813
msgid "Compare summary"
msgstr ""
-#: edit_searchtimer.ecpp:806
+#: edit_searchtimer.ecpp:820
msgid "Compare"
msgstr ""
-#: edit_searchtimer.ecpp:837 edit_timer.ecpp:220
+#: edit_searchtimer.ecpp:851 edit_timer.ecpp:221
msgid "Use VPS"
msgstr ""
-#: edit_searchtimer.ecpp:841
+#: edit_searchtimer.ecpp:855
msgid "Auto-delete search timer"
msgstr ""
-#: edit_searchtimer.ecpp:846
+#: edit_searchtimer.ecpp:860
msgid "after ... recordings"
msgstr ""
-#: edit_searchtimer.ecpp:852
+#: edit_searchtimer.ecpp:866
msgid "after ... days after first rec."
msgstr ""
-#: edit_searchtimer.ecpp:867
+#: edit_searchtimer.ecpp:881
msgid "Switch ... minutes before start"
msgstr ""
-#: edit_searchtimer.ecpp:878
+#: edit_searchtimer.ecpp:892
msgid "Test"
msgstr ""
-#: edit_searchtimer.ecpp:879 edit_timer.ecpp:237 setup.ecpp:216
+#: edit_searchtimer.ecpp:893 edit_timer.ecpp:238 setup.ecpp:216
msgid "Save"
msgstr ""
-#: edit_searchtimer.ecpp:880 edit_timer.ecpp:238
+#: edit_searchtimer.ecpp:894 edit_timer.ecpp:239
msgid "Cancel"
msgstr ""
-#: edit_timer.ecpp:64 timers.ecpp:36
+#: edit_timer.ecpp:65 timers.ecpp:37
msgid "Couldn't find timer. Maybe you mistyped your request?"
msgstr ""
-#: edit_timer.ecpp:76
+#: edit_timer.ecpp:77
msgid "Please set a title for the timer!"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:114
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:115
msgid "Edit timer"
msgstr ""
-#: edit_timer.ecpp:130 edit_timer.ecpp:143 timers.ecpp:128
+#: edit_timer.ecpp:131 edit_timer.ecpp:144 timers.ecpp:129
msgid "New timer"
msgstr ""
-#: edit_timer.ecpp:176
+#: edit_timer.ecpp:177
msgid "Weekday"
msgstr ""
@@ -381,11 +389,11 @@ msgstr ""
msgid "%b %d %y"
msgstr ""
-#: epginfo.ecpp:119 epgsearch.cpp:311 epgsearch.cpp:317 ibox.ecpp:113
+#: 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:92
-#: schedule.ecpp:93 searchresults.ecpp:66 searchresults.ecpp:67
-#: timers.ecpp:110 timers.ecpp:111 whats_on.ecpp:58 whats_on.ecpp:71
+#: 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 ""
@@ -394,17 +402,17 @@ msgstr ""
msgid "Required minimum version of epgsearch: "
msgstr ""
-#: epgsearch.cpp:272
+#: epgsearch.cpp:275
msgid "All"
msgstr ""
-#: epgsearch.cpp:275
+#: epgsearch.cpp:278
msgid "FTA"
msgstr ""
-#: epgsearch.cpp:377 epgsearch.cpp:390 epgsearch.cpp:430 epgsearch.cpp:442
-#: epgsearch.cpp:499 epgsearch.cpp:523 epgsearch.cpp:548 epgsearch.cpp:586
-#: epgsearch.cpp:597 epgsearch.cpp:633 epgsearch.cpp:642 epgsearch.cpp:651
+#: 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 ""
@@ -465,27 +473,27 @@ msgstr ""
msgid "Password"
msgstr ""
-#: menu.ecpp:35
+#: menu.ecpp:36
msgid "What's on?"
msgstr ""
-#: menu.ecpp:39 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
+#: menu.ecpp:40 searchepg.ecpp:142 searchepg.ecpp:153 searchepg.ecpp:484
msgid "Search"
msgstr ""
-#: menu.ecpp:40 searchtimers.ecpp:25
+#: menu.ecpp:41 searchtimers.ecpp:25
msgid "Searchtimers"
msgstr ""
-#: menu.ecpp:42 recordings.ecpp:28 setup.ecpp:177
+#: menu.ecpp:43 recordings.ecpp:28 setup.ecpp:177
msgid "Recordings"
msgstr ""
-#: menu.ecpp:43 remote.ecpp:21
+#: menu.ecpp:44 remote.ecpp:21
msgid "Remote Control"
msgstr ""
-#: menu.ecpp:49
+#: menu.ecpp:50
msgid "Logout"
msgstr ""
@@ -609,11 +617,11 @@ msgstr ""
msgid "Switch to this channel."
msgstr ""
-#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:129
+#: pageelems.ecpp:230 pageelems.ecpp:241 schedule.ecpp:130
msgid "Search for repeats."
msgstr ""
-#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:130
+#: pageelems.ecpp:234 pageelems.ecpp:242 schedule.ecpp:131
msgid "Find more at the Internet Movie Database."
msgstr ""
@@ -685,7 +693,7 @@ msgstr ""
msgid "No recordings found"
msgstr ""
-#: recordings.ecpp:97 schedule.ecpp:132 searchresults.ecpp:99
+#: recordings.ecpp:97 schedule.ecpp:133 searchresults.ecpp:99
#: whats_on.ecpp:134
msgid "Click to view details."
msgstr ""
@@ -698,20 +706,20 @@ msgstr ""
msgid "Interval"
msgstr ""
-#: schedule.ecpp:53
+#: schedule.ecpp:54
msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?"
msgstr ""
-#: schedule.ecpp:71
+#: schedule.ecpp:72
msgid "No schedules available for this channel"
msgstr ""
-#: schedule.ecpp:94 schedule.ecpp:106 searchresults.ecpp:68
+#: schedule.ecpp:95 schedule.ecpp:107 searchresults.ecpp:68
#: searchresults.ecpp:79
msgid "%A, %b %d %Y"
msgstr ""
-#: schedule.ecpp:147
+#: schedule.ecpp:148
msgid "Show schedule of channel"
msgstr ""
@@ -739,7 +747,7 @@ msgstr ""
msgid "Expression"
msgstr ""
-#: searchtimers.ecpp:56 timers.ecpp:91
+#: searchtimers.ecpp:56 timers.ecpp:92
msgid "Channel"
msgstr ""
@@ -767,31 +775,31 @@ msgstr ""
msgid "Trigger search timer update"
msgstr ""
-#: setup.cpp:252 setup.ecpp:121
+#: setup.cpp:255 setup.ecpp:121
msgid "Last channel to display"
msgstr ""
-#: setup.cpp:252
+#: setup.cpp:255
msgid "No limit"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "No"
msgstr ""
-#: setup.cpp:254 setup.ecpp:125
+#: setup.cpp:257 setup.ecpp:125
msgid "Use authentication"
msgstr ""
-#: setup.cpp:254
+#: setup.cpp:257
msgid "Yes"
msgstr ""
-#: setup.cpp:255 setup.ecpp:131
+#: setup.cpp:258 setup.ecpp:131
msgid "Admin login"
msgstr ""
-#: setup.cpp:256 setup.cpp:290 setup.cpp:291 setup.cpp:297 setup.cpp:298
+#: setup.cpp:259 setup.cpp:293 setup.cpp:294 setup.cpp:300 setup.cpp:301
#: setup.ecpp:135
msgid "Admin password"
msgstr ""
@@ -901,27 +909,27 @@ msgstr ""
msgid "Timer not defined"
msgstr ""
-#: timers.ecpp:57
+#: timers.ecpp:58
msgid "No timer defined"
msgstr ""
-#: timers.ecpp:92
+#: timers.ecpp:93
msgid "Start"
msgstr ""
-#: timers.ecpp:93
+#: timers.ecpp:94
msgid "Stop"
msgstr ""
-#: timers.ecpp:94
+#: timers.ecpp:95
msgid "File"
msgstr ""
-#: timers.ecpp:113
+#: timers.ecpp:114
msgid "Toggle timer active/inactive"
msgstr ""
-#: timers.ecpp:115
+#: timers.ecpp:116
msgid "Delete timer"
msgstr ""