diff options
-rw-r--r-- | menu_commands.c | 2 | ||||
-rw-r--r-- | menu_main.c | 2 | ||||
-rw-r--r-- | menu_searchresults.c | 2 | ||||
-rw-r--r-- | menu_whatson.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/menu_commands.c b/menu_commands.c index 5e2148f..42f186e 100644 --- a/menu_commands.c +++ b/menu_commands.c @@ -112,7 +112,7 @@ eOSState cMenuSearchCommands::Switch(void) return osEnd; else { - Skins.Message(mtInfo, tr("Can't switch channel!")); + Skins.Message(mtInfo, trVDR("Can't switch channel!")); return osContinue; } } diff --git a/menu_main.c b/menu_main.c index 518aa3f..c6e5939 100644 --- a/menu_main.c +++ b/menu_main.c @@ -234,7 +234,7 @@ eOSState cMenuSearchMain::Switch(void) if (channel && cDevice::PrimaryDevice()->SwitchChannel(channel, true)) return osEnd; } - Skins.Message(mtInfo, tr("Can't switch channel!")); + Skins.Message(mtInfo, trVDR("Can't switch channel!")); return osContinue; } diff --git a/menu_searchresults.c b/menu_searchresults.c index 644f227..ee4fcab 100644 --- a/menu_searchresults.c +++ b/menu_searchresults.c @@ -256,7 +256,7 @@ eOSState cMenuSearchResults::Switch(void) if (channel && cDevice::PrimaryDevice()->SwitchChannel(channel, true)) return osEnd; } - Skins.Message(mtInfo, tr("Can't switch channel!")); + Skins.Message(mtInfo, trVDR("Can't switch channel!")); return osContinue; } diff --git a/menu_whatson.c b/menu_whatson.c index ad8ea61..d55479b 100644 --- a/menu_whatson.c +++ b/menu_whatson.c @@ -454,7 +454,7 @@ eOSState cMenuWhatsOnSearch::Switch(void) if (cDevice::PrimaryDevice()->SwitchChannel(item->channel, true)) return osEnd; } - Skins.Message(mtInfo, tr("Can't switch channel!")); + Skins.Message(mtInfo, trVDR("Can't switch channel!")); return osContinue; } |