blob: 990d2ee06cad25f5de801ab03e8aa7b60b912771 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _DXR3_I18N_H_
#define _DXR3_I18N_H_
#include <vdr/i18n.h>
extern const char *i18n_name;
extern const tI18nPhrase Phrases[];
#undef tr
#define tr(s) I18nTranslate(s, i18n_name)
#endif /*_DXR3_I18N_H_*/
|