summaryrefslogtreecommitdiff
path: root/wizards/source/template/template.src
blob: ee485aac316ff5f0d525b3f38f33b1e733df2b58 (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
/*************************************************************************
 *
 *  $RCSfile: template.src,v $
 *
 *  $Revision: 1.21 $
 *
 *  last change: $Author: kz $ $Date: 2001-06-14 21:46:25 $
 *
 *  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 EXPRESSED 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): _______________________________________
 *
 *
 ************************************************************************/
#define SAMPLES     1000
#define STYLES      1100
#define AgendaDlgName       1200
#define AgendaDlgNoCancel   1201
#define AgendaDlgFrame      1202
#define AgendaDlgButton1    1203
#define AgendaDlgButton2    1204
#define CorrespondenceNoTextmark    1300
#define CorrespondenceMsgError  1302
#define CorrespondenceDialog    1303
#define CorrespondenceFields    1350
#define TextField    1400

// --------------------------------------------------------------------
String SAMPLES
{
    Text = "Damit die volle Funktionalitt dieses Beispiels zur Verfgung steht, muss ein neues Dokument auf Basis dieser Vorlage erstellt werden.";
    Text[English] = "In order to use the full functionality of this sample a new document, using this one as a template, will be created";
    Text[ english_us ] = "In order to use the full functionality of this sample, create a document that is based on this template.";
    Text[ portuguese ] = "Para poder usufruir de toda a funcionalidade deste exemplo, ter que criar um novo documento com base neste modelo.";
    Text[ greek ] = "                      .";
    Text[ dutch ] = "Om alle mogelijkheden van dit voorbeeld te kunnen gebruiken maakt u een nieuw document op basis van deze sjabloon.";
    Text[ french ] = "Afin de pouvoir profiter de l'entire fonctionnalit de cet exemple, il vous faut crer un nouveau document bas sur ce modle.";
    Text[ spanish ] = "Para que est disponible toda la funcionalidad de este ejemplo debe crear un nuevo documento basado en esta plantilla.";
    Text[ swedish ] = "Ett nytt dokument mste skapas med den hr mallen som grund fr att alla funktioner i detta exempel skall vara tillgngliga.";
    Text[ russian ] = " ,      ,       .";
    Text[ italian ] = "Per poter sfruttare al meglio la funzionalit di questo esempio  necessario creare un documento in base a questo modello.";
    Text[ danish ] = "For at kunne udnytte dette eksempels fulde funktionsmuligheder skal der oprettes et nyt dokument p grundlag af denne skabelon.";
    Text[ polish ] = "Aby dany przykad mona byo w peni wykorzysta, naley na podstawie danego szablonu utworzy nowy dokument.";
    Text[ portuguese_brazilian ] = "In order to use the full functionality of this sample a new document, using this one as a template, will be created";
    Text[ japanese ] = "̻ق܂@\\ɂ́AڰĂ{ɐV޷Ă쐬Ȃ΂Ȃ܂B";
    Text[ korean ] = "  ɼ Ϻϰԡ̿  ֵ ϱؼ    ʷ   ۼؾ մϴ.";
    Text[ chinese_simplified ] = "ֻȽʽ½һĵܳʹʾܡ";
    Text[ chinese_traditional ] = "nQRQγoӼ˦Uɬq\\AzĥγoӼ˦ӷsؤ@ӤC";
    Text[ arabic ] = "              .";
    Text[ turkish ] = "Bu rnein tm ilevlerini kullanabilmek iin, bu ablon ile yeni bir belge oluturun.";
    Text[ catalan ] = "Para que est disponible toda la funcionalidad de este ejemplo debe crear un nuevo documento basado en esta plantilla.";
    Text[ finnish ] = "Jotta voisit kytt mallin toimintoja tysipainoisesti, luo asiakirja tmn mallipohjan avulla.";
};

String SAMPLES + 1
{
    Text = "Hinweis";
    Text[English] = "Hint";
    Text[ english_us ] = "Remarks";
    Text[ portuguese ] = "Observao";
    Text[ greek ] = "";
    Text[ dutch ] = "Aanwijzing";
    Text[ french ] = "Remarque";
    Text[ spanish ] = "Indicacin";
    Text[ swedish ] = "Hnvisning";
    Text[ russian ] = "";
    Text[ italian ] = "Nota";
    Text[ danish ] = "Henvisning";
    Text[ polish ] = "Wskazwka";
    Text[ portuguese_brazilian ] = "Hint";
    Text[ japanese ] = "w";
    Text[ korean ] = "";
    Text[ chinese_simplified ] = "ʾ";
    Text[ chinese_traditional ] = "";
    Text[ arabic ] = "";
    Text[ turkish ] = "Bilgi";
    Text[ catalan ] = "Indicacin";
    Text[ finnish ] = "Huomautukset";
};

// --------------------------------------------------------------------
String STYLES
{
    Text = "Themen-Auswahl";
    Text[English] = "Design Selection";
    Text[ english_us ] = "Theme Selection";
    Text[ portuguese ] = "Seleccionar temas";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ dutch ] = "Onderwerpen kiezen";
    Text[ french ] = "Slection de thme";
    Text[ spanish ] = "Seleccin de temas";
    Text[ italian ] = "Scelta argomento";
    Text[ danish ] = "Emneudvalg";
    Text[ swedish ] = "Temaurval";
    Text[ polish ] = "Wybr tematw";
    Text[ portuguese_brazilian ] = "Design Selection";
    Text[ japanese ] = "ðς̑I";
    Text[ korean ] = " ";
    Text[ chinese_simplified ] = "ѡ";
    Text[ chinese_traditional ] = "ܳ]p";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Konu seimi";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Seleccin de temas";
    Text[ finnish ] = "Teeman valinta";
};

