blob: 83f92e13de74d9dc4c756428fda40070641918e6 (
plain)
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
|
/*
* i18n.c: 'EnigmaNG' skin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*
* Translations submitted by:
* - English: Andreas Mair <andreas _@_ vdr-developer.org>
* - Deutsch: Andreas Mair <andreas _@_ vdr-developer.org>
* - Italiano: Gringo <vdr-italian _@_ tiscali.it>
* - Nederlands: Johan Schuring <dorpsgek @vdr-portal.de>
* - Français: Patrice Staudt <pat @vdr-portal.de>
* - Finnish: Rolf Ahrenberg <rofafor @vdr-portal.de>
* - Polski: ???
* - Español: bittor from open7x0.org <bittor7x0 _at_ gmail.com>
* - Svenska: ???
* - Russian: SergArb @vdr-portal.de / neptunvasja @vdr-portal.de
* - Eesti: ???
* - Dansk: ???
* - Czech: ???
* - Türkçe: n/a
*
*/
#include "common.h"
#include "i18n.h"
#if VDRVERSNUM < 10507
const tI18nPhrase Phrases[] = {
// START I18N
// END I18N
{ NULL }
};
#endif
|