summaryrefslogtreecommitdiff
path: root/wizards/source/schedule/schedule.src
blob: 5b298a62e9ddbc224deb4c558eff796900d3e0bc (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
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
/*************************************************************************
 *
 *  $RCSfile: schedule.src,v $
 *
 *  $Revision: 1.33 $
 *
 *  last change: $Author: vg $ $Date: 2002-08-05 20:05:49 $
 *
 *  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): _______________________________________
 *
 *
 ************************************************************************/
// Dialog labels start at 1000
#define dlgCalTitle 1000
#define dlgCalTitleBack 1001
#define dlgCalTitleOwnData  1002
#define dlgSchdlTitle   1003
#define dlgOK   1004
#define dlgCancel   1005
#define dlgCalFrameOption   1006
#define dlgCalOptionYear    1007
#define dlgCalOptionMonth   1008
#define dlgSchdlDescription 1009
#define dlgSchdlCountry 1010
#define dlgTime 1011
#define dlgYear 1012
#define dlgCalMonth 1013
#define dlgSpecificBankholidays 1014
#define dlgCalOwnData   1015
#define dlgCalInsert    1016
#define dlgCalDelete    1017
#define dlgCalNewEvent  1018
#define dlgCalEvent 1019
#define dlgCalEventOnce 1020
#define dlgCalEventDay  1021
#define dlgCalEventMonth    1022
#define dlgCalEventYear 1023

// Bitmap file is 1099
#define dlgBitmapFile   1099

// Names of states start at 1100
#define dlgState    1100

// Months start at 1200
#define dlgMonth    1200

// Messages start at 1300
#define msgCalErrorTitle    1300
#define msgCalError 1301
#define msgCalRemoveTitle   1302
#define msgCalRemove    1303

// Styles start at 1400
#define stlWorkday  1400
#define stlWeekend  1401

// Sheet names start at 1410
#define nameCalYear 1410
#define nameCalMonth    1411

#define sProgress   1500

// --------------------------------------------------------------------

String dlgCalTitle
{
Text = "%PRODUCTNAME Kalender";
Text[ English ] = "StarOffice Calendar";
Text[ English_us ] = "%PRODUCTNAME Calendar";
Text[ french ] = "Calendrier %PRODUCTNAME";
Text[ italian ] = "Calendario %PRODUCTNAME";
Text[ spanish ] = "%PRODUCTNAME Calendario";
Text[ portuguese ] = "Calendrio %PRODUCTNAME";
Text[ dutch ] = "%PRODUCTNAME Kalender";
Text[ swedish ] = "%PRODUCTNAME kalender";
    Text[ russian ] = " %PRODUCTNAME";
    Text[ greek ] = " %PRODUCTNAME";
    Text[ danish ] = "%PRODUCTNAME kalender";
    Text[ polish ] = "Kalendarz %PRODUCTNAME";
    Text[ portuguese_brazilian ] = "%PRODUCTNAME Calendar";
    Text[ japanese ] = "%PRODUCTNAME カレンダー";
    Text[ korean ] = "%PRODUCTNAME 칼렌더";
    Text[ chinese_simplified ] = "%PRODUCTNAME 日历";
    Text[ chinese_traditional ] = "%PRODUCTNAME 行事曆";
    Text[ arabic ] = "%PRODUCTNAME ";
    Text[ turkish ] = "%PRODUCTNAME Takvimi";
    Text[ catalan ] = "%PRODUCTNAME Calendari";
    Text[ finnish ] = "%PRODUCTNAME: Kalenteri";
    Text[ thai ] = "ปฏิทิน %PRODUCTNAME ";
};

String  dlgCalTitleBack
{
Text = "Zurck";
Text[ English ] = "Back";
Text[ English_us ] = "Back";
Text[ french ] = "Prcdent";
Text[ italian ] = "Indietro";
Text[ spanish ] = "Regresar";
Text[ portuguese ] = "Anterior";
Text[ dutch ] = "Vorige";
Text[ swedish ] = "Tillbaka";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Tilbage";
    Text[ polish ] = "Wstecz";
    Text[ portuguese_brazilian ] = "Back";
    Text[ japanese ] = "戻る";
    Text[ korean ] = "뒤로";
    Text[ chinese_simplified ] = "返回";
    Text[ chinese_traditional ] = "返回";
    Text[ arabic ] = "";
    Text[ turkish ] = "Geri";
    Text[ catalan ] = "Enrere";
    Text[ finnish ] = "Edellinen";
    Text[ thai ] = "กลับไป";
};

String  dlgCalTitleOwnData
{
Text = "Eigene Daten";
Text[ English ] = "Personal Data";
Text[ English_us ] = "Personal Data";
Text[ french ] = "Mes donnes";
Text[ italian ] = "Dati dell'utente";
Text[ spanish ] = "Mis datos";
Text[ portuguese ] = "Dados pessoais";
Text[ dutch ] = "Eigen gegevens";
Text[ swedish ] = "Egna data";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ danish ] = "Egne data";
    Text[ polish ] = "Dane osobiste";
    Text[ portuguese_brazilian ] = "Personal Data";
    Text[ japanese ] = "独自のデータ";
    Text[ korean ] = "개인적인 데이터";
    Text[ chinese_simplified ] = "个人数据";
    Text[ chinese_traditional ] = "個人數據";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Kiisel veriler";
    Text[ catalan ] = "Dades personals";
    Text[ finnish ] = "Henkiltiedot";
    Text[ thai ] = "ข้อมูลส่วนตัว";
};

String dlgSchdlTitle
{
Text = "Feiertagsberechnung";
Text[ English ] = "Add Holidays to Calendar";
Text[ English_us ] = "Add Holidays to Calendar";
Text[ french ] = "Calcul des jours fris";
Text[ italian ] = "Calcolo dei giorni festivi";
Text[ spanish ] = "Clculo de los das festivos";
Text[ portuguese ] = "Clculo dos feriados";
Text[ dutch ] = "Feestdagen berekenen";
Text[ swedish ] = "Berkna helgdagar";
    Text[ russian ] = "   ";
    Text[ greek ] = "  ";
    Text[ danish ] = "Beregn helligdage";
    Text[ polish ] = "Oblicz dni witeczne";
    Text[ portuguese_brazilian ] = "Add Holidays to Calendar";
    Text[ japanese ] = "祝日を数える";
    Text[ korean ] = "공휴일 계산";
    Text[ chinese_simplified ] = "节假日计算";
    Text[ chinese_traditional ] = "計算節假日";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Tatil gnlerinin hesaplanmas";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Afegeix les vacances al calendari";
    Text[ finnish ] = "Lis lomat kalenteriin";
    Text[ thai ] = "เพิ่มวันหยุดลงในปฏิทิน";
};

