Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 414247 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 54-60 Link Here
54
54
55
### The object files (add further files here):
55
### The object files (add further files here):
56
56
57
OBJS = $(PLUGIN).o functions.o i18n.o menu.o player.o viewer.o setup.o menucontrol.o psd.o psdcontrol.o
57
OBJS = $(PLUGIN).o functions.o menu.o player.o viewer.o setup.o menucontrol.o psd.o psdcontrol.o
58
58
59
### Implicit rules:
59
### Implicit rules:
60
60
(-)vcd.c (-2 lines)
Lines 25-31 Link Here
25
#include <vdr/interface.h>
25
#include <vdr/interface.h>
26
#include <vdr/plugin.h>
26
#include <vdr/plugin.h>
27
#include "functions.h"
27
#include "functions.h"
28
#include "i18n.h"
29
#include "menu.h"
28
#include "menu.h"
30
#include "menucontrol.h"
29
#include "menucontrol.h"
31
#include "psdcontrol.h"
30
#include "psdcontrol.h"
Lines 100-106 Link Here
100
99
101
bool cPluginVcd::Start(void)
100
bool cPluginVcd::Start(void)
102
{
101
{
103
  RegisterI18n(Phrases);
104
  if (option_vcd)
102
  if (option_vcd)
105
     vcd = new cVcd(option_vcd);
103
     vcd = new cVcd(option_vcd);
106
  else
104
  else
(-)menu.c (-1 lines)
Lines 26-32 Link Here
26
26
27
#include <vdr/interface.h>
27
#include <vdr/interface.h>
28
#include <vdr/status.h>
28
#include <vdr/status.h>
29
#include "i18n.h"
30
#include "menu.h"
29
#include "menu.h"
31
#include "functions.h"
30
#include "functions.h"
32
#include "setup.h"
31
#include "setup.h"
(-)menucontrol.c (-1 lines)
Lines 26-32 Link Here
26
26
27
#include <vdr/interface.h>
27
#include <vdr/interface.h>
28
#include <vdr/status.h>
28
#include <vdr/status.h>
29
#include "i18n.h"
30
#include "menu.h"
29
#include "menu.h"
31
#include "functions.h"
30
#include "functions.h"
32
#include "setup.h"
31
#include "setup.h"
(-)psd.c (-1 lines)
Lines 21-27 Link Here
21
 */
21
 */
22
22
23
23
24
#include "i18n.h"
25
#include "psd.h"
24
#include "psd.h"
26
#include "psdcontrol.h"
25
#include "psdcontrol.h"
27
26
(-)psdcontrol.c (-1 lines)
Lines 27-33 Link Here
27
27
28
#include <vdr/interface.h>
28
#include <vdr/interface.h>
29
#include <vdr/status.h>
29
#include <vdr/status.h>
30
#include "i18n.h"
31
#include "functions.h"
30
#include "functions.h"
32
#include "setup.h"
31
#include "setup.h"
33
#include "psdcontrol.h"
32
#include "psdcontrol.h"
(-)setup.c (-1 lines)
Lines 22-28 Link Here
22
22
23
#include <vdr/menuitems.h>
23
#include <vdr/menuitems.h>
24
#include "setup.h"
24
#include "setup.h"
25
#include "i18n.h"
26
25
27
cVcdSetupData VcdSetupData;
26
cVcdSetupData VcdSetupData;
28
27
(-)i18n.h (-30 lines)
Lines 1-30 Link Here
1
/*
2
 * i18n.h: Internationalization
3
 *
4
 * VCD Player plugin for VDR (the Video Disk Recorder)
5
 * Copyright (C) 2002  Thomas Heiligenmann  <thomas@heiligenmann.de>
6
 *
7
 * This program is free software; you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation; either version 2 of the License, or
10
 * (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program; if not, write to the Free Software Foundation,
19
 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
20
 *
21
 */
22
23
#ifndef __VCD_I18N_H
24
#define __VCD_I18N_H
25
26
#include <vdr/i18n.h>
27
28
extern const tI18nPhrase Phrases[];
29
30
#endif //__VCD_I18N_H
(-)i18n.c (-269 lines)
Lines 1-269 Link Here
1
/*
2
 * i18n.c: Internationalization
3
 *
4
 * VCD Player plugin for VDR (the Video Disk Recorder)
5
 * Copyright (C) 2002  Thomas Heiligenmann  <thomas@heiligenmann.de>
6
 *
7
 * This program is free software; you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation; either version 2 of the License, or
10
 * (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program; if not, write to the Free Software Foundation,
19
 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
20
 *
21
 * Italian translations provided by Gringo <vdr-italian@tiscali.it>
22
 *
23
 */
24
25
26
#include "i18n.h"
27
28
const tI18nPhrase Phrases[] = {
29
  { "VideoCD",
30
    "VideoCD",
31
    "",
32
    "VideoCD",
33
    "",
34
    "",
35
    "",
36
    "",
37
    "",
38
    "",
39
    "",
40
    "",
41
    "",
42
    "",
43
    "",
44
    "",
45
  },
46
  { "Tracks",
47
    "Tracks",
48
    "",
49
    "Tracce",
50
    "",
51
    "",
52
    "",
53
    "",
54
    "",
55
    "",
56
    "",
57
    "",
58
    "",
59
    "",
60
    "",
61
    "",
62
  },
63
  { "VideoCD SPI",
64
    "VideoCD SPI",
65
    "",
66
    "VideoCD SPI",
67
    "",
68
    "",
69
    "",
70
    "",
71
    "",
72
    "",
73
    "",
74
    "",
75
    "",
76
    "",
77
    "",
78
    "",
79
  },
80
  { "SPI",
81
    "SPI",
82
    "",
83
    "SPI",
84
    "",
85
    "",
86
    "",
87
    "",
88
    "",
89
    "",
90
    "",
91
    "",
92
    "",
93
    "",
94
    "",
95
    "",
96
  },
97
  { "No disc inserted",
98
    "Keine CD eingelegt",
99
    "",
100
    "Nessun disco inserito",
101
    "",
102
    "",
103
    "",
104
    "",
105
    "",
106
    "",
107
    "",
108
    "",
109
    "",
110
    "",
111
    "",
112
    "",
113
  },
114
  { "No VideoCD detected",
115
    "Keine VideoCD erkannt",
116
    "",
117
    "Nessun VideoCD trovato",
118
    "",
119
    "",
120
    "",
121
    "",
122
    "",
123
    "",
124
    "",
125
    "",
126
    "",
127
    "",
128
    "",
129
    "",
130
  },
131
  { "VCD",
132
    "VCD",
133
    "",
134
    "VCD",
135
    "",
136
    "",
137
    "",
138
    "",
139
    "",
140
    "",
141
    "",
142
    "",
143
    "",
144
    "",
145
    "",
146
    "",
147
  },
148
  { "Setup.VCD$Drive speed",
149
    "Laufwerkgeschwindigkeit",
150
    "",
151
    "Velocità lettore",
152
    "",
153
    "",
154
    "",
155
    "",
156
    "",
157
    "",
158
    "",
159
    "",
160
    "",
161
    "",
162
    "",
163
    "",
164
  },
165
  { "Setup.VCD$Broken mode",
166
    "Nicht standardkonform",
167
    "",
168
    "Mod. non standard",
169
    "",
170
    "",
171
    "",
172
    "",
173
    "",
174
    "",
175
    "",
176
    "",
177
    "",
178
    "",
179
    "",
180
    "",
181
  },
182
  { "Setup.VCD$Hide main menu entry",
183
    "Hauptmenüeintrag ausblenden",
184
    "",
185
    "Nascondi voce nel menu principale",
186
    "",
187
    "",
188
    "",
189
    "",
190
    "",
191
    "",
192
    "",
193
    "",
194
    "",
195
    "",
196
    "",
197
    "",
198
  },
199
  { "Setup.VCD$Play tracks continuously",
200
    "Tracks nacheinander abspielen",
201
    "",
202
    "Riproduci tracce in modo continuo",
203
    "",
204
    "",
205
    "",
206
    "",
207
    "",
208
    "",
209
    "",
210
    "",
211
    "",
212
    "",
213
    "",
214
    "",
215
  },
216
  { "Setup.VCD$Autostart replay",
217
    "Wiedergabe automatisch starten",
218
    "",
219
    "Riproduzione automatica all'avvio",
220
    "",
221
    "",
222
    "",
223
    "",
224
    "",
225
    "",
226
    "",
227
    "",
228
    "",
229
    "",
230
    "",
231
    "",
232
  },
233
  { "Setup.VCD$Play sequence replay",
234
    "Wiedergabe nach Sequenz",
235
    "",
236
    "Riproduci in sequenza",
237
    "",
238
    "",
239
    "",
240
    "",
241
    "",
242
    "",
243
    "",
244
    "",
245
    "",
246
    "",
247
    "",
248
    "",
249
  },
250
  { "Eject",
251
    "Auswerfen",
252
    "Izvrzi",
253
    "Eject",
254
    "Eject",
255
    "Ejectar",
256
    "Ejection",
257
    "Eject",
258
    "Avaa",
259
    "Wyrzucenie",
260
    "Expulsar",
261
    "Exsagogi",
262
    "Mata ut",
263
    "Ejecteaza",
264
    "Kidobni",
265
    "Expulsar",
266
  },
267
  { NULL }
268
};
269

Return to bug 414247