mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
20 lines
345 B
C
20 lines
345 B
C
/*
|
|
* 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
|