String dlgOK
{
Text = "Fertig stellen";
Text[ English ] = "Create";
Text[ English_us ] = "Create";
Text[ french ] = "Crer";
Text[ italian ] = "Crea";
Text[ spanish ] = "Crear";
Text[ portuguese ] = "Criar";
Text[ dutch ] = "Voltooien";
Text[ swedish ] = "Frdigstll";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Udfr";
    Text[ polish ] = "Utwrz";
    Text[ portuguese_brazilian ] = "Create";
    Text[ japanese ] = "完了";
    Text[ korean ] = "만들기";
    Text[ chinese_simplified ] = "完成";
    Text[ chinese_traditional ] = "完成";
    Text[ arabic ] = "";
    Text[ turkish ] = "Olutur";
    Text[ catalan ] = "Crea";
    Text[ finnish ] = "Luo";
    Text[ thai ] = "สร้าง";
};

String dlgCancel
{
Text = "Abbrechen";
Text[ English ] = "Cancel";
Text[ English_us ] = "Cancel";
Text[ french ] = "Annuler";
Text[ italian ] = "Annulla";
Text[ spanish ] = "Cancelar";
Text[ portuguese ] = "Cancelar";
Text[ dutch ] = "Annuleren";
Text[ swedish ] = "Avbryt";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Annuller";
    Text[ polish ] = "Anuluj";
    Text[ portuguese_brazilian ] = "Cancel";
    Text[ japanese ] = "キャンセル";
    Text[ korean ] = "취소";
    Text[ chinese_simplified ] = "取消";
    Text[ chinese_traditional ] = "取消";
    Text[ arabic ] = "";
    Text[ turkish ] = "ptal";
    Text[ catalan ] = "Cancel.la";
    Text[ finnish ] = "Peruuta";
    Text[ thai ] = "ยกเลิก";
};

String  dlgCalFrameOption
{
Text = "Kalender";
Text[ English ] = "Calendar";
Text[ English_us ] = "Calendar";
Text[ french ] = "Calendrier";
Text[ italian ] = "Calendario";
Text[ spanish ] = "Calendario";
Text[ portuguese ] = "Calendrio";
Text[ dutch ] = "Kalender";
Text[ swedish ] = "Kalender";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Kalendar";
    Text[ polish ] = "Kalendarz";
    Text[ portuguese_brazilian ] = "Calendar";
    Text[ japanese ] = "カレンダー";
    Text[ korean ] = "칼렌더";
    Text[ chinese_simplified ] = "日历";
    Text[ chinese_traditional ] = "行事曆";
    Text[ arabic ] = "";
    Text[ turkish ] = "Takvim";
    Text[ catalan ] = "Calendari";
    Text[ finnish ] = "Kalenteri";
    Text[ thai ] = "ปฏิทิน";
};

String  dlgCalOptionYear
{
Text = "~Jahresbersicht";
Text[ English ] = "~Year Overview";
Text[ English_us ] = "~Year Overview";
Text[ french ] = "Anne";
Text[ italian ] = "~Panoramica annuale";
Text[ spanish ] = "~Resumen del ao";
Text[ portuguese ] = "~Plano anual";
Text[ dutch ] = "~Jaaroverzicht";
Text[ swedish ] = "~rsversikt";
    Text[ russian ] = "~ ";
    Text[ greek ] = "~ ";
    Text[ danish ] = "~rsoversigt";
    Text[ polish ] = "~Przegld roku";
    Text[ portuguese_brazilian ] = "~Year Overview";
    Text[ japanese ] = "年間(~Y)";
    Text[ korean ] = "년간 일정 개요(~Y)";
    Text[ chinese_simplified ] = "年检视图(~Y)";
    Text[ chinese_traditional ] = "年檢視圖(~Y)";
    Text[ arabic ] = " ~";
    Text[ turkish ] = "~Yla genel bak";
    Text[ catalan ] = "~Resum de l'any";
    Text[ finnish ] = "~Vuoden yleiskuvaus";
    Text[ thai ] = "ภาพรวมของ~ปี";
};

String  dlgCalOptionMonth
{
Text = "~Monat";
Text[ English ] = "~Month";
Text[ English_us ] = "~Month";
Text[ french ] = "Mois";
Text[ italian ] = "~Mese";
Text[ spanish ] = "~Mes";
Text[ portuguese ] = "~Ms";
Text[ dutch ] = "~Maand";
Text[ swedish ] = "~Mnad";
    Text[ russian ] = "~";
    Text[ greek ] = "~";
    Text[ danish ] = "~Mned";
    Text[ polish ] = "~Miesic";
    Text[ portuguese_brazilian ] = "~Month";
    Text[ japanese ] = "月間(~M)";
    Text[ korean ] = "월(~M)";
    Text[ chinese_simplified ] = "月(~M)";
    Text[ chinese_traditional ] = "月(~M)";
    Text[ arabic ] = "~";
    Text[ turkish ] = "~Ay";
    Text[ catalan ] = "~Mes";
    Text[ finnish ] = "~Kuukausi";
    Text[ thai ] = "เ~ดือน";
};

String dlgSchdlDescription
{
Text = "Feiertagsberechnung fr";
Text[ English ] = "Add holidays for";
Text[ English_us ] = "Add holidays for";
Text[ french ] = "Calcul des jours fris pour";
Text[ italian ] = "Calcolo dei giorni festivi per";
Text[ spanish ] = "Clculo de los das festivos para";
Text[ portuguese ] = "Clculo dos feriados para";
Text[ dutch ] = "Feestdagen berekenen voor";
Text[ swedish ] = "Berkna helgdagar fr";
    Text[ russian ] = "  ";
    Text[ greek ] = "   ";
    Text[ danish ] = "Beregn helligdage for";
    Text[ polish ] = "Obliczenie dni witecznych dla";
    Text[ portuguese_brazilian ] = "Add holidays for";
    Text[ japanese ] = "祝日を数える対象";
    Text[ korean ] = "공휴일 계산";
    Text[ chinese_simplified ] = "计算节假日为";
    Text[ chinese_traditional ] = "計算節假日的所在地";
    Text[ arabic ] = "   ";
    Text[ turkish ] = "Tatil gnleri hesaplamas";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Afegeix les vacances per";
    Text[ finnish ] = "Lis lomat:";
    Text[ thai ] = "เพิ่มวันหยุดสำหรับ";
};

