diff options
Diffstat (limited to 'i18n.h')
-rw-r--r-- | i18n.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -12,7 +12,14 @@ #include <vdr/i18n.h> +#if VDRVERSNUM < 10507 extern const tI18nPhrase Phrases[]; +#define trNOOP(s) (s) +#endif + +#if APIVERSNUM < 10509 +#define trVDR(s) tr(s) +#endif #endif // __ENIGMA_I18N_H // vim:et:sw=2:ts=2: |