String STYLES + 1
{
    Text = "Fehler beim Zwischenspeichern des aktuellen Dokumentes! Die folgende Aktion kann nicht rckgngig gemacht werden.";
    Text[English] = "Error while temporarily saving the document! The following action cannot be undone.";
    Text[ english_us ] = "Error while saving the document to the clipboard! The following action cannot be undone.";
    Text[ portuguese ] = "Erro ao guardar o documento activo no porta-documentos!  impossvel restaurar a seguinte aco.";
    Text[ russian ] = "     .    .";
    Text[ greek ] = "       !        .";
    Text[ dutch ] = "Fout bij opslaan van actueel document in cachegeheugen. De volgende activiteit kan niet ongedaan worden gemaakt.";
    Text[ french ] = "Une erreur est survenue lors de l'enregistrement du document actif dans le presse-papiers ! Impossible d'annuler l'action suivante.";
    Text[ spanish ] = "Ha ocurrido un error al guardar el documento actual en el portapapeles! No se puede deshacer la siguiente accin.";
    Text[ italian ] = "Errore mentre si cercava di salvare il documento negli appunti. L'azione seguente non pu essere annullata.";
    Text[ danish ] = "Fejl under forsg p at gemme dokumentet i udklipsholderen! Den flgende handling kan ikke fortrydes.";
    Text[ swedish ] = "Fel uppstod nr det aktuella dokumentet skulle sparas i urklippet! Fljande tgrd gr inte att ngra.";
    Text[ polish ] = "Bd podczas tymczasowego zapisywania aktualnych dokumentw! Nastpujcej akcji nie mona cofn.";
    Text[ portuguese_brazilian ] = "Error while temporarily saving the document! The following action cannot be undone.";
    Text[ japanese ] = "݂޷ĂدްނɕۑƂɴװ܂Ḇ݂͌ɖ߂܂B";
    Text[ korean ] = "  ߰ ϴ   ߻߽ϴ!  ӵǴ ۾   ϴ.";
    Text[ chinese_simplified ] = "ڴ̵ǰĵʱ޷ȡв";
    Text[ chinese_traditional ] = "ȦsoͿ~ILk_HUʧ@C";
    Text[ arabic ] = "       !      .";
    Text[ turkish ] = "Belgeyi panoya kaydederken hata olutu! Bir sonraki ilem geri alnamaz.";
    Text[ catalan ] = "Ha ocurrido un error al guardar el documento actual en el portapapeles! No se puede deshacer la siguiente accin.";
    Text[ finnish ] = "On ilmennyt virhe tallennettaessa asiakirjaa leikepydlle! Seuraavaa toimintoa ei voi peruuttaa.";
};