String dlgSchdlCountry
{
Text = "Deutschland";
Text[ English ] = "Great Britain";
Text[ English_us ] = "USA";
Text[ french ] = "la France";
Text[ italian ] = "Italia";
Text[ spanish ] = "Espaa";
Text[ portuguese ] = "Portugal";
Text[ dutch ] = "Nederland";
Text[ swedish ] = "Sverige";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Danmark";
    Text[ polish ] = "Polska";
    Text[ portuguese_brazilian ] = "USA";
    Text[ japanese ] = "日本";
    Text[ korean ] = "독일";
    Text[ chinese_simplified ] = "中国";
    Text[ chinese_traditional ] = "台灣";
    Text[ arabic ] = "";
    Text[ turkish ] = "Trkiye";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Catalunya";
    Text[ finnish ] = "USA";
    Text[ thai ] = "ประเทศไทย";
};

String dlgTime
{
Text = "Zeitraum";
Text[ English ] = "Time Frame";
Text[ English_us ] = "Time Frame";
Text[ french ] = "Priode";
Text[ italian ] = "Intervallo di tempo";
Text[ spanish ] = "Perodo";
Text[ portuguese ] = "Perodo";
Text[ dutch ] = "Tijdsbestek";
Text[ swedish ] = "Tidsrymd";
    Text[ russian ] = "";
    Text[ greek ] = " ";
    Text[ danish ] = "Tidsperiode";
    Text[ polish ] = "Okres";
    Text[ portuguese_brazilian ] = "Time Frame";
    Text[ japanese ] = "期間";
    Text[ korean ] = "기간";
    Text[ chinese_simplified ] = "时间";
    Text[ chinese_traditional ] = "時間範圍";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Zaman aral";
    Text[ catalan ] = "Marc d'hora";
    Text[ finnish ] = "Aikakehys";
    Text[ thai ] = "กรอบเวลา";
};

String dlgYear
{
Text = "Jahr";
Text[ English ] = "Year";
Text[ English_us ] = "Year";
Text[ french ] = "Anne";
Text[ italian ] = "Anno";
Text[ spanish ] = "Ao";
Text[ portuguese ] = "Ano";
Text[ dutch ] = "Jaar";
Text[ swedish ] = "r";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "r";
    Text[ polish ] = "Rok";
    Text[ portuguese_brazilian ] = "Year";
    Text[ japanese ] = "西暦年";
    Text[ korean ] = "년";
    Text[ chinese_simplified ] = "年";
    Text[ chinese_traditional ] = "年";
    Text[ arabic ] = "";
    Text[ turkish ] = "Yl";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Any";
    Text[ finnish ] = "Vuosi";
    Text[ thai ] = "ปี";
};

String dlgCalMonth
{
Text = "Monat";
Text[ English ] = "Month";
Text[ English_us ] = "Month";
Text[ french ] = "Mois";
Text[ italian ] = "Mese";
Text[ spanish ] = "Mes";
Text[ portuguese ] = "Ms";
Text[ dutch ] = "Maand";
Text[ swedish ] = "Mnad";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Mned";
    Text[ polish ] = "Miesic";
    Text[ portuguese_brazilian ] = "Month";
    Text[ japanese ] = "月";
    Text[ korean ] = "월";
    Text[ chinese_simplified ] = "月";
    Text[ chinese_traditional ] = "月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Ay";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Mes";
    Text[ finnish ] = "Kuukausi";
    Text[ thai ] = "เดือน";
};

String  dlgSpecificBankholidays
{
Text = "Bundeslandspezifische Feiertage";
Text[ English ] = "-";
Text[ English_us ] = "-";
Text[ french ] = "Jours fris propres  une rgion particulire";
Text[ italian ] = "-";
Text[ spanish ] = "Das festivos locales";
Text[ portuguese ] = "Feriados locais";
Text[ dutch ] = "Regionale feestdagen";
Text[ swedish ] = "-";
    Text[ chinese_traditional ] = "特定節假日";
    Text[ arabic ] = "  ";
    Text[ greek ] = " ";
    Text[ turkish ] = "-";
    Text[ korean ] = "독일 공휴일";
    Text[ catalan ] = "-";
};

String  dlgCalOwnData
{
Text = "Eigene Daten";
Text[ English ] = "Personal Data";
Text[ English_us ] = "Personal Data";
Text[ french ] = "Mes donnes";
Text[ italian ] = "Dati dell'utente";
Text[ spanish ] = "Mis datos";
Text[ portuguese ] = "Dados pessoais";
Text[ dutch ] = "Eigen gegevens";
Text[ swedish ] = "Egna data";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ danish ] = "Egne data";
    Text[ polish ] = "Dane osobiste";
    Text[ portuguese_brazilian ] = "Personal Data";
    Text[ japanese ] = "独自のデータ";
    Text[ korean ] = "개인 데이터";
    Text[ chinese_simplified ] = "个人数据";
    Text[ chinese_traditional ] = "個人數據";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Kiisel veriler";
    Text[ catalan ] = "Dades personals";
    Text[ finnish ] = "Henkiltiedot";
    Text[ thai ] = "ข้อมูลส่วนตัว";
};

String dlgCalInsert
{
Text = "~Einfgen";
Text[ English ] = "~Insert";
Text[ English_us ] = "~Insert";
Text[ french ] = "Insrer";
Text[ italian ] = "~Aggiungi";
Text[ spanish ] = "~Insertar";
Text[ portuguese ] = "~Inserir";
Text[ dutch ] = "~Invoegen";
Text[ swedish ] = "~Infoga";
    Text[ russian ] = "~";
    Text[ greek ] = "~";
    Text[ danish ] = "~Indst";
    Text[ polish ] = "~Wstaw";
    Text[ portuguese_brazilian ] = "~Insert";
    Text[ japanese ] = "挿入(~I)";
    Text[ korean ] = "삽입(~I)";
    Text[ chinese_simplified ] = "插入(~I)";
    Text[ chinese_traditional ] = "貼上(~I)";
    Text[ arabic ] = "~";
    Text[ turkish ] = "~Ekle";
    Text[ catalan ] = "~Insereix";
    Text[ finnish ] = "~Lis";
    Text[ thai ] = "แ~ทรก";
};

