blob: eefcd6bab5ceee8f9d8a2ba74e8fdb6ab4629e76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* i18n.h: Internationalization
*
* See the README file for copyright information and how to reach the author.
*
* $Id:$
*/
#ifndef _I18N__H
#define _I18N__H
#include <vdr/i18n.h>
#ifndef trNOOP
#define trNOOP(s) (s)
#endif
#if VDRVERSNUM < 10507
extern const tI18nPhrase Phrases[];
#endif
#endif //_I18N__H
|