String STYLES + 2
{
    Text = "~Abbrechen";
    Text[English] = "Cancel";
    Text[ english_us ] = "~Cancel";
    Text[ portuguese ] = "~Cancelar";
    Text[ russian ] = "";
    Text[ greek ] = "~";
    Text[ dutch ] = "~Annuleren";
    Text[ french ] = "~Annuler";
    Text[ spanish ] = "~Cancelar";
    Text[ italian ] = "Annulla";
    Text[ danish ] = "Annuller";
    Text[ swedish ] = "~Avbryt";
    Text[ polish ] = "Anuluj";
    Text[ portuguese_brazilian ] = "Cancel";
    Text[ japanese ] = "ݾ";
    Text[ korean ] = "";
    Text[ chinese_simplified ] = "ȡ";
    Text[ chinese_traditional ] = "";
    Text[ arabic ] = " ";
    Text[ turkish ] = "ptal";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Cancelar";
    Text[ finnish ] = "Cancel";
};

String STYLES + 3
{
    Text = "~OK";
    Text[English] = "OK";
    Text[ english_us ] = "~OK";
    Text[ portuguese ] = "~OK";
    Text[ russian ] = "OK";
    Text[ greek ] = "~OK";
    Text[ dutch ] = "~OK";
    Text[ french ] = "~OK";
    Text[ spanish ] = "~Aceptar";
    Text[ italian ] = "OK";
    Text[ danish ] = "OK";
    Text[ swedish ] = "~OK";
    Text[ polish ] = "OK";
    Text[ portuguese_brazilian ] = "OK";
    Text[ japanese ] = "OK";
    Text[ korean ] = "Ȯ";
    Text[ chinese_simplified ] = "ȷ";
    Text[ chinese_traditional ] = "Tw";
    Text[ arabic ] = "";
    Text[ turkish ] = "Tamam";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "~Aceptar";
    Text[ finnish ] = "OK";
};

// --------------------------------------------------------------------
String AgendaDlgName
{
    Text = "Protokollvorlage";
    Text[English] = "Minutes Template";
    Text[ english_us ] = "Minutes Template";
    Text[ portuguese ] = "Modelo de acta";
    Text[ dutch ] = "Sjabloon Verslag";
    Text[ french ] = "Modle de compte rendu";
    Text[ spanish ] = "Plantilla de protocolo";
    Text[ italian ] = "Modello di protocollo";
    Text[ swedish ] = "Protokollmall";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ danish ] = "Referatskabelon";
    Text[ polish ] = "Szablon protokou";
    Text[ portuguese_brazilian ] = "Minutes Template";
    Text[ japanese ] = "c^ڰ";
    Text[ korean ] = " ";
    Text[ chinese_simplified ] = "¼ʽ";
    Text[ chinese_traditional ] = "w˦";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Tutanak ablonu";
    Text[ catalan ] = "Plantilla de protocolo";
    Text[ finnish ] = "Pytkirjamallipohja";
};

String AgendaDlgNoCancel
{
    Text = "Es mu eine Option besttigt werden.";
    Text[English] = "An option must be selected.";
    Text[ english_us ] = "An option must be selected.";
    Text[ portuguese ] = " necessrio confirmar uma opo.";
    Text[ dutch ] = "Er moet een optie worden geselecteer.";
    Text[ french ] = "Une des options doit tre accepte.";
    Text[ spanish ] = "Debe confirmar una opcin.";
    Text[ italian ] = "Si deve confermare una opzione.";
    Text[ swedish ] = "Ett alternativ mste bekrftas.";
};