String dlgCalDelete
{
Text = "Ent~fernen";
Text[ English ] = "~Delete";
Text[ English_us ] = "~Delete";
Text[ french ] = "Supprimer";
Text[ italian ] = "~Elimina";
Text[ spanish ] = "~Eliminar";
Text[ portuguese ] = "Rem~over";
Text[ dutch ] = "Ver~wijderen";
Text[ swedish ] = "Ta ~bort";
    Text[ russian ] = "~";
    Text[ greek ] = "~";
    Text[ danish ] = "~Fjern";
    Text[ polish ] = "~Usu";
    Text[ portuguese_brazilian ] = "~Delete";
    Text[ japanese ] = "削除(~D)";
    Text[ korean ] = "삭제(~D)";
    Text[ chinese_simplified ] = "删除(~D)";
    Text[ chinese_traditional ] = "刪除(~D)";
    Text[ arabic ] = "~";
    Text[ turkish ] = "~Sil";
    Text[ catalan ] = "~Suprimeix";
    Text[ finnish ] = "~Poista";
    Text[ thai ] = "~ลบ";
};

String dlgCalNewEvent
{
Text = "Neues Ereignis";
Text[ English ] = "New Event";
Text[ English_us ] = "New Event";
Text[ french ] = "Nouvel vnement";
Text[ italian ] = "Nuovo evento";
Text[ spanish ] = "Nuevo acontecimiento";
Text[ portuguese ] = "Novo evento";
Text[ dutch ] = "Nieuwe gebeurtenis";
Text[ swedish ] = "Ny hndelse";
    Text[ russian ] = " ";
    Text[ greek ] = " ";
    Text[ danish ] = "Ny begivenhed";
    Text[ polish ] = "Nowe wydarzenie";
    Text[ portuguese_brazilian ] = "New Event";
    Text[ japanese ] = "新しい予定";
    Text[ korean ] = "새 이벤트";
    Text[ chinese_simplified ] = "重大事件";
    Text[ chinese_traditional ] = "新增約會";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Yeni olay";
    Text[ catalan ] = "Esdeveniment nou";
    Text[ finnish ] = "Uusi tapahtuma";
    Text[ thai ] = "เหตุการณ์ใหม่";
};

String dlgCalEvent
{
Text = "Ereignis";
Text[ English ] = "Event";
Text[ English_us ] = "Event";
Text[ french ] = "vnement";
Text[ italian ] = "Evento";
Text[ spanish ] = "Acontecimiento";
Text[ portuguese ] = "Evento";
Text[ dutch ] = "Gebeurtenis";
Text[ swedish ] = "Hndelse";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Begivenhed";
    Text[ polish ] = "Wydarzenie";
    Text[ portuguese_brazilian ] = "Event";
    Text[ japanese ] = "イベント";
    Text[ korean ] = "이벤트";
    Text[ chinese_simplified ] = "事件";
    Text[ chinese_traditional ] = "約會";
    Text[ arabic ] = "";
    Text[ turkish ] = "Olay";
    Text[ catalan ] = "Esdeveniment";
    Text[ finnish ] = "Tapahtuma";
    Text[ thai ] = "เหตุการณ์";
};

String dlgCalEventOnce
{
Text = "Einmalig";
Text[ English ] = "One-Time";
Text[ English_us ] = "One-Time";
Text[ french ] = "Unique";
Text[ italian ] = "Una sola volta";
Text[ spanish ] = "nico";
Text[ portuguese ] = "nico";
Text[ dutch ] = "Eenmalig";
Text[ swedish ] = "Engngsfreteelse";
    Text[ russian ] = "";
    Text[ greek ] = " ";
    Text[ danish ] = "n gang";
    Text[ polish ] = "Jednorazowo";
    Text[ portuguese_brazilian ] = "One-Time";
    Text[ japanese ] = "1回のみ";
    Text[ korean ] = "한번";
    Text[ chinese_simplified ] = "一次性";
    Text[ chinese_traditional ] = "一次";
    Text[ arabic ] = " ";
    Text[ turkish ] = "Bir kerelik";
    Text[ catalan ] = "Un cop";
    Text[ finnish ] = "Kerran";
    Text[ thai ] = "หนึ่งครั้ง";
};

String dlgCalEventDay
{
Text = "Tag";
Text[ English ] = "Day";
Text[ English_us ] = "Day";
Text[ french ] = "Jour";
Text[ italian ] = "Giorno";
Text[ spanish ] = "Da";
Text[ portuguese ] = "Dia";
Text[ dutch ] = "Dag";
Text[ swedish ] = "Dag";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Dag";
    Text[ polish ] = "Dzie";
    Text[ portuguese_brazilian ] = "Day";
    Text[ japanese ] = "日";
    Text[ korean ] = "일";
    Text[ chinese_simplified ] = "天";
    Text[ chinese_traditional ] = "天";
    Text[ arabic ] = "";
    Text[ turkish ] = "Gn";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Dia";
    Text[ finnish ] = "Piv";
    Text[ thai ] = "วัน";
};

String dlgCalEventMonth
{
Text = "Monat";
Text[ English ] = "Month";
Text[ English_us ] = "Month";
Text[ french ] = "Mois";
Text[ italian ] = "Mese";
Text[ spanish ] = "Mes";
Text[ portuguese ] = "Ms";
Text[ dutch ] = "Maand";
Text[ swedish ] = "Mnad";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Mned";
    Text[ polish ] = "Miesic";
    Text[ portuguese_brazilian ] = "Month";
    Text[ japanese ] = "月";
    Text[ korean ] = "월";
    Text[ chinese_simplified ] = "月";
    Text[ chinese_traditional ] = "月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Ay";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Mes";
    Text[ finnish ] = "Kuukausi";
    Text[ thai ] = "เดือน";
};

