summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2008-01-08 11:06:55 +0100
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2008-01-08 11:06:55 +0100
commit1eece1a4dfa4cad96b62a346e73d534d66480c2f (patch)
tree61e5ed4b981382f6e3846c6dc2e05016681375ca
parent49c85be1e525aa42f01e5d07ffa5de3977c08137 (diff)
downloadvdr-plugin-epgsearch-1eece1a4dfa4cad96b62a346e73d534d66480c2f.tar.gz
vdr-plugin-epgsearch-1eece1a4dfa4cad96b62a346e73d534d66480c2f.tar.bz2
- translation fixes
-rw-r--r--menu_commands.c2
-rw-r--r--menu_main.c2
-rw-r--r--menu_searchresults.c2
-rw-r--r--menu_whatson.c2
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;
}