voxforge.org
VoxForge Dev

Ticket #387: LabelLocalizer_Spanish.java

File LabelLocalizer_Spanish.java, 26.6 kB (added by kmaclean, 7 months ago)
Line 
1 package speechrecorder;
2
3 class LabelLocalizer  {
4     private String usernamePanelLabel;
5     private String usernamePanelText;
6    
7     private String copyrightName;
8     private String gplAccepted;
9    
10     private String pleaseSelect;
11     private String other;
12     private String notApplicable;
13    
14     private String genderPanelLabel;
15     private String genderSelection [];
16    
17     private String ageRangePanelLabel;
18     private String ageSelection [];
19
20     private String dialectPanelLabel;
21     private String dialectSelection [];
22    
23     private String microphonePanelLabel;
24     private String microphoneSelection [];
25    
26     private String uploadText;
27     private String uploadButtonLabel;
28    
29     private String moreInfoText;
30     private String moreInfoButtonLabel;   
31
32     private String disclaimerText;
33     private String aboutButtonLabel;
34    
35     private String recordButton;
36     private String stopButton;
37     private String playButton;
38     private String peakWarningLabel;
39     private String sampleGraphFileLabel;
40     private String sampleGraphLengthLabel;
41     private String sampleGraphPositionLabel;
42    
43     private String uploadingMessageLabel;
44     private String uploadCompletedMessageLabel;
45        
46         public LabelLocalizer (String language) {
47                 // debug System.err.println("LabelLocalizerLanguage:" + language + ":");
48                 if (language.equals("EN")) {
49                         English();
50                         // debug System.err.println("LabelLocalizerLanguage:" + language + ": equals EN");
51                 } else if (language.equals("NL")) {
52                         Dutch();
53                 } else if (language.equals("DE")) {
54                         German();
55                 } else if (language.equals("RU")) {
56                         Russian();
57                 } else if (language.equals("IT")) {
58                         Italian();
59                 } else if (language.equals("HB")) {
60                         Hebrew();
61                 } else if (language.equals("ES")) {
62                         Spanish();
63                 } else {
64                         English();
65                         // debug System.err.println("LabelLocalizerLanguage:" + language + ": defaults to english");
66                 }
67         }
68        
69         private void English() {
70              usernamePanelLabel = "Username:";
71              usernamePanelText = "(leave blank to submit anonymously)";
72              
73              copyrightName = "Free Software Foundation";
74              gplAccepted = "Yes";
75            
76              pleaseSelect = "Please Select";
77              notApplicable = "unknown";
78              
79              genderPanelLabel = "Gender:";
80              genderSelection = new String [3];
81              genderSelection[0] = pleaseSelect;   
82              genderSelection[1] = "Male";   
83              genderSelection[2] = "Female";
84    
85              ageRangePanelLabel = "Age Range:";
86              ageSelection = new String [4];
87              ageSelection[0] = pleaseSelect; 
88              ageSelection[1] = "Youth"
89              ageSelection[2] = "Adult";
90              ageSelection[3] = "Senior";
91        
92              dialectPanelLabel = "Pronunciation Dialect:";
93              dialectSelection = new String [11];
94              dialectSelection[0] = pleaseSelect;   
95              dialectSelection[1] = "Australian English";   
96              dialectSelection[2] = "American English";    // other
97              dialectSelection[3] = "British English";
98              dialectSelection[4] = "Canadian English";     
99              dialectSelection[5] = "European English";
100              dialectSelection[6] = "Indian English";
101              dialectSelection[7] = "Irish English";
102              dialectSelection[8] = "New Zealand English";
103              dialectSelection[9] = "South African English"
104              dialectSelection[10] = "Other";
105            
106              microphonePanelLabel = "Microphone Type:";
107              microphoneSelection = new String [9];
108              microphoneSelection[0] = pleaseSelect; 
109              microphoneSelection[1] = "Headset mic";   
110              microphoneSelection[2] = "USB Headset mic";   
111              microphoneSelection[3] = "Desktop Boom mic"
112              microphoneSelection[4] = "USB Desktop Boom mic"
113              microphoneSelection[5] = "Laptop Built-in mic";
114              microphoneSelection[6] = "WebCam mic";     
115              microphoneSelection[7] = "Studio mic";
116              microphoneSelection[8] = "Other";
117            
118              uploadText = "<html>By clicking the \"Upload\" button, you agree to assign the Copyright to your recorded speech to <br> "
119                 + "the Free Software Foundation, and to license your submission under the GNU Public Licence (\"GPL\"):" ;
120              uploadButtonLabel = "Upload";
121            
122              moreInfoText = "For more information on Copyright and GPL, click here:";
123              moreInfoButtonLabel = "More Information";   
124        
125              disclaimerText =
126                  "<html>VoxForge SpeechSubmission Applet - Copyright (C) 2007 VoxForge<br>"
127                  +"This program comes with ABSOLUTELY NO WARRANTY; without even the implied<br> "
128                  +"warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  For<br>"
129                  +"more details click the \"About\" button:";
130              aboutButtonLabel = "About";
131            
132              recordButton = "Record";
133              stopButton = "Stop";
134              playButton = "Play";
135              
136              peakWarningLabel =  "Warning: input may be too loud";
137              sampleGraphFileLabel = "File: ";
138              sampleGraphLengthLabel = "  Length: ";
139              sampleGraphPositionLabel ="  Position: ";
140              
141              uploadingMessageLabel = "Uploading...";
142              uploadCompletedMessageLabel = "Upload completed... Thank you for your submission!";
143         }
144
145         private void Russian() {
146              usernamePanelLabel = "Имя пользователя:";
147              usernamePanelText = "(можно не указывать)";
148              
149              copyrightName = "Ассоциация свободного ПО";
150              gplAccepted = "Принять";
151            
152              pleaseSelect = "Выберите";
153              notApplicable = "другое";
154              
155              genderPanelLabel = "Пол:";
156              genderSelection = new String [3];
157              genderSelection[0] = pleaseSelect;   
158              genderSelection[1] = "Мужчина";   
159              genderSelection[2] = "Женщина";
160    
161              ageRangePanelLabel = "Возраст:";
162              ageSelection = new String [4];
163              ageSelection[0] = pleaseSelect; 
164              ageSelection[1] = "до 25"
165              ageSelection[2] = "до 55";
166              ageSelection[3] = "более 55";
167        
168              dialectPanelLabel = "Регион";
169              dialectSelection = new String [8];
170              dialectSelection[0] = pleaseSelect;   
171              dialectSelection[1] = "Центральный";   
172              dialectSelection[2] = "Южный";    // other
173              dialectSelection[3] = "Северный";
174              dialectSelection[4] = "Урал";     
175              dialectSelection[5] = "Сибирь";
176              dialectSelection[6] = "Дальний восток";
177              dialectSelection[7] = "Другое";
178            
179              microphonePanelLabel = "Тип микрофона:";
180              microphoneSelection = new String [8];
181              microphoneSelection[0] = pleaseSelect; 
182              microphoneSelection[1] = "В гарнитуре";   
183              microphoneSelection[2] = "USB";   
184              microphoneSelection[3] = "Компьютерный"
185              microphoneSelection[4] = "Встроенный в ноутбук";
186              microphoneSelection[5] = "Веб-камера";     
187              microphoneSelection[6] = "Студийный микрофон";
188              microphoneSelection[7] = "Другое";
189            
190              uploadText = "<html>Нажимая на кнопку \"Загрузить\", Вы передаёте права на записанную информацию <br> "
191                 + "Ассоциации Свободного Программного Обеспечения, и позволяете распространять её в терминах лицензии GNU GPL:" ;
192              uploadButtonLabel = "Загрузить";
193            
194              moreInfoText = "Для получения дополнительной информации о правах на запись, прочитайте эту страницу:";
195              moreInfoButtonLabel = "Дополнительная информация";   
196        
197              disclaimerText =
198                  "<html>Апплет загрузки речи VoxForge - Авторское право (C) 2007 VoxForge<br>"
199                  +"Это приложение поставляется БЕЗ ГАРАНТИЙ; оно может даже не соответствовать<br> "
200                  +"предъявляемым к нему требованиям. Для получения дополнительной информации<br>"
201                  +"нажмите \"О программе\":";
202              aboutButtonLabel = "О программе";
203            
204              recordButton = "Записать";
205              stopButton = "Пауза";
206              playButton = "Воспроизвести";
207              
208              peakWarningLabel =  "ПРЕДУПРЕЖДЕНИЕ: запись слишком громкая";
209              sampleGraphFileLabel = "Файл: ";
210              sampleGraphLengthLabel = "  Длина: ";
211              sampleGraphPositionLabel ="  Положение: ";
212              
213              uploadingMessageLabel = "Загрузка записи...";
214              uploadCompletedMessageLabel = "Запись загружена...Спасибо за участие!";
215                         }
216        
217         private void German() {
218                 usernamePanelLabel = "Benutzername:";
219                 usernamePanelText = "(für anonymen Beitrag leer lassen)";
220                    
221             copyrightName = "Free Software Foundation";
222                 gplAccepted = "Ja";
223                  
224             pleaseSelect = "Bitte wählen";
225                 notApplicable = "unbekannt";
226                    
227             genderPanelLabel = "Geschlecht:";
228                 genderSelection = new String [3];
229                 genderSelection[0] = pleaseSelect;
230                 genderSelection[1] = "Männlich"
231                 genderSelection[2] = "Weiblich";
232                  
233         ageRangePanelLabel = "Altersgruppe:";
234                 ageSelection = new String [4];
235                 ageSelection[0] = pleaseSelect;
236                 ageSelection[1] = "Jugendlicher";
237                 ageSelection[2] = "Erwachsener";
238                 ageSelection[3] = "Senior";
239                  
240                 dialectPanelLabel = "Aussprachevarietät:";
241                 dialectSelection = new String [10];
242                 dialectSelection[0] = pleaseSelect; 
243                 dialectSelection[1] = "Norddeutschland";
244                 dialectSelection[2] = "Westdeutschland";   
245                 dialectSelection[3] = "Berlin";
246                 dialectSelection[4] = "südl. Ostdeutschland";     
247                 dialectSelection[5] = "Südwestdeutschland";
248                 dialectSelection[6] = "Bayern";
249                 dialectSelection[7] = "Schweiz";     
250                 dialectSelection[8] = "Österreich";
251                 dialectSelection[9] = "anderer Sprachraum";
252                  
253                 microphonePanelLabel = "Mikrofon-Typ:";
254                 microphoneSelection = new String [9];
255                 microphoneSelection[0] = pleaseSelect;
256                 microphoneSelection[1] = "Headset-Mikro (am Kopfhörer)"
257                 microphoneSelection[2] = "Headset-Mikro (USB)";
258                 microphoneSelection[3] = "Tisch-Mikro";
259                 microphoneSelection[4] = "Tisch-Mikro (USB)";
260                 microphoneSelection[5] = "Eingebautes Laptop-Mikro";
261                 microphoneSelection[6] = "Webcam-Mikro";   
262                 microphoneSelection[7] = "Studio-Mikro";
263                 microphoneSelection[8] = "Anderes Mikro";
264                  
265             uploadText = "<html>Durch Ihren Klick auf\"Hochladen\" erklären Sie, dass Sie das Copyright Ihrer Sprachaufnahme<br> "
266                    + "auf die Free Software Foundation übertragen und Ihren Beitrag unter der GNU Public Licence (\"GPL\") lizensieren:" ;
267                 uploadButtonLabel = "Hochladen";
268                  
269                 moreInfoText = "Weitere Informationen zu Copyright und GPL:";
270                 moreInfoButtonLabel = "Weitere Informationen"
271                  
272         disclaimerText =
273                             "<html>VoxForge SpeechSubmission Applet - Copyright (C) 2007 VoxForge<br>"
274                                 +"Die Veröffentlichung dieses Programms erfolgt in der Hoffnung, daß es Ihnen<br> "
275                                 +"von Nutzen sein wird, aber OHNE IRGENDEINE GARANTIE, sogar ohne die implizite<br> "
276                                 +"Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK.<br> "
277                                 +"Details können Sie mit einem Klick auf \"Lizenz\" erhalten.";
278                 aboutButtonLabel = "Lizenz";
279                  
280                 recordButton = "Aufnahme";
281                 stopButton = "Stop";
282                 playButton = "Wiedergabe";
283                    
284                 peakWarningLabel =  "Achtung: Eingabe könnte zu laut sein";
285                 sampleGraphFileLabel = "Datei: ";
286                 sampleGraphLengthLabel = "  Länge: ";
287                 sampleGraphPositionLabel ="  Position: ";
288                  
289                 uploadingMessageLabel = "Wird hochgeladen...";
290                 uploadCompletedMessageLabel = "Alle Daten hochgeladen...  Danke für Ihren Beitrag!";
291         }
292                
293         private void Dutch() {
294              usernamePanelLabel = "Gebruikersnaam:";
295              usernamePanelText = "(laat leeg voor een anonieme bijdrage)";
296            
297              copyrightName = "Free Software Foundation";
298              gplAccepted = "Yes";
299            
300              pleaseSelect = "Maak een keuze";
301              other = "anders";
302              notApplicable = "unknown";
303            
304              genderPanelLabel = "geslacht:";
305              genderSelection = new String [3];
306              genderSelection[0] = pleaseSelect;   
307              genderSelection[1] = "mannelijk";   
308              genderSelection[2] = "vrouwelijk";
309            
310              ageRangePanelLabel = "leeftijd:";
311              ageSelection = new String [4];
312              ageSelection[0] = pleaseSelect; 
313              ageSelection[1] = "jeugd"
314              ageSelection[2] = "volwassen";
315              ageSelection[3] = "senior";
316              
317              dialectPanelLabel = "dialect:";
318              dialectSelection = new String [10];
319              dialectSelection[0] = pleaseSelect;   
320              dialectSelection[1] = "algemeen Nederlands";   
321              dialectSelection[2] = "Zuidwestelijk";   
322              dialectSelection[3] = "Noordwestelijk";   
323              dialectSelection[4] = "Noordoostelijk";     
324              dialectSelection[5] = "Noordelijk-centraal";   
325              dialectSelection[6] = "Zuidoostelijk";   
326              dialectSelection[7] = "Surinaams-Nederlands";   
327              dialectSelection[8] = "Antiliaans-Nederlands";   
328              dialectSelection[9] = other;           
329
330              microphonePanelLabel = "type microfoon:";
331              microphoneSelection = new String [9];
332              microphoneSelection[0] = pleaseSelect; 
333              microphoneSelection[1] = "headsetmicrofoon";   
334              microphoneSelection[2] = "headsetmicrofoon (USB)";   
335              microphoneSelection[3] = "bureaumicrofoon"
336              microphoneSelection[4] = "bureaumicrofoon (USB)"
337              microphoneSelection[5] = "microfoon in laptop";
338              microphoneSelection[6] = "webcam microfoon";     
339              microphoneSelection[7] = "studiomicrofoon";
340              microphoneSelection[8] = other; 
341            
342              uploadText = "<html>druk op de knop \"doneren\" om het auteursrecht in de opgenomen  <br>" +
343                         "spraak over te dragen aan de Free Software Foundation en de bijdrage ter beschikking <br>" +
344                         " te stellen onder de GNU Public Licence (\"GPL\") :" ;
345              uploadButtonLabel = "doneren";
346            
347              moreInfoText = "klik op de knop voor meer informatie over ateursrecht en de GPL:";
348              moreInfoButtonLabel = "meer informatie";   
349        
350              disclaimerText =
351                  "<html>VoxForge Spraakdonatieprogramma - Copyright (C) 2007 VoxForge<br>"
352                  +"Het onderstaande is een onofficiële vertaling van de originele<br>"
353                  +"Warranty Disclaimer voor deze software (in geval van twijfel is de<br>"
354                  +"tekst van de originele Warranty Disclaimer doorslaggevend):<br>"
355                  +"Dit programma staat ter beschikking ZONDER ENIGE TOEZEGGING OF<br>"
356                  +"GARANTIE, zonder zelfs de impliciete toezegging dat het GESCHIKT IS<br>"
357                  +"VOOR DE VERKOOP of VOOR EEN ANDER SPECIFIEK DOEL.<br>";
358              aboutButtonLabel = "meer info";
359            
360              recordButton = "Opnemen";
361              stopButton = "Stoppen";
362              playButton = "Afspelen";
363
364              peakWarningLabel =  "Waarschuwing: het importvolume staat mogelijk te hoog";
365              sampleGraphFileLabel = "Bestand: ";
366              sampleGraphLengthLabel = "  Lengte: ";
367              sampleGraphPositionLabel ="  Positie: ";
368              
369              uploadingMessageLabel = "Aan het uploaden...";
370              uploadCompletedMessageLabel = "Upload voltooid. Bedankt voor de bijdrage!";
371         }
372
373         private void Italian() {
374          usernamePanelLabel = "Nome utente:";
375          usernamePanelText = "(lasciare in bianco se si vuole inviare come anonimo)";
376          
377          copyrightName = "Free Software Foundation";
378          gplAccepted = "Si";
379        
380          pleaseSelect = "Selezionare";
381          notApplicable = "non definito";
382          
383          genderPanelLabel = "Sesso:";
384          genderSelection = new String [3];
385          genderSelection[0] = pleaseSelect;   
386          genderSelection[1] = "Machio";   
387          genderSelection[2] = "Femmina";
388    
389          ageRangePanelLabel = "Fascia di età:";
390          ageSelection = new String [4];
391          ageSelection[0] = pleaseSelect; 
392          ageSelection[1] = "Giovane"
393          ageSelection[2] = "Adulto";
394          ageSelection[3] = "Anziano";
395    
396          dialectPanelLabel = "Dialetto di pronuncia:";
397          dialectSelection = new String [9];
398          dialectSelection[0] = pleaseSelect;   
399          dialectSelection[1] = "Italiano generico";   
400          dialectSelection[2] = "Italiano abruzzese";   
401          dialectSelection[3] = "Italiano calabrese";
402          dialectSelection[4] = "Italiano ciociaro";     
403          dialectSelection[5] = "Italiano milanese";
404          dialectSelection[6] = "Italiano pugliese";
405          dialectSelection[7] = "Italiano ";     
406          dialectSelection[8] = "Altro";
407        
408          microphonePanelLabel = "Tipo di Microfono:";
409          microphoneSelection = new String [9];
410          microphoneSelection[0] = pleaseSelect; 
411          microphoneSelection[1] = "Headset mic";   
412          microphoneSelection[2] = "USB Headset mic";   
413          microphoneSelection[3] = "Desktop Boom mic"
414          microphoneSelection[4] = "USB Desktop Boom mic"
415          microphoneSelection[5] = "Laptop Built-in mic";
416          microphoneSelection[6] = "WebCam mic";     
417          microphoneSelection[7] = "Studio mic";
418          microphoneSelection[8] = "Altro";
419        
420          uploadText = "<html>Cliccando il bottone \"Carica\", si accetta di assegnare il Copyright del parlato registrato a <br> "
421             + "la Free Software Foundation, e di rilasciare il tuo contributo nei termini della GNU Public Licence (\"GPL\"):" ;
422          uploadButtonLabel = "Carica";
423        
424          moreInfoText = "Per ulteriori informazioni sul Copyright e la GPL, premere qui:";
425          moreInfoButtonLabel = "Ulteriori Informazioni";   
426    
427          disclaimerText =
428             "<html>VoxForge SpeechSubmission Applet - Copyright (C) 2007 VoxForge<br>"
429             +"Questo programma e fornito ASSOLUTAMENTE SENZA NESSUNA GARANZIA; neanche senza la sottintesa <br> "
430             +"garanzia di COMMERCIABILITA' o di ADEGUATEZZA PER UNO SCOPO PARTICOLARE.  Per<br>"
431             +"ulteriori dettagli cliccare il bottone \"Informazioni\" :";
432          aboutButtonLabel = "Informazioni";
433        
434          recordButton = "Registra";
435          stopButton = "Ferma";
436          playButton = "Ascolta";
437          
438          peakWarningLabel =  "Attenzione: il volume dell'ingresso potrebbe essere troppo alto";
439          sampleGraphFileLabel = "File: ";
440          sampleGraphLengthLabel = "  Lunghezza: ";
441          sampleGraphPositionLabel ="  Posizione: ";
442          
443          uploadingMessageLabel = "Caricamento...";
444          uploadCompletedMessageLabel = "Caricamento completato... Si ringrazia per il contributo!";
445      }
446        
447         private void Hebrew() {
448                 usernamePanelLabel = "שם משתמש:";
449         usernamePanelText = "(השאר ריק על מנת לשלוח כאנונימי)";
450        
451         copyrightName = "Free Software Foundation - קרן התוכנה החופשית";
452         gplAccepted = "כן";
453      
454         pleaseSelect = "אנא בחר";
455         notApplicable = "לא ידוע";
456        
457         genderPanelLabel = "מין:";
458         genderSelection = new String [3];
459         genderSelection[0] = pleaseSelect; 
460         genderSelection[1] = "זכר";   
461         genderSelection[2] = "נקבה";
462  
463         ageRangePanelLabel = "קבוצת גיל:";
464         ageSelection = new String [4];
465         ageSelection[0] = pleaseSelect;
466         ageSelection[1] = "צעיר";
467         ageSelection[2] = "מבוגר";
468         ageSelection[3] = "קשיש";
469  
470         dialectPanelLabel = "ניב המבטא:";
471         dialectSelection = new String [6];
472         dialectSelection[0] = pleaseSelect;   
473         dialectSelection[1] = "ללא";   
474         dialectSelection[2] = "רוסי";    // other
475         dialectSelection[3] = "ערבי";
476         dialectSelection[4] = "אמריקאי (אנגלית)"
477         dialectSelection[5] = "אחר";
478      
479         microphonePanelLabel = "סוג המיקרופון:";
480         microphoneSelection = new String [9];
481         microphoneSelection[0] = pleaseSelect;
482         microphoneSelection[1] = "Headset mic";   
483         microphoneSelection[2] = "USB Headset mic"
484         microphoneSelection[3] = "Desktop Boom mic";
485         microphoneSelection[4] = "USB Desktop Boom mic";
486         microphoneSelection[5] = "Laptop Built-in mic";
487         microphoneSelection[6] = "WebCam mic";     
488         microphoneSelection[7] = "Studio mic";
489         microphoneSelection[8] = "Other";
490      
491         uploadText = "<html>בלחיצה על הלחצן \"העלה\", הנך מסכים/ה לתת את כל הזכויות של הקלטת הקול שלך ל<br> "
492            + "Free Software Foundation - קרן התוכנה החופשית, ולספק את הקלטת הקול תחת הרישיון GNU Public Licence (\"GPL\"):" ;
493         uploadButtonLabel = "העלה";
494      
495         moreInfoText = "למידע נוסף אודות זכויות יוצרים ו-GPL, לחץ כאן:";
496         moreInfoButtonLabel = "מידע נוסף";   
497  
498         disclaimerText =
499            "<html>VoxForge SpeechSubmission Applet - Copyright (C) 2007 VoxForge<br>"
500            +"This program comes with ABSOLUTELY NO WARRANTY; without even the implied<br> "
501            +"warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  For<br>"
502            +"more details click the \"About\" button:";
503         aboutButtonLabel = "About";
504      
505         recordButton = "הקלט";
506         stopButton = "עצור";
507         playButton = "השמע";
508        
509         peakWarningLabel =  "שים לב: ייתכן והקלט יהיה חזק מאוד";
510         sampleGraphFileLabel = "קובץ: ";
511         sampleGraphLengthLabel = "  אורך: ";
512         sampleGraphPositionLabel ="  מיקום: ";
513
514          uploadingMessageLabel = "מעלה...";
515         uploadCompletedMessageLabel = "ההעלאה הסתיימה... תודה מקרב לב על עזרתך!";
516         }
517
518
519         private void Spanish() {
520              usernamePanelLabel = "Nombre de Usuario:";
521              usernamePanelText = "(dejar en blanco para enviar anonimamente)";
522              
523              copyrightName = "Free Software Foundation";
524              gplAccepted = "Si";
525            
526              pleaseSelect = "Por favor Seleccione";
527              notApplicable = "desconocido";
528              
529              genderPanelLabel = "Genero:";
530              genderSelection = new String [3];
531              genderSelection[0] = pleaseSelect;   
532              genderSelection[1] = "Masculino";   
533              genderSelection[2] = "Femenino";
534    
535              ageRangePanelLabel = "Rango de Edad:";
536              ageSelection = new String [4];
537              ageSelection[0] = pleaseSelect; 
538              ageSelection[1] = "Niño"
539              ageSelection[2] = "Adulto";
540              ageSelection[3] = "Tercera Edad";
541        
542              dialectPanelLabel = "Dialecto de Pronunciación:";
543              dialectSelection = new String [7];
544              dialectSelection[0] = pleaseSelect;   
545              dialectSelection[1] = "Español España";   
546              dialectSelection[2] = "Español Mexicano";   
547              dialectSelection[3] = "Español Argentina";
548              dialectSelection[4] = "Español Chile";     
549              dialectSelection[5] = "Español Latinoamerica"; //other
550              dialectSelection[6] = "Other";
551            
552              microphonePanelLabel = "Tipo de Microfono:";
553              microphoneSelection = new String [9];
554              microphoneSelection[0] = pleaseSelect; 
555              microphoneSelection[1] = "Micrófono Auricular";   
556              microphoneSelection[2] = "Micrófono Auricular USB";   
557              microphoneSelection[3] = "Micrófono de Escritorio"
558              microphoneSelection[4] = "Micrófono de Escritorio USB"
559              microphoneSelection[5] = "Micrófono de Notebook incorporado";
560              microphoneSelection[6] = "Micrófono de Cámara Web";     
561              microphoneSelection[7] = "Micrófono de Estudio (Profesional)";
562              microphoneSelection[8] = "Otro";
563            
564              uploadText = "<html>Haciendo click en el boton \"Subir\", usted esta de acuerdo en entregar los derechos (Copyright) de su voz grabada a <br> "
565                 + "la Free Software Foundation (Fundación del Software Libre), y de licenciar lo subido bajo la Licencia Pública GNU (GNU Public Licence)                       (\"GPL\"):" ;
566
567              uploadButtonLabel = "Subir";
568            
569              moreInfoText = "Para más información sobre los derechos (Copyright) GPL, click aqui:";
570              moreInfoButtonLabel = "Más Información";   
571        
572              disclaimerText =
573                  "<html>VoxForge Applet para donación de voz - Copyright (C) 2008 VoxForge<br>"
574                  +"This program comes with ABSOLUTELY NO WARRANTY; without even the implied<br> "
575                  +"warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  For<br>"
576                  +"more details click the \"Acerca\" button:";
577              aboutButtonLabel = "Acerca";
578            
579              recordButton = "Grabar";
580              stopButton = "Parar";
581              playButton = "Reproducir";
582              
583              peakWarningLabel =  "Advertencia: entrada tal vez muy alta";
584              sampleGraphFileLabel = "Archivo: ";
585              sampleGraphLengthLabel = "  Largo: ";
586              sampleGraphPositionLabel ="  Posición: ";
587              
588              uploadingMessageLabel = "Subiendo...";
589              uploadCompletedMessageLabel = "Entrega completada... Gracias por su entrega!";
590         }
591        
592         public String getUsernamePanelLabel() {
593                 return usernamePanelLabel;
594         }
595
596         public String getUsernamePanelText() {
597                 return usernamePanelText;
598         }
599
600         public String getCopyrightName() {
601                 return copyrightName;
602         }
603
604         public String getGplAccepted() {
605                 return gplAccepted;
606         }
607
608         public String getPleaseSelect() {
609                 return pleaseSelect;
610         }
611
612         public String getNotApplicable() {
613                 return notApplicable;
614         }
615
616         public String getGenderPanelLabel() {
617                 return genderPanelLabel;
618         }
619
620         public String[] getGenderSelection() {
621                 return genderSelection;
622         }
623
624         public String getAgeRangePanelLabel() {
625                 return ageRangePanelLabel;
626         }
627
628         public String[] getAgeSelection() {
629                 return ageSelection;
630         }
631
632         public String getDialectPanelLabel() {
633                 return dialectPanelLabel;
634         }
635
636         public String[] getDialectSelection() {
637                 return dialectSelection;
638         }
639
640         public String getMicrophonePanelLabel() {
641                 return microphonePanelLabel;
642         }
643
644         public String[] getMicrophoneSelection() {
645                 return microphoneSelection;
646         }
647
648         public String getUploadText() {
649                 return uploadText;
650         }
651
652         public String getUploadButtonLabel() {
653                 return uploadButtonLabel;
654         }
655
656         public String getMoreInfoText() {
657                 return moreInfoText;
658         }
659
660         public String getMoreInfoButtonLabel() {
661                 return moreInfoButtonLabel;
662         }
663
664         public String getDisclaimerText() {
665                 return disclaimerText;
666         }
667
668         public String getAboutButtonLabel() {
669                 return aboutButtonLabel;
670         }
671
672         public String getRecordButton() {
673                 return recordButton;
674         }
675
676         public String getStopButton() {
677                 return stopButton;
678         }
679
680         public String getPlayButton() {
681                 return playButton;
682         }
683
684         public String getPeakWarningLabel() {
685                 return peakWarningLabel;
686         }
687
688         public String getSampleGraphFileLabel() {
689                 return sampleGraphFileLabel;
690         }
691
692         public String getSampleGraphLengthLabel() {
693                 return sampleGraphLengthLabel;
694         }
695
696         public String getSampleGraphPositionLabel() {
697                 return sampleGraphPositionLabel;
698         }
699        
700         public String getUploadingMessageLabel() {
701                 return uploadingMessageLabel;
702         }
703         public String getUploadCompletedMessageLabel() {
704                 return uploadCompletedMessageLabel;
705         }
706
707        
708 }