summaryrefslogtreecommitdiff
path: root/extensions/source/abpilot/abspilot.src
blob: d5d2585a8720a6748d599d12a76051974a7bc86a (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
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
/*************************************************************************
 *
 *  $RCSfile: abspilot.src,v $
 *
 *  $Revision: 1.3 $
 *
 *  last change: $Author: rt $ $Date: 2001-08-07 15:09:17 $
 *
 *  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_ABPRESID_HRC
#include "abpresid.hrc"
#endif

//........................................................................
ModalDialog RID_DLG_ADDRESSBOOKSOURCEPILOT
{
    Text                = "Autopilot Adress-Datenquelle" ;
    Text [ english ]    = "Autopilot Address Book Data Source" ;
    Text [ english_us ] = "Autopilot Address Book Data Source" ;

    OutputSize      = TRUE ;
    SVLook          = TRUE ;
    Moveable        = TRUE ;
    Closeable       = TRUE ;
    Hide            = TRUE;
    Text[ portuguese ] = "Autopilot Address Book Data Source";
    Text[ russian ] = "Autopilot Address Book Data Source";
    Text[ greek ] = "Autopilot Address Book Data Source";
    Text[ dutch ] = "Autopilot Address Book Data Source";
    Text[ french ] = "Autopilot Address Book Data Source";
    Text[ spanish ] = "Autopilot Address Book Data Source";
    Text[ finnish ] = "Autopilot Address Book Data Source";
    Text[ italian ] = "Autopilot Address Book Data Source";
    Text[ danish ] = "Autopilot Address Book Data Source";
    Text[ swedish ] = "Autopilot Address Book Data Source";
    Text[ polish ] = "Autopilot Address Book Data Source";
    Text[ portuguese_brazilian ] = "Autopilot Address Book Data Source";
    Text[ japanese ] = "Autopilot Address Book Data Source";
    Text[ korean ] = "Autopilot Address Book Data Source";
    Text[ chinese_simplified ] = "Autopilot Address Book Data Source";
    Text[ chinese_traditional ] = "Autopilot Address Book Data Source";
    Text[ turkish ] = "Autopilot Address Book Data Source";
    Text[ arabic ] = "Autopilot Address Book Data Source";
    Text[ catalan ] = "Autopilot Address Book Data Source";
};

//........................................................................
TabPage RID_PAGE_SELECTABTYPE
{
    SVLook  = TRUE ;
    Size    = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ;

    Text = "Willkommen zum Adress-Datenquellen AutoPiloten";
    Text [ english ] = "Welcome to the Address Data Source AutoPilot";
    Text [ english_us ] = "Welcome to the Address Data Source AutoPilot";

    FixedText FT_TYPE_HINTS
    {
        Pos     = MAP_APPFONT ( BORDER_X, 9 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 2 * BORDER_X, 40 ) ;
        WordBreak = TRUE;

        Text = "%PRODUCTNAME bietet Ihnen die Mglichkeit, auf bereits in Ihrem Systemvorhandene Adress-Daten zuzugreifen.\n"
            "Dazu wird eine %PRODUCTNAME Datenquelle angelegt, unter der Ihre Adressbcher als Tabellen zugnglich sind.\n\n"
            "Dieser Auto-Pilot untersttzt sie bei der Einrichtung dieser Datenquelle.";
        Text [ english ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\n"
            "For this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\n"
            "This auto pilot will assist you in the creation of this data source.";
        Text [ english_us ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ portuguese ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ russian ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ greek ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ dutch ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ french ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ spanish ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ finnish ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ italian ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ danish ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ swedish ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ polish ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ portuguese_brazilian ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ japanese ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ korean ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ chinese_simplified ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ chinese_traditional ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ turkish ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ arabic ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
        Text[ catalan ] = "%PRODUCTNAME allows you to access address data which is already present in your system.\nFor this, a new %PRODUCTNAME data source will be created, where your address data is available as tables.\n\nThis auto pilot will assist you in the creation of this data source.";
    };

    FixedLine FL_TYPE
    {
        Pos     = MAP_APPFONT ( 7, 56 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 14, 8 ) ;

        Text = "Bitte whlen sie den Typ Ihres externen Adressbuches:";
        Text [ english ] = "Please choose the type of your external address book:";
        Text [ english_us ] = "Please choose the type of your external address book:";
        Text[ portuguese ] = "Please choose the type of your external address book:";
        Text[ russian ] = "Please choose the type of your external address book:";
        Text[ greek ] = "Please choose the type of your external address book:";
        Text[ dutch ] = "Please choose the type of your external address book:";
        Text[ french ] = "Please choose the type of your external address book:";
        Text[ spanish ] = "Please choose the type of your external address book:";
        Text[ finnish ] = "Please choose the type of your external address book:";
        Text[ italian ] = "Please choose the type of your external address book:";
        Text[ danish ] = "Please choose the type of your external address book:";
        Text[ swedish ] = "Please choose the type of your external address book:";
        Text[ polish ] = "Please choose the type of your external address book:";
        Text[ portuguese_brazilian ] = "Please choose the type of your external address book:";
        Text[ japanese ] = "Please choose the type of your external address book:";
        Text[ korean ] = "Please choose the type of your external address book:";
        Text[ chinese_simplified ] = "Please choose the type of your external address book:";
        Text[ chinese_traditional ] = "Please choose the type of your external address book:";
        Text[ turkish ] = "Please choose the type of your external address book:";
        Text[ arabic ] = "Please choose the type of your external address book:";
        Text[ catalan ] = "Please choose the type of your external address book:";
    };

    RadioButton RB_MORK
    {
        Pos     = MAP_APPFONT ( 15, 68 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 22, 8 ) ;

        Text = "Mozilla / Netscape 6.x";
        Text [ english ] = "Mozilla / Netscape 6.x";
        Text [ english_us ] = "Mozilla / Netscape 6.x";
        Group = TRUE;
        Text[ portuguese ] = "Mozilla / Netscape 6.x";
        Text[ russian ] = "Mozilla / Netscape 6.x";
        Text[ greek ] = "Mozilla / Netscape 6.x";
        Text[ dutch ] = "Mozilla / Netscape 6.x";
        Text[ french ] = "Mozilla / Netscape 6.x";
        Text[ spanish ] = "Mozilla / Netscape 6.x";
        Text[ finnish ] = "Mozilla / Netscape 6.x";
        Text[ italian ] = "Mozilla / Netscape 6.x";
        Text[ danish ] = "Mozilla / Netscape 6.x";
        Text[ swedish ] = "Mozilla / Netscape 6.x";
        Text[ polish ] = "Mozilla / Netscape 6.x";
        Text[ portuguese_brazilian ] = "Mozilla / Netscape 6.x";
        Text[ japanese ] = "Mozilla / Netscape 6.x";
        Text[ korean ] = "Mozilla / Netscape 6.x";
        Text[ chinese_simplified ] = "Mozilla / Netscape 6.x";
        Text[ chinese_traditional ] = "Mozilla / Netscape 6.x";
        Text[ turkish ] = "Mozilla / Netscape 6.x";
        Text[ arabic ] = "Mozilla / Netscape 6.x";
        Text[ catalan ] = "Mozilla / Netscape 6.x";
    };
    RadioButton RB_LDAP
    {
        Pos     = MAP_APPFONT ( 15, 79 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 22, 8 ) ;

        Text = "LDAP Adress-Bestand";
        Text [ english ] = "LDAP address data";
        Text [ english_us ] = "LDAP address data";
        Text[ portuguese ] = "LDAP address data";
        Text[ russian ] = "LDAP address data";
        Text[ greek ] = "LDAP address data";
        Text[ dutch ] = "LDAP address data";
        Text[ french ] = "LDAP address data";
        Text[ spanish ] = "LDAP address data";
        Text[ finnish ] = "LDAP address data";
        Text[ italian ] = "LDAP address data";
        Text[ danish ] = "LDAP address data";
        Text[ swedish ] = "LDAP address data";
        Text[ polish ] = "LDAP address data";
        Text[ portuguese_brazilian ] = "LDAP address data";
        Text[ japanese ] = "LDAP address data";
        Text[ korean ] = "LDAP address data";
        Text[ chinese_simplified ] = "LDAP address data";
        Text[ chinese_traditional ] = "LDAP address data";
        Text[ turkish ] = "LDAP address data";
        Text[ arabic ] = "LDAP address data";
        Text[ catalan ] = "LDAP address data";
    };
    RadioButton RB_OUTLOOK
    {
        Pos     = MAP_APPFONT ( 15, 90 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 22, 8 ) ;

        Text = "Outlook Adressbuch";
        Text [ english ] = "Outlook address book";
        Text [ english_us ] = "Outlook address book";
        Text[ portuguese ] = "Outlook address book";
        Text[ russian ] = "Outlook address book";
        Text[ greek ] = "Outlook address book";
        Text[ dutch ] = "Outlook address book";
        Text[ french ] = "Outlook address book";
        Text[ spanish ] = "Outlook address book";
        Text[ finnish ] = "Outlook address book";
        Text[ italian ] = "Outlook address book";
        Text[ danish ] = "Outlook address book";
        Text[ swedish ] = "Outlook address book";
        Text[ polish ] = "Outlook address book";
        Text[ portuguese_brazilian ] = "Outlook address book";
        Text[ japanese ] = "Outlook address book";
        Text[ korean ] = "Outlook address book";
        Text[ chinese_simplified ] = "Outlook address book";
        Text[ chinese_traditional ] = "Outlook address book";
        Text[ turkish ] = "Outlook address book";
        Text[ arabic ] = "Outlook address book";
        Text[ catalan ] = "Outlook address book";
    };
    RadioButton RB_OUTLOOKEXPRESS
    {
        Pos     = MAP_APPFONT ( 15,101 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 22, 8 ) ;

        Text = "Windows System-Adressbuch";
        Text [ english ] = "Windows system address book";
        Text [ english_us ] = "Windows system address book";
        Text[ portuguese ] = "Windows system address book";
        Text[ russian ] = "Windows system address book";
        Text[ greek ] = "Windows system address book";
        Text[ dutch ] = "Windows system address book";
        Text[ french ] = "Windows system address book";
        Text[ spanish ] = "Windows system address book";
        Text[ finnish ] = "Windows system address book";
        Text[ italian ] = "Windows system address book";
        Text[ danish ] = "Windows system address book";
        Text[ swedish ] = "Windows system address book";
        Text[ polish ] = "Windows system address book";
        Text[ portuguese_brazilian ] = "Windows system address book";
        Text[ japanese ] = "Windows system address book";
        Text[ korean ] = "Windows system address book";
        Text[ chinese_simplified ] = "Windows system address book";
        Text[ chinese_traditional ] = "Windows system address book";
        Text[ turkish ] = "Windows system address book";
        Text[ arabic ] = "Windows system address book";
        Text[ catalan ] = "Windows system address book";
    };
    RadioButton RB_OTHER
    {
        Pos     = MAP_APPFONT ( 15, 112 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 22, 8 ) ;

        Text = "andere externe Datenquelle";
        Text [ english ] = "other external data source";
        Text [ english_us ] = "other external data source";
        Text[ portuguese ] = "other external data source";
        Text[ russian ] = "other external data source";
        Text[ greek ] = "other external data source";
        Text[ dutch ] = "other external data source";
        Text[ french ] = "other external data source";
        Text[ spanish ] = "other external data source";
        Text[ finnish ] = "other external data source";
        Text[ italian ] = "other external data source";
        Text[ danish ] = "other external data source";
        Text[ swedish ] = "other external data source";
        Text[ polish ] = "other external data source";
        Text[ portuguese_brazilian ] = "other external data source";
        Text[ japanese ] = "other external data source";
        Text[ korean ] = "other external data source";
        Text[ chinese_simplified ] = "other external data source";
        Text[ chinese_traditional ] = "other external data source";
        Text[ turkish ] = "other external data source";
        Text[ arabic ] = "other external data source";
        Text[ catalan ] = "other external data source";
    };
    Text[ portuguese ] = "Welcome to the Address Data Source AutoPilot";
    Text[ russian ] = "Welcome to the Address Data Source AutoPilot";
    Text[ greek ] = "Welcome to the Address Data Source AutoPilot";
    Text[ dutch ] = "Welcome to the Address Data Source AutoPilot";
    Text[ french ] = "Welcome to the Address Data Source AutoPilot";
    Text[ spanish ] = "Welcome to the Address Data Source AutoPilot";
    Text[ finnish ] = "Welcome to the Address Data Source AutoPilot";
    Text[ italian ] = "Welcome to the Address Data Source AutoPilot";
    Text[ danish ] = "Welcome to the Address Data Source AutoPilot";
    Text[ swedish ] = "Welcome to the Address Data Source AutoPilot";
    Text[ polish ] = "Welcome to the Address Data Source AutoPilot";
    Text[ portuguese_brazilian ] = "Welcome to the Address Data Source AutoPilot";
    Text[ japanese ] = "Welcome to the Address Data Source AutoPilot";
    Text[ korean ] = "Welcome to the Address Data Source AutoPilot";
    Text[ chinese_simplified ] = "Welcome to the Address Data Source AutoPilot";
    Text[ chinese_traditional ] = "Welcome to the Address Data Source AutoPilot";
    Text[ turkish ] = "Welcome to the Address Data Source AutoPilot";
    Text[ arabic ] = "Welcome to the Address Data Source AutoPilot";
    Text[ catalan ] = "Welcome to the Address Data Source AutoPilot";
};

//........................................................................
TabPage RID_PAGE_ADMININVOKATION
{
    SVLook  = TRUE ;
    Size    = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ;

    Text = "Zustzliche Einstellungen";
    Text [ english ] = "Additional Settings";
    Text [ english_us ] = "Additional Settings";

    FixedText FT_ADMINEXPLANATION
    {
        Pos     = MAP_APPFONT ( BORDER_X, 9 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 2 * BORDER_X, 48 ) ;
        WordBreak = TRUE;

        Text = "Um die neue Datenquelle einzurichten, sind noch Weiter gehende Angaben notwendig.\n\n"
            "Dafr wird, sobald die auf den unten befindlichen Button drcken, ein weiterer Dialog geffnet. "
            "Nehmen Sie dort bitte die fehlenden Einstellungen vor.";
        Text [ english ] = "To set up the new data source, some additional information is needed.\n\n"
            "For this, another dialog will be opened, as soon as you press the button below. "
            "There, please specify all missing settings.";
        Text [ english_us ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ portuguese ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ russian ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ greek ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ dutch ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ french ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ spanish ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ finnish ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ italian ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ danish ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ swedish ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ polish ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ portuguese_brazilian ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ japanese ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ korean ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ chinese_simplified ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ chinese_traditional ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ turkish ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ arabic ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
        Text[ catalan ] = "To set up the new data source, some additional information is needed.\n\nFor this, another dialog will be opened, as soon as you press the button below. There, please specify all missing settings.";
    };

    PushButton PB_INVOKE_ADMIN_DIALOG
    {
        Pos     = MAP_APPFONT ( ( WINDOW_SIZE_X - BUTTON_SIZE_X ) / 2, 60 ) ;
        Size    = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y ) ;

        Text = "Einstellungen";
        Text [ english ] = "Settings";
        Text [ english_us ] = "Settings";
        Text[ portuguese ] = "Settings";
        Text[ russian ] = "Settings";
        Text[ greek ] = "Settings";
        Text[ dutch ] = "Settings";
        Text[ french ] = "Settings";
        Text[ spanish ] = "Settings";
        Text[ finnish ] = "Settings";
        Text[ italian ] = "Settings";
        Text[ danish ] = "Settings";
        Text[ swedish ] = "Settings";
        Text[ polish ] = "Settings";
        Text[ portuguese_brazilian ] = "Settings";
        Text[ japanese ] = "Settings";
        Text[ korean ] = "Settings";
        Text[ chinese_simplified ] = "Settings";
        Text[ chinese_traditional ] = "Settings";
        Text[ turkish ] = "Settings";
        Text[ arabic ] = "Settings";
        Text[ catalan ] = "Settings";
    };

    FixedText FT_ERROR
    {
        Pos     = MAP_APPFONT ( BORDER_X, WINDOW_SIZE_Y - HEADER_SIZE_Y - 7 - 48 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 2 * BORDER_X, 48 ) ;
        WordBreak = TRUE;
        Hide = TRUE;

        Text = "Die Verbindung zur Datenquelle konnte nicht hergestellt werden.\n"
            "Bitte berprfen Sie, bevor Sie fortfahren, die gemachten Einstellungen, oder whlen Sie (auf der vorhergehenden "
            "Seite) einen anderen Typ fr Ihre  Adress-Datenquelle.";
        Text [ english ] = "The connection to the data source could not be established.\n"
            "Before you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text [ english_us ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ portuguese ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ russian ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ greek ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ dutch ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ french ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ spanish ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ finnish ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ italian ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ danish ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ swedish ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ polish ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ portuguese_brazilian ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ japanese ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ korean ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ chinese_simplified ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ chinese_traditional ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ turkish ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ arabic ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
        Text[ catalan ] = "The connection to the data source could not be established.\nBefore you proceed, please check the settings made, or (on the previous page) choose another type of address data source.";
    };
    Text[ portuguese ] = "Additional Settings";
    Text[ russian ] = "Additional Settings";
    Text[ greek ] = "Additional Settings";
    Text[ dutch ] = "Additional Settings";
    Text[ french ] = "Additional Settings";
    Text[ spanish ] = "Additional Settings";
    Text[ finnish ] = "Additional Settings";
    Text[ italian ] = "Additional Settings";
    Text[ danish ] = "Additional Settings";
    Text[ swedish ] = "Additional Settings";
    Text[ polish ] = "Additional Settings";
    Text[ portuguese_brazilian ] = "Additional Settings";
    Text[ japanese ] = "Additional Settings";
    Text[ korean ] = "Additional Settings";
    Text[ chinese_simplified ] = "Additional Settings";
    Text[ chinese_traditional ] = "Additional Settings";
    Text[ turkish ] = "Additional Settings";
    Text[ arabic ] = "Additional Settings";
    Text[ catalan ] = "Additional Settings";
};

//........................................................................
TabPage RID_PAGE_TABLESELECTION
{
    SVLook  = TRUE ;
    Size    = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ;

    Text = "Tabelle auswhlen";
    Text [ english ] = "Select Table";
    Text [ english_us ] = "Select Table";

    FixedText FL_TOOMUCHTABLES
    {
        Pos     = MAP_APPFONT ( BORDER_X, 9 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 2 * BORDER_X, 24 ) ;
        WordBreak = TRUE;

        Text = "Die von Ihnen gewhlte externe Datenquelle enthlt mehrere Adress-Bestnde (respektive Tabellen).\n"
            "Bitte whlen Sie denjenigen aus, mit dem Sie hauptschlich arbeiten wollen:";
        Text [ english ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\n"
            "Please choose the one you primarily want to work with:";
        Text [ english_us ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ portuguese ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ russian ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ greek ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ dutch ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ french ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ spanish ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ finnish ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ italian ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ danish ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ swedish ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ polish ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ portuguese_brazilian ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ japanese ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ korean ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ chinese_simplified ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ chinese_traditional ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ turkish ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ arabic ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
        Text[ catalan ] = "The external data source chosen by you contains more than one address stock (or tables, respectively).\nPlease choose the one you primarily want to work with:";
    };

    ListBox LB_TABLELIST
    {
        Pos     = MAP_APPFONT ( BORDER_X, 36 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 2 * BORDER_X, 50 ) ;
        SVLook = TRUE;
        Sort = TRUE;
        DropDown = FALSE;
        AutoHScroll = TRUE;
        Border = TRUE;
    };
    Text[ portuguese ] = "Select Table";
    Text[ russian ] = "Select Table";
    Text[ greek ] = "Select Table";
    Text[ dutch ] = "Select Table";
    Text[ french ] = "Select Table";
    Text[ spanish ] = "Select Table";
    Text[ finnish ] = "Select Table";
    Text[ italian ] = "Select Table";
    Text[ danish ] = "Select Table";
    Text[ swedish ] = "Select Table";
    Text[ polish ] = "Select Table";
    Text[ portuguese_brazilian ] = "Select Table";
    Text[ japanese ] = "Select Table";
    Text[ korean ] = "Select Table";
    Text[ chinese_simplified ] = "Select Table";
    Text[ chinese_traditional ] = "Select Table";
    Text[ turkish ] = "Select Table";
    Text[ arabic ] = "Select Table";
    Text[ catalan ] = "Select Table";
};

//........................................................................
TabPage RID_PAGE_FIELDMAPPING
{
    SVLook  = TRUE ;
    Size    = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ;

    Text = "Feldzuordnung";
    Text [ english ] = "Field Assignment";
    Text [ english_us ] = "Field Assignment";

    FixedText FT_FIELDASSIGMENTEXPL
    {
        Pos     = MAP_APPFONT ( BORDER_X, 9 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 2 * BORDER_X, 72 ) ;
        WordBreak = TRUE;

        Text = "Um die Adress-Daten in Ihren Vorlagen-Dokumenten benutzen zu knnen, muss %PRODUCTNAME wissen, welche Felder welche "
            "konkreten Daten enthalten.\n\n"
            "Zum Beispiel knnten Sie die E-Mail-Adressen in einem Feld namens \"E-Mail\" oder \"E-Mail\" oder \"EM\" - oder unter vllig anderem Namen - gespeichert haben.\n\n"
            "Sobald sie den unten stehenden Button drcken, wird ein weiterer Dialog geffnet, in dem sie diese Einstellungen "
            "fr Ihre Datenquelle vornehmen knnen.";
        Text [ english ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields "
            "do contain which concrete data.\n\n"
            "For instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\n"
            "When you press the button below, another dialog will be opened, where you can do this field assignment for your "
            "data source.";
        Text [ english_us ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ portuguese ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ russian ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ greek ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ dutch ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ french ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ spanish ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ finnish ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ italian ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ danish ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ swedish ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ polish ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ portuguese_brazilian ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ japanese ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ korean ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ chinese_simplified ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ chinese_traditional ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ turkish ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ arabic ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
        Text[ catalan ] = "To incorporate the address data in your template documents, %PRODUCTNAME has to know which fields do contain which concrete data.\n\nFor instance, you could have stored the e-mail addresses in a field named \"EMail\", or \"E-Mail\" or \"EM\" - or something completely different.\n\nWhen you press the button below, another dialog will be opened, where you can do this field assignment for your data source.";
    };

    PushButton PB_INVOKE_FIELDS_DIALOG
    {
        Pos     = MAP_APPFONT ( ( WINDOW_SIZE_X - BUTTON_SIZE_X ) / 2, 84 ) ;
        Size    = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y ) ;

        Text = "Feld-Zuordnung";
        Text [ english ] = "Field assignment";
        Text [ english_us ] = "Field assignment";
        Text[ portuguese ] = "Field assignment";
        Text[ russian ] = "Field assignment";
        Text[ greek ] = "Field assignment";
        Text[ dutch ] = "Field assignment";
        Text[ french ] = "Field assignment";
        Text[ spanish ] = "Field assignment";
        Text[ finnish ] = "Field assignment";
        Text[ italian ] = "Field assignment";
        Text[ danish ] = "Field assignment";
        Text[ swedish ] = "Field assignment";
        Text[ polish ] = "Field assignment";
        Text[ portuguese_brazilian ] = "Field assignment";
        Text[ japanese ] = "Field assignment";
        Text[ korean ] = "Field assignment";
        Text[ chinese_simplified ] = "Field assignment";
        Text[ chinese_traditional ] = "Field assignment";
        Text[ turkish ] = "Field assignment";
        Text[ arabic ] = "Field assignment";
        Text[ catalan ] = "Field assignment";
    };

    FixedText FT_ASSIGNEDFIELDS
    {
        Pos     = MAP_APPFONT ( BORDER_X, WINDOW_SIZE_Y - HEADER_SIZE_Y - 7 - 32 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 2 * BORDER_X, 32 ) ;
    };
    Text[ portuguese ] = "Field Assignment";
    Text[ russian ] = "Field Assignment";
    Text[ greek ] = "Field Assignment";
    Text[ dutch ] = "Field Assignment";
    Text[ french ] = "Field Assignment";
    Text[ spanish ] = "Field Assignment";
    Text[ finnish ] = "Field Assignment";
    Text[ italian ] = "Field Assignment";
    Text[ danish ] = "Field Assignment";
    Text[ swedish ] = "Field Assignment";
    Text[ polish ] = "Field Assignment";
    Text[ portuguese_brazilian ] = "Field Assignment";
    Text[ japanese ] = "Field Assignment";
    Text[ korean ] = "Field Assignment";
    Text[ chinese_simplified ] = "Field Assignment";
    Text[ chinese_traditional ] = "Field Assignment";
    Text[ turkish ] = "Field Assignment";
    Text[ arabic ] = "Field Assignment";
    Text[ catalan ] = "Field Assignment";
};

//........................................................................
TabPage RID_PAGE_FINAL
{
    SVLook  = TRUE ;
    Size    = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ;

    Text = "Datenquellen Titel";
    Text [ english ] = "Data Source Title";
    Text [ english_us ] = "Data Source Title";

    FixedText FT_FINISH_EXPL
    {
        Pos     = MAP_APPFONT ( BORDER_X, 9 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 2 * BORDER_X, 32 ) ;
        WordBreak = TRUE;

        Text = "Das waren alle Angaben, die zu Integration Ihrer Adress-Daten in %PRODUCTNAME bentigt werden.\n\n"
            "Geben Sie jetzt noch den Namen an, unter dem die Datenquelle in %PRODUCTNAME registriert werden soll.";
        Text [ english ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\n"
            "Now, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text [ english_us ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ portuguese ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ russian ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ greek ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ dutch ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ french ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ spanish ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ finnish ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ italian ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ danish ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ swedish ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ polish ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ portuguese_brazilian ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ japanese ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ korean ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ chinese_simplified ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ chinese_traditional ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ turkish ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ arabic ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
        Text[ catalan ] = "This were all information necessary to integrate your address data into %PRODUCTNAME.\n\nNow, just enter the name which should be used to register the data source in %PRODUCTNAME.";
    };

    FixedText FT_NAME_EXPL
    {
        Pos     = MAP_APPFONT ( BORDER_X, 45 ) ;
        Size    = MAP_APPFONT ( 50, 8 ) ;

        Text = "Titel";
        Text [ english ] = "Title";
        Text [ english_us ] = "Title";
        Group = TRUE;
        Text[ portuguese ] = "Title";
        Text[ russian ] = "Title";
        Text[ greek ] = "Title";
        Text[ dutch ] = "Title";
        Text[ french ] = "Title";
        Text[ spanish ] = "Title";
        Text[ finnish ] = "Title";
        Text[ italian ] = "Title";
        Text[ danish ] = "Title";
        Text[ swedish ] = "Title";
        Text[ polish ] = "Title";
        Text[ portuguese_brazilian ] = "Title";
        Text[ japanese ] = "Title";
        Text[ korean ] = "Title";
        Text[ chinese_simplified ] = "Title";
        Text[ chinese_traditional ] = "Title";
        Text[ turkish ] = "Title";
        Text[ arabic ] = "Title";
        Text[ catalan ] = "Title";
    };

    Edit ET_DATASOURCENAME
    {
        Pos     = MAP_APPFONT ( BORDER_X + 50 + 3, 45 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 60 - BORDER_X, 12) ;
        SVLook = TRUE;
        Border = TRUE;
        Group = FALSE;
    };

    FixedText FT_DUPLICATENAME
    {
        Pos     = MAP_APPFONT ( BORDER_X, WINDOW_SIZE_Y - HEADER_SIZE_Y - 7 - 24 ) ;
        Size    = MAP_APPFONT ( WINDOW_SIZE_X - 2 * BORDER_X, 24) ;
        WordBreak = TRUE;

        Text =  "Es existiert schon eine andere Datenquelle mit diesem Namen. Da Datenquellennamen global eindeutig sind, "
            "mssen sie einen anderen whlen.";
        Text [ english ] = "Another data source already has this name. As data sources have globally unique names, you have to choose another one.";
        Text [ english_us ] = "Another data source already has this name. As data sources have globally unique names, you have to choose another one.";
        Text [ portuguese ] = "J existe uma fonte de dados com este nome. Os nomes das fontes de dados devem ser nicos, por esta razo  recomendvel seleccionar outro nome.";
        Text [ russian ] = "       .       ,    .";
        Text [ greek ] = "        .            . ";
        Text [ dutch ] = "Er bestaat reeds een andere gegevensbron met deze naam. Kies een andere naam.";
        Text [ french ] = "Ce nom a dj t attribu  une autre source de donnes. tant donn que les sources de donnes doivent avoir des noms globalement uniques, vous devez en choisir un autre.";
        Text [ spanish ] = "Ya existe otra fuente de datos con este nombre. Debe elegir otro ya que el nombre de la fuente de datos debe ser globalmente nico.";
        Text [ italian ] = "Esiste gi una sorgente dati con questo nome. Poich il nome delle sorgenti di dati dev'essere univoco,  necesario scegliere un altro nome.";
        Text [ danish ] = "There already is another data source with this name. Since data source names have to be globally unique, you have to choose another one.";
        Text [ swedish ] = "Det finns redan en dataklla med det hr namnet. Eftersom namn p datakllor mste vara globalt unika br Du vlja ett annat namn.";
        Text [ polish ] = "Istnieje inne rdo danych o tej samej nazwie. Poniewa nazwy rode danych musz by globalnie jednoznaczne, naley wybra inn nazw.";
        Text [ portuguese_brazilian ] = "There already is another data source with this name. Since data source names have to be globally unique, you have to choose another one.";
        Text [ japanese ] = "この名前の付いた別のデータソースがすでにあります。データソース名をはっきりと区別するためには、ほかの名前を選択する必要があります。";
        Text [ korean ] = "이미 이 이름을 가진 다른 데이터 소스가 있습니다. 데이터소스 이름은 전역에서 유일해야 하므로, 다른 이름을 선택해야 합니다.";
        Text [ chinese_simplified ] = "已经存在一个同名的数据源。因为数据源名称必须是一个通用的有效名称,建议您采用另一个名称。";
        Text [ chinese_traditional ] = "已經存在一個同名的資料源。因為一個資料源的名稱必須通用明確,請您採用另外一個有效的名稱。";
        Text [ turkish ] = "There already is another data source with this name. Since data source names have to be globally unique, you have to choose another one.";
        Text [ arabic ] = "       .          ɡ    .";
        Text[ finnish ] = "Toisella tietolhteell on jo sama nimi. Tietolhteill on oltava yksillliset nimet, valitse toinen nimi.";
        Text[ catalan ] = "Ya existe otra fuente de datos con este nombre. Debe elegir otro ya que el nombre de la fuente de datos debe ser globalmente nico.";
    };
    Text[ portuguese ] = "Data Source Title";
    Text[ russian ] = "Data Source Title";
    Text[ greek ] = "Data Source Title";
    Text[ dutch ] = "Data Source Title";
    Text[ french ] = "Data Source Title";
    Text[ spanish ] = "Data Source Title";
    Text[ finnish ] = "Data Source Title";
    Text[ italian ] = "Data Source Title";
    Text[ danish ] = "Data Source Title";
    Text[ swedish ] = "Data Source Title";
    Text[ polish ] = "Data Source Title";
    Text[ portuguese_brazilian ] = "Data Source Title";
    Text[ japanese ] = "Data Source Title";
    Text[ korean ] = "Data Source Title";
    Text[ chinese_simplified ] = "Data Source Title";
    Text[ chinese_traditional ] = "Data Source Title";
    Text[ turkish ] = "Data Source Title";
    Text[ arabic ] = "Data Source Title";
    Text[ catalan ] = "Data Source Title";
};

//........................................................................
ErrorBox RID_ERR_NEEDTYPESELECTION
{
    Buttons = WB_OK;

    Message = "Bitte whlen sie einen Adressbuch-Typ aus!";
    Message [ english ] = "Bitte whlen sie einen Adressbuch-Typ aus!";
    Message [ english_us ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ portuguese ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ russian ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ greek ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ dutch ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ french ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ spanish ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ finnish ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ italian ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ danish ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ swedish ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ polish ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ portuguese_brazilian ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ japanese ] = "Bitte w臧len sie einen Adressbuch-Typ aus";
    Message[ korean ] = "Bitte w�len sie einen Adressbuch-Typ aus";
    Message[ chinese_simplified ] = "Bitte w鋒len sie einen Adressbuch-Typ aus";
    Message[ chinese_traditional ] = "Bitte w鄣len sie einen Adressbuch-Typ aus";
    Message[ turkish ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ arabic ] = "Bitte whlen sie einen Adressbuch-Typ aus";
    Message[ catalan ] = "Bitte whlen sie einen Adressbuch-Typ aus";
};

//........................................................................
QueryBox RID_QRY_NOTABLES
{
    Buttons = WB_YES_NO;
    DefButton = WB_DEF_NO;

    Message = "Die Datenquelle enthlt keinerlei Tabellen.\n"
        "Wollen Sie sie trotzdem als Adress-Datenquelle einrichten?";
    Message [ english ] = "The data source does not contain any tables.\n"
        "Do you want to install it as address data source, anyway?";
    Message [ english_us ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ portuguese ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ russian ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ greek ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ dutch ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ french ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ spanish ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ finnish ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ italian ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ danish ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ swedish ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ polish ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ portuguese_brazilian ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ japanese ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ korean ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ chinese_simplified ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ chinese_traditional ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ turkish ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ arabic ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
    Message[ catalan ] = "The data source does not contain any tables.\nDo you want to install it as address data source, anyway?";
};

//........................................................................
String RID_STR_DEFAULT_NAME
{
    Text = "Adressen";
    Text [ english ] = "Addresses";
    Text [ english_us ] = "Addresses";
    Text[ portuguese ] = "Addresses";
    Text[ russian ] = "Addresses";
    Text[ greek ] = "Addresses";
    Text[ dutch ] = "Addresses";
    Text[ french ] = "Addresses";
    Text[ spanish ] = "Addresses";
    Text[ finnish ] = "Addresses";
    Text[ italian ] = "Addresses";
    Text[ danish ] = "Addresses";
    Text[ swedish ] = "Addresses";
    Text[ polish ] = "Addresses";
    Text[ portuguese_brazilian ] = "Addresses";
    Text[ japanese ] = "Addresses";
    Text[ korean ] = "Addresses";
    Text[ chinese_simplified ] = "Addresses";
    Text[ chinese_traditional ] = "Addresses";
    Text[ turkish ] = "Addresses";
    Text[ arabic ] = "Addresses";
    Text[ catalan ] = "Addresses";
};

String RID_STR_ADMINDIALOGTITLE
{
    Text = "Adress Datenquelle anlegen";
    Text [ english ] = "Create Address Data Source";
    Text [ english_us ] = "Create Address Data Source";
    Text[ portuguese ] = "Create Address Data Source";
    Text[ russian ] = "Create Address Data Source";
    Text[ greek ] = "Create Address Data Source";
    Text[ dutch ] = "Create Address Data Source";
    Text[ french ] = "Create Address Data Source";
    Text[ spanish ] = "Create Address Data Source";
    Text[ finnish ] = "Create Address Data Source";
    Text[ italian ] = "Create Address Data Source";
    Text[ danish ] = "Create Address Data Source";
    Text[ swedish ] = "Create Address Data Source";
    Text[ polish ] = "Create Address Data Source";
    Text[ portuguese_brazilian ] = "Create Address Data Source";
    Text[ japanese ] = "Create Address Data Source";
    Text[ korean ] = "Create Address Data Source";
    Text[ chinese_simplified ] = "Create Address Data Source";
    Text[ chinese_traditional ] = "Create Address Data Source";
    Text[ turkish ] = "Create Address Data Source";
    Text[ arabic ] = "Create Address Data Source";
    Text[ catalan ] = "Create Address Data Source";
};

String RID_STR_NOCONNECTION
{
    Text = "Die Verbindung konnte nicht hergestellt werden.";
    Text [ english ] = "The connection could not be established.";
    Text [ english_us ] = "The connection could not be established.";
    Text[ portuguese ] = "The connection could not be established.";
    Text[ russian ] = "The connection could not be established.";
    Text[ greek ] = "The connection could not be established.";
    Text[ dutch ] = "The connection could not be established.";
    Text[ french ] = "The connection could not be established.";
    Text[ spanish ] = "The connection could not be established.";
    Text[ finnish ] = "The connection could not be established.";
    Text[ italian ] = "The connection could not be established.";
    Text[ danish ] = "The connection could not be established.";
    Text[ swedish ] = "The connection could not be established.";
    Text[ polish ] = "The connection could not be established.";
    Text[ portuguese_brazilian ] = "The connection could not be established.";
    Text[ japanese ] = "The connection could not be established.";
    Text[ korean ] = "The connection could not be established.";
    Text[ chinese_simplified ] = "The connection could not be established.";
    Text[ chinese_traditional ] = "The connection could not be established.";
    Text[ turkish ] = "The connection could not be established.";
    Text[ arabic ] = "The connection could not be established.";
    Text[ catalan ] = "The connection could not be established.";
};

String RID_STR_PLEASECHECKSETTINGS
{
    Text = "Bitte berprfen Sie die Einstellungen fr die Datenquelle.";
    Text [ english ] = "Please check the settings made for the data source.";
    Text [ english_us ] = "Please check the settings made for the data source.";
    Text[ portuguese ] = "Please check the settings made for the data source.";
    Text[ russian ] = "Please check the settings made for the data source.";
    Text[ greek ] = "Please check the settings made for the data source.";
    Text[ dutch ] = "Please check the settings made for the data source.";
    Text[ french ] = "Please check the settings made for the data source.";
    Text[ spanish ] = "Please check the settings made for the data source.";
    Text[ finnish ] = "Please check the settings made for the data source.";
    Text[ italian ] = "Please check the settings made for the data source.";
    Text[ danish ] = "Please check the settings made for the data source.";
    Text[ swedish ] = "Please check the settings made for the data source.";
    Text[ polish ] = "Please check the settings made for the data source.";
    Text[ portuguese_brazilian ] = "Please check the settings made for the data source.";
    Text[ japanese ] = "Please check the settings made for the data source.";
    Text[ korean ] = "Please check the settings made for the data source.";
    Text[ chinese_simplified ] = "Please check the settings made for the data source.";
    Text[ chinese_traditional ] = "Please check the settings made for the data source.";
    Text[ turkish ] = "Please check the settings made for the data source.";
    Text[ arabic ] = "Please check the settings made for the data source.";
    Text[ catalan ] = "Please check the settings made for the data source.";
};

String RID_STR_FIELDDIALOGTITLE
{
    Text = "Adress Daten - Feldzuordnung";
    Text [ english ] = "Address data - field assignment";
    Text [ english_us ] = "Address data - field assignment";
    Text[ portuguese ] = "Address data - field assignment";
    Text[ russian ] = "Address data - field assignment";
    Text[ greek ] = "Address data - field assignment";
    Text[ dutch ] = "Address data - field assignment";
    Text[ french ] = "Address data - field assignment";
    Text[ spanish ] = "Address data - field assignment";
    Text[ finnish ] = "Address data - field assignment";
    Text[ italian ] = "Address data - field assignment";
    Text[ danish ] = "Address data - field assignment";
    Text[ swedish ] = "Address data - field assignment";
    Text[ polish ] = "Address data - field assignment";
    Text[ portuguese_brazilian ] = "Address data - field assignment";
    Text[ japanese ] = "Address data - field assignment";
    Text[ korean ] = "Address data - field assignment";
    Text[ chinese_simplified ] = "Address data - field assignment";
    Text[ chinese_traditional ] = "Address data - field assignment";
    Text[ turkish ] = "Address data - field assignment";
    Text[ arabic ] = "Address data - field assignment";
    Text[ catalan ] = "Address data - field assignment";
};

String RID_STR_NOFIELDSASSIGNED
{
    Text = "Im Augenblick sind keine Felder zugeordnet.\n"
        "Wenn Sie im Augenblick keine Zuordnung treffen wollen, knnen Sie dies spter jederzeit nachholen:\n"
        "Men \"Datei - Dokumentvorlage - Adressbuch Quelle ...\"";
    Text [ english ] = "Currently, there are no fields assigned.\n"
        "If you don't want to do this assignment at the moment, you can make this up at any time later on:\n"
        "Menu \"File - Template - Address Book Source ...\"";
    Text [ english_us ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text [ language_user1 ] = "The last line of this text refers to a menu entry. Please use the same translation as for this menu. Does it help if I tell you that it's in svx/inc/globalmn.hrc:ITEM_FILE_DOCTEMPLATE?";
    Text[ portuguese ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ russian ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ greek ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ dutch ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ french ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ spanish ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ finnish ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ italian ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ danish ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ swedish ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ polish ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ portuguese_brazilian ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ japanese ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ korean ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ chinese_simplified ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ chinese_traditional ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ turkish ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ arabic ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
    Text[ catalan ] = "Currently, there are no fields assigned.\nIf you don't want to do this assignment at the moment, you can make this up at any time later on:\nMenu \"File - Template - Address Book Source ...\"";
};

//........................................................................
Bitmap BMP_HEADERIMAGE
{
    file = "addresspilot.bmp";
};

/*************************************************************************
 * history:
 *  $Log: not supported by cvs2svn $
 *  Revision 1.2  2001/08/02 10:46:00  fs
 *  #88530# layout changes
 *
 *  Revision 1.1  2001/08/01 11:06:48  fs
 *  initial checkin - address book auto pilot - the dialog itself
 *
 *
 *  Revision 1.0 26.07.01 09:03:45  fs
 ************************************************************************/