diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2011-09-14 21:06:43 +0300 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2011-09-19 19:02:47 +0200 |
commit | 65e53ce1a6a8724f43de3f5e05840bbe45d955c2 (patch) | |
tree | 780f7ebfae8b40b8ba1bfc7496d5bad40c0f9d5b /conflictcheckonly.c | |
parent | 0aacca600906ef279d259e2d86e4539328b6f5d6 (diff) | |
download | vdr-plugin-epgsearch-65e53ce1a6a8724f43de3f5e05840bbe45d955c2.tar.gz vdr-plugin-epgsearch-65e53ce1a6a8724f43de3f5e05840bbe45d955c2.tar.bz2 |
Remove obsolete VDR < 1.5.7 translation support.
Diffstat (limited to 'conflictcheckonly.c')
-rw-r--r-- | conflictcheckonly.c | 125 |
1 files changed, 0 insertions, 125 deletions
diff --git a/conflictcheckonly.c b/conflictcheckonly.c index 334b536..898192c 100644 --- a/conflictcheckonly.c +++ b/conflictcheckonly.c @@ -24,10 +24,6 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include <string> #include <list> #include <vdr/plugin.h> -#if APIVERSNUM < 10507 -#include "i18n.h" -#define trNOOP(s) (s) -#endif #include "services.h" #include "mainmenushortcut.h" @@ -36,104 +32,6 @@ static const char DESCRIPTION[] = trNOOP("Direct access to epgsearch's conflic static const char MAINMENUENTRY[] = trNOOP("Timer conflicts"); static const char SETUPTEXT[] = trNOOP("Conflict info in main menu"); -#if APIVERSNUM < 10507 -const tI18nPhrase PhrasesLocal[] = { - { - "Direct access to epgsearch's conflict check menu", - "Direkter Zugriff auf epgsearch's Konflikt-Prüfungs-Menü", // Deutsch - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "Suoratoiminto EPGSearch-laajennoksen ajastimien tarkistukselle", - "", // TODO Polski - "Acceso directo al menú de conflictos EPGSearch", // Español - "", // TODO ÅëëçíéêÜ (Greek) - "", // TODO Svenska - "", // TODO Romaneste - "", // TODO Magyar - "", // TODO Català - "", // TODO ÀãááÚØÙ (Russian) - "", // TODO Hrvatski (Croatian) - "", // Eesti - "", // Dansk - "", // Czech - }, - { - "Timer conflicts", - "Timer-Konflikte", - "", // TODO - "", // TODO - "", - "", // TODO - "", - "", // TODO - "Ajastimien päällekkäisyydet", - "", // TODO - "Conflictos de programación", - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // Eesti - "", // Dansk - "", // Czech - }, - { - "next", - "nächster", - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "seuraava", - "", // TODO - "siguiente", - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // Eesti - "", // Dansk - "", // Czech - }, - { - "Conflict info in main menu", - "Konflikt-Info im Hauptmenü", - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "Näytä päällekkäisyydet päävalikossa", - "", // TODO - "Mostrar conflictos en menú principal", - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // TODO - "", // Eesti - "", // Dansk - "", // Czech - }, - {NULL} -}; -#endif - cString DateTime(time_t t) { char buffer[32]; @@ -157,30 +55,18 @@ public: virtual const char *Version() { return VERSION; } -#if APIVERSNUM < 10507 - virtual const char *Description() { - return tr(DESCRIPTION); - } -#else virtual const char *Description() { return I18nTranslate(DESCRIPTION, I18nEpgsearch); } -#endif virtual bool Initialize(); virtual cOsdObject *MainMenuAction() { return GetEpgSearchMenu("Epgsearch-conflictmenu-v1.0"); } protected: -#if APIVERSNUM < 10507 - virtual const char *SetupText() { - return tr(SETUPTEXT); - } -#else virtual const char *SetupText() { return I18nTranslate(SETUPTEXT, I18nEpgsearch); } -#endif virtual const char *MainMenuText(void); }; @@ -195,11 +81,7 @@ cPluginConflictcheckonly::~cPluginConflictcheckonly() const char *cPluginConflictcheckonly::MainMenuText(void) { -#if APIVERSNUM < 10507 - const char *menuText = tr(MAINMENUENTRY); -#else const char *menuText = I18nTranslate(MAINMENUENTRY, I18nEpgsearch); -#endif cPlugin *epgSearchPlugin = cPluginManager::GetPlugin("epgsearch"); if (epgSearchPlugin) { @@ -208,11 +90,7 @@ const char *cPluginConflictcheckonly::MainMenuText(void) if (serviceData->relevantConflicts > 0) { free(_menuText); if (asprintf(&_menuText, "%s (%d, %s: %s)", menuText, serviceData->relevantConflicts, -#if APIVERSNUM < 10507 - tr("next"), *DateTime(serviceData->nextConflict))) -#else I18nTranslate("next", I18nEpgsearch), *DateTime(serviceData->nextConflict))) -#endif menuText = _menuText; } } @@ -223,9 +101,6 @@ const char *cPluginConflictcheckonly::MainMenuText(void) bool cPluginConflictcheckonly::Initialize(void) { -#if APIVERSNUM < 10507 - RegisterI18n(PhrasesLocal); -#endif return cMainMenuShortcut::Initialize(); } |