String AgendaDlgFrame
{
    Text = "Protokolltyp";
    Text[English] = "Minutes Type";
    Text[ english_us ] = "Minutes Type";
    Text[ portuguese ] = "Tipo de acta";
    Text[ dutch ] = "Type verslag";
    Text[ french ] = "Type de compte rendu";
    Text[ spanish ] = "Tipo de protocolo";
    Text[ italian ] = "Tipo di protocollo";
    Text[ swedish ] = "Protokolltyp";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ danish ] = "Referattype";
    Text[ polish ] = "Typ protokou";
    Text[ portuguese_brazilian ] = "Minutes Type";
    Text[ japanese ] = "c^";
    Text[ korean ] = " ";
    Text[ chinese_simplified ] = "¼";
    Text[ chinese_traditional ] = "O";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Tutanak tipi";
    Text[ catalan ] = "Tipo de protocolo";
    Text[ finnish ] = "Pytkirjatyyppi";
};

String AgendaDlgButton1
{
    Text = "Ergebnisprotokoll";
    Text[English] = "Agenda Results Minutes";
    Text[ english_us ] = "Results Minutes";
    Text[ portuguese ] = "Acta sobre resultados";
    Text[ dutch ] = "Verslag van de resultaten";
    Text[ french ] = "Compte rendu des rsultats";
    Text[ spanish ] = "Protocolo de resultado";
    Text[ italian ] = "Protocollo dei risultati";
    Text[ swedish ] = "Beslutsprotokoll";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ danish ] = "Beslutningsreferat";
    Text[ polish ] = "Protokl podsumowujacy";
    Text[ portuguese_brazilian ] = "Agenda Results Minutes";
    Text[ japanese ] = "ʋc^";
    Text[ korean ] = " ";
    Text[ chinese_simplified ] = "̽¼";
    Text[ chinese_traditional ] = "|͵GO";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Sonu tutana";
    Text[ catalan ] = "Protocolo de resultado";
    Text[ finnish ] = "Tulospytkirja";
};

String AgendaDlgButton2
{
    Text = "Verlaufsprotokoll";
    Text[English] = "Agenda Evaluation Minutes";
    Text[ english_us ] = "Evaluation Minutes";
    Text[ portuguese ] = "Acta sobre decurso";
    Text[ dutch ] = "Verslag van het verloop";
    Text[ french ] = "Procs verbal";
    Text[ spanish ] = "Protocolo del transcurso";
    Text[ italian ] = "Protocollo dello svolgimento";
    Text[ swedish ] = "Redogrande protokoll";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ danish ] = "Forhandlingsreferat";
    Text[ polish ] = "Protokl procesu";
    Text[ portuguese_brazilian ] = "Agenda Evaluation Minutes";
    Text[ japanese ] = "ԕ񍐂̋c^";
    Text[ korean ] = " ";
    Text[ chinese_simplified ] = "̹̼¼";
    Text[ chinese_traditional ] = "|͹L{O";
    Text[ arabic ] = "  ";
    Text[ turkish ] = "Deerlendirme tutana";
    Text[ catalan ] = "Protocolo del transcurso";
    Text[ finnish ] = "Arviointipytkirja";
};

// --------------------------------------------------------------------
String CorrespondenceNoTextmark
{
    Text = "Die Textmarke 'Recipient' fehlt.";
    Text[English] = "The Bookmark 'Recipient' is lacking.";
    Text[ english_us ] = "The bookmark 'Recipient' is missing.";
    Text[ portuguese ] = "Falta o marcador de texto 'Recipient'.";
    Text[ dutch ] = "De tekstmarkering 'Recipient' ontbreekt.";
    Text[ french ] = "Le repre de texte 'Recipient' n'existe pas.";
    Text[ spanish ] = "Falta la marca de texto 'Recipient'.";
    Text[ italian ] = "Manca il segnalibro 'Recipient'.";
    Text[ swedish ] = "Bokmrket 'Recipient' saknas.";
    Text[ russian ] = "   'Recipient'.";
    Text[ greek ] = "     'Recipient' ().";
    Text[ danish ] = "Tekstmarkeringen 'Recipient' mangler.";
    Text[ polish ] = "Brak zakadki 'Recipient'.";
    Text[ portuguese_brazilian ] = "The Bookmark 'Recipient' is lacking.";
    Text[ japanese ] = "÷ϰ 'Recipient' ܂B";
    Text[ korean ] = "å'Recipient' ϴ.";
    Text[ chinese_simplified ] = "ǩ 'Recipient' ڡ";
    Text[ chinese_traditional ] = "аO 'Recipient' sbC";
    Text[ arabic ] = "  'Recipient' .";
    Text[ turkish ] = "'Alc' Belirteci mevcut deil.";
    Text[ catalan ] = "Falta la marca de texto 'Recipient'.";
    Text[ finnish ] = "Kirjanmerkki Vastaanottaja puuttuu.";
};

