diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-01-07 10:19:32 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-01-07 10:19:32 +0100 |
commit | 55ffb3583a44564192868e743ca2cec4f56fc344 (patch) | |
tree | a620548af8f8c5b0f21d709ae0647e097dbe8c66 | |
parent | c247c9cc03cf516be1c3c6ac79feee0377f6d227 (diff) | |
download | vdr-plugin-epgsearch-55ffb3583a44564192868e743ca2cec4f56fc344.tar.gz vdr-plugin-epgsearch-55ffb3583a44564192868e743ca2cec4f56fc344.tar.bz2 |
- translation issues
-rw-r--r-- | menu_conflictcheck.c | 2 | ||||
-rw-r--r-- | menu_myedittimer.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/menu_conflictcheck.c b/menu_conflictcheck.c index 40bedc5..c9a1fd5 100644 --- a/menu_conflictcheck.c +++ b/menu_conflictcheck.c @@ -281,7 +281,7 @@ eOSState cMenuConflictCheckDetails::DeleteTimer(cConflictCheckTimerObj* TimerObj cTimer* timer = TimerObj->timer; // Check if this timer is active: if (timer) { - if (Interface->Confirm(tr("Delete timer?"))) { + if (Interface->Confirm(trVDR("Delete timer?"))) { if (timer->Recording()) { if (Interface->Confirm(tr("Timer still recording - really delete?"))) { timer->Skip(); diff --git a/menu_myedittimer.c b/menu_myedittimer.c index fbd3a3b..03524a6 100644 --- a/menu_myedittimer.c +++ b/menu_myedittimer.c @@ -37,7 +37,7 @@ The project's page is at http://winni.vdr-developer.org/epgsearch const char *cMenuMyEditTimer::CheckModes[3]; cMenuMyEditTimer::cMenuMyEditTimer(cTimer *Timer, bool New, const cEvent* Event, const cChannel* forcechannel) -:cOsdMenu(tr("Edit timer"), 14) +:cOsdMenu(trVDR("Edit timer"), 14) { CheckModes[0] = tr("no check"); CheckModes[UPD_CHDUR] = tr("by channel and time"); @@ -236,7 +236,7 @@ eOSState cMenuMyEditTimer::DeleteTimer() { // Check if this timer is active: if (timer) { - if (Interface->Confirm(tr("Delete timer?"))) { + if (Interface->Confirm(trVDR("Delete timer?"))) { if (timer->Recording()) { if (Interface->Confirm(tr("Timer still recording - really delete?"))) { timer->Skip(); |