summaryrefslogtreecommitdiff
path: root/scaddins/source/datefunc/datefunc.src
blob: 1d0b57b2b33f1a076c9696afe429ab30df33c27b (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
/*************************************************************************
 *
 *  $RCSfile: datefunc.src,v $
 *
 *  $Revision: 1.4 $
 *
 *  last change: $Author: rt $ $Date: 2001-10-17 21:13:18 $
 *
 *  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): _______________________________________
 *
 *
 ************************************************************************/


#include "datefunc.hrc"


Resource RID_DATE_FUNCTION_DESCRIPTIONS
{
    Resource DATE_FUNCDESC_DiffWeeks
    {
        String 1    // description              DiffWeeks
        {
            Text = "Berechnet die Anzahl der Wochen in einem bestimmten Zeitraum.";
            Text[ english ] = "Determines the number of weeks in a specific period.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Calculates the number of weeks in a specific period";
            Text[ portuguese ] = "Determines the number of weeks in a specific period.";
            Text[ russian ] = "      .";
            Text[ greek ] = "Determines the number of weeks in a specific period.";
            Text[ dutch ] = "Determines the number of weeks in a specific period.";
            Text[ french ] = "Calcule le nombre de semaines dans une priode dtermine.";
            Text[ spanish ] = "Calcula el nmero de semanas en un periodo determinado.";
            Text[ finnish ] = "Determines the number of weeks in a specific period.";
            Text[ italian ] = "Restituisce il numero di settimane di un determinato periodo.";
            Text[ danish ] = "Determines the number of weeks in a specific period.";
            Text[ swedish ] = "Berknar antalet veckor i en specifik period.";
            Text[ polish ] = "Zwraca ilo tygodni w pewnym okresie czasu.";
            Text[ portuguese_brazilian ] = "Determines the number of weeks in a specific period.";
            Text[ japanese ] = "Determines the number of weeks in a specific period.";
            Text[ korean ] = "Determines the number of weeks in a specific period.";
            Text[ chinese_simplified ] = "计算某一个周期内所包含的星期数目。";
            Text[ chinese_traditional ] = "傳回某一時期内的週數目。";
            Text[ turkish ] = "Determines the number of weeks in a specific period.";
            Text[ arabic ] = "Determines the number of weeks in a specific period.";
            Text[ catalan ] = "Determines the number of weeks in a specific period.";
        };
        String 2 // name of parameter 1         DiffWeeks
        {
            Text = "Ausgangsdatum";
            Text[ english ] = "Start date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Start date";
            Text[ portuguese ] = "Start date";
            Text[ russian ] = "_";
            Text[ greek ] = "Start date";
            Text[ dutch ] = "Start date";
            Text[ french ] = "Date initiale";
            Text[ spanish ] = "Fecha inicial";
            Text[ finnish ] = "Start date";
            Text[ italian ] = "Data iniziale";
            Text[ danish ] = "Start date";
            Text[ swedish ] = "Startdatum";
            Text[ polish ] = "Data pocztkowa";
            Text[ portuguese_brazilian ] = "Start date";
            Text[ japanese ] = "Start date";
            Text[ korean ] = "Start date";
            Text[ chinese_simplified ] = "start_date";
            Text[ chinese_traditional ] = "start_date";
            Text[ turkish ] = "Start date";
            Text[ arabic ] = "Start date";
            Text[ catalan ] = "Start date";
        };
        String 3 // description of parameter 1  DiffWeeks
        {
            Text = "Erster Tag des Zeitraums.";
            Text[ english ] = "First day of the period.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "First day of the period";
            Text[ portuguese ] = "First day of the period.";
            Text[ russian ] = "  .";
            Text[ greek ] = "First day of the period.";
            Text[ dutch ] = "First day of the period.";
            Text[ french ] = "Premier jour de la priode.";
            Text[ spanish ] = "Primer da del periodo";
            Text[ finnish ] = "First day of the period.";
            Text[ italian ] = "Primo giorno del periodo.";
            Text[ danish ] = "First day of the period.";
            Text[ swedish ] = "Frsta dagen i perioden.";
            Text[ polish ] = "Liczba okrelajca dat pocztkow.";
            Text[ portuguese_brazilian ] = "First day of the period.";
            Text[ japanese ] = "First day of the period.";
            Text[ korean ] = "First day of the period.";
            Text[ chinese_simplified ] = "周期内的第一天。";
            Text[ chinese_traditional ] = "時期的第一天。";
            Text[ turkish ] = "First day of the period.";
            Text[ arabic ] = "First day of the period.";
            Text[ catalan ] = "First day of the period.";
        };
        String 4 // name of parameter 2         DiffWeeks
        {
            Text = "Enddatum";
            Text[ english ] = "End date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "End date";
            Text[ portuguese ] = "End date";
            Text[ russian ] = "_";
            Text[ greek ] = "End date";
            Text[ dutch ] = "End date";
            Text[ french ] = "Date de fin";
            Text[ spanish ] = "Fecha final";
            Text[ finnish ] = "End date";
            Text[ italian ] = "Data finale";
            Text[ danish ] = "End date";
            Text[ swedish ] = "Slutdatum";
            Text[ polish ] = "Data kocowa";
            Text[ portuguese_brazilian ] = "End date";
            Text[ japanese ] = "End date";
            Text[ korean ] = "End date";
            Text[ chinese_simplified ] = "end_date";
            Text[ chinese_traditional ] = "end_date";
            Text[ turkish ] = "End date";
            Text[ arabic ] = "End date";
            Text[ catalan ] = "End date";
        };
        String 5 // description of parameter 2  DiffWeeks
        {
            Text = "Letzter Tag des Zeitraums.";
            Text[ english ] = "Last day of the period.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Last day of the period";
            Text[ portuguese ] = "Last day of the period.";
            Text[ russian ] = "  .";
            Text[ greek ] = "Last day of the period.";
            Text[ dutch ] = "Last day of the period.";
            Text[ french ] = "Dernier jour de la priode.";
            Text[ spanish ] = "ltimo da del periodo.";
            Text[ finnish ] = "Last day of the period.";
            Text[ italian ] = "Ultimo giorno del periodo.";
            Text[ danish ] = "Last day of the period.";
            Text[ swedish ] = "Sista dagen i perioden.";
            Text[ polish ] = "Liczba okrelajca dat kocow.";
            Text[ portuguese_brazilian ] = "Last day of the period.";
            Text[ japanese ] = "Last day of the period.";
            Text[ korean ] = "Last day of the period.";
            Text[ chinese_simplified ] = "周期内的最后一天。";
            Text[ chinese_traditional ] = "時期的最後一天。";
            Text[ turkish ] = "Last day of the period.";
            Text[ arabic ] = "Last day of the period.";
            Text[ catalan ] = "Last day of the period.";
        };
        String 6 // name of parameter 3         DiffWeeks
        {
            Text = "Art";
            Text[ english ] = "Mode";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Type";
            Text[ portuguese ] = "Mode";
            Text[ russian ] = "";
            Text[ greek ] = "Mode";
            Text[ dutch ] = "Mode";
            Text[ french ] = "Mode";
            Text[ spanish ] = "Tipo";
            Text[ finnish ] = "Mode";
            Text[ italian ] = "Tipo";
            Text[ danish ] = "Mode";
            Text[ swedish ] = "Typ";
            Text[ polish ] = "Typ";
            Text[ portuguese_brazilian ] = "Mode";
            Text[ japanese ] = "Mode";
            Text[ korean ] = "Mode";
            Text[ chinese_simplified ] = "type";
            Text[ chinese_traditional ] = "type";
            Text[ turkish ] = "Mode";
            Text[ arabic ] = "Mode";
            Text[ catalan ] = "Mode";
        };
        String 7 // description of parameter 3  DiffWeeks
        {
            Text = "Art der Berechnung: Art=0 fr Wochenanzahl im Intervall, Art=1 fr Kalenderwochen.";
            Text[ english ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks.";
            Text[ portuguese ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ russian ] = " : =0      ; =1    .";
            Text[ greek ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ dutch ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ french ] = "Type de calcul : Mode=0 pour le nombre de semaines dans l'intervalle, Mode=1 pour les semaines du calendrier.";
            Text[ spanish ] = "Tipo de calculacin: Tipo=0 significa el nmero de semanas y Tipo=1 el nmero de semanas del calendario.";
            Text[ finnish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ italian ] = "Tipo di calcolo: Tipo=0 indica il numero di settimane del'intervallo, tipo=1 indica la settimana.";
            Text[ danish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ swedish ] = "Typ av berkning: typ=0 fr veckoantal i intervallet, typ=1 fr kalenderveckor.";
            Text[ polish ] = "Rodzaj obliczania: Typ=0 oznacza liczb tygodni, Typ=1 - tygodnie kalendarzowe.";
            Text[ portuguese_brazilian ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ japanese ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ korean ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ chinese_simplified ] = "计算类型:Type=0 表示该周期内包含的星期数,Type=1 表示星期序列数。";
            Text[ chinese_traditional ] = "計算的類型:type=0 表示時期的週數目,type=1 表示週的序列數。";
            Text[ turkish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ arabic ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ catalan ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
        };
    };

    Resource DATE_FUNCDESC_DiffMonths
    {
        String 1    // description              DiffMonths
        {
            Text = "Berechnet die Anzahl der Monate in einem bestimmten Zeitraum.";
            Text[ english ] = "Determines the number of months in a specific period.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Determines the number of months in a specific period.";
            Text[ portuguese ] = "Determines the number of months in a specific period.";
            Text[ russian ] = "      .";
            Text[ greek ] = "Determines the number of months in a specific period.";
            Text[ dutch ] = "Determines the number of months in a specific period.";
            Text[ french ] = "Calcule le nombre de mois dans une priode dtermine.";
            Text[ spanish ] = "Calcula el nmero de meses en un periodo determinado.";
            Text[ finnish ] = "Determines the number of months in a specific period.";
            Text[ italian ] = "Restituisce il numero di mesi in un determinato periodo.";
            Text[ danish ] = "Determines the number of months in a specific period.";
            Text[ swedish ] = "Berknar antalet mnader i en specifik period.";
            Text[ polish ] = "Zwraca ilo miesicy w pewnym okresie czasu.";
            Text[ portuguese_brazilian ] = "Determines the number of months in a specific period.";
            Text[ japanese ] = "Determines the number of months in a specific period.";
            Text[ korean ] = "Determines the number of months in a specific period.";
            Text[ chinese_simplified ] = "计算指定时期内所包含的月份数。";
            Text[ chinese_traditional ] = "傳回某一時期的月份數目。";
            Text[ turkish ] = "Determines the number of months in a specific period.";
            Text[ arabic ] = "Determines the number of months in a specific period.";
            Text[ catalan ] = "Determines the number of months in a specific period.";
        };
        String 2 // name of parameter 1         DiffMonths
        {
            Text = "Ausgangsdatum";
            Text[ english ] = "Start date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Start date";
            Text[ portuguese ] = "Start date";
            Text[ russian ] = "_";
            Text[ greek ] = "Start date";
            Text[ dutch ] = "Start date";
            Text[ french ] = "Date initiale";
            Text[ spanish ] = "Fecha inicial";
            Text[ finnish ] = "Start date";
            Text[ italian ] = "Data iniziale";
            Text[ danish ] = "Start date";
            Text[ swedish ] = "Startdatum";
            Text[ polish ] = "Data pocztkowa";
            Text[ portuguese_brazilian ] = "Start date";
            Text[ japanese ] = "Start date";
            Text[ korean ] = "Start date";
            Text[ chinese_simplified ] = "start_date";
            Text[ chinese_traditional ] = "start_date";
            Text[ turkish ] = "Start date";
            Text[ arabic ] = "Start date";
            Text[ catalan ] = "Start date";
        };
        String 3 // description of parameter 1  DiffMonths
        {
            Text = "Erster Tag des Zeitraums.";
            Text[ english ] = "First day of the period.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "First day of the period.";
            Text[ portuguese ] = "First day of the period.";
            Text[ russian ] = "  .";
            Text[ greek ] = "First day of the period.";
            Text[ dutch ] = "First day of the period.";
            Text[ french ] = "Premier jour de la priode.";
            Text[ spanish ] = "Primer da del periodo.";
            Text[ finnish ] = "First day of the period.";
            Text[ italian ] = "Primo giorno del periodo.";
            Text[ danish ] = "First day of the period.";
            Text[ swedish ] = "Frsta dagen i perioden.";
            Text[ polish ] = "Liczba okrelajca dat pocztkow.";
            Text[ portuguese_brazilian ] = "First day of the period.";
            Text[ japanese ] = "First day of the period.";
            Text[ korean ] = "First day of the period.";
            Text[ chinese_simplified ] = "该时期内的第一天。";
            Text[ chinese_traditional ] = "時期的第一天。";
            Text[ turkish ] = "First day of the period.";
            Text[ arabic ] = "First day of the period.";
            Text[ catalan ] = "First day of the period.";
        };
        String 4 // name of parameter 2         DiffMonths
        {
            Text = "Enddatum";
            Text[ english ] = "End date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "End date";
            Text[ portuguese ] = "End date";
            Text[ russian ] = "_";
            Text[ greek ] = "End date";
            Text[ dutch ] = "End date";
            Text[ french ] = "Date de fin";
            Text[ spanish ] = "Fecha final";
            Text[ finnish ] = "End date";
            Text[ italian ] = "Data finale";
            Text[ danish ] = "End date";
            Text[ swedish ] = "Slutdatum";
            Text[ polish ] = "Data kocowa";
            Text[ portuguese_brazilian ] = "End date";
            Text[ japanese ] = "End date";
            Text[ korean ] = "End date";
            Text[ chinese_simplified ] = "end_date";
            Text[ chinese_traditional ] = "end_date";
            Text[ turkish ] = "End date";
            Text[ arabic ] = "End date";
            Text[ catalan ] = "End date";
        };
        String 5 // description of parameter 2  DiffMonths
        {
            Text = "Letzter Tag des Zeitraums.";
            Text[ english ] = "Last day of the period.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Last day of the period.";
            Text[ portuguese ] = "Last day of the period.";
            Text[ russian ] = "  .";
            Text[ greek ] = "Last day of the period.";
            Text[ dutch ] = "Last day of the period.";
            Text[ french ] = "Dernier jour de la priode.";
            Text[ spanish ] = "ltimo da del periodo.";
            Text[ finnish ] = "Last day of the period.";
            Text[ italian ] = "Ultimo giorno del periodo";
            Text[ danish ] = "Last day of the period.";
            Text[ swedish ] = "Sista dagen i perioden.";
            Text[ polish ] = "Liczba okrelajca dat kocow.";
            Text[ portuguese_brazilian ] = "Last day of the period.";
            Text[ japanese ] = "Last day of the period.";
            Text[ korean ] = "Last day of the period.";
            Text[ chinese_simplified ] = "该时期内的最后一天。";
            Text[ chinese_traditional ] = "時期的最後一天。";
            Text[ turkish ] = "Last day of the period.";
            Text[ arabic ] = "Last day of the period.";
            Text[ catalan ] = "Last day of the period.";
        };
        String 6 // name of parameter 3         DiffMonths
        {
            Text = "Art";
            Text[ english ] = "Mode";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Type";
            Text[ portuguese ] = "Mode";
            Text[ russian ] = "";
            Text[ greek ] = "Mode";
            Text[ dutch ] = "Mode";
            Text[ french ] = "Mode";
            Text[ spanish ] = "Tipo";
            Text[ finnish ] = "Mode";
            Text[ italian ] = "Tipo";
            Text[ danish ] = "Mode";
            Text[ swedish ] = "Typ";
            Text[ polish ] = "Typ";
            Text[ portuguese_brazilian ] = "Mode";
            Text[ japanese ] = "Mode";
            Text[ korean ] = "Mode";
            Text[ chinese_simplified ] = "type";
            Text[ chinese_traditional ] = "type";
            Text[ turkish ] = "Mode";
            Text[ arabic ] = "Mode";
            Text[ catalan ] = "Mode";
        };
        String 7 // description of parameter 3  DiffMonths
        {
            Text = "Art der Berechnung: Art=0 fr Monatsanzahl im Intervall, Art=1 fr Kalendermonate.";
            Text[ english ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar months.";
            Text[ portuguese ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ russian ] = " : =0      ; =1   .";
            Text[ greek ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ dutch ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ french ] = "Type de calcul : Mode=0 pour le nombre de mois dans l'intervalle, Mode=1 pour les mois du calendrier.";
            Text[ spanish ] = "Tipo de calculacin: Tipo=0 para el nmero de meses, Tipo=1 para el mes del calendario.";
            Text[ finnish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ italian ] = "Tipo di calcolo: Tipo=0 indica il numero di mesi dell'intervallo, tipo=1 indica il mese.";
            Text[ danish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ swedish ] = "Typ av berkning: typ=0 fr mnadsantal i intervallet, typ=1 fr kalendermnader.";
            Text[ polish ] = "Rodzaj obliczania: Typ=0 oznacza liczb miesicy, Typ=1 - miesice kalendarzowe.";
            Text[ portuguese_brazilian ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ japanese ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ korean ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ chinese_simplified ] = "计算类型:Type=0 表示该时期内所包含的月份数,Type=1 表示月序列数。";
            Text[ chinese_traditional ] = "計算的類型:type=0 表示時期的月份數目,type=1 表示月份的序列數。";
            Text[ turkish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ arabic ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ catalan ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
        };
    };

    Resource DATE_FUNCDESC_DiffYears
    {
        String 1    // description              DiffYears
        {
            Text = "Berechnet die Anzahl der Jahre in einem bestimmten Zeitraum.";
            Text[ english ] = "Determines the number of years in a specific period.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Calculates the number of years in a specific period.";
            Text[ portuguese ] = "Determines the number of years in a specific period.";
            Text[ russian ] = "      .";
            Text[ greek ] = "Determines the number of years in a specific period.";
            Text[ dutch ] = "Determines the number of years in a specific period.";
            Text[ french ] = "Calcule le nombre d'annes dans une priode dtermine.";
            Text[ spanish ] = "Calcula el nmero de aos en un determinado periodo.";
            Text[ finnish ] = "Determines the number of years in a specific period.";
            Text[ italian ] = "Restituisce il numero di anni in un determinato periodo.";
            Text[ danish ] = "Determines the number of years in a specific period.";
            Text[ swedish ] = "Berknar antalet r i en specifik period.";
            Text[ polish ] = "Zwraca ilo lat w pewnym okresie czasu.";
            Text[ portuguese_brazilian ] = "Determines the number of years in a specific period.";
            Text[ japanese ] = "Determines the number of years in a specific period.";
            Text[ korean ] = "Determines the number of years in a specific period.";
            Text[ chinese_simplified ] = "计算某一个周期内所包含的年数。";
            Text[ chinese_traditional ] = "傳回某一時期的年份數目。";
            Text[ turkish ] = "Determines the number of years in a specific period.";
            Text[ arabic ] = "Determines the number of years in a specific period.";
            Text[ catalan ] = "Determines the number of years in a specific period.";
        };
        String 2 // name of parameter 1         DiffYears
        {
            Text = "Ausgangsdatum";
            Text[ english ] = "Start date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Start date";
            Text[ portuguese ] = "Start date";
            Text[ russian ] = "_";
            Text[ greek ] = "Start date";
            Text[ dutch ] = "Start date";
            Text[ french ] = "Date initiale";
            Text[ spanish ] = "Fecha inicial";
            Text[ finnish ] = "Start date";
            Text[ italian ] = "Data iniziale";
            Text[ danish ] = "Start date";
            Text[ swedish ] = "Startdatum";
            Text[ polish ] = "Data pocztkowa";
            Text[ portuguese_brazilian ] = "Start date";
            Text[ japanese ] = "Start date";
            Text[ korean ] = "Start date";
            Text[ chinese_simplified ] = "start_date";
            Text[ chinese_traditional ] = "start_date";
            Text[ turkish ] = "Start date";
            Text[ arabic ] = "Start date";
            Text[ catalan ] = "Start date";
        };
        String 3 // description of parameter 1  DiffYears
        {
            Text = "Erster Tag des Zeitraums.";
            Text[ english ] = "First day of the period.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "First day of the period";
            Text[ portuguese ] = "First day of the period.";
            Text[ russian ] = "  .";
            Text[ greek ] = "First day of the period.";
            Text[ dutch ] = "First day of the period.";
            Text[ french ] = "Premier jour de la priode.";
            Text[ spanish ] = "Primer da del periodo.";
            Text[ finnish ] = "First day of the period.";
            Text[ italian ] = "Primo giorno del periodo.";
            Text[ danish ] = "First day of the period.";
            Text[ swedish ] = "Frsta dagen i perioden.";
            Text[ polish ] = "Liczba okrelajca dat pocztkow.";
            Text[ portuguese_brazilian ] = "First day of the period.";
            Text[ japanese ] = "First day of the period.";
            Text[ korean ] = "First day of the period.";
            Text[ chinese_simplified ] = "周期内的第一天。";
            Text[ chinese_traditional ] = "時期的第一天。";
            Text[ turkish ] = "First day of the period.";
            Text[ arabic ] = "First day of the period.";
            Text[ catalan ] = "First day of the period.";
        };
        String 4 // name of parameter 2         DiffYears
        {
            Text = "Enddatum";
            Text[ english ] = "End date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "End date";
            Text[ portuguese ] = "End date";
            Text[ russian ] = "_";
            Text[ greek ] = "End date";
            Text[ dutch ] = "End date";
            Text[ french ] = "Date de fin";
            Text[ spanish ] = "Fecha final";
            Text[ finnish ] = "End date";
            Text[ italian ] = "Data finale";
            Text[ danish ] = "End date";
            Text[ swedish ] = "Slutdatum";
            Text[ polish ] = "Data kocowa";
            Text[ portuguese_brazilian ] = "End date";
            Text[ japanese ] = "End date";
            Text[ korean ] = "End date";
            Text[ chinese_simplified ] = "end_date";
            Text[ chinese_traditional ] = "end_date";
            Text[ turkish ] = "End date";
            Text[ arabic ] = "End date";
            Text[ catalan ] = "End date";
        };
        String 5 // description of parameter 2  DiffYears
        {
            Text = "Letzter Tag des Zeitraums.";
            Text[ english ] = "Last day of the period.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Last day of the period";
            Text[ portuguese ] = "Last day of the period.";
            Text[ russian ] = "  .";
            Text[ greek ] = "Last day of the period.";
            Text[ dutch ] = "Last day of the period.";
            Text[ french ] = "Dernier jour de la priode.";
            Text[ spanish ] = "ltimo da del periodo.";
            Text[ finnish ] = "Last day of the period.";
            Text[ italian ] = "Ultimo giorno del periodo.";
            Text[ danish ] = "Last day of the period.";
            Text[ swedish ] = "Sista dagen i perioden.";
            Text[ polish ] = "Liczba okrelajca dat kocow.";
            Text[ portuguese_brazilian ] = "Last day of the period.";
            Text[ japanese ] = "Last day of the period.";
            Text[ korean ] = "Last day of the period.";
            Text[ chinese_simplified ] = "周期内的最后一天。";
            Text[ chinese_traditional ] = "時期的最後一天。";
            Text[ turkish ] = "Last day of the period.";
            Text[ arabic ] = "Last day of the period.";
            Text[ catalan ] = "Last day of the period.";
        };
        String 6 // name of parameter 3         DiffYears
        {
            Text = "Art";
            Text[ english ] = "Mode";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Type";
            Text[ portuguese ] = "Mode";
            Text[ russian ] = "";
            Text[ greek ] = "Mode";
            Text[ dutch ] = "Mode";
            Text[ french ] = "Mode";
            Text[ spanish ] = "Tipo";
            Text[ finnish ] = "Mode";
            Text[ italian ] = "Tipo";
            Text[ danish ] = "Mode";
            Text[ swedish ] = "Typ";
            Text[ polish ] = "Typ";
            Text[ portuguese_brazilian ] = "Mode";
            Text[ japanese ] = "Mode";
            Text[ korean ] = "Mode";
            Text[ chinese_simplified ] = "type";
            Text[ chinese_traditional ] = "type";
            Text[ turkish ] = "Mode";
            Text[ arabic ] = "Mode";
            Text[ catalan ] = "Mode";
        };
        String 7 // description of parameter 3  DiffYears
        {
            Text = "Art der Berechnung: Art=0 fr Jahresanzahl im Intervall, Art=1 fr Kalenderjahre.";
            Text[ english ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Type of calculation: Type=0 means the time interval, Typee=1 means calendar years.";
            Text[ portuguese ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ russian ] = " : =0      ; =1    .";
            Text[ greek ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ dutch ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ french ] = "Type de calcul : Mode=0 pour le nombre d'annes dans l'intervalle, Mode=1 pour les annes du calendrier.";
            Text[ spanish ] = "Tipo de calculacin: Tipo=0 significa el nmero de ao, Tipo=1 los aos del calendario.";
            Text[ finnish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ italian ] = "Tipo di calcolo: Tipo=0 indica il numero di anni dell'intervallo, tipo=1 indica l'anno solare.";
            Text[ danish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ swedish ] = "Typ av berkning: typ=0 fr rsantal i intervallet, typ=1 fr kalenderr.";
            Text[ polish ] = "Rodzaj obliczania : Typ=0 oznacza liczb lat, Typ=1 - lata kalendarzowe.";
            Text[ portuguese_brazilian ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ japanese ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ korean ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ chinese_simplified ] = "计算类型:Type=0 表示该周期内包含的年数,Type=1 表示年序列数。";
            Text[ chinese_traditional ] = "計算的類型:type=0 表示時期的年份數目,type=1 表示年份的序列數。";
            Text[ turkish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ arabic ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ catalan ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
        };
    };

    Resource DATE_FUNCDESC_IsLeapYear
    {
        String 1    // description              IsLeapYear
        {
            Text = "Gibt 1 (WAHR) zurck, wenn das angegebene Datum in einem Schaltjahr liegt, sonst 0 (FALSCH).";
            Text[ english ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ portuguese ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ russian ] = " 1 (),       ,      0 ().";
            Text[ greek ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ dutch ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ french ] = "Renvoie 1 (VRAI) si l'anne d'une date est bissextile, sinon 0 (FAUX).";
            Text[ spanish ] = "Devuelve 1 (VERDADERO) si la fecha indicada es ao bisiesto, de lo contrario 0 (FALSO).";
            Text[ finnish ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ italian ] = "Restituisce 1 (VERO) se la data indicata cade in un anno bisestile oppure 0 (FALSO).";
            Text[ danish ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ swedish ] = "Returnerar 1 (SANT) om det angivna datumet ligger i ett skottr, annars 0 (FALSKT).";
            Text[ polish ] = "Zwraca 1 (PRAWDA), jeeli podana data przypada na rok przestpny. W innym wypadku zwraca 0 (FASZ).";
            Text[ portuguese_brazilian ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ japanese ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ korean ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ chinese_simplified ] = "反馈 1 (TRUE),若该日期是闰年内的一个日期,否则反馈 0 (FALSE)。";
            Text[ chinese_traditional ] = "如果是閏年,傳回1(TRUE),反之傳回0(FALSE)。";
            Text[ turkish ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ arabic ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ catalan ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
        };
        String 2 // name of parameter 1         IsLeapYear
        {
            Text = "Datum";
            Text[ english ] = "Date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Date";
            Text[ portuguese ] = "Date";
            Text[ russian ] = "";
            Text[ greek ] = "Date";
            Text[ dutch ] = "Date";
            Text[ french ] = "Date";
            Text[ spanish ] = "Fecha";
            Text[ finnish ] = "Date";
            Text[ italian ] = "Data";
            Text[ danish ] = "Date";
            Text[ swedish ] = "Datum";
            Text[ polish ] = "Data";
            Text[ portuguese_brazilian ] = "Date";
            Text[ japanese ] = "Date";
            Text[ korean ] = "Date";
            Text[ chinese_simplified ] = "date";
            Text[ chinese_traditional ] = "date";
            Text[ turkish ] = "Date";
            Text[ arabic ] = "Date";
            Text[ catalan ] = "Date";
        };
        String 3 // description of parameter 1  IsLeapYear
        {
            Text = "Ein beliebiger Tag im gewnschten Jahr.";
            Text[ english ] = "Any day in the desired year.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Any day in the desired year";
            Text[ portuguese ] = "Any day in the desired year.";
            Text[ russian ] = "   .";
            Text[ greek ] = "Any day in the desired year.";
            Text[ dutch ] = "Any day in the desired year.";
            Text[ french ] = "Un jour quelconque dans l'anne en question.";
            Text[ spanish ] = "Cualquier da en un ao deseado.";
            Text[ finnish ] = "Any day in the desired year.";
            Text[ italian ] = "Un giorno qualsiasi nell'anno indicato.";
            Text[ danish ] = "Any day in the desired year.";
            Text[ swedish ] = "En valfri dag p det nskade ret.";
            Text[ polish ] = "Dowolny dzie danego roku.";
            Text[ portuguese_brazilian ] = "Any day in the desired year.";
            Text[ japanese ] = "Any day in the desired year.";
            Text[ korean ] = "Any day in the desired year.";
            Text[ chinese_simplified ] = "指定的一年中的任意一天。";
            Text[ chinese_traditional ] = "某一年份之中的任意一天。";
            Text[ turkish ] = "Any day in the desired year.";
            Text[ arabic ] = "Any day in the desired year.";
            Text[ catalan ] = "Any day in the desired year.";
        };
    };

    Resource DATE_FUNCDESC_DaysInMonth
    {
        String 1    // description              DaysInMonth
        {
            Text = "Gibt die Anzahl der Tage des Monats zurck, in dem das angegebene Datum liegt.";
            Text[ english ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Returns the number of days of the month in which the date entered occurs";
            Text[ portuguese ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ russian ] = "    ,     .";
            Text[ greek ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ dutch ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ french ] = "Renvoie le nombre de jours dans le mois en relation avec la date indique.";
            Text[ spanish ] = "Devuelve la cantidad de das del mes en el que figure la fecha indicada.";
            Text[ finnish ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ italian ] = "Restituisce il numero di giorni del mese in riferimento alla data indicata.";
            Text[ danish ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ swedish ] = "Returnerar antalet dagar i mnaden som ingr i det angivna datumet.";
            Text[ polish ] = "Zwraca liczb dni miesica, na ktry przypada podana data.";
            Text[ portuguese_brazilian ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ japanese ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ korean ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ chinese_simplified ] = "反馈指定的日期所在月份的天数。";
            Text[ chinese_traditional ] = "傳回指定日期的月份所有的天數。";
            Text[ turkish ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ arabic ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ catalan ] = "Returns the number of days of the month in relation to the date entered.";
        };
        String 2 // name of parameter 1         DaysInMonth
        {
            Text = "Datum";
            Text[ english ] = "Date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Date";
            Text[ portuguese ] = "Date";
            Text[ russian ] = "";
            Text[ greek ] = "Date";
            Text[ dutch ] = "Date";
            Text[ french ] = "Date";
            Text[ spanish ] = "Fecha";
            Text[ finnish ] = "Date";
            Text[ italian ] = "Data";
            Text[ danish ] = "Date";
            Text[ swedish ] = "Datum";
            Text[ polish ] = "Data";
            Text[ portuguese_brazilian ] = "Date";
            Text[ japanese ] = "Date";
            Text[ korean ] = "Date";
            Text[ chinese_simplified ] = "date";
            Text[ chinese_traditional ] = "date";
            Text[ turkish ] = "Date";
            Text[ arabic ] = "Date";
            Text[ catalan ] = "Date";
        };
        String 3 // description of parameter 1  DaysInMonth
        {
            Text = "Ein beliebiger Tag im gewnschten Monat.";
            Text[ english ] = "Any day in the desired month.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Any day in the desired month";
            Text[ portuguese ] = "Any day in the desired month.";
            Text[ russian ] = "   .";
            Text[ greek ] = "Any day in the desired month.";
            Text[ dutch ] = "Any day in the desired month.";
            Text[ french ] = "Un jour quelconque dans le mois en question.";
            Text[ spanish ] = "Cualquier da en un mes deseado.";
            Text[ finnish ] = "Any day in the desired month.";
            Text[ italian ] = "Un giorno qualsiasi del mese indicato.";
            Text[ danish ] = "Any day in the desired month.";
            Text[ swedish ] = "En valfri dag i den nskade mnaden.";
            Text[ polish ] = "Dowolny dzie danego miesica.";
            Text[ portuguese_brazilian ] = "Any day in the desired month.";
            Text[ japanese ] = "Any day in the desired month.";
            Text[ korean ] = "Any day in the desired month.";
            Text[ chinese_simplified ] = "指定的月份中的任意一天。";
            Text[ chinese_traditional ] = "某一月份的任意的一天。";
            Text[ turkish ] = "Any day in the desired month.";
            Text[ arabic ] = "Any day in the desired month.";
            Text[ catalan ] = "Any day in the desired month.";
        };
    };

    Resource DATE_FUNCDESC_DaysInYear
    {
        String 1    // description              DaysInYear
        {
            Text = "Gibt die Anzahl der Tage des Jahres zurck, in dem das angegebene Datum liegt.";
            Text[ english ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Returns the number of days of the year in which the date entered occurs.";
            Text[ portuguese ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ russian ] = "    ,     .";
            Text[ greek ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ dutch ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ french ] = "Renvoie le nombre de jours dans l'anne en relation avec la date indique.";
            Text[ spanish ] = "Devuelve la cantidad de das del ao en el que figure la fecha indicada.";
            Text[ finnish ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ italian ] = "Restituisce il numero di giorni dell'anno in riferimento alla data indicata.";
            Text[ danish ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ swedish ] = "Returnerar antalet dagar p ret som ingr i det angivna datumet.";
            Text[ polish ] = "Zwraca liczb dni w roku, na ktry przypada podana data.";
            Text[ portuguese_brazilian ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ japanese ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ korean ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ chinese_simplified ] = "反馈指定的日期所在年份的天数。";
            Text[ chinese_traditional ] = "傳回指定日期的年份所有的天數。";
            Text[ turkish ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ arabic ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ catalan ] = "Returns the number of days of the year in relation to the date entered.";
        };
        String 2 // name of parameter 1         DaysInYear
        {
            Text = "Datum";
            Text[ english ] = "Date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Date";
            Text[ portuguese ] = "Date";
            Text[ russian ] = "";
            Text[ greek ] = "Date";
            Text[ dutch ] = "Date";
            Text[ french ] = "Date";
            Text[ spanish ] = "Fecha";
            Text[ finnish ] = "Date";
            Text[ italian ] = "Data";
            Text[ danish ] = "Date";
            Text[ swedish ] = "Datum";
            Text[ polish ] = "Data";
            Text[ portuguese_brazilian ] = "Date";
            Text[ japanese ] = "Date";
            Text[ korean ] = "Date";
            Text[ chinese_simplified ] = "date";
            Text[ chinese_traditional ] = "date";
            Text[ turkish ] = "Date";
            Text[ arabic ] = "Date";
            Text[ catalan ] = "Date";
        };
        String 3 // description of parameter 1  DaysInYear
        {
            Text = "Ein beliebiger Tag im gewnschten Jahr.";
            Text[ english ] = "Any day in the desired year.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Any day in the desired year";
            Text[ portuguese ] = "Any day in the desired year.";
            Text[ russian ] = "   .";
            Text[ greek ] = "Any day in the desired year.";
            Text[ dutch ] = "Any day in the desired year.";
            Text[ french ] = "Un jour quelconque dans l'anne en question.";
            Text[ spanish ] = "Cualquier da en un ao deseado.";
            Text[ finnish ] = "Any day in the desired year.";
            Text[ italian ] = "Un giorno qualsiasi dell'anno indicato.";
            Text[ danish ] = "Any day in the desired year.";
            Text[ swedish ] = "En valfri dag p det nskade ret.";
            Text[ polish ] = "Dowolny dzie danego roku.";
            Text[ portuguese_brazilian ] = "Any day in the desired year.";
            Text[ japanese ] = "Any day in the desired year.";
            Text[ korean ] = "Any day in the desired year.";
            Text[ chinese_simplified ] = "指定的一年中的任意一天。";
            Text[ chinese_traditional ] = "某一年份的任意的一天。";
            Text[ turkish ] = "Any day in the desired year.";
            Text[ arabic ] = "Any day in the desired year.";
            Text[ catalan ] = "Any day in the desired year.";
        };
    };

    Resource DATE_FUNCDESC_WeeksInYear
    {
        String 1    // description              WeeksInYear
        {
            Text = "Gibt die Anzahl der Wochen des Jahres zurck, in dem das angegebene Datum liegt.";
            Text[ english ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Returns the number of weeks of the year in which the date entered occurs";
            Text[ portuguese ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ russian ] = "    ,     .";
            Text[ greek ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ dutch ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ french ] = "Renvoie le nombre de semaines dans l'anne en relation avec la date indique.";
            Text[ spanish ] = "Devuelve el nmero de semanas del ao en el que figure la fecha indicada.";
            Text[ finnish ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ italian ] = "Restituisce il numero di settimane dell'anno in riferimento alla data indicata.";
            Text[ danish ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ swedish ] = "Returnerar antalet veckor p ret som ingr i det angivna datumet.";
            Text[ polish ] = "Zwraca liczb tygodni w roku, na ktry przypada podana data.";
            Text[ portuguese_brazilian ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ japanese ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ korean ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ chinese_simplified ] = "反馈指定的日期所在年份具有的星期数。";
            Text[ chinese_traditional ] = "傳回指定日期的月份所有的週數目。";
            Text[ turkish ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ arabic ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ catalan ] = "Returns the number of weeks of the year in relation to the date entered.";
        };
        String 2 // name of parameter 1         WeeksInYear
        {
            Text = "Datum";
            Text[ english ] = "Date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Date";
            Text[ portuguese ] = "Date";
            Text[ russian ] = "";
            Text[ greek ] = "Date";
            Text[ dutch ] = "Date";
            Text[ french ] = "Date";
            Text[ spanish ] = "Fecha";
            Text[ finnish ] = "Date";
            Text[ italian ] = "Data";
            Text[ danish ] = "Date";
            Text[ swedish ] = "Datum";
            Text[ polish ] = "Data";
            Text[ portuguese_brazilian ] = "Date";
            Text[ japanese ] = "Date";
            Text[ korean ] = "Date";
            Text[ chinese_simplified ] = "date";
            Text[ chinese_traditional ] = "date";
            Text[ turkish ] = "Date";
            Text[ arabic ] = "Date";
            Text[ catalan ] = "Date";
        };
        String 3 // description of parameter 1  WeeksInYear
        {
            Text = "Ein beliebiger Tag im gewnschten Jahr.";
            Text[ english ] = "Any day in the desired year.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Any day in the desired year";
            Text[ portuguese ] = "Any day in the desired year.";
            Text[ russian ] = "   .";
            Text[ greek ] = "Any day in the desired year.";
            Text[ dutch ] = "Any day in the desired year.";
            Text[ french ] = "Un jour quelconque dans l'anne en question.";
            Text[ spanish ] = "Cualquier da en un ao deseado.";
            Text[ finnish ] = "Any day in the desired year.";
            Text[ italian ] = "Un giorno qualsiasi dell'anno indicato.";
            Text[ danish ] = "Any day in the desired year.";
            Text[ swedish ] = "En valfri dag p det nskade ret.";
            Text[ polish ] = "Dowolny dzie danego roku.";
            Text[ portuguese_brazilian ] = "Any day in the desired year.";
            Text[ japanese ] = "Any day in the desired year.";
            Text[ korean ] = "Any day in the desired year.";
            Text[ chinese_simplified ] = "指定的一年中的任意一天。";
            Text[ chinese_traditional ] = "某一年份的任意的一天。";
            Text[ turkish ] = "Any day in the desired year.";
            Text[ arabic ] = "Any day in the desired year.";
            Text[ catalan ] = "Any day in the desired year.";
        };
    };

    Resource DATE_FUNCDESC_Rot13
    {
        String 1    // description              Rot13
        {
            Text = "Verschlsselt oder entschlsselt einen Text mit Hilfe des ROT13-Algorithmus.";
            Text[ english ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Encrypts or decrypts a text using the ROT13 algorithm";
            Text[ portuguese ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ russian ] = "       ROT13.";
            Text[ greek ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ dutch ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ french ] = "Chiffre ou dchiffre un texte en utilisant l'algorithme ROT13.";
            Text[ spanish ] = "Codifica y descodifica un texto con la ayuda del algoritmo ROT13.";
            Text[ finnish ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ italian ] = "Codifica o decodifica un testo tramite l'algoritmo ROT13.";
            Text[ danish ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ swedish ] = "Krypterar text eller omvandlar krypterad text till klartext med hjlp av ROT13-algoritmen.";
            Text[ polish ] = "Szyfruje i deszyfruje teksty za pomoc algorytmu ROT13.";
            Text[ portuguese_brazilian ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ japanese ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ korean ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ chinese_simplified ] = "借助 ROT13 运算法则加密或者解密一个文本。";
            Text[ chinese_traditional ] = "透過ROT13程式加密或解密一個文字。";
            Text[ turkish ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ arabic ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ catalan ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
        };
        String 2 // name of parameter 1         Rot13
        {
            Text = "Text";
            Text[ english ] = "Text";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Text";
            Text[ portuguese ] = "Texto";
            Text[ russian ] = "";
            Text[ greek ] = "";
            Text[ dutch ] = "Tekst";
            Text[ french ] = "Texte";
            Text[ spanish ] = "Texto";
            Text[ finnish ] = "Teksti";
            Text[ italian ] = "Testo";
            Text[ danish ] = "Tekst";
            Text[ swedish ] = "Text";
            Text[ polish ] = "Tekst";
            Text[ portuguese_brazilian ] = "Text";
            Text[ japanese ] = "テキスト";
            Text[ korean ] = "텍스트";
            Text[ chinese_simplified ] = "text";
            Text[ chinese_traditional ] = "text";
            Text[ turkish ] = "Metin";
            Text[ arabic ] = "";
            Text[ catalan ] = "Text";
        };
        String 3 // description of parameter 1  Rot13
        {
            Text = "Zu verschlsselnder oder verschlsselter Text.";
            Text[ english ] = "Text to be encrypted or encrypted text.";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Text to be encrypted or text already encrypted";
            Text[ portuguese ] = "Text to be encrypted or encrypted text.";
            Text[ russian ] = "   ,   .";
            Text[ greek ] = "Text to be encrypted or encrypted text.";
            Text[ dutch ] = "Text to be encrypted or encrypted text.";
            Text[ french ] = "Texte  chiffrer ou  dchiffrer";
            Text[ spanish ] = "Texto codificado o a codificar.";
            Text[ finnish ] = "Text to be encrypted or encrypted text.";
            Text[ italian ] = "Testo da codificare o decodificare.";
            Text[ danish ] = "Text to be encrypted or encrypted text.";
            Text[ swedish ] = "Text som ska krypteras eller text som r krypterad.";
            Text[ polish ] = "Tekst szyfrujcy lub ktry ma zosta zaszyfrowany.";
            Text[ portuguese_brazilian ] = "Text to be encrypted or encrypted text.";
            Text[ japanese ] = "Text to be encrypted or encrypted text.";
            Text[ korean ] = "Text to be encrypted or encrypted text.";
            Text[ chinese_simplified ] = "需要加密的或者已经加密的文本。";
            Text[ chinese_traditional ] = "要加密或解密的文字。";
            Text[ turkish ] = "Text to be encrypted or encrypted text.";
            Text[ arabic ] = "Text to be encrypted or encrypted text.";
            Text[ catalan ] = "Text to be encrypted or encrypted text.";
        };
    };
};


Resource RID_DATE_FUNCTION_NAMES
{
    String DATE_FUNCNAME_DiffWeeks
    {
        Text = "WOCHEN";
        Text[ english ] = "WEEKS";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "WEEKS";
        Text[ portuguese ] = "WEEKS";
        Text[ russian ] = "";
        Text[ greek ] = "WEEKS";
        Text[ dutch ] = "WEEKS";
        Text[ french ] = "SEMAINES";
        Text[ spanish ] = "SEMANAS";
        Text[ finnish ] = "WEEKS";
        Text[ italian ] = "SETTIMANE";
        Text[ danish ] = "WEEKS";
        Text[ swedish ] = "VECKOR";
        Text[ polish ] = "TYGODNIE";
        Text[ portuguese_brazilian ] = "WEEKS";
        Text[ japanese ] = "WEEKS";
        Text[ korean ] = "WEEKS";
        Text[ chinese_simplified ] = "WEEKS";
        Text[ chinese_traditional ] = "WEEKS";
        Text[ turkish ] = "WEEKS";
        Text[ arabic ] = "WEEKS";
        Text[ catalan ] = "WEEKS";
    };
    String DATE_FUNCNAME_DiffMonths
    {
        Text = "MONATE";
        Text[ english ] = "MONTHS";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "MONTHS";
        Text[ portuguese ] = "MONTHS";
        Text[ russian ] = "";
        Text[ greek ] = "MONTHS";
        Text[ dutch ] = "MONTHS";
        Text[ french ] = "MOIS";
        Text[ spanish ] = "MESES";
        Text[ finnish ] = "MONTHS";
        Text[ italian ] = "MESI";
        Text[ danish ] = "MONTHS";
        Text[ swedish ] = "MNADER";
        Text[ polish ] = "MIESICE";
        Text[ portuguese_brazilian ] = "MONTHS";
        Text[ japanese ] = "MONTHS";
        Text[ korean ] = "MONTHS";
        Text[ chinese_simplified ] = "MONTHS";
        Text[ chinese_traditional ] = "MONTHS";
        Text[ turkish ] = "MONTHS";
        Text[ arabic ] = "MONTHS";
        Text[ catalan ] = "MONTHS";
    };
    String DATE_FUNCNAME_DiffYears
    {
        Text = "JAHRE";
        Text[ english ] = "YEARS";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "YEARS";
        Text[ portuguese ] = "YEARS";
        Text[ russian ] = "";
        Text[ greek ] = "YEARS";
        Text[ dutch ] = "YEARS";
        Text[ french ] = "ANNEES";
        Text[ spanish ] = "AOS";
        Text[ finnish ] = "YEARS";
        Text[ italian ] = "ANNI";
        Text[ danish ] = "YEARS";
        Text[ swedish ] = "R";
        Text[ polish ] = "LATA";
        Text[ portuguese_brazilian ] = "YEARS";
        Text[ japanese ] = "YEARS";
        Text[ korean ] = "YEARS";
        Text[ chinese_simplified ] = "YEARS";
        Text[ chinese_traditional ] = "YEARS";
        Text[ turkish ] = "YEARS";
        Text[ arabic ] = "YEARS";
        Text[ catalan ] = "YEARS";
    };
    String DATE_FUNCNAME_IsLeapYear
    {
        Text = "ISTSCHALTJAHR";
        Text[ english ] = "ISLEAPYEAR";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "ISLEAPYEAR";
        Text[ portuguese ] = "ISLEAPYEAR";
        Text[ russian ] = "";
        Text[ greek ] = "ISLEAPYEAR";
        Text[ dutch ] = "ISLEAPYEAR";
        Text[ french ] = "ESTBISSEXTILE";
        Text[ spanish ] = "ESAOBISIESTO";
        Text[ finnish ] = "ISLEAPYEAR";
        Text[ italian ] = "AnnoBisestile";
        Text[ danish ] = "ISLEAPYEAR";
        Text[ swedish ] = "RSKOTTR";
        Text[ polish ] = "ROKPRZESTPNY";
        Text[ portuguese_brazilian ] = "ISLEAPYEAR";
        Text[ japanese ] = "ISLEAPYEAR";
        Text[ korean ] = "ISLEAPYEAR";
        Text[ chinese_simplified ] = "ISLEAPYEAR";
        Text[ chinese_traditional ] = "ISLEAPYEAR";
        Text[ turkish ] = "ISLEAPYEAR";
        Text[ arabic ] = "ISLEAPYEAR";
        Text[ catalan ] = "ISLEAPYEAR";
    };
    String DATE_FUNCNAME_DaysInMonth
    {
        Text = "TAGEIMMONAT";
        Text[ english ] = "DAYSINMONTH";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "DAYSINMONTH";
        Text[ portuguese ] = "DAYSINMONTH";
        Text[ russian ] = "";
        Text[ greek ] = "DAYSINMONTH";
        Text[ dutch ] = "DAYSINMONTH";
        Text[ french ] = "JOURSDANSMOIS";
        Text[ spanish ] = "DASENMES";
        Text[ finnish ] = "DAYSINMONTH";
        Text[ italian ] = "GiorniMese";
        Text[ danish ] = "DAYSINMONTH";
        Text[ swedish ] = "DAGARIMNADEN";
        Text[ polish ] = "DNIWMIESICU";
        Text[ portuguese_brazilian ] = "DAYSINMONTH";
        Text[ japanese ] = "DAYSINMONTH";
        Text[ korean ] = "DAYSINMONTH";
        Text[ chinese_simplified ] = "DAYSINMONTH";
        Text[ chinese_traditional ] = "DAYSINMONTH";
        Text[ turkish ] = "DAYSINMONTH";
        Text[ arabic ] = "DAYSINMONTH";
        Text[ catalan ] = "DAYSINMONTH";
    };
    String DATE_FUNCNAME_DaysInYear
    {
        Text = "TAGEIMJAHR";
        Text[ english ] = "DAYSINYEAR";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "DAYSINYEAR";
        Text[ portuguese ] = "DAYSINYEAR";
        Text[ russian ] = "";
        Text[ greek ] = "DAYSINYEAR";
        Text[ dutch ] = "DAYSINYEAR";
        Text[ french ] = "JOURSDANSANNEE";
        Text[ spanish ] = "DASENAO";
        Text[ finnish ] = "DAYSINYEAR";
        Text[ italian ] = "GiorniAnno";
        Text[ danish ] = "DAYSINYEAR";
        Text[ swedish ] = "DAGARPRET";
        Text[ polish ] = "DNIWROKU";
        Text[ portuguese_brazilian ] = "DAYSINYEAR";
        Text[ japanese ] = "DAYSINYEAR";
        Text[ korean ] = "DAYSINYEAR";
        Text[ chinese_simplified ] = "DAYSINYEAR";
        Text[ chinese_traditional ] = "DAYSINYEAR";
        Text[ turkish ] = "DAYSINYEAR";
        Text[ arabic ] = "DAYSINYEAR";
        Text[ catalan ] = "DAYSINYEAR";
    };
    String DATE_FUNCNAME_WeeksInYear
    {
        Text = "WOCHENIMJAHR";
        Text[ english ] = "WEEKSINYEAR";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "WEEKSINYEAR";
        Text[ portuguese ] = "WEEKSINYEAR";
        Text[ russian ] = "";
        Text[ greek ] = "WEEKSINYEAR";
        Text[ dutch ] = "WEEKSINYEAR";
        Text[ french ] = "SEMAINESDANSANNEE";
        Text[ spanish ] = "SEMANASENAO";
        Text[ finnish ] = "WEEKSINYEAR";
        Text[ italian ] = "SettimaneAnno";
        Text[ danish ] = "WEEKSINYEAR";
        Text[ swedish ] = "VECKORPERR";
        Text[ polish ] = "TYGODNIEWROKU";
        Text[ portuguese_brazilian ] = "WEEKSINYEAR";
        Text[ japanese ] = "WEEKSINYEAR";
        Text[ korean ] = "WEEKSINYEAR";
        Text[ chinese_simplified ] = "WEEKSINYEAR";
        Text[ chinese_traditional ] = "WEEKSINYEAR";
        Text[ turkish ] = "WEEKSINYEAR";
        Text[ arabic ] = "WEEKSINYEAR";
        Text[ catalan ] = "WEEKSINYEAR";
    };
    String DATE_FUNCNAME_Rot13
    {
        Text = "ROT13";
        Text[ english ] = "ROT13";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "ROT13";
        Text[ portuguese ] = "ROT13";
        Text[ russian ] = "ROT13";
        Text[ greek ] = "ROT13";
        Text[ dutch ] = "ROT13";
        Text[ french ] = "ROT13";
        Text[ spanish ] = "ROT13";
        Text[ finnish ] = "ROT13";
        Text[ italian ] = "ROT13";
        Text[ danish ] = "ROT13";
        Text[ swedish ] = "ROT13";
        Text[ polish ] = "ROT13";
        Text[ portuguese_brazilian ] = "ROT13";
        Text[ japanese ] = "ROT13";
        Text[ korean ] = "ROT13";
        Text[ chinese_simplified ] = "ROT13";
        Text[ chinese_traditional ] = "ROT13";
        Text[ turkish ] = "ROT13";
        Text[ arabic ] = "ROT13";
        Text[ catalan ] = "ROT13";
    };
};


Resource RID_DATE_DEFFUNCTION_NAMES
{

    StringArray DATE_DEFFUNCNAME_DiffWeeks
    {
        ItemList =
        {
            < "WOCHEN"; >;
            < "WEEKS"; >;
        };
    };
    StringArray DATE_DEFFUNCNAME_DiffMonths
    {
        ItemList =
        {
            < "MONATE"; >;
            < "MONTHS"; >;
        };
    };
    StringArray DATE_DEFFUNCNAME_DiffYears
    {
        ItemList =
        {
            < "JAHRE"; >;
            < "YEARS"; >;
        };
    };
    StringArray DATE_DEFFUNCNAME_IsLeapYear
    {
        ItemList =
        {
            < "ISTSCHALTJAHR"; >;
            < "ISLEAPYEAR"; >;
        };
    };
    StringArray DATE_DEFFUNCNAME_DaysInMonth
    {
        ItemList =
        {
            < "TAGEIMMONAT"; >;
            < "DAYSINMONTH"; >;
        };
    };
    StringArray DATE_DEFFUNCNAME_DaysInYear
    {
        ItemList =
        {
            < "TAGEIMJAHR"; >;
            < "DAYSINYEAR"; >;
        };
    };
    StringArray DATE_DEFFUNCNAME_WeeksInYear
    {
        ItemList =
        {
            < "WOCHENIMJAHR"; >;
            < "WEEKSINYEAR"; >;
        };
    };
    StringArray DATE_DEFFUNCNAME_Rot13
    {
        ItemList =
        {
            < "ROT13"; >;
            < "ROT13"; >;
        };
    };
};