String dlgCalEventYear
{
Text = "Jahr";
Text[ English ] = "Year";
Text[ English_us ] = "Year";
Text[ french ] = "Anne";
Text[ italian ] = "Anno";
Text[ spanish ] = "Ao";
Text[ portuguese ] = "Ano";
Text[ dutch ] = "Jaar";
Text[ swedish ] = "r";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "r";
    Text[ polish ] = "Rok";
    Text[ portuguese_brazilian ] = "Year";
    Text[ japanese ] = "年";
    Text[ korean ] = "년";
    Text[ chinese_simplified ] = "年";
    Text[ chinese_traditional ] = "年";
    Text[ arabic ] = "";
    Text[ turkish ] = "Yl";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Any";
    Text[ finnish ] = "Vuosi";
    Text[ thai ] = "ปี";
};

// --------------------------------------------------------------------

String dlgBitmapFile
{
Text = "germany.wmf";
Text[ language_user1 ] = "Only for Germany we will use a '.wmf' file. For other localizations only bitmaps. The name of the resource refers to the bitmap 'share/template/wizard/bitmap";
Text[ English ] = "britain.bmp";
Text[ English_us ] = "usa.bmp";
Text[ french ] = "france.bmp";
Text[ italian ] = "italia.bmp";
Text[ spanish ] = "spain.bmp";
Text[ portuguese ] = "portugal.bmp";
Text[ dutch ] = "nedland.bmp";
Text[ swedish ] = "sweden.bmp";
    Text[ russian ] = "russia.bmp";
    Text[ greek ] = "greece.bmp";
    Text[ danish ] = "germany.wmf";
    Text[ polish ] = "polska.bmp";
    Text[ portuguese_brazilian ] = "usa.bmp";
    Text[ japanese ] = "japan.bmp";
    Text[ korean ] = "germany.wmf";
    Text[ chinese_simplified ] = "china.gif";
    Text[ chinese_traditional ] = "taiwan.bmp";
    Text[ arabic ] = "egypt.bmp";
    Text[ turkish ] = "turkiye.bmp";
    Text[ catalan ] = "usa.bmp";
    Text[ finnish ] = "usa.bmp";
    Text[ language_user1 ] = "Only for Germany we will use a '.wmf' file. For other localizations only bitmaps. The name of the resource refers to the bitmap 'share/template/wizard/bitmap";

    Text[ thai ] = "thailand.bmp";
};

// --------------------------------------------------------------------

String dlgState
{
Text = "Allgemeine Feiertage";
Text[ English ] = "-";
Text[ English_us ] = "Public holidays";
Text[ french ] = "Jours fris gnraux";
Text[ italian ] = "Festivit generali";
Text[ spanish ] = "Das festivos generales";
Text[ portuguese ] = "Feriados gerais";
Text[ dutch ] = "Algemene feestdagen";
Text[ swedish ] = "Allmnna helgdagar";
    Text[ russian ] = " ";
    Text[ danish ] = "Almindelige helligdage";
    Text[ polish ] = "Oglne dni witeczne";
    Text[ chinese_traditional ] = "一般節假日";
    Text[ arabic ] = " ";
    Text[ greek ] = " ";
    Text[ korean ] = "일반 공휴일";
    Text[ turkish ] = "Genel tatil gnleri";
    Text[ catalan ] = "Festius";
    Text[ finnish ] = "Yleiset lomapivt";
    Text[ thai ] = "วันหยุดราชการ";
};


// --------------------------------------------------------------------

String dlgMonth
{
Text = "Januar";
Text[ English ] = "January";
Text[ English_us ] = "January";
Text[ french ] = "Janvier";
Text[ italian ] = "Gennaio";
Text[ spanish ] = "Enero";
Text[ portuguese ] = "Janeiro";
Text[ dutch ] = "Januari";
Text[ swedish ] = "Januari";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Januar";
    Text[ polish ] = "Stycze";
    Text[ portuguese_brazilian ] = "January";
    Text[ japanese ] = "1月";
    Text[ korean ] = "1월";
    Text[ chinese_simplified ] = "一月";
    Text[ chinese_traditional ] = "一月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Ocak";
    Text[ catalan ] = "Gener";
    Text[ finnish ] = "Tammikuu";
    Text[ thai ] = "มกราคม";
};

String dlgMonth+1
{
Text = "Februar";
Text[ English ] = "February";
Text[ English_us ] = "February";
Text[ french ] = "Fvrier";
Text[ italian ] = "Febbraio";
Text[ spanish ] = "Febrero";
Text[ portuguese ] = "Fevereiro";
Text[ dutch ] = "Februari";
Text[ swedish ] = "Februari";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Februar";
    Text[ polish ] = "Luty";
    Text[ portuguese_brazilian ] = "February";
    Text[ japanese ] = "2月";
    Text[ korean ] = "2월";
    Text[ chinese_simplified ] = "二月";
    Text[ chinese_traditional ] = "二月";
    Text[ arabic ] = "";
    Text[ turkish ] = "ubat";
    Text[ catalan ] = "Febrer";
    Text[ finnish ] = "Helmikuu";
    Text[ thai ] = "กุมภาพันธ์";
};

String dlgMonth+2
{
Text = "Mrz";
Text[ English ] = "March";
Text[ English_us ] = "March";
Text[ french ] = "Mars";
Text[ italian ] = "Marzo";
Text[ spanish ] = "Marzo";
Text[ portuguese ] = "Maro";
Text[ dutch ] = "Maart";
Text[ swedish ] = "Mars";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Marts";
    Text[ polish ] = "Marzec";
    Text[ portuguese_brazilian ] = "March";
    Text[ japanese ] = "3月";
    Text[ korean ] = "3월";
    Text[ chinese_simplified ] = "三月";
    Text[ chinese_traditional ] = "三月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Mart";
    Text[ catalan ] = "Mar";
    Text[ finnish ] = "Maaliskuu";
    Text[ thai ] = "มีนาคม";
};

String dlgMonth+3
{
Text = "April";
Text[ English ] = "April";
Text[ English_us ] = "April";
Text[ french ] = "Avril";
Text[ italian ] = "Aprile";
Text[ spanish ] = "Abril";
Text[ portuguese ] = "Abril";
Text[ dutch ] = "April";
Text[ swedish ] = "April";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "April";
    Text[ polish ] = "Kwiecie";
    Text[ portuguese_brazilian ] = "April";
    Text[ japanese ] = "4月";
    Text[ korean ] = "4월";
    Text[ chinese_simplified ] = "四月";
    Text[ chinese_traditional ] = "四月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Nisan";
    Text[ catalan ] = "Abril";
    Text[ finnish ] = "Huhtikuu";
    Text[ thai ] = "เมษายน";
};

