blob: 15184031dd0f8bdd7152876f82f37e93ce46aa3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* OSD Picture in Picture plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*/
#ifndef VDR_OSDPIP_I18N_H
#define VDR_OSDPIP_I18N_H
#include <vdr/config.h>
#include <vdr/i18n.h>
#if (APIVERSNUM < 10507)
#define trNOOP(a) a
#define trVDR tr
#endif
extern const tI18nPhrase Phrases[];
#endif // VDR_OSDPIP_I18N_H
|