diff options
author | Thomas Günther <tom@toms-cafe.de> | 2007-09-23 15:18:41 +0200 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2007-09-23 15:18:41 +0200 |
commit | 473eff38fb6c5ef87b218b3a66c1789e0be784e0 (patch) | |
tree | 841c7607ef22fbbdaf90800d9a4325dd832a4a06 /i18n.h | |
parent | 135a8c9447ca19c4d609373b228bd096a2ae2ab8 (diff) | |
download | vdr-plugin-spider-473eff38fb6c5ef87b218b3a66c1789e0be784e0.tar.gz vdr-plugin-spider-473eff38fb6c5ef87b218b3a66c1789e0be784e0.tar.bz2 |
Added gettext support (VDR >= 1.5.7)
Diffstat (limited to 'i18n.h')
-rw-r--r-- | i18n.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -17,7 +17,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * $Id: i18n.h 95 2007-09-21 23:01:10Z tom $ + * $Id: i18n.h 96 2007-09-23 13:18:41Z tom $ */ #ifndef VDR_SPIDER_I18N_H @@ -28,6 +28,10 @@ #include <vdr/config.h> +#if VDRVERSNUM < 10507 + +#define trNOOP(s) (s) + namespace SpiderPlugin { @@ -35,4 +39,6 @@ namespace SpiderPlugin } // namespace SpiderPlugin +#endif + #endif // VDR_SPIDER_I18N_H |