String dlgMonth+4
{
Text = "Mai";
Text[ English ] = "May";
Text[ English_us ] = "May";
Text[ french ] = "Mai";
Text[ italian ] = "Maggio";
Text[ spanish ] = "Mayo";
Text[ portuguese ] = "Maio";
Text[ dutch ] = "Mei";
Text[ swedish ] = "Maj";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Maj";
    Text[ polish ] = "Maj";
    Text[ portuguese_brazilian ] = "May";
    Text[ japanese ] = "5月";
    Text[ korean ] = "5월";
    Text[ chinese_simplified ] = "五月";
    Text[ chinese_traditional ] = "五月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Mays";
    Text[ catalan ] = "Maig";
    Text[ finnish ] = "Toukokuu";
    Text[ thai ] = "พฤษภาคม";
};

String dlgMonth+5
{
Text = "Juni";
Text[ English ] = "June";
Text[ English_us ] = "June";
Text[ french ] = "Juin";
Text[ italian ] = "Giugno";
Text[ spanish ] = "Junio";
Text[ portuguese ] = "Junho";
Text[ dutch ] = "Juni";
Text[ swedish ] = "Juni";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Juni";
    Text[ polish ] = "Czerwiec";
    Text[ portuguese_brazilian ] = "June";
    Text[ japanese ] = "6月";
    Text[ korean ] = "6월";
    Text[ chinese_simplified ] = "六月";
    Text[ chinese_traditional ] = "六月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Haziran";
    Text[ catalan ] = "Juny";
    Text[ finnish ] = "Keskuu";
    Text[ thai ] = "มิถุนายน";
};

String dlgMonth+6
{
Text = "Juli";
Text[ English ] = "July";
Text[ English_us ] = "July";
Text[ french ] = "Juillet";
Text[ italian ] = "Luglio";
Text[ spanish ] = "Julio";
Text[ portuguese ] = "Julho";
Text[ dutch ] = "Juli";
Text[ swedish ] = "Juli";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Juli";
    Text[ polish ] = "Lipiec";
    Text[ portuguese_brazilian ] = "July";
    Text[ japanese ] = "7月";
    Text[ korean ] = "7월";
    Text[ chinese_simplified ] = "七月";
    Text[ chinese_traditional ] = "七月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Temmuz";
    Text[ catalan ] = "Juliol";
    Text[ finnish ] = "Heinkuu";
    Text[ thai ] = "กรกฎาคม";
};

String dlgMonth+7
{
Text = "August";
Text[ English ] = "August";
Text[ English_us ] = "August";
Text[ french ] = "Aot";
Text[ italian ] = "Agosto";
Text[ spanish ] = "Agosto";
Text[ portuguese ] = "Agosto";
Text[ dutch ] = "Augustus";
Text[ swedish ] = "Augusti";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "August";
    Text[ polish ] = "Sierpie";
    Text[ portuguese_brazilian ] = "August";
    Text[ japanese ] = "8月";
    Text[ korean ] = "8월";
    Text[ chinese_simplified ] = "八月";
    Text[ chinese_traditional ] = "八月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Austos";
    Text[ catalan ] = "Agost";
    Text[ finnish ] = "Elokuu";
    Text[ thai ] = "สิงหาคม";
};

String dlgMonth+8
{
Text = "September";
Text[ English ] = "September";
Text[ English_us ] = "September";
Text[ french ] = "Septembre";
Text[ italian ] = "Settembre";
Text[ spanish ] = "Septiembre";
Text[ portuguese ] = "Setembro";
Text[ dutch ] = "September";
Text[ swedish ] = "September";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "September";
    Text[ polish ] = "Wrzesie";
    Text[ portuguese_brazilian ] = "September";
    Text[ japanese ] = "9月";
    Text[ korean ] = "9월";
    Text[ chinese_simplified ] = "九月";
    Text[ chinese_traditional ] = "九月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Eyll";
    Text[ catalan ] = "Setembre";
    Text[ finnish ] = "Syyskuu";
    Text[ thai ] = "กันยายน";
};

String dlgMonth+9
{
Text = "Oktober";
Text[ English ] = "October";
Text[ English_us ] = "October";
Text[ french ] = "Octobre";
Text[ italian ] = "Ottobre";
Text[ spanish ] = "Octubre";
Text[ portuguese ] = "Outubro";
Text[ dutch ] = "Oktober";
Text[ swedish ] = "Oktober";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Oktober";
    Text[ polish ] = "Padziernik";
    Text[ portuguese_brazilian ] = "October";
    Text[ japanese ] = "10月";
    Text[ korean ] = "10월";
    Text[ chinese_simplified ] = "十月";
    Text[ chinese_traditional ] = "十月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Ekim";
    Text[ catalan ] = "Octubre";
    Text[ finnish ] = "Lokakuu";
    Text[ thai ] = "ตุลาคม";
};

String dlgMonth+10
{
Text = "November";
Text[ English ] = "November";
Text[ English_us ] = "November";
Text[ french ] = "Novembre";
Text[ italian ] = "Novembre";
Text[ spanish ] = "Noviembre";
Text[ portuguese ] = "Novembro";
Text[ dutch ] = "November";
Text[ swedish ] = "November";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "November";
    Text[ polish ] = "Listopad";
    Text[ portuguese_brazilian ] = "November";
    Text[ japanese ] = "11月";
    Text[ korean ] = "11월";
    Text[ chinese_simplified ] = "十一月";
    Text[ chinese_traditional ] = "十一月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Kasm";
    Text[ catalan ] = "Novembre";
    Text[ finnish ] = "Marraskuu";
    Text[ thai ] = "พฤศจิกายน";
};

