summaryrefslogtreecommitdiff
path: root/extensions/source/preload/preload.src
blob: a068bc13653808711483d7597163bf878aa75435 (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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
/*************************************************************************
 *
 *  $RCSfile: preload.src,v $
 *
 *  $Revision: 1.28 $
 *
 *  last change: $Author: iha $ $Date: 2002-11-25 19:52:12 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc..
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#ifndef _EXTENSIONS_PRELOAD_PRELOAD_HRC_
#include "preload.hrc"
#endif

ModalDialog RID_DLG_OEMWIZARD
{
    Text = "%PRODUCTNAME %PRODUCTVERSION";

    OutputSize      = TRUE ;
    SVLook          = TRUE ;
    Moveable        = TRUE ;
    Closeable       = TRUE ;
    Hide            = TRUE;
    PushButton PB_PREV
    {
        Size = MAP_APPFONT ( 50 , 14 ) ;
        Text = "<< Zurck" ;
        Text [ english_us ] = "<< Back" ;
        Text[ portuguese ] = "<< Back";
        Text[ russian ] = "<< Back";
        Text[ greek ] = "<< Back";
        Text[ dutch ] = "<< Vorige";
        Text[ french ] = "<< Prcdent";
        Text[ spanish ] = "<< Regresar";
        Text[ finnish ] = "<< Back";
        Text[ italian ] = "<< Indietro";
        Text[ danish ] = "<< Tilbage";
        Text[ swedish ] = "<< Tillbaka";
        Text[ polish ] = "<< Back";
        Text[ portuguese_brazilian ] = "<< Voltar";
        Text[ japanese ] = "<< 戻る";
        Text[ korean ] = "<< 이전";
        Text[ chinese_simplified ] = "<< 返回";
        Text[ chinese_traditional ] = "<< 返回";
        Text[ turkish ] = "<< Back";
        Text[ arabic ] = "<< Back";
        Text[ catalan ] = "<< Enrere";
        Text[ thai ] = "<< Back";
    };
    PushButton PB_NEXT
    {
        Size = MAP_APPFONT ( 50 , 14 ) ;
        Text = "Weiter >>" ;
        Text [ english_us ] = "Next >>" ;
        Text[ portuguese ] = "Next >>";
        Text[ russian ] = "Next >>";
        Text[ greek ] = "Next >>";
        Text[ dutch ] = "Volgende >>";
        Text[ french ] = "Suivant >>";
        Text[ spanish ] = "Siguiente >>";
        Text[ finnish ] = "Next >>";
        Text[ italian ] = "Avanti >>";
        Text[ danish ] = "Nste >>";
        Text[ swedish ] = "Nsta >>";
        Text[ polish ] = "Next >>";
        Text[ portuguese_brazilian ] = "Prxima >>";
        Text[ japanese ] = "次へ >>";
        Text[ korean ] = "다음 >>";
        Text[ chinese_simplified ] = "继续 >>";
        Text[ chinese_traditional ] = "繼續 >>";
        Text[ turkish ] = "Next >>";
        Text[ arabic ] = "Next >>";
        Text[ catalan ] = "Segent >>";
        Text[ thai ] = "Next >>";
    };
    CancelButton PB_CANCEL
    {
        Size = MAP_APPFONT ( 50 , 14 ) ;
    };
    String ST_ACCEPT
    {
        Text = "Akzeptieren";
        Text[English] = "Accept";
        Text[ english_us ] = "Accept";
        Text[ portuguese ] = "Accept";
        Text[ russian ] = "Accept";
        Text[ greek ] = "Accept";
        Text[ dutch ] = "Accepteren";
        Text[ french ] = "Accepter";
        Text[ spanish ] = "Aceptar";
        Text[ finnish ] = "Accept";
        Text[ italian ] = "Accetto";
        Text[ danish ] = "Accepter";
        Text[ swedish ] = "Acceptera";
        Text[ polish ] = "Accept";
        Text[ portuguese_brazilian ] = "Aceitar";
        Text[ japanese ] = "同意する";
        Text[ korean ] = "동의";
        Text[ chinese_simplified ] = "接受";
        Text[ chinese_traditional ] = "接受";
        Text[ turkish ] = "Accept";
        Text[ arabic ] = "Accept";
        Text[ catalan ] = "Accepta";
        Text[ thai ] = "Accept";
    };
    String ST_FINISH
    {
        Text = "Fertig stellen";
        Text[English] = "Finish";
        Text[ english_us ] = "Finish";
        Text[ portuguese ] = "Finish";
        Text[ russian ] = "Finish";
        Text[ greek ] = "Finish";
        Text[ dutch ] = "Voltooien";
        Text[ french ] = "Crer";
        Text[ spanish ] = "Crear";
        Text[ finnish ] = "Finish";
        Text[ italian ] = "Fine";
        Text[ danish ] = "Udfr";
        Text[ swedish ] = "Frdigstll";
        Text[ polish ] = "Finish";
        Text[ portuguese_brazilian ] = "Concluir";
        Text[ japanese ] = "完了";
        Text[ korean ] = "완성하기";
        Text[ chinese_simplified ] = "完成";
        Text[ chinese_traditional ] = "完成";
        Text[ turkish ] = "Finish";
        Text[ arabic ] = "Finish";
        Text[ catalan ] = "Finalitza";
        Text[ thai ] = "สร้าง";
    };
    String ST_LICENSE_AGREEMENT
    {
        Text = " - Software-Lizenzvereinbarung";
        Text[english_us] = " - Software License Agreement";
        Text[ portuguese ] = " - Software License Agreement";
        Text[ russian ] = " - Software License Agreement";
        Text[ greek ] = " - Software License Agreement";
        Text[ dutch ] = " - Software-licentieovereenkomst";
        Text[ french ] = " - Contrat de licence du logiciel";
        Text[ spanish ] = " - Contrato de licencia para el uso de software ";
        Text[ finnish ] = " - Software License Agreement";
        Text[ italian ] = " - Accordo di licenza del software";
        Text[ danish ] = "#NAME?";
        Text[ swedish ] = " - Licensavtal fr progamvara";
        Text[ polish ] = " - Software License Agreement";
        Text[ portuguese_brazilian ] = " - Contrato de licena para o uso do software";
        Text[ japanese ] = " - ソフトウェア使用許諾協定";
        Text[ korean ] = " - 소프트웨어 라이센스 협정";
        Text[ chinese_simplified ] = " - 软件使用协约";
        Text[ chinese_traditional ] = " - 軟體使用協定";
        Text[ turkish ] = " - Software License Agreement";
        Text[ arabic ] = " - Software License Agreement";
        Text[ catalan ] = "- Aceptaci de la llicncia";
        Text[ thai ] = " - Software License Agreement";
    };

    String ST_INSERT_USER_DATA
    {
        Text = " - Benutzerdaten";
        Text[english_us] = "- User Data";
        Text[ portuguese ] = "- User Data";
        Text[ russian ] = "- User Data";
        Text[ greek ] = "- User Data";
        Text[ dutch ] = "- User Data";
        Text[ french ] = " - Donnes d'identit";
        Text[ spanish ] = " - Datos del usuario";
        Text[ finnish ] = "- User Data";
        Text[ italian ] = " - Dati utente";
        Text[ danish ] = "- User Data";
        Text[ swedish ] = " - Anvndardata";
        Text[ polish ] = "- User Data";
        Text[ portuguese_brazilian ] = "- Dados do usurio";
        Text[ japanese ] = "- ユーザーデータ";
        Text[ korean ] = "- 사용자 데이터";
        Text[ chinese_simplified ] = "- 使用者数据";
        Text[ chinese_traditional ] = "- 使用者資料";
        Text[ turkish ] = "- User Data";
        Text[ arabic ] = "- User Data";
        Text[ catalan ] = "- Dades d'usuari";
        Text[ thai ] = "- User Data";
    };
};
TabPage RID_TP_WELCOME
{
//    HelpId = ;
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Hide = TRUE ;
    Size = MAP_APPFONT ( 260 , 185 ) ;
    Text = "Willkommen" ;
    Text [ ENGLISH ] = "Welcome" ;
    Text[ english_us ] = "Welcome";
    Text[ portuguese ] = "Welcome";
    Text[ russian ] = "Welcome";
    Text[ greek ] = "Welcome";
    Text[ dutch ] = "Welkom";
    Text[ french ] = "Bienvenue";
    Text[ spanish ] = "Bienvenido";
    Text[ finnish ] = "Welcome";
    Text[ italian ] = "Benvenuti";
    Text[ danish ] = "Velkommen";
    Text[ swedish ] = "Vlkommen";
    Text[ polish ] = "Welcome";
    Text[ portuguese_brazilian ] = "Bem vindo";
    Text[ japanese ] = "ようこそ";
    Text[ korean ] = "환영합니다";
    Text[ chinese_simplified ] = "欢迎";
    Text[ chinese_traditional ] = "歡迎";
    Text[ turkish ] = "Welcome";
    Text[ arabic ] = "Welcome";
    Text[ catalan ] = "Benvinguts";
    FixedText FT_INFO
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 248 , 174 ) ;
        WordBreak = TRUE ;
        Text [ language_user1 ] = "EM 30 AUG 2002: DO NOT DELETE YOUR TRANSLATION!!! THE GERMAN TEXT IS MISSING BUT WILL RETURN!! ENGLISH IS CORRECT!LHO: Please eliminate any notion about the training in all languages except German, English, French and Japanese";
        Text = "Herzlich willkommen zu %PRODUCTNAME %PRODUCTVERSION OEM\n\n"
        "Um %PRODUCTNAME %PRODUCTVERSION OEM starten zu knnen, geben Sie bitte auf der dem Lizenztext folgenden "
        "Dialogseite Ihre Benutzerdaten ein. In der Readme-Datei im %PRODUCTNAME-Produktverzeichnis finden Sie "
        "wichtige Hinweise zum Programm. Bitte lesen Sie diese Hinweise aufmerksam durch. "
        "Des weiteren finden Sie ausfhrliche Informationen auf der Internetseite von Sun unter\n\n"
        "http://www.sun.com/staroffice.\n\nSupport und Schulung:\n\n"
        "Nutzen Sie die Mglichkeit des kostenlosen Software-Supports fr 60 Tage ab Kaufdatum. "
        "Auch eine kostenlose, Web-basierte %PRODUCTNAME-Schulung des Sun(tm) Web Learning Centers wartet auf Sie. "
        "Dieses Schulungsangebot ist 90 Tage ab Registrierung gltig. "
        "Besuchen Sie folgende Webseite fr weitere Details.\n\nhttp://www.sun.com/star/service\n\n"
        "Wir wnschen Ihnen viel Spa und Erfolg mit Ihrem neuen %PRODUCTNAME.\nIhr %PRODUCTNAME Team.";
        Text [ english_us ] = "Welcome to %PRODUCTNAME %PRODUCTVERSION OEM\n\nTo start %PRODUCTNAME %PRODUCTVERSION OEM, please enter your personal data in the dialog following the license text. Important information is contained in the readme files which are located in the %PRODUCTNAME product directory. Please read these files carefully. You can also find detailed information on the Sun website at\n\nhttp://www.sun.com/staroffice.\n\nSupport and Training:\n\nGet FREE StarOffice 6.0 software support valid for 60 days from date of purchase and FREE access to \"Transitioning to the %PRODUCTNAME %PRODUCTVERSION Application Suite\" (WO-1605), a web-based training course available through the Sun(tm) Web Learning Center (valid for 90 days from the date of registration). To take advantage of this offer, visit the website below.\n\nhttp://www.sun.com/star/service\n\nWe hope you enjoy working with %PRODUCTNAME.";
        Text[ portuguese ] = "Welcome to %PRODUCTNAME %PRODUCTVERSION OEM\n\nTo start %PRODUCTNAME %PRODUCTVERSION OEM, please enter your personal data in the dialog following the license text.\n\nImportant information is contained in the readme files which are located in the StarOffice product directory. Please read these files carefully.\n\nYou can also find detailed information on the Sun Internet pages at\n\nhttp://www.sun.com/staroffice.\n\nWe hope you enjoy working with StarOffice.";
        Text[ russian ] = "Welcome to %PRODUCTNAME %PRODUCTVERSION OEM\n\nTo start %PRODUCTNAME %PRODUCTVERSION OEM, please enter your personal data in the dialog following the license text.\n\nImportant information is contained in the readme files which are located in the StarOffice product directory. Please read these files carefully.\n\nYou can also find detailed information on the Sun Internet pages at\n\nhttp://www.sun.com/staroffice.\n\nWe hope you enjoy working with StarOffice.";
        Text[ greek ] = "Welcome to %PRODUCTNAME %PRODUCTVERSION OEM\n\nTo start %PRODUCTNAME %PRODUCTVERSION OEM, please enter your personal data in the dialog following the license text.\n\nImportant information is contained in the readme files which are located in the StarOffice product directory. Please read these files carefully.\n\nYou can also find detailed information on the Sun Internet pages at\n\nhttp://www.sun.com/staroffice.\n\nWe hope you enjoy working with StarOffice.";
        Text[ dutch ] = "Welkom bij %PRODUCTNAME %PRODUCTVERSION OEM\n\nVoordat u %PRODUCTNAME %PRODUCTVERSION OEM kunt starten, moet u in het dialoogvenster dat na de licentietekst wordt weergegeven uw gebruikersgegevens invoeren.\n\nIn het bestand Readme in de %PRODUCTNAME-productdirectory vindt u belangrijke informatie over het programma. Lees dit bestand zorgvuldig door.\n\nBovendien is er gedetailleerde informatie beschikbaar op de internetsite van Sun. Het adres is\n\nhttp://www.sun.com/staroffice.\n\nVeel succes met het gebruik van de nieuwe versie van %PRODUCTNAME.\n\nHet %PRODUCTNAME-team.";
        Text[ french ] = "%PRODUCTNAME %PRODUCTVERSION OEM - Bienvenue !\n\nAvant de pouvoir dmarrer %PRODUCTNAME %PRODUCTVERSION OEM, vous devez spcifier vos donnes d'identit sur la page suivant la licence dans la bote de dialogue. Le fichier Readme (plac dans le rpertoire de %PRODUCTNAME) contient des informations importantes sur le programme. Il est vivement conseill d'en prendre connaissance. Vous trouverez galement des informations dtailles sur le site Internet de Sun  l'adresse\n\nhttp://www.sun.com/staroffice.\n\nSupport et formation : Profitez du support logiciel gratuit durant 60 jours  compter de la date d'achat ! Une formation Web pour StarOffice vous est galement offerte par le Sun(tm) Web Learning Center ; cette offre est valable durant 90 jours  compter de la date d'enregistrement. Pour plus de dtails, visitez le site Web\n\nhttp://www.sun.com/star/service\n\nL'quipe de %PRODUCTNAME espre que cette nouvelle version rpondra  vos attentes et vous souhaite un agrable travail !";
        Text[ spanish ] = "Bienvenidos a %PRODUCTNAME %PRODUCTVERSION OEM\n\nPara iniciar %PRODUCTNAME %PRODUCTVERSION OEM, introduzca sus datos personales en el dilogo que sigue al texto de licencia. Encontrar informacin importante relativa al programa en los archivos Readme, en el directorio de %PRODUCTNAME. Lea estos archivos atentamente. Tambin encontrar informacin detallada en la pgina de Internet de Sun\n\nhttp://www.sun.com/staroffice.\n\nnSoporte y formacin:\n\nAproveche la oportunidad de llamar gratuitamente al servicio de soporte. Obtenga el soporte del software de StarOffice 6.0 de manera gratuita. Esta oferta tiene una validez de 60 das a partir de la fecha de compra. Para aprovechar esta oferta visite la pgina web siguiente.\n\nhttp://www.sun.com/star/service\n\nEsperamos que disfrute trabajando con %PRODUCTNAME.";
        Text[ finnish ] = "Welcome to %PRODUCTNAME %PRODUCTVERSION OEM\n\nTo start %PRODUCTNAME %PRODUCTVERSION OEM, please enter your personal data in the dialog following the license text.\n\nImportant information is contained in the readme files which are located in the StarOffice product directory. Please read these files carefully.\n\nYou can also find detailed information on the Sun Internet pages at\n\nhttp://www.sun.com/staroffice.\n\nWe hope you enjoy working with StarOffice.";
        Text[ italian ] = "Benvenuti a %PRODUCTNAME %PRODUCTVERSION OEM\n\nPer avviare %PRODUCTNAME %PRODUCTVERSION OEM inserite i vostri dati nel dialogo che segue il testo di licenza. Il file Readme nella cartella %PRODUCTNAME contiene informazioni importanti sul programma. Leggete il file attentamente. Troverete informazioni dettagliate alla pagina Web di Sun\nhttp://www.sun.com/staroffice.\n\nSupporto:\n\nAvete l'opportunit di effettuare una chiamata gratuita al nostro servizio di supporto StarOffice 6.0 (offerta valida per 60 giorni a partire dalla data di acquisto). Per approfittare dell'offerta andate alla pagina\n\nhttp://www.sun.com/str/service\n\nVi auguriamo buon lavoro con %PRODUCTNAME.\n\nIl team %PRODUCTNAME.";
        Text[ danish ] = "Velkommen til %PRODUCTNAME %PRODUCTVERSION OEM\n\nFor at starte %PRODUCTNAME %PRODUCTVERSION OEM skal du indtaste dine brugerdata i det skrmbillede, der flger efter teksten vedrrende licens. I Vigtigt-filen, der ligger i %PRODUCTNAME-produktbiblioteket, kan du finde vigtige oplysninger om programmet. Ls alle disse oplysninger grundigt igennem. Du finder desuden udfrlige oplysninger p Suns websted p adressen \n\nhttp://www.sun.com/staroffice.\n\nSupport og trning:\n\nBenyt dig af vores gratis support-telefon. Du kan ogs gre brug af et gratis, webbaseret StarOffice-kursus fra Sun Web Learning Centers. Disse tilbud er gldende i 60 dage efter kbsdatoen. Besg denne webside for at f yderligere oplysninger:\n\nhttp://www.sun.com/star/service\n\nVi nsker dig god fornjelse med %PRODUCTNAME.\nDit %PRODUCTNAME-team.";
        Text[ swedish ] = "Vlkommen till %PRODUCTNAME %PRODUCTVERSION OEM\n\nFr att kunna starta %PRODUCTNAME %PRODUCTVERSION OEM anger du dina anvndardata i dialogrutan som kommer efter licenstexten. I readmefilen i %PRODUCTNAME-produktkatalogen finns det viktig information om programmet. Ls igenom den hr informationen noggrant. Det finns dessutom utfrlig information p Suns Internetsida p\n\nhttp://www.sun.com/staroffice.\n\nSupport:\n\nDu fr gratis programsupport fr StarOffice 6.0 i 60 dagar efter kpdatum. Besk fljande webbsida om du vill utnyttja det hr erbjudandet.\n\nhttp://www.sun.com/star/service\n\nVi nskar dig mycket nje och framgngsrikt arbete med %PRODUCTNAME.\nDitt %PRODUCTNAME-team.";
        Text[ polish ] = "Welcome to %PRODUCTNAME %PRODUCTVERSION OEM\n\nTo start %PRODUCTNAME %PRODUCTVERSION OEM, please enter your personal data in the dialog following the license text.\n\nImportant information is contained in the readme files which are located in the StarOffice product directory. Please read these files carefully.\n\nYou can also find detailed information on the Sun Internet pages at\n\nhttp://www.sun.com/staroffice.\n\nWe hope you enjoy working with StarOffice.";
        Text[ japanese ] = "%PRODUCTNAME %PRODUCTVERSION OEM へようこそ\n\n%PRODUCTNAME %PRODUCTVERSION OEM を起動するには、ライセンス許諾書の文章に続くダイアログページでユーザーデータを入力します。%PRODUCTNAME がインストールされているディレクトリの Readme ファイルでは、ご使用にあたっての注意点を述べています。ご使用になる前に、必ずお読みください。詳細情報は、Sun の webサイトまで。\n\nhttp://www.sun.com/starsuite\n\nサポートとトレーニング:\n\nソフトウェアサービスに関しては、ご購入日から60日間は無償でご利用いただけます。また Sun(tm) Web Learning Center 主催 webベースの StarSuite トレーニングについては、登録された日から90日間は有効です。ふるってご参加ください。詳細については、以下の Webページでご案内申し上げます。\n\nhttp://www.sun.com/star/service\n%PRODUCTNAME チーム一同";
        Text[ korean ] = "%PRODUCTNAME %PRODUCTVERSION OEM 에 오신 것을 환영합니다.\n\n %PRODUCTNAME %PRODUCTVERSION OEM 을 시작하려면 라이센스 협정의 계속되는 대화 상자에서 사용자 개인 정보를 입력하십시오. \n\n %PRODUCTNAME 제품 디렉토리에 있는 Readme 파일에는 프로그램에 대한 주요 참고 사항이 수록되어 있습니다. 이 참고 사항을 주의깊게 읽으십시오.\n\n그 외의 자세한 정보는 Sun의 인터넷 사이트인 http://www.sun.com/starsuite 에서 볼 수 있습니다.\n\n지원:\n\nStarSuite 6.0은 한번의 무료 지원 전화를 제공해 드립니다 (매매일로부터 60일간 유효). 이 서비스를 이용하시려면 다음의 웹 페이지를 방문해 주십시오. http://www.sun.com/star/service\n\n%PRODUCTNAME는사용자 여러분의 더욱더 신속하고 효율적인 작업을 도울 수 있도록 최선을 다하겠습니다.\n\n %PRODUCTNAME 팀 일동.";
        Text[ chinese_simplified ] = "欢迎安装 %PRODUCTNAME %PRODUCTVERSION OEM\n\n在启动 %PRODUCTNAME %PRODUCTVERSION OEM 之前,请在许可证文字之后的对话方框内输入您的个人数据。请仔细阅读存放在 %PRODUCTNAME 目录之内的重要的 README 文档。您也能够访问 Sun 网页,阅读详细的相关资料:\n\nhttp://www.sun.com/starsuite\n\n请您利用我们提供的为期60天的免费的电话服务。本项服务的天数计算以您购买软件日期为准。请您访问我们的网站,以了解了解更多的信息:http://www.sun.com/star/service我们预祝您能够顺利、愉快地使用新版本的 %PRODUCTNAME 。\n\n%PRODUCTNAME 工作组";
        Text[ chinese_traditional ] = "歡迎安裝 %PRODUCTNAME %PRODUCTVERSION OEM\n\n在啟動 %PRODUCTNAME %PRODUCTVERSION OEM 之前,請在許可證文字之後的對話方塊內鍵入您的個人資料。請仔細閱讀存放在 %PRODUCTNAME 目錄之內的重要的 README 文件。您也能夠訪問 Sun 網站,閱讀詳細的說明資料:\n\nhttp://www.sun.com/starsuite\n\n請您利用我們提供的爲期60天的免費電話服務。本項服務的天數計算以您購買軟體日期為準。請您訪問我們網站,以獲得更多資訊:http://www.sun.com/star/service我們預祝您能夠順利、愉快地使用新版本的 %PRODUCTNAME 。\n\n%PRODUCTNAME 工作組";
        Text[ turkish ] = "Welcome to %PRODUCTNAME %PRODUCTVERSION OEM\n\nTo start %PRODUCTNAME %PRODUCTVERSION OEM, please enter your personal data in the dialog following the license text.\n\nImportant information is contained in the readme files which are located in the StarOffice product directory. Please read these files carefully.\n\nYou can also find detailed information on the Sun Internet pages at\n\nhttp://www.sun.com/staroffice.\n\nWe hope you enjoy working with StarOffice.";
        Text[ arabic ] = "Welcome to %PRODUCTNAME %PRODUCTVERSION OEM\n\nTo start %PRODUCTNAME %PRODUCTVERSION OEM, please enter your personal data in the dialog following the license text.\n\nImportant information is contained in the readme files which are located in the StarOffice product directory. Please read these files carefully.\n\nYou can also find detailed information on the Sun Internet pages at\n\nhttp://www.sun.com/staroffice.\n\nWe hope you enjoy working with StarOffice.";
        Text[ catalan ] = "Benvinguts a %PRODUCTNAME %PRODUCTVERSION OEM\n\nPer iniciar %PRODUCTNAME %PRODUCTVERSION OEM, introduu les dades personals en el quadre de dileg ms avall del text de llicncia.\n\nHi ha informaci important als fitxers readme que estan ubicats en el directori de l'StarOffice. Llegiu els fitxers amb atenci.\n\nTamb podeu trobar informaci detallada a la pgina d'Internet de Sun a\n\nhttp://www.sun.com/staroffice.\n\nEsperem que gaudeixi treballant amb l'StarOffice.";
        Text[ thai ] = "Welcome to %PRODUCTNAME %PRODUCTVERSION OEM\n\nTo start %PRODUCTNAME %PRODUCTVERSION OEM, please enter your personal data in the dialog following the license text.\n\nImportant information is contained in the readme files which are located in the StarOffice product directory. Please read these files carefully.\n\nYou can also find detailed information on the Sun Internet pages at\n\nhttp://www.sun.com/staroffice.\n\nWe hope you enjoy working with StarOffice.";
        Text[ portuguese_brazilian ] = "Bem vindo ao%PRODUCTNAME %PRODUCTVERSION OEM\n\nPara iniciar %PRODUCTNAME %PRODUCTVERSION OEM, preencha seus dados pessoais nas caixas de dilogo que seguem o texto da licena.\n\nOs arquivos readme contm informaes importantes e esto localizados no diretrio %PRODUCTNAME-. Por favor leia atentamente os arquivos.\n\nPara maiores informaes visite a pgina internet da SUN no endereo \n\nhttp://www.sun.com/staroffice.\n\nDesejamos um bom trabalho com %PRODUCTNAME-.";
    };
    Text[ thai ] = "Welcome";
};

#define LICENSE_DIALOG_WIDTH  260
#define LICENSE_DIALOG_HEIGTH 185
#define LICENSE_RIGHT_BORDER  7
#define LICENSE_BOTTOM_BORDER  0
#define LICENSE_ROW_1 (7)
#define LICENSE_COL_1 (7)

#define OFFSET        2
#define COL2_WIDTH   10
#define OFFSET_IMG   10
#define FT_HEIGHT     8
#define PB_HEIGHT    14
#define PD_WIDTH     40

#define LICENCE_HEIGHT 102
#define LICENSE_ROW_2 (LICENSE_ROW_1 + OFFSET + LICENCE_HEIGHT)
#define LICENSE_ROW_3 (LICENSE_ROW_2 + OFFSET + FT_HEIGHT)
#define LICENSE_ROW_4 (LICENSE_ROW_3 + OFFSET + 3*FT_HEIGHT )
#define LICENSE_ROW_5 (LICENSE_ROW_4 + OFFSET + FT_HEIGHT)

/*
#define LICENSE_ROW_5 (LICENSE_DIALOG_HEIGTH - LICENSE_BOTTOM_BORDER - OFFSET - FT_HEIGHT)
#define LICENSE_ROW_4 (LICENSE_ROW_5 - OFFSET - FT_HEIGHT)
#define LICENSE_ROW_3 (LICENSE_ROW_4 - OFFSET - 3*FT_HEIGHT)
#define LICENSE_ROW_2 (LICENSE_ROW_3 - OFFSET - FT_HEIGHT)
#define LICENCE_HEIGHT (LICENSE_ROW_2-LICENSE_ROW_1-OFFSET)
*/


#define LICENSE_COL_2 (LICENSE_COL_1 + OFFSET_IMG)
#define LICENSE_COL_3 (LICENSE_COL_2 + COL2_WIDTH +1)
#define LICENSE_COL_4 (LICENSE_DIALOG_WIDTH - LICENSE_RIGHT_BORDER - PD_WIDTH)

#define LICENSE_WIDTH (LICENSE_DIALOG_WIDTH - LICENSE_RIGHT_BORDER - LICENSE_ROW_1)
#define COL3_WIDTH    (LICENSE_COL_4 - LICENSE_COL_3)


TabPage RID_TP_LICENSE
{
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Hide = TRUE ;
    Size = MAP_APPFONT ( LICENSE_DIALOG_WIDTH , LICENSE_DIALOG_HEIGTH ) ;
    Text = "Lizenzvertrag" ;
    Text [ ENGLISH ] = "License Agreement" ;
    Text[ english_us ] = "License Agreement";
    Text[ portuguese ] = "License Agreement";
    Text[ russian ] = "License Agreement";
    Text[ greek ] = "License Agreement";
    Text[ dutch ] = "Licentieovereenkomst";
    Text[ french ] = "Contrat de licence";
    Text[ spanish ] = "Contrato de licencia";
    Text[ finnish ] = "License Agreement";
    Text[ italian ] = "Contratto di licenza";
    Text[ danish ] = "Licensaftale";
    Text[ swedish ] = "Licensavtal";
    Text[ polish ] = "License Agreement";
    Text[ portuguese_brazilian ] = "Contrato da Licena";
    Text[ japanese ] = "ライセンス許諾書";
    Text[ korean ] = "라이센스 계약";
    Text[ chinese_simplified ] = "用户许可协议";
    Text[ chinese_traditional ] = "使用許可協定";
    Text[ turkish ] = "License Agreement";
    Text[ arabic ] = "License Agreement";
    Text[ catalan ] = "Acord de llicncia";

    MultiLineEdit ML_LICENSE
    {
        PosSize = MAP_APPFONT ( LICENSE_COL_1 , LICENSE_ROW_1 , LICENSE_WIDTH , LICENCE_HEIGHT ) ;
        Border = TRUE ;
        VScroll = TRUE ;
        ReadOnly = TRUE ;
    };

    FixedText FT_INFO1
    {
        WordBreak = TRUE ;
        Pos = MAP_APPFONT ( LICENSE_COL_1 , LICENSE_ROW_2 ) ;
        Size = MAP_APPFONT ( LICENSE_WIDTH , FT_HEIGHT ) ;
        Text = "Bitte fhren Sie die folgenden Schritte aus, um mit der Installation fortzufahren:" ;
        Text [ english_us ] = "Please follow these steps to proceed with the installation:" ;
        Text[ spanish ] = "Siga los siguientes pasos para proceder con la instalacin:";
        Text[ italian ] = "Eseguite i seguenti passi per procedere con l'installazione:";
        Text[ swedish ] = "Utfr fljande steg fr att fortstta med installationen:";
        Text[ japanese ] = "以下の手順に従って、インストールを続行してください。";
        Text[ korean ] = "설치를 계속 진행하기 위해 다음 단계를 실행해주십시오:";
        Text[ chinese_traditional ] = "請執行下列動作,以繼續安裝:";
        Text[ french ] = "Suivez les tapes suivantes pour poursuivre l'installation :";
        Text[ chinese_simplified ] = "请执行以下的操作,继续安装:";
        Text[ portuguese ] = "Leia o seguinte contrato de licena com ateno. Se usar a barra de deslocamento poder visualizar o texto completo.";
        Text[ russian ] = ", ,   .   ,     .";
        Text[ greek ] = "    '  '.          .";
        Text[ dutch ] = "Lees a.u.b. de volgende licentieovereenkomst. Met de beeldschuifbalk  kunt u de rest ervan zichtbaar maken.";
        Text[ finnish ] = "Lue seuraava lisenssisopimus huolellisesti. Voit vieritt teksti vierityspalkin avulla.";
        Text[ danish ] = "Ls venligst den flgende licensaftale. Ved hjlp af rullepanelet kan du se resten af licensaftalen.";
        Text[ polish ] = "Prosimy przeczyta umow licencyjn. Przesunicie paska przewijania obrazu pozwala przeczyta ukryt cz umowy licencyjnej.";
        Text[ portuguese_brazilian ] = "Bitte lesen Sie das folgende Lizenzabkommen. Mit der Bildlaufleiste k?nen Sie den Rest des Lizenzabkommens sichtbar machen.";
        Text[ turkish ] = "Ltfen aadaki lisans anlamasn dikkatle okuyun. Sayfa kaydrma ubuunu kullanarak, lisans anlamasnn tamamn grntleyebilirsiniz.";
        Text[ arabic ] = "    .             .";
        Text[ catalan ] = "Llegiu el segent acord de llicncia. Amb la barra de desplaament podeu veure la resta del document.";
        Text[ thai ] = "อ่านข้อตกลงการอนุญาตต่อไปนี้อย่างระมัดระวัง ใช้แถบเลื่อนเพื่อดูทั้งข้อความ";
    };

    FixedImage IMG_ARROW
    {
        Pos = MAP_APPFONT ( LICENSE_COL_1 , LICENSE_ROW_3 ) ;
        Size = MAP_PIXEL ( 16 , 16 ) ;
        Fixed = Image
        {
            ImageBitmap = Bitmap
            {
                File = "arrow.bmp" ;
                File[ arabic ] = "m_arrow.bmp" ;
            };
            MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
        };
    };

    FixedText FT_INFO2_1
    {
        WordBreak = TRUE ;
        Pos = MAP_APPFONT ( LICENSE_COL_2 , LICENSE_ROW_3 ) ;
        Size = MAP_APPFONT ( COL2_WIDTH , FT_HEIGHT ) ;
        Text = "1." ;
        Text [ english_us ] = "1." ;
        Text[ portuguese ] = "1.";
        Text[ russian ] = "1.";
        Text[ greek ] = "1.";
        Text[ dutch ] = "1.";
        Text[ french ] = "1.";
        Text[ spanish ] = "1.";
        Text[ finnish ] = "1.";
        Text[ italian ] = "1.";
        Text[ danish ] = "1.";
        Text[ swedish ] = "1.";
        Text[ polish ] = "1.";
        Text[ portuguese_brazilian ] = "1.";
        Text[ japanese ] = "1.";
        Text[ korean ] = "1.";
        Text[ chinese_simplified ] = "1.";
        Text[ chinese_traditional ] = "1.";
        Text[ turkish ] = "1.";
        Text[ arabic ] = "1.";
        Text[ catalan ] = "1.";
        Text[ thai ] = "1.";
    };

    FixedText FT_INFO2
    {
        WordBreak = TRUE ;
        Pos = MAP_APPFONT ( LICENSE_COL_3 , LICENSE_ROW_3 ) ;
        Size = MAP_APPFONT ( COL3_WIDTH, 3*FT_HEIGHT ) ;
        Text = "Lesen Sie den gesamten Lizenzvertrag. Verwenden Sie die Bildlaufleiste oder die %PAGEDOWN Schaltflche in diesem Dialog um den gesamten Text sichtbar zu machen." ;
        Text [ english_us ] = "View the complete License Agreement. Please use the scroll bar or the '%PAGEDOWN' button in this dialog to view the entire license text." ;
        Text[ italian ] = "Leggete il seguente contratto di licenza. Con la barra di scorrimento  possibile visualizzare il resto del contratto stesso.";
        Text[ swedish ] = "Ls igenom hela licensavtalet. Anvnd rullningslisten eller %PAGEDOWN-kommandoknappen i den hr dialogrutan fr att visa hela texten.";
        Text[ korean ] = "소프트웨어 이용 약관의 내용을 상세히 읽으십시오. 스크롤바 사용하거나 대화 상자 내의 %PAGEDOWN 버튼을 누르십시오. 모든 텍스트가 표시됩니다.";
        Text[ chinese_traditional ] = "請閱讀以下的許可證協議。您能夠按一下捲軸或按一下 % 畫面向下,閱讀許可證協議的全部內容。";
        Text[ french ] = "Prenez connaissance du contrat de licence. Servez-vous de la barre de dfilement ou du bouton %PAGEDOWN afin d'afficher le texte en entier.";
        Text[ spanish ] = "Lea el acuerdo de licencia. Para visualizar el texto entero utilice la barra de desplazamiento o el botn '%PAGEDOWN'.";
        Text[ japanese ] = "次の許可協定を必ずお読みください。このダイアログにあるスクロールバーを動かすか、[下へ]ボタンを押すと、残りの文章が表示されます。";
        Text[ chinese_simplified ] = "请阅读许可证协议中的全部条款。通过卷杆或点击 %PAGEDOWN 按钮,阅读许可证协议的全部内容。";
        Text[ portuguese ] = "Clique no boto '%1' se concordar com os termos do contrato de licena. Se no os aceitar clique no boto '%2' e a instalao ser cancelada.";
        Text[ russian ] = "      ,    '%1'.        ,   '%2',    .";
        Text[ greek ] = "      ' ',    '%1'.     '%2'     .";
        Text[ dutch ] = "Accepteert u alle voorwaarden in deze licentieovereenkomst, klik dan op de knop '%1'. Gaat u niet accoord met de voorwaarden, klik dan op '%2', de installatie wordt dan gestopt.";
        Text[ finnish ] = "Jos hyvksyt kaikki lisenssisopimuksen ehdot, valitse %1. Muussa tapauksessa peruuta asennus valitsemalla %2.";
        Text[ danish ] = "Hvis du accepterer alle betingelser i licensaftalen, klik p '%1' knappen. I modsat fald klik p '%2' for at afbryde installationen.";
        Text[ polish ] = "Jeeli warunki niniejszej umowy licencyjnej zostan zaakceptowane, naley klikn przycisk '%1'. W razie niezaakceptowania ich naley klikn przycisk '%2'. Instalacja zostanie wwczas przerwana.";
        Text[ portuguese_brazilian ] = "Akzeptieren Sie s?mtliche Bedingungen im vorliegenden Lizenzabkommen, klicken Sie auf die Schaltfl?che '%1'. Stimmen Sie den Bedingungen nicht zu klicken Sie auf '%2', die Installation wird dann abgebrochen.";
        Text[ turkish ] = "Lisans anlamasndaki tm koullar kabul ediyorsanz, '%1' dmesini tklayn. Koullar kabul etmiyorsanz, '%2' dmesini tklayn. Bu durumda kurulum iptal edilecek.";
        Text[ arabic ] = "           '%1'.     ǡ   '%2'.        .";
        Text[ catalan ] = "Si accepteu les condicions d'aquest acord, feu clic a '%1'. En cas contrari feu clic sobre '%2' per abandonar la instal.laci.";
        Text[ thai ] = "ถ้าคุณยอมรับเงื่อนไขทั้งหมดของข้อตกลงการอนุญาต, ให้คลิ๊ก '%1'. ถ้าไม่, ให้คลิ๊ก '%2' เพื่อยกเลิกการติดตั้ง";
    };

    PushButton PB_PAGEDOWN
    {
        TabStop = TRUE ;
        Pos = MAP_APPFONT ( LICENSE_COL_4 , LICENSE_ROW_3 ) ;
        Size = MAP_APPFONT ( PD_WIDTH , PB_HEIGHT ) ;
        Text = "Bild ab" ;
        Text [ english_us ] = "Page Down" ;
        Text[ portuguese ] = "Page Down";
        Text[ russian ] = "Page Down";
        Text[ greek ] = "Page Down";
        Text[ dutch ] = "Page Down";
        Text[ french ] = "Suivant";
        Text[ spanish ] = "AvPg";
        Text[ finnish ] = "Page Down";
        Text[ italian ] = "PagGi";
        Text[ danish ] = "Page Down";
        Text[ swedish ] = "Page Down";
        Text[ polish ] = "Page Down";
        Text[ portuguese_brazilian ] = "Page Down";
        Text[ japanese ] = "下へ";
        Text[ korean ] = "페이지 아래로";
        Text[ chinese_simplified ] = "画面向下";
        Text[ chinese_traditional ] = "畫面向下";
        Text[ turkish ] = "Page Down";
        Text[ arabic ] = "Page Down";
        Text[ catalan ] = "Page Down";
        Text[ thai ] = "Page Down";
    };

    FixedText FT_INFO3_1
    {
        WordBreak = TRUE ;
        Pos = MAP_APPFONT ( LICENSE_COL_2 , LICENSE_ROW_4 ) ;
        Size = MAP_APPFONT ( COL2_WIDTH, FT_HEIGHT ) ;
        Text = "2." ;
        Text [ english_us ] = "2." ;
        Text[ portuguese ] = "2.";
        Text[ russian ] = "2.";
        Text[ greek ] = "2.";
        Text[ dutch ] = "2.";
        Text[ french ] = "2.";
        Text[ spanish ] = "2.";
        Text[ finnish ] = "2.";
        Text[ italian ] = "2.";
        Text[ danish ] = "2.";
        Text[ swedish ] = "2.";
        Text[ polish ] = "2.";
        Text[ portuguese_brazilian ] = "2.";
        Text[ japanese ] = "2.";
        Text[ korean ] = "2.";
        Text[ chinese_simplified ] = "2.";
        Text[ chinese_traditional ] = "2.";
        Text[ turkish ] = "2.";
        Text[ arabic ] = "2.";
        Text[ catalan ] = "2.";
        Text[ thai ] = "2.";
    };

    FixedText FT_INFO3
    {
        WordBreak = TRUE ;
        Pos = MAP_APPFONT ( LICENSE_COL_3, LICENSE_ROW_4 ) ;
        Size = MAP_APPFONT ( COL3_WIDTH, FT_HEIGHT ) ;
        Text = "Akzeptieren Sie den Lizenzvertrag." ;
        Text [ english_us ] = "Accept the License Agreement." ;
        Text[ portuguese ] = "Accept the License Agreement.";
        Text[ russian ] = "Accept the License Agreement.";
        Text[ greek ] = "Accept the License Agreement.";
        Text[ dutch ] = "Accept the License Agreement.";
        Text[ french ] = "Accepter le contrat de licence";
        Text[ spanish ] = "Aceptar el contrato de licencia.";
        Text[ finnish ] = "Accept the License Agreement.";
        Text[ italian ] = "Accetto i termini del contratto.";
        Text[ danish ] = "Accept the License Agreement.";
        Text[ swedish ] = "Acceptera licensavtalet.";
        Text[ polish ] = "Accept the License Agreement.";
        Text[ portuguese_brazilian ] = "Accept the License Agreement.";
        Text[ japanese ] = "認定許可に同意する。";
        Text[ korean ] = "사용자 이용 약관에 동의하십시오.";
        Text[ chinese_simplified ] = "接受许可证协议。";
        Text[ chinese_traditional ] = "接受許可證協議。";
        Text[ turkish ] = "Accept the License Agreement.";
        Text[ arabic ] = "Accept the License Agreement.";
        Text[ catalan ] = "Accept the License Agreement.";
        Text[ thai ] = "Accept the License Agreement.";
    };

    CheckBox CB_ACCEPT
    {
        TabStop = TRUE ;
        Pos = MAP_APPFONT ( LICENSE_COL_3, LICENSE_ROW_5 ) ;
        Size = MAP_APPFONT ( COL3_WIDTH, FT_HEIGHT ) ;
        Text = "Ich akzeptiere die Bedingungen des Vertrags." ;
        Text [ english_us ] = "I accept the terms of the Agreement." ;
        Text[ portuguese ] = "I accept the terms of the Agreement.";
        Text[ russian ] = "I accept the terms of the Agreement.";
        Text[ greek ] = "I accept the terms of the Agreement.";
        Text[ dutch ] = "I accept the terms of the Agreement.";
        Text[ french ] = "J'accepte les conditions du contrat.";
        Text[ spanish ] = "Acepto las condiciones del contrato.";
        Text[ finnish ] = "I accept the terms of the Agreement.";
        Text[ italian ] = "Accetto i termini del contratto.";
        Text[ danish ] = "I accept the terms of the Agreement.";
        Text[ swedish ] = "Jag accepterar villkoren i avtalet.";
        Text[ polish ] = "I accept the terms of the Agreement.";
        Text[ portuguese_brazilian ] = "I accept the terms of the Agreement.";
        Text[ japanese ] = "協定条件に同意します。";
        Text[ korean ] = "이용 약관 조건에 동의합니다.";
        Text[ chinese_simplified ] = "我接受协议的条款。";
        Text[ chinese_traditional ] = "我接受協約的條款。";
        Text[ turkish ] = "I accept the terms of the Agreement.";
        Text[ arabic ] = "I accept the terms of the Agreement.";
        Text[ catalan ] = "I accept the terms of the Agreement.";
        Text[ thai ] = "I accept the terms of the Agreement.";
    };

    String LICENCE_ACCEPT
    {
        Text = "~Akzeptieren" ;
        Text [ English ] = "~Accept" ;
        Text [ italian ] = "~Accetto" ;
        Text [ french ] = "~Accepter" ;
        Text [ spanish ] = "~Aceptar" ;
        Text [ english_us ] = "~Accept" ;
        Text [ portuguese ] = "~Aceitar" ;
        Text [ portuguese_brazilian ] = "Akzeptieren" ;
        Text [ swedish ] = "A~cceptera" ;
        Text [ danish ] = "Accepter" ;
        Text [ dutch ] = "~Accepteren" ;
        Text[ chinese_simplified ] = "接受(~A)";
        Text[ russian ] = "";
        Text[ polish ] = "Zaakceptuj";
        Text[ japanese ] = "同意する(~A)";
        Text[ chinese_traditional ] = "接受(~A)";
        Text[ arabic ] = "";
        Text[ greek ] = "~";
        Text[ korean ] = "동의(~A)";
        Text[ turkish ] = "Kabul ediyorum";
        Text[ language_user1 ] = " ";
        Text[ catalan ] = "~Accepta";
        Text[ finnish ] = "~Hyvksy";
        Text[ thai ] = "~ยอมรับ";
    };

    String LICENCE_NOTACCEPT
    {
        Text = "Ablehnen" ;
        Text [ english_us ] = "Decline" ;
        Text[ spanish ] = "No aceptar";
        Text[ swedish ] = "Acceptera inte";
        Text[ chinese_traditional ] = "拒絕(R)";
        Text[ french ] = "Refuser";
        Text[ japanese ] = "同意しない";
        Text[ chinese_simplified ] = "不接受";
        Text[ portuguese ] = "~Cancelar";
        Text[ russian ] = " ";
        Text[ greek ] = " ";
        Text[ dutch ] = "~Niet accepteren";
        Text[ finnish ] = "~Peruuta";
        Text[ italian ] = "~Non accetto";
        Text[ danish ] = "Accepter ikke";
        Text[ polish ] = "Odrzu";
        Text[ portuguese_brazilian ] = "Nicht akzeptieren";
        Text[ korean ] = "동의 안함(~C)";
        Text[ turkish ] = "ptal";
        Text[ arabic ] = "";
        Text[ catalan ] = "~No acceptar";
        Text[ thai ] = "~ยกเลิก";
    };

    Text[ thai ] = "License Agreement";
};