String CorrespondenceNoTextmark+1
{
    Text = "Serienbrieffelder knnen nicht eingefgt werden.";
    Text[English] = "Mail Merge fields can not be included.";
    Text[ english_us ] = "Form letter fields can not be included.";
    Text[ portuguese ] = "Impossvel inserir campos para cartas em srie.";
    Text[ dutch ] = "Er kunnen geen standaardbriefvelden worden ingevoegd.";
    Text[ french ] = "Impossible d'insrer des champs de lettre pour mailing.";
    Text[ spanish ] = "No se pueden insertar campos de cartas en serie.";
    Text[ italian ] = "Impossibile inserire i campi della stampa in serie.";
    Text[ swedish ] = "Omjligt att infoga flt fr standardbrev.";
    Text[ russian ] = "    .";
    Text[ greek ] = "          .";
    Text[ danish ] = "Det er ikke muligt at indstte brevfeltningsfelter.";
    Text[ polish ] = "Nie mona byo wstawi pl listu seryjnego.";
    Text[ portuguese_brazilian ] = "Mail Merge fields can not be included.";
    Text[ japanese ] = "̨݈ނ}ł܂B";
    Text[ korean ] = "  ʵ带   ϴ.";
    Text[ chinese_simplified ] = "޷ʼϲֶΡ";
    Text[ chinese_traditional ] = "LkJlX֪C";
    Text[ arabic ] = "     .";
    Text[ turkish ] = "Standart mektup alanlar eklenemiyor.";
    Text[ catalan ] = "No se pueden insertar campos de cartas en serie.";
    Text[ finnish ] = "Lomakekirjekenttien liittminen ei onnistu.";
};

String CorrespondenceMsgError
{
    Text = "Fehler";
    Text[English] = "Error";
    Text[ english_us ] = "Error";
    Text[ portuguese ] = "Erro";
    Text[ dutch ] = "Fout";
    Text[ french ] = "Erreur";
    Text[ spanish ] = "Error";
    Text[ italian ] = "Errore";
    Text[ swedish ] = "Fel";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Fejl";
    Text[ polish ] = "Bd";
    Text[ portuguese_brazilian ] = "Error";
    Text[ japanese ] = "װ";
    Text[ korean ] = "";
    Text[ chinese_simplified ] = "";
    Text[ chinese_traditional ] = "~";
    Text[ arabic ] = "";
    Text[ turkish ] = "Hata";
    Text[ catalan ] = "Error";
    Text[ finnish ] = "Virhe";
};

String CorrespondenceDialog
{
    Text = "Empfnger";
    Text[English] = "Who will get this document?";
    Text[ english_us ] = "What do you want to write?";
    Text[ portuguese ] = "Que deseja escrever?";
    Text[ dutch ] = "Wat wilt u schrijven?";
    Text[ french ] = "Que souhaitez-vous crire ?";
    Text[ spanish ] = "Qu desea escribir?";
    Text[ italian ] = "Che cosa volete scrivere?";
    Text[ swedish ] = "Vad vill Du skriva?";
    Text[ russian ] = "   ?";
    Text[ greek ] = "   ;";
    Text[ danish ] = "Hvad vil du skrive?";
    Text[ polish ] = "Co chcesz napisa?";
    Text[ portuguese_brazilian ] = "What do you want to write?";
    Text[ japanese ] = "܂B";
    Text[ korean ] = " ðڽϱ?";
    Text[ chinese_simplified ] = "дʲôĵ";
    Text[ chinese_traditional ] = "ngeH";
    Text[ arabic ] = "   ȿ";
    Text[ turkish ] = "Ne yazmak istiyorsunuz?";
    Text[ catalan ] = "Qu desea escribir?";
    Text[ finnish ] = "Mit haluat kirjoittaa?";
};