String dlgMonth+11
{
Text = "Dezember";
Text[ English ] = "December";
Text[ English_us ] = "December";
Text[ french ] = "Dcembre";
Text[ italian ] = "Dicembre";
Text[ spanish ] = "Diciembre";
Text[ portuguese ] = "Dezembro";
Text[ dutch ] = "December";
Text[ swedish ] = "December";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "December";
    Text[ polish ] = "Grudzie";
    Text[ portuguese_brazilian ] = "December";
    Text[ japanese ] = "12月";
    Text[ korean ] = "12월";
    Text[ chinese_simplified ] = "十二月";
    Text[ chinese_traditional ] = "十二月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Aralk";
    Text[ catalan ] = "Desembre";
    Text[ finnish ] = "Joulukuu";
    Text[ thai ] = "ธันวาคม";
};

// --------------------------------------------------------------------

String msgCalErrorTitle
{
Text = "Jahres- / Monatskalender";
Text[ English ] = "Yearly- / Monthly Calendar";
Text[ English_us ] = "Yearly / Monthly Calendar";
Text[ french ] = "Calendrier annuel/mensuel";
Text[ italian ] = "Calendario mensile /annuale";
Text[ spanish ] = "Calendario anual/mensual";
Text[ portuguese ] = "Calendrio anual/mensal";
Text[ dutch ] = "Jaar- / maandkalender";
Text[ swedish ] = "rs-/mnadskalender";
    Text[ russian ] = "   /  ";
    Text[ greek ] = "  / M";
    Text[ danish ] = "rs- / mnedskalender";
    Text[ polish ] = "Kalendarz roczny / miesiczny";
    Text[ portuguese_brazilian ] = "Yearly- / Monthly Calendar";
    Text[ japanese ] = "年間/月間 カレンダー";
    Text[ korean ] = "연 칼렌더 / 월별 칼렌더";
    Text[ chinese_simplified ] = "年历和月历";
    Text[ chinese_traditional ] = "年月行事曆";
    Text[ arabic ] = "  /  ";
    Text[ turkish ] = "Yllk / Aylk takvim";
    Text[ catalan ] = "Calendari anual / mensual";
    Text[ finnish ] = "Vuosi-/kuukausikalenteri";
    Text[ thai ] = "ปฏิทินประจำปี / ประจำเดือน";
};

String msgCalError
{
Text = "Bei der Erstellung des Kalenders ist ein Fehler aufgetreten.";
Text[ English ] = "An error occurred during the creation of the calendar.";
Text[ English_us ] = "An error occurred while creating the calendar.";
Text[ french ] = "Erreur lors de la cration du calendrier.";
Text[ italian ] = "Durante la creazione del calendario si  verificato un errore.";
Text[ spanish ] = "Ha ocurrido un error al crear el calendario.";
Text[ portuguese ] = "Surgiu um erro ao criar o calendrio.";
Text[ dutch ] = "Bij het maken van de kalender is een fout opgetreden.";
Text[ swedish ] = "Ett fel uppstod nr kalendern skapades.";
    Text[ russian ] = "     ";
    Text[ greek ] = "      .";
    Text[ danish ] = "Der opstod en fejl under oprettelsen af kalenderen.";
    Text[ polish ] = "Podczas tworzenia kalendarza zaszed bd.";
    Text[ portuguese_brazilian ] = "An error occurred during the creation of the calendar.";
    Text[ japanese ] = "カレンダーの作成の際にエラー発生。";
    Text[ korean ] = "칼렌더 작성시 오류가 발생했습니다.";
    Text[ chinese_simplified ] = "在制作日历时出现了一个错误。";
    Text[ chinese_traditional ] = "在建立一個行事曆時發生錯誤。";
    Text[ arabic ] = "    .";
    Text[ turkish ] = "Takvim hazrlanrken bir hata olutu.";
    Text[ catalan ] = "S'ha produt un error en crear el calendari.";
    Text[ finnish ] = "On ilmennyt virhe luotaessa kalenteria.";
    Text[ thai ] = "เกิดข้อผิดพลาดขึ้นขณะกำลังสร้างปฏิทิน";
};

String msgCalRemoveTitle
{
Text = "Ereigniseintrge entfernen";
Text[ English ] = "Delete Event Entries";
Text[ English_us ] = "Delete event entries";
Text[ french ] = "Supprimer les vnements ?";
Text[ italian ] = "Elimina gli eventi";
Text[ spanish ] = "Eliminar acontecimientos";
Text[ portuguese ] = "Eliminar eventos";
Text[ dutch ] = "Ingevulde gegevens wissen";
Text[ swedish ] = "Ta bort hndelseposter";
    Text[ russian ] = "  ";
    Text[ greek ] = "  ";
    Text[ danish ] = "Fjern begivenhedselementer";
    Text[ polish ] = "Usu wpisy wydarze";
    Text[ portuguese_brazilian ] = "Delete Event Entries";
    Text[ japanese ] = "イベント項目の削除";
    Text[ korean ] = "이벤트 항목 제거";
    Text[ chinese_simplified ] = "删除事件条目";
    Text[ chinese_traditional ] = "刪除約會記錄";
    Text[ arabic ] = "  ";
    Text[ turkish ] = "Olay girilerini sil";
    Text[ catalan ] = "Suprimeix les entrades de l'esdeveniment";
    Text[ finnish ] = "Poista tapahtumamerkinnt";
    Text[ thai ] = "ลบรายการเหตุการณ์";
};

String msgCalRemove
{
Text = "Sollen die selektierten Eintrge entfernt werden?";
Text[ English ] = "Delete the selected entries?";
Text[ English_us ] = "Delete the selected entries?";
Text[ french ] = "Supprimer les entres slectionnes ?";
Text[ italian ] = "Volete eliminare le voci selezionate?";
Text[ spanish ] = "Desea eliminar los registros seleccionados?";
Text[ portuguese ] = "Eliminar as entradas seleccionadas?";
Text[ dutch ] = "Wilt u de geselecteerde gegevens wissen?";
Text[ swedish ] = "Skall de markerade posterna tas bort?";
    Text[ russian ] = "  ?";
    Text[ greek ] = "   ;";
    Text[ danish ] = "Er du sikker p, at du vil fjerne de markerede elementer?";
    Text[ polish ] = "Czy usun zaznaczone wpisy?";
    Text[ portuguese_brazilian ] = "Delete the selected entries?";
    Text[ japanese ] = "選択した項目を削除しますか。";
    Text[ korean ] = "선택된 항목을 제거하겠습니까?";
    Text[ chinese_simplified ] = "要删除选中的条目吗?";
    Text[ chinese_traditional ] = "要刪除選中的記錄?";
    Text[ arabic ] = "    ";
    Text[ turkish ] = "Seilen giriler silinsin mi?";
    Text[ language_user1 ] = " ";
    Text[ catalan ] = "Voleu suprimir les entrades seleccionades?";
    Text[ finnish ] = "Poistetaanko valitut merkinnt?";
    Text[ thai ] = "ลบรายการที่เลือกหรือไม่?";
};

