-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.h
36 lines (32 loc) · 848 Bytes
/
i18n.h
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
31
32
33
34
35
36
//=============================================================================
/*
* Description: This file contains the internationalization for the plugin
*
* See the file README in the main directory for a description of
* this software, copyright information, and how to reach the author.
*
* Author: alex
* Date: 15.11.2003
*
* Last modfied:
* $Author: alex $
* $Date: 2013-03-20 20:33:18 +0100 (Mi, 20 Mär 2013) $
* $Revision: 1.2 $
*/
//=============================================================================
#ifndef __MAILBOX_I18N__H__
#define __MAILBOX_I18N__H__
#include <vdr/config.h>
#include <vdr/i18n.h>
#if APIVERSNUM < 10507
#ifndef trNOOP
#define trNOOP(s) (s)
#endif
extern const tI18nPhrase MailboxPhrases[];
#endif
#if APIVERSNUM < 10509
#ifndef trVDR
#define trVDR(s) tr(s)
#endif
#endif
#endif