String CorrespondenceDialog+1
{
    Text = "Ein Empfnger";
    Text[English] = "One Recipient";
    Text[ english_us ] = "Single letter";
    Text[ portuguese ] = "Carta individual";
    Text[ dutch ] = "Een enkele brief";
    Text[ french ] = "Lettre individuelle";
    Text[ spanish ] = "Carta individual";
    Text[ italian ] = "Lettera singola";
    Text[ swedish ] = "Enskilt brev";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ danish ] = "Enkelt brev";
    Text[ polish ] = "Pojedynczy list";
    Text[ portuguese_brazilian ] = "Single letter";
    Text[ japanese ] = "Pʂ";
    Text[ korean ] = " ";
    Text[ chinese_simplified ] = "ź";
    Text[ chinese_traditional ] = "ʫH";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Tek mektup";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Carta individual";
    Text[ finnish ] = "Yksittinen kirje";
};

String CorrespondenceDialog+2
{
    Text = "Mehrere Empfnger (Adressdatenbank)";
    Text[English] = "Multiple Recipients (Address Database)";
    Text[ english_us ] = "Form letter";
    Text[ portuguese ] = "Carta em srie";
    Text[ dutch ] = "Standaardbrief";
    Text[ french ] = "Mailing";
    Text[ spanish ] = "Carta en serie";
    Text[ italian ] = "Stampa in serie";
    Text[ swedish ] = "Standardbrev";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ danish ] = "Brevfletningsbrev";
    Text[ polish ] = "List seryjny";
    Text[ portuguese_brazilian ] = "Multiple letter";
    Text[ japanese ] = "݈";
    Text[ korean ] = " ";
    Text[ chinese_simplified ] = "ʼϲ";
    Text[ chinese_traditional ] = "l(H)X";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Standart mektup";
    Text[ catalan ] = "Carta en serie";
    Text[ finnish ] = "Lomakekirje";
};

String CorrespondenceDialog+3
{
    Text = "Verwendung der Vorlage";
    Text[English] = "Use of this template";
    Text[ english_us ] = "Use of this template";
};


String CorrespondenceFields
{
    Text = "Platzhalter anklicken und berschreiben";
    Text[English] = "Click place holder and overwrite";
    Text[ english_us ] = "Click place holder and overwrite";
    Text[ language_user1 ] = "Platzhalter-Hinweistext";
};

String CorrespondenceFields+1
{
    Text = "Firma";
    Text[English] = "Company";
    Text[ english_us ] = "Company";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};

String CorrespondenceFields+2
{
    Text = "Abteilung";
    Text[English] = "Department";
    Text[ english_us ] = "Department";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};

String CorrespondenceFields+3
{
    Text = "Vorname";
    Text[English] = "First Name";
    Text[ english_us ] = "First Name";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};

String CorrespondenceFields+4
{
    Text = "Nachname";
    Text[English] = "Last Name";
    Text[ english_us ] = "Last Name";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};

String CorrespondenceFields+5
{
    Text = "Strae";
    Text[English] = "Address";
    Text[ english_us ] = "Address";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};

