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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
/*
* $Id: i18n.c,v 1.4 2005/05/30 09:23:41 lordjaxom Exp $
*/
#include "i18n.h"
#include <vdr/config.h>
#if VDRVERSNUM < 10507
const tI18nPhrase Phrases[] = {
/*
{ "English",
"Deutsch",
"Slovenski",
"Italiano",
"Nederlands",
"Português",
"Français",
"Norsk",
"suomi", // this is not a typo - it's really lowercase!
"Polski",
"Español",
"ÅëëçíéêÜ", // Greek
"Svenska",
"Românã",
"Magyar",
"Català",
"ÀãááÚØÙ", // Russian
"Hrvatski",
"Eesti",
"Dansk",
},
*/
{ "Loader for text-based skins",
"Lader für textbasierte Skins",
"",
"",
"",
"",
"",
"",
"Helposti muokattavat ulkoasut",
"",
"",
"",
"",
"",
"",
"",
"",
"",
#if VDRVERSNUM >= 10313
"",
#endif
#if VDRVERSNUM >= 10316
"",
#endif
},
{ "Flush image cache",
"Bildspeicher leeren",
"",
"",
"",
"",
"",
"",
"Tyhjennä kuvat välimuistista",
"",
"",
"",
"",
"",
"",
"",
"",
"",
#if VDRVERSNUM >= 10313
"",
#endif
#if VDRVERSNUM >= 10316
"",
#endif
},
{ "Flushing image cache...",
"Bildspeicher wird geleert...",
"",
"",
"",
"",
"",
"",
"Tyhjennetään välimuistia...",
"",
"",
"",
"",
"",
"",
"",
"",
"",
#if VDRVERSNUM >= 10313
"",
#endif
#if VDRVERSNUM >= 10316
"",
#endif
},
{ "Max. image cache size",
"Max. Größe des Bildspeichers",
"",
"",
"",
"",
"",
"",
"Välimuistin maksimikoko",
"",
"",
"",
"",
"",
"",
"",
"",
"",
#if VDRVERSNUM >= 10313
"",
#endif
#if VDRVERSNUM >= 10316
"",
#endif
},
{ "Skin too large or incorrectly aligned",
"Skin zu groß oder nicht korrekt ausgerichtet",
"",
"",
"",
"",
"",
"",
"Ulkoasu on liian suuri tai väärin asemoitu",
"",
"",
"",
"",
"",
"",
"",
"",
"",
#if VDRVERSNUM >= 10313
"",
#endif
#if VDRVERSNUM >= 10316
"",
#endif
},
{ NULL }
};
#endif
#if VDRVERSNUM >= 10507
cText2SkinI18n::cText2SkinI18n(const char *Skin) {
mIdentity = std::string("vdr-"PLUGIN_NAME_I18N"-") + Skin;
I18nRegister(mIdentity.substr(mIdentity.find('-') + 1).c_str());
#else
cText2SkinI18n::cText2SkinI18n(const char *Skin): cText2SkinFile(Skin) {
mIdentity = (std::string)"text2skin_" + Skin;
mNumPhrases = 0;
mPhrases = (tI18nPhrase*)malloc(sizeof(tI18nPhrase));
memset(mPhrases[mNumPhrases], 0, sizeof(tI18nPhrase));
#endif
}
#if VDRVERSNUM < 10507
cText2SkinI18n::~cText2SkinI18n() {
for (int i = 0; mPhrases[i][0]; ++i) {
for (int j = 0; j < I18nNumLanguages; ++j)
free((void*)mPhrases[i][j]);
}
free(mPhrases);
}
bool cText2SkinI18n::Parse(const char *Text) {
int l = strlen(Text);
bool result = false;
if (l) {
if (strncmp(Text, "Item=Translation,", 17) == 0) {
int i;
tI18nPhrase p;
memset(&p, 0, sizeof(tI18nPhrase));
Text += 17;
for (i = 0; i < I18nNumLanguages; ++i) {
char *langs = strdup(I18nLanguageCode(i));
char *ptr = langs, *ep;
std::string text;
p[i] = strdup("");
do {
if ((ep = strchr(ptr, ',')) != NULL)
*ep = '\0';
if (ParseVar(Text, ptr, text)) {
free((void*)p[i]);
p[i] = strdup(text.c_str());
}
ptr = ep + 1;
} while (ep != NULL);
free(langs);
}
int idx = mNumPhrases++;
for (i = 0; i < I18nNumLanguages; ++i)
if (!p[i]) p[i] = "";
mPhrases = (tI18nPhrase*)realloc(mPhrases, (mNumPhrases + 1) * sizeof(tI18nPhrase));
memcpy(mPhrases[idx], p, sizeof(tI18nPhrase));
memset(mPhrases[mNumPhrases], 0, sizeof(tI18nPhrase));
result = true;
} else
esyslog("ERROR: text2skin: syntax error");
}
return result;
}
bool cText2SkinI18n::Load(const std::string &Filename) {
if (cText2SkinFile::Load(Filename)) {
I18nRegister(mPhrases, mIdentity.c_str());
return true;
}
return false;
}
#endif
|