blob: 41faaeeefce04d4bea1b147fd8cb48f8da428256 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* i18n.h: Internationalization
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: i18n.h,v 1.3 2007-09-18 13:52:52 phintuka Exp $
*
*/
#ifndef __XINELIBOUTPUT_I18N_H
#define __XINELIBOUTPUT_I18N_H
#include <vdr/i18n.h>
#if VDRVERSNUM < 10507
extern const tI18nPhrase Phrases[];
#ifndef trNOOP
# define trNOOP(s) (s)
#endif
#ifndef trVDR
# define trVDR(s) tr(s)
#endif
#endif // VDRVERSNUM < 10507
#endif //__XINELIBOUTPUT_I18N_H
|