String CorrespondenceFields+6
{
    Text = "Land";
    Text[English] = "Country";
    Text[ english_us ] = "Country";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+7
{
    Text = "PLZ";
    Text[English] = "Postal Code";
    Text[ english_us ] = "Postal Code";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};

String CorrespondenceFields+8
{
    Text = "Ort";
    Text[English] = "City";
    Text[ english_us ] = "City";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};

String CorrespondenceFields+9
{
    Text = "Titel";
    Text[English] = "Title";
    Text[ english_us ] = "Title";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+10
{
    Text = "Position";
    Text[English] = "Position";
    Text[ english_us ] = "Position";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+11
{
    Text = "Anrede";
    Text[English] = "Form of Address";
    Text[ english_us ] = "Form of Address";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+12
{
    Text = "Krzel";
    Text[English] = "Initials";
    Text[ english_us ] = "Initials";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+13
{
    Text = "Briefanrede";
    Text[English] = "Salutation";
    Text[ english_us ] = "Salutation";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+14
{
    Text = "Tel. privat";
    Text[English] = "Home Phone";
    Text[ english_us ] = "Home Phone";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+15
{
    Text = "Tel. gesch.";
    Text[English] = "Work Phone";
    Text[ english_us ] = "Work Phone";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+16
{
    Text = "Fax";
    Text[English] = "Fax";
    Text[ english_us ] = "Fax";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+17
{
    Text = "E-Mail";
    Text[English] = "E-Mail";
    Text[ english_us ] = "E-Mail";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+18
{
    Text = "URL";
    Text[English] = "URL";
    Text[ english_us ] = "URL";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+19
{
    Text = "Notiz";
    Text[English] = "Notes";
    Text[ english_us ] = "Notes";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+20
{
    Text = "Alt. Feld 1";
    Text[English] = "Alt. Field 1";
    Text[ english_us ] = "Alt. Field 1";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+21
{
    Text = "Alt. Feld 2";
    Text[English] = "Alt. Field 2";
    Text[ english_us ] = "Alt. Field 2";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+22
{
    Text = "Alt. Feld 3";
    Text[English] = "Alt. Field 3";
    Text[ english_us ] = "Alt. Field 3";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+23
{
    Text = "Alt. Feld 4";
    Text[English] = "Alt. Field 4";
    Text[ english_us ] = "Alt. Field 4";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+24
{
    Text = "ID";
    Text[English] = "ID";
    Text[ english_us ] = "ID";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+25
{
    Text = "Bundesland";
    Text[English] = "State";
    Text[ english_us ] = "State";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+26
{
    Text = "Tel. Bro";
    Text[English] = "Office Phone";
    Text[ english_us ] = "Office Phone";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+27
{
    Text = "Pager";
    Text[English] = "Pager";
    Text[ english_us ] = "Pager";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+28
{
    Text = "Tel. Mobil";
    Text[English] = "Mobile Phone";
    Text[ english_us ] = "Mobile Phone";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String CorrespondenceFields+29
{
    Text = "Tel. Andere";
    Text[English] = "Other Phone";
    Text[ english_us ] = "Other Phone";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};

String CorrespondenceFields+30
{
    Text = "Kalender URL";
    Text[English] = "Calendar URL";
    Text[ english_us ] = "Calendar URL";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};

String CorrespondenceFields+31
{
    Text = "Einladen";
    Text[English] = "Invite";
    Text[ english_us ] = "Invite";
    Text[ language_user1 ] = "dies ist ein Platzhalter auf einem Brief";
};


String TextField
{
    Text = "Benutzerdatenfeld ist nicht definiert!";
    Text[English] = "Textfield is not defined!";
    Text[ english_us ] = "User data field is not defined!";
    Text[ language_user1 ] = "Mitteilung in einer Messagebox";

    Text[ portuguese ] = "Campo de dados do utilizador no definido.";
    Text[ russian ] = "   .";
    Text[ greek ] = "       !";
    Text[ dutch ] = "Geen veld voor gebruikersgegevens gedefinieerd!";
    Text[ french ] = "Ce champ de donnes d'identit n'est pas dfini !";
    Text[ spanish ] = "El campo de datos de usuario no est definido!";
    Text[ italian ] = "Il campo dati utente non  stato definito!";
    Text[ danish ] = "Textfield is not defined!";
    Text[ swedish ] = "Anvndardataflt r inte definierat!";
    Text[ polish ] = "Nie zdefiniowano pola danych uytkownika!";
    Text[ portuguese_brazilian ] = "Textfield is not defined!";
    Text[ japanese ] = "հްް̨ނ`Ă܂B";
    Text[ korean ] = "ڵʵ尡 ǵ ʾҽϴ!";
    Text[ chinese_simplified ] = "ûжʹֶΣ";
    Text[ chinese_traditional ] = "٨SwqϥΪ̸!";
    Text[ turkish ] = "Textfield is not defined!";
    Text[ arabic ] = "     !";
    Text[ catalan ] = "El campo de datos de usuario no est definido!";
    Text[ finnish ] = "Benutzerdatenfeld ist nicht definiert!";
};