blob: c94241a54e2321f5a9d70162d2bc676fa6b054f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* i18n.h: Internationalization
*
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: i18n.h 1.1 2000/11/11 09:27:25 kls Exp $
*/
#ifndef __I18N_H
#define __I18N_H
extern const int NumLanguages;
const char *tr(const char *s);
const char * const * Languages(void);
#endif //__I18N_H
|