blob: 73401f1ab54bfedfab73d6e3d6e3eec9c8c7b1dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* based on i18n.h,v 1.1.1.1 2006/02/26 14:11:02 lordjaxom
*
* version by Midas
*
*/
#ifndef VDR_BLOCK_I18N_H
#define VDR_BLOCK_I18N_H
#include <vdr/i18n.h>
#include <vdr/config.h>
#if VDRVERSNUM < 10507
#define trNOOP(s) (s)
#define trVDR(s) tr(s)
extern const tI18nPhrase Phrases[];
#endif
#endif // VDR_BLOCK_I18N_H
|