// --------------------------------------------------------------------

String stlWorkday
{
Text = "Arbeitswoche";
Text[ English ] = "Workday";
Text[ English_us ] = "Workweek";
Text[ french ] = "";
Text[ italian ] = "";
Text[ spanish ] = "";
Text[ portuguese ] = "";
Text[ dutch ] = "";
Text[ swedish ] = "";
    Text[ portuguese ] = "Dias teis";
    Text[ russian ] = "";
    Text[ greek ] = " ";
    Text[ dutch ] = "Werkweek";
    Text[ french ] = "Semaine ouvre";
    Text[ spanish ] = "Semana laboral";
    Text[ italian ] = "Settimana lavorativa";
    Text[ danish ] = "Arbejdsuge";
    Text[ swedish ] = "Arbetsvecka";
    Text[ polish ] = "Tydzie roboczy";
    Text[ portuguese_brazilian ] = "Workday";
    Text[ japanese ] = "労働週日";
    Text[ korean ] = "근무 시간, 주";
    Text[ chinese_simplified ] = "工作周";
    Text[ chinese_traditional ] = "工作週";
    Text[ arabic ] = " ";
    Text[ language_user1 ] = " ";
    Text[ turkish ] = "alma haftas";
    Text[ catalan ] = "Setmana laboral";
    Text[ finnish ] = "Tyviikko";
    Text[ thai ] = "สัปดาห์ทำงาน";
};

String stlWeekend
{
Text = "Wochenende";
Text[ English ] = "Weekend";
Text[ English_us ] = "Weekend";
Text[ french ] = "";
Text[ italian ] = "";
Text[ spanish ] = "";
Text[ portuguese ] = "";
Text[ dutch ] = "";
Text[ swedish ] = "";
    Text[ portuguese ] = "Fim de semana";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ dutch ] = "Weekeinde";
    Text[ french ] = "Week-end";
    Text[ spanish ] = "Fin de semana";
    Text[ italian ] = "Fine settimana";
    Text[ danish ] = "Weekend";
    Text[ swedish ] = "Veckoslut";
    Text[ polish ] = "Weekend";
    Text[ portuguese_brazilian ] = "Weekend";
    Text[ japanese ] = "週末";
    Text[ korean ] = "주말";
    Text[ chinese_simplified ] = "周末";
    Text[ chinese_traditional ] = "週末";
    Text[ arabic ] = "  ";
    Text[ language_user1 ] = " ";
    Text[ turkish ] = "Haftasonu";
    Text[ catalan ] = "Cap de setmana";
    Text[ finnish ] = "Viikonloppu";
    Text[ thai ] = "วันหยุดประจำสัปดาห์";
};

// --------------------------------------------------------------------

String  nameCalYear
{
Text = "Kalender";
Text[ English ] = "Calendar";
Text[ English_us ] = "Calendar";
Text[ french ] = "Calendrier";
Text[ italian ] = "Calendario";
Text[ spanish ] = "Calendario";
Text[ portuguese ] = "Calendrio";
Text[ dutch ] = "Kalender";
Text[ swedish ] = "Kalender";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Kalendar";
    Text[ polish ] = "Kalendarz";
    Text[ portuguese_brazilian ] = "Calendar";
    Text[ japanese ] = "カレンダー";
    Text[ korean ] = "칼렌더";
    Text[ chinese_simplified ] = "日历";
    Text[ chinese_traditional ] = "行事曆";
    Text[ arabic ] = "";
    Text[ turkish ] = "Takvim";
    Text[ catalan ] = "Calendari";
    Text[ finnish ] = "Kalenteri";
    Text[ thai ] = "ปฏิทิน";
};

String  nameCalMonth
{
Text = "Monat";
Text[ English ] = "Month";
Text[ English_us ] = "Month";
Text[ french ] = "Mois";
Text[ italian ] = "Mese";
Text[ spanish ] = "Mes";
Text[ portuguese ] = "Ms";
Text[ dutch ] = "Maand";
Text[ swedish ] = "Mnad";
    Text[ russian ] = "";
    Text[ greek ] = "";
    Text[ danish ] = "Mned";
    Text[ polish ] = "Miesic";
    Text[ portuguese_brazilian ] = "Month";
    Text[ japanese ] = "";
    Text[ korean ] = "월";
    Text[ chinese_simplified ] = "月";
    Text[ chinese_traditional ] = "月";
    Text[ arabic ] = "";
    Text[ turkish ] = "Ay";
    Text[ language_user1 ] = "This Resource is the prefix for a sheet name eg. in the form like 'Month February'.";
    Text[ catalan ] = "Mes";
    Text[ finnish ] = "Kuukausi";
    Text[ language_user1 ] = "This Resource is the prefix for a sheet name eg. in the form like 'Month February'.";
    Text[ thai ] = "เดือน";
};



String  sProgress
{
Text = "Fortschritt:";
Text[ English ] = "Progress:";
Text[ English_us ] = "Progress:";
    Text[ portuguese ] = "Progresso:";
    Text[ russian ] = ":";
    Text[ greek ] = ":";
    Text[ dutch ] = "Vooruitgang:";
    Text[ french ] = "Progression :";
    Text[ spanish ] = "Progreso:";
    Text[ italian ] = "Progresso:";
    Text[ danish ] = "Fremgang:";
    Text[ swedish ] = "Framsteg:";
    Text[ polish ] = "Postp:";
    Text[ portuguese_brazilian ] = "Progress";
    Text[ japanese ] = "進捗状況:";
    Text[ korean ] = "진행";
    Text[ chinese_simplified ] = "已经完成:";
    Text[ chinese_traditional ] = "已經完成:";
    Text[ turkish ] = "Progress";
    Text[ arabic ] = ":";
    Text[ catalan ] = "Progrs:";
    Text[ finnish ] = "Tilanne:";
    Text[ thai ] = "ความคืบหน้า:";
};