summaryrefslogtreecommitdiff
path: root/scaddins/source/datefunc/datefunc.src
blob: 1898d09613e5006f1a41330d5aac4770e3e85fc1 (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
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
/*************************************************************************
 *
 *  $RCSfile: datefunc.src,v $
 *
 *  $Revision: 1.17 $
 *
 *  last change: $Author: hr $ $Date: 2003-04-29 17:19:40 $
 *
 *  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 ] = "Berekent het aantal weken binnen een bepaalde periode.";
            Text[ french ] = "Calcule le nombre de semaines dans une priode dtermine.";
            Text[ spanish ] = "Calcula el nmero de semanas en un periodo determinado.";
            Text[ finnish ] = "Laskee annetun aikavlin viikkojen mrn";
            Text[ italian ] = "Restituisce il numero di settimane di un determinato periodo.";
            Text[ danish ] = "Beregner antal uger i en bestemt tidsperiode.";
            Text[ swedish ] = "Berknar antalet veckor i en specifik period.";
            Text[ polish ] = "Wyznacza liczb tygodni w podanym okresie.";
            Text[ portuguese_brazilian ] = "Calcula o nmero de semanas em um dado perodo";
            Text[ japanese ] = "指定された期間内の週数を返します。";
            Text[ korean ] = "특정 기간의 주 수를 계산합니다.";
            Text[ chinese_simplified ] = "计算某一个周期内所包含的星期数目。";
            Text[ chinese_traditional ] = "傳回某一時期內的週數目。";
            Text[ turkish ] = "Belirli bir dnemdeki haftalarn saysn hesaplar";
            Text[ arabic ] = "Determines the number of weeks in a specific period.";
            Text[ catalan ] = "Determina el nmero de setmanes d'un perode especfic.";
            Text[ thai ] = "Calculates the number of weeks in a specific period";
            Text[ czech ] = "Vrátí počet týdnů v zadaném období";
            Text[ hebrew ] = "Berechnet die Anzahl der Wochen in einem bestimmten Zeitraum.";
            Text[ hindi ] = "निर्दिष्ट अवधि में रहनेवाला सप्ताह की संख्या को गणना करता है";
        };
        String 2 // name of parameter 1         DiffWeeks
        {
            Text = "Ausgangsdatum";
            Text[ english ] = "Start date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Start date";
            Text[ portuguese ] = "Data inicial";
            Text[ russian ] = " ";
            Text[ greek ] = "Start date";
            Text[ dutch ] = "Begindatum";
            Text[ french ] = "Date initiale";
            Text[ spanish ] = "Fecha inicial";
            Text[ finnish ] = "Alkupivmr";
            Text[ italian ] = "Data iniziale";
            Text[ danish ] = "Startdato";
            Text[ swedish ] = "Startdatum";
            Text[ polish ] = "Data pocztkowa";
            Text[ portuguese_brazilian ] = "Data inicial";
            Text[ japanese ] = "開始日";
            Text[ korean ] = "시작 날짜";
            Text[ chinese_simplified ] = "start_date";
            Text[ chinese_traditional ] = "start_date";
            Text[ turkish ] = "Balang tarihi";
            Text[ arabic ] = "Start date";
            Text[ catalan ] = "Data d'inici";
            Text[ thai ] = "Start date";
            Text[ czech ] = "Počáteční datum";
            Text[ hebrew ] = "Ausgangsdatum";
            Text[ hindi ] = "प्रारंभ दिनांक";
        };
        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 ] = "De eerste dag van de periode.";
            Text[ french ] = "Premier jour de la priode.";
            Text[ spanish ] = "Primer da del periodo";
            Text[ finnish ] = "Kauden ensimminen piv";
            Text[ italian ] = "Primo giorno del periodo.";
            Text[ danish ] = "Frste dag i tidsperioden.";
            Text[ swedish ] = "Frsta dagen i perioden.";
            Text[ polish ] = "Pierwszy dzie okresu";
            Text[ portuguese_brazilian ] = "Primeiro dia do perodo";
            Text[ japanese ] = "期間の開始日。";
            Text[ korean ] = "특정 기간의 시작 날짜입니다.";
            Text[ chinese_simplified ] = "周期内的第一天。";
            Text[ chinese_traditional ] = "時期的第一天。";
            Text[ turkish ] = "Dnemin birinci gn.";
            Text[ arabic ] = "First day of the period.";
            Text[ catalan ] = "Primer dia del perode.";
            Text[ thai ] = "First day of the period";
            Text[ czech ] = "První den období";
            Text[ hebrew ] = "Erster Tag des Zeitraums.";
            Text[ hindi ] = "अवधि का पहिला दिन";
        };
        String 4 // name of parameter 2         DiffWeeks
        {
            Text = "Enddatum";
            Text[ english ] = "End date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "End date";
            Text[ portuguese ] = "Data final";
            Text[ russian ] = " ";
            Text[ greek ] = "End date";
            Text[ dutch ] = "Einddatum";
            Text[ french ] = "Date de fin";
            Text[ spanish ] = "Fecha final";
            Text[ finnish ] = "Loppupivmr";
            Text[ italian ] = "Data finale";
            Text[ danish ] = "Slutdato";
            Text[ swedish ] = "Slutdatum";
            Text[ polish ] = "Data kocowa";
            Text[ portuguese_brazilian ] = "Data final";
            Text[ japanese ] = "終了日";
            Text[ korean ] = "최종 날짜";
            Text[ chinese_simplified ] = "end_date";
            Text[ chinese_traditional ] = "end_date";
            Text[ turkish ] = "Biti tarihi";
            Text[ arabic ] = "End date";
            Text[ catalan ] = "Data final";
            Text[ thai ] = "วันที่สิ้นสุด";
            Text[ czech ] = "Koncové datum";
            Text[ hebrew ] = "Enddatum";
            Text[ hindi ] = "अंतिम दिनांक";
        };
        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 ] = "Laatste dag van de periode.";
            Text[ french ] = "Dernier jour de la priode.";
            Text[ spanish ] = "ltimo da del periodo.";
            Text[ finnish ] = "Kauden viimeinen piv";
            Text[ italian ] = "Ultimo giorno del periodo.";
            Text[ danish ] = "Sidste dag i tidsperioden.";
            Text[ swedish ] = "Sista dagen i perioden.";
            Text[ polish ] = "Ostatni dzie okresu.";
            Text[ portuguese_brazilian ] = "ltimo dia do perodo";
            Text[ japanese ] = "期間の終了日。";
            Text[ korean ] = "특정 기간의 마지막 날짜입니다.";
            Text[ chinese_simplified ] = "周期内的最后一天。";
            Text[ chinese_traditional ] = "時期的最後一天。";
            Text[ turkish ] = "Dnemin son gn.";
            Text[ arabic ] = "Last day of the period.";
            Text[ catalan ] = "ltim dia del perode.";
            Text[ thai ] = "Last day of the period";
            Text[ czech ] = "Poslední den období";
            Text[ hebrew ] = "Letzter Tag des Zeitraums.";
            Text[ hindi ] = "अवधि का अंतिम दिन";
        };
        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 ] = "Soort";
            Text[ french ] = "Mode";
            Text[ spanish ] = "Tipo";
            Text[ finnish ] = "Laji";
            Text[ italian ] = "Tipo";
            Text[ danish ] = "Type";
            Text[ swedish ] = "Typ";
            Text[ polish ] = "Typ";
            Text[ portuguese_brazilian ] = "Tipo";
            Text[ japanese ] = "単位";
            Text[ korean ] = "유형";
            Text[ chinese_simplified ] = "type";
            Text[ chinese_traditional ] = "type";
            Text[ turkish ] = "Tr";
            Text[ arabic ] = "Mode";
            Text[ catalan ] = "Mode";
            Text[ thai ] = "Type";
            Text[ czech ] = "Typ";
            Text[ hebrew ] = "‮סוג‬";
            Text[ hindi ] = "वर्ग";
        };
        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 ] = "Soort berekening: soort=0 voor aantal weken in interval, soort=1 voor kalenderweken.";
            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 ] = "Laskennan laji: 0 on aikavli, 1 tarkoittaa kalenteriviikkoja";
            Text[ italian ] = "Tipo di calcolo: Tipo=0 indica il numero di settimane nell'intervallo, tipo=1 indica la settimana.";
            Text[ danish ] = "Beregningstype: Type=0 for ugeantal i intervallet, type=1 for kalenderuger.";
            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 ] = "Tipo de clculo: Tipo=0 significa intervalo de tempo; Tipo=1 significa semanas do calendrio.";
            Text[ japanese ] = "戻り値の単位と種類: 単位=0 は期間内の週数、単位=1 はカレンダーの週。";
            Text[ korean ] = "계산 유형: 유형=0인 경우는 시간 간격, 유형=1인 경우에는 1년 중 몇 번째 주에 해당하는지를 의미합니다.";
            Text[ chinese_simplified ] = "计算类型:Type=0 表示该周期内包含的星期数,Type=1 表示星期序列数。";
            Text[ chinese_traditional ] = "計算的類型:type=0 表示時期的週數目,type=1 表示週的序列數。";
            Text[ turkish ] = "Hesaplama trn giriniz: Type=0 zaman aral, Type=1 takvimde haftalar anlamna gelir. ";
            Text[ arabic ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
            Text[ catalan ] = "Tipus de clcul: Mode=0 s l'interval de temps, mode=1 sn setmanes de calendari.";
            Text[ thai ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks.";
            Text[ czech ] = "Typ výpočtu: Typ=0 určuje časový interval, Typ=1 znamená kalendářní týdny.";
            Text[ hebrew ] = "Art der Berechnung: Art=0 für Wochenanzahl im Intervall, Art=1 für Kalenderwochen.";
            Text[ hindi ] = "गणना करने का वर्ग: वर्ग=0 का अर्थ समय का अंतराल है, वर्ग=1 का अर्थ केलन्डर सप्ताह है ।";
        };
    };

    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 ] = "Berekent het aantal maanden in een bepaalde periode.";
            Text[ french ] = "Calcule le nombre de mois dans une priode dtermine.";
            Text[ spanish ] = "Calcula el nmero de meses en un periodo determinado.";
            Text[ finnish ] = "Mritt annetun kauden kuukausien mrn";
            Text[ italian ] = "Restituisce il numero di mesi in un determinato periodo.";
            Text[ danish ] = "Beregner antal mneder i en bestemt tidsperiode.";
            Text[ swedish ] = "Berknar antalet mnader i en specifik period.";
            Text[ polish ] = "Okrela liczb miesicy w podanym okresie.";
            Text[ portuguese_brazilian ] = "Determina o nmero de meses de um dado perodo";
            Text[ japanese ] = "指定された期間内の月数を返します。";
            Text[ korean ] = "특정 기간의 개월 수를 지정합니다.";
            Text[ chinese_simplified ] = "计算指定时期内所包含的月份数。";
            Text[ chinese_traditional ] = "傳回某一時期的月份數目。";
            Text[ turkish ] = "Verilen zaman aralndaki ay saysn hesaplar.";
            Text[ arabic ] = "Determines the number of months in a specific period.";
            Text[ catalan ] = "Determina el nmero de mesos d'un perode especfic";
            Text[ thai ] = "Determines the number of months in a specific period.";
            Text[ czech ] = "Vrátí počet měsíců v zadaném období.";
            Text[ hebrew ] = "Berechnet die Anzahl der Monate in einem bestimmten Zeitraum.";
            Text[ hindi ] = "निर्दिष्ट अवधि में मासों की संख्या को निर्धार करता है ।";
        };
        String 2 // name of parameter 1         DiffMonths
        {
            Text = "Ausgangsdatum";
            Text[ english ] = "Start date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Start date";
            Text[ portuguese ] = "Data inicial";
            Text[ russian ] = " ";
            Text[ greek ] = "Start date";
            Text[ dutch ] = "Begindatum";
            Text[ french ] = "Date initiale";
            Text[ spanish ] = "Fecha inicial";
            Text[ finnish ] = "Alkupivmr";
            Text[ italian ] = "Data iniziale";
            Text[ danish ] = "Startdato";
            Text[ swedish ] = "Startdatum";
            Text[ polish ] = "Data pocztkowa";
            Text[ portuguese_brazilian ] = "Data inicial";
            Text[ japanese ] = "開始日";
            Text[ korean ] = "시작 날짜";
            Text[ chinese_simplified ] = "start_date";
            Text[ chinese_traditional ] = "start_date";
            Text[ turkish ] = "Balang tarihi";
            Text[ arabic ] = "Start date";
            Text[ catalan ] = "Data d'inici";
            Text[ thai ] = "Start date";
            Text[ czech ] = "Počáteční datum";
            Text[ hebrew ] = "Ausgangsdatum";
            Text[ hindi ] = "प्रारंभ दिनांक";
        };
        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 ] = "Eerste dag van de periode.";
            Text[ french ] = "Premier jour de la priode.";
            Text[ spanish ] = "Primer da del periodo.";
            Text[ finnish ] = "Kauden ensimminen piv";
            Text[ italian ] = "Primo giorno del periodo.";
            Text[ danish ] = "Frste dag i tidsperioden.";
            Text[ swedish ] = "Frsta dagen i perioden.";
            Text[ polish ] = "Pierwszy dzie okresu";
            Text[ portuguese_brazilian ] = "Primeiro dia do perodo";
            Text[ japanese ] = "期間の開始日。";
            Text[ korean ] = "특정 기간의 시작 날짜입니다.";
            Text[ chinese_simplified ] = "该时期内的第一天。";
            Text[ chinese_traditional ] = "時期的第一天。";
            Text[ turkish ] = "Dnemin birinci gn.";
            Text[ arabic ] = "First day of the period.";
            Text[ catalan ] = "Primer dia del perode.";
            Text[ thai ] = "First day of the period.";
            Text[ czech ] = "První den období.";
            Text[ hebrew ] = "Erster Tag des Zeitraums.";
            Text[ hindi ] = "अवधि का पहिला दिन ।";
        };
        String 4 // name of parameter 2         DiffMonths
        {
            Text = "Enddatum";
            Text[ english ] = "End date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "End date";
            Text[ portuguese ] = "Data final";
            Text[ russian ] = " ";
            Text[ greek ] = "End date";
            Text[ dutch ] = "Einddatum";
            Text[ french ] = "Date de fin";
            Text[ spanish ] = "Fecha final";
            Text[ finnish ] = "Loppupivmr";
            Text[ italian ] = "Data finale";
            Text[ danish ] = "Slutdato";
            Text[ swedish ] = "Slutdatum";
            Text[ polish ] = "Data kocowa";
            Text[ portuguese_brazilian ] = "Data final";
            Text[ japanese ] = "終了日";
            Text[ korean ] = "최종 날짜";
            Text[ chinese_simplified ] = "end_date";
            Text[ chinese_traditional ] = "end_date";
            Text[ turkish ] = "Biti tarihi";
            Text[ arabic ] = "End date";
            Text[ catalan ] = "Data final";
            Text[ thai ] = "วันที่สิ้นสุด";
            Text[ czech ] = "Koncové datum";
            Text[ hebrew ] = "Enddatum";
            Text[ hindi ] = "अंतिम दिनांक";
        };
        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 ] = "Laatste dag van de periode.";
            Text[ french ] = "Dernier jour de la priode.";
            Text[ spanish ] = "ltimo da del periodo.";
            Text[ finnish ] = "Kauden viimeinen piv";
            Text[ italian ] = "Ultimo giorno del periodo";
            Text[ danish ] = "Sidste dag i tidsperioden.";
            Text[ swedish ] = "Sista dagen i perioden.";
            Text[ polish ] = "Ostatni dzie okresu.";
            Text[ portuguese_brazilian ] = "ltimo dia do perodo";
            Text[ japanese ] = "期間の終了日。";
            Text[ korean ] = "특정 기간의 마지막 날짜입니다.";
            Text[ chinese_simplified ] = "该时期内的最后一天。";
            Text[ chinese_traditional ] = "時期的最後一天。";
            Text[ turkish ] = "Dnemin son gn.";
            Text[ arabic ] = "Last day of the period.";
            Text[ catalan ] = "ltim dia del perode.";
            Text[ thai ] = "Last day of the period.";
            Text[ czech ] = "Poslední den období.";
            Text[ hebrew ] = "Letzter Tag des Zeitraums.";
            Text[ hindi ] = "अवधि का अंतिम दिन ।";
        };
        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 ] = "Type";
            Text[ french ] = "Mode";
            Text[ spanish ] = "Tipo";
            Text[ finnish ] = "Laji";
            Text[ italian ] = "Tipo";
            Text[ danish ] = "Type";
            Text[ swedish ] = "Typ";
            Text[ polish ] = "Typ";
            Text[ portuguese_brazilian ] = "Tipo";
            Text[ japanese ] = "単位";
            Text[ korean ] = "유형";
            Text[ chinese_simplified ] = "type";
            Text[ chinese_traditional ] = "type";
            Text[ turkish ] = "Tr";
            Text[ arabic ] = "Mode";
            Text[ catalan ] = "Mode";
            Text[ thai ] = "Type";
            Text[ czech ] = "Typ";
            Text[ hebrew ] = "‮סוג‬";
            Text[ hindi ] = "वर्ग";
        };
        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 ] = "Soort berekening: soort=0 voor aantal maanden in interval, soort=1 voor kalendermaanden.";
            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 ] = "Laskennan laji: 0 on aikavli, 1 tarkoittaa kalenterikuukausia";
            Text[ italian ] = "Tipo di calcolo: Tipo=0 indica il numero di mesi dell'intervallo, tipo=1 indica il mese.";
            Text[ danish ] = "Beregningstype: Type=0 for mnedsantal i intervallet, type=1 for kalendermneder.";
            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 ] = "Tipo de clculo: Tipo=0 significa intervalo de tempo; Tipo=1 significa meses do calendrio.";
            Text[ japanese ] = "戻り値の単位と種類: 単位=0 は期間内の月数、単位=1 はカレンダーの月。";
            Text[ korean ] = "계산 유형: 유형=0인 경우는 시간 간격, 유형=1인 경우에는 1년 중 몇 번째 월에 해당하는지를 의미합니다.";
            Text[ chinese_simplified ] = "计算类型:Type=0 表示该时期内所包含的月份数,Type=1 表示月序列数。";
            Text[ chinese_traditional ] = "計算的類型:type=0 表示時期的月份數目,type=1 表示月份的序列數。";
            Text[ turkish ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar months.";
            Text[ arabic ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
            Text[ catalan ] = "Tipus de clcul: Mode=0 s l'interval de temps, mode=1 sn mesos de calendari.";
            Text[ thai ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar months.";
            Text[ czech ] = "Typ výpočtu: Typ=0 určuje časový interval, Typ=1 znamená kalendářní měsíce.";
            Text[ hebrew ] = "Art der Berechnung: Art=0 für Monatsanzahl im Intervall, Art=1 für Kalendermonate.";
            Text[ hindi ] = "गणना करने का वर्ग: वर्ग=0 का अर्थ समय का अंतराल है, वर्ग=1 का अर्थ केलन्डर मास है ।";
        };
    };

    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 ] = "Berekent het aantal jaren binnen een bepaalde periode.";
            Text[ french ] = "Calcule le nombre d'annes dans une priode dtermine.";
            Text[ spanish ] = "Calcula el nmero de aos en un determinado periodo.";
            Text[ finnish ] = "Laskee annetun aikavlin vuosien mrn";
            Text[ italian ] = "Restituisce il numero di anni in un determinato periodo.";
            Text[ danish ] = "Beregner antal r i en bestemt tidsperiode.";
            Text[ swedish ] = "Berknar antalet r i en specifik period.";
            Text[ polish ] = "Wyznacza liczb lat w podanym okresie.";
            Text[ portuguese_brazilian ] = "Calcula o nmero de meses de um dado perodo";
            Text[ japanese ] = "指定された期間内の年数を返します。";
            Text[ korean ] = "특정 기간의 연수를 계산합니다.";
            Text[ chinese_simplified ] = "计算某一个周期内所包含的年数。";
            Text[ chinese_traditional ] = "傳回某一時期的年份數目。";
            Text[ turkish ] = "Belirlenen bir zaman aralndaki yllar hesaplar.";
            Text[ arabic ] = "Determines the number of years in a specific period.";
            Text[ catalan ] = "Determina el nmero d'anys d'un perode especfic.";
            Text[ thai ] = "Calculates the number of years in a specific period.";
            Text[ czech ] = "Vrátí počet roků v zadaném období.";
            Text[ hebrew ] = "Berechnet die Anzahl der Jahre in einem bestimmten Zeitraum.";
            Text[ hindi ] = "निर्दिष्ट अवधि में रहनेवाला वर्षों की संख्या को गणना करता है";
        };
        String 2 // name of parameter 1         DiffYears
        {
            Text = "Ausgangsdatum";
            Text[ english ] = "Start date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Start date";
            Text[ portuguese ] = "Data inicial";
            Text[ russian ] = " ";
            Text[ greek ] = "Start date";
            Text[ dutch ] = "Begindatum";
            Text[ french ] = "Date initiale";
            Text[ spanish ] = "Fecha inicial";
            Text[ finnish ] = "Alkupivmr";
            Text[ italian ] = "Data iniziale";
            Text[ danish ] = "Startdato";
            Text[ swedish ] = "Startdatum";
            Text[ polish ] = "Data pocztkowa";
            Text[ portuguese_brazilian ] = "Data inicial";
            Text[ japanese ] = "開始日";
            Text[ korean ] = "시작 날짜";
            Text[ chinese_simplified ] = "start_date";
            Text[ chinese_traditional ] = "start_date";
            Text[ turkish ] = "Balang tarihi";
            Text[ arabic ] = "Start date";
            Text[ catalan ] = "Data d'inici";
            Text[ thai ] = "Start date";
            Text[ czech ] = "Počáteční datum";
            Text[ hebrew ] = "Ausgangsdatum";
            Text[ hindi ] = "प्रारंभ दिनांक";
        };
        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 ] = "Eerste dag van de periode.";
            Text[ french ] = "Premier jour de la priode.";
            Text[ spanish ] = "Primer da del periodo.";
            Text[ finnish ] = "Kauden ensimminen piv";
            Text[ italian ] = "Primo giorno del periodo.";
            Text[ danish ] = "Frste dag i tidsperioden.";
            Text[ swedish ] = "Frsta dagen i perioden.";
            Text[ polish ] = "Pierwszy dzie okresu";
            Text[ portuguese_brazilian ] = "Primeiro dia do perodo";
            Text[ japanese ] = "期間の開始日。";
            Text[ korean ] = "특정 기간의 시작 날짜입니다.";
            Text[ chinese_simplified ] = "周期内的第一天。";
            Text[ chinese_traditional ] = "時期的第一天。";
            Text[ turkish ] = "Dnemin birinci gn.";
            Text[ arabic ] = "First day of the period.";
            Text[ catalan ] = "Primer dia del perode.";
            Text[ thai ] = "First day of the period";
            Text[ czech ] = "První den období";
            Text[ hebrew ] = "Erster Tag des Zeitraums.";
            Text[ hindi ] = "अवधि का पहिला दिन";
        };
        String 4 // name of parameter 2         DiffYears
        {
            Text = "Enddatum";
            Text[ english ] = "End date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "End date";
            Text[ portuguese ] = "Data final";
            Text[ russian ] = " ";
            Text[ greek ] = "End date";
            Text[ dutch ] = "Einddatum";
            Text[ french ] = "Date de fin";
            Text[ spanish ] = "Fecha final";
            Text[ finnish ] = "Loppupivmr";
            Text[ italian ] = "Data finale";
            Text[ danish ] = "Slutdato";
            Text[ swedish ] = "Slutdatum";
            Text[ polish ] = "Data kocowa";
            Text[ portuguese_brazilian ] = "Data final";
            Text[ japanese ] = "終了日";
            Text[ korean ] = "최종 날짜";
            Text[ chinese_simplified ] = "end_date";
            Text[ chinese_traditional ] = "end_date";
            Text[ turkish ] = "Biti tarihi";
            Text[ arabic ] = "End date";
            Text[ catalan ] = "Data final";
            Text[ thai ] = "วันที่สิ้นสุด";
            Text[ czech ] = "Koncové datum";
            Text[ hebrew ] = "Enddatum";
            Text[ hindi ] = "अंतिम दिनांक";
        };
        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 ] = "Laatste dag van de periode.";
            Text[ french ] = "Dernier jour de la priode.";
            Text[ spanish ] = "ltimo da del periodo.";
            Text[ finnish ] = "Kauden viimeinen piv";
            Text[ italian ] = "Ultimo giorno del periodo.";
            Text[ danish ] = "Sidste dag i tidsperioden.";
            Text[ swedish ] = "Sista dagen i perioden.";
            Text[ polish ] = "Ostatni dzie okresu.";
            Text[ portuguese_brazilian ] = "ltimo dia do perodo";
            Text[ japanese ] = "期間の終了日。";
            Text[ korean ] = "특정 기간의 마지막 날짜입니다.";
            Text[ chinese_simplified ] = "周期内的最后一天。";
            Text[ chinese_traditional ] = "時期的最後一天。";
            Text[ turkish ] = "Dnemin son gn.";
            Text[ arabic ] = "Last day of the period.";
            Text[ catalan ] = "ltim dia del perode.";
            Text[ thai ] = "Last day of the period";
            Text[ czech ] = "Poslední den období";
            Text[ hebrew ] = "Letzter Tag des Zeitraums.";
            Text[ hindi ] = "अवधि का अंतिम दिन";
        };
        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 ] = "Type";
            Text[ french ] = "Mode";
            Text[ spanish ] = "Tipo";
            Text[ finnish ] = "Laji";
            Text[ italian ] = "Tipo";
            Text[ danish ] = "Type";
            Text[ swedish ] = "Typ";
            Text[ polish ] = "Typ";
            Text[ portuguese_brazilian ] = "Tipo";
            Text[ japanese ] = "単位";
            Text[ korean ] = "유형";
            Text[ chinese_simplified ] = "type";
            Text[ chinese_traditional ] = "type";
            Text[ turkish ] = "Tr";
            Text[ arabic ] = "Mode";
            Text[ catalan ] = "Mode";
            Text[ thai ] = "Type";
            Text[ czech ] = "Typ";
            Text[ hebrew ] = "‮סוג‬";
            Text[ hindi ] = "वर्ग";
        };
        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 ] = "Soort berekening: soort=0 voor aantal jaren in interval, soort=1 voor kalenderjaren.";
            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 ] = "Laskennan laji: 0 on aikavli, 1 tarkoittaa kalenterivuosia";
            Text[ italian ] = "Tipo di calcolo: Tipo=0 indica il numero di anni dell'intervallo, tipo=1 indica l'anno solare.";
            Text[ danish ] = "Beregningstype: Type=0 for rsantal i intervallet, type=1 for kalenderr.";
            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 ] = "Tipo de clculo: Tipo=0 significa intervalo de tempo; Tipo=1 significa anos do calendrio.";
            Text[ japanese ] = "戻り値の単位と種類: 単位=0 は期間内の年数、単位=1 はカレンダーの年。";
            Text[ korean ] = "계산 유형: 유형=0인 경우는 시간 간격, 유형=1인 경우에는 역년을 의미합니다.";
            Text[ chinese_simplified ] = "计算类型:Type=0 表示该周期内包含的年数,Type=1 表示年序列数。";
            Text[ chinese_traditional ] = "計算的類型:type=0 表示時期的年份數目,type=1 表示年份的序列數。";
            Text[ turkish ] = "Type of calculation: Type=0 means the time interval, Typee=1 means calendar years.";
            Text[ arabic ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
            Text[ catalan ] = "Tipus de clcul: Mode=0 s l'interval de temps, mode=1 sn anys de calendari.";
            Text[ thai ] = "Type of calculation: Type=0 means the time interval, Typee=1 means calendar years.";
            Text[ czech ] = "Typ výpočtu: Typ=0 určuje časový interval, Typ=1 znamená kalendářní roky.";
            Text[ hebrew ] = "Art der Berechnung: Art=0 für Jahresanzahl im Intervall, Art=1 für Kalenderjahre.";
            Text[ hindi ] = "गणना करने का वर्ग: वर्ग=0 का अर्थ समय का अंतराल है, वर्ग=1 का अर्थ केलन्डर वर्ष है ।";
        };
    };

    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 ] = "Geeft als resultaat 1 (WAAR) als de opgegeven datum in een schrikkeljaar valt, anders 0 (ONWAAR).";
            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 ] = "Palauttaa arvon 1 (TOSI/TRUE), jos pivmr on karkausvuoden piv. Muutoin palauttaa arvon 0 (EPTOSI/FALSE)";
            Text[ italian ] = "Restituisce 1 (VERO) se la data indicata cade in un anno bisestile oppure 0 (FALSO).";
            Text[ danish ] = "Returnerer 1 (SANDT), hvis den angivne dato ligger i et skudr, ellers 0 (FALSK).";
            Text[ swedish ] = "Returnerar 1 (SANT) om det angivna datumet ligger i ett skottr, annars 0 (FALSKT).";
            Text[ polish ] = "Zwraca 1 (PRAWDA), jeeli podana data wypada w roku przestpnym. W przeciwnym razie zwraca 0 (FASZ).";
            Text[ portuguese_brazilian ] = "Retorna 1 (VERDADEIRO) se a data recai em um ano bissexto; caso contrrio, 0 (FALSO).";
            Text[ japanese ] = "指定した日付が閏年に当たる場合は 1 (TRUE) を返します。そうでない場合は 0 (FALSE) を返します。";
            Text[ korean ] = "날짜가 윤년에 속한 날짜인 경우 1(TRUE)을, 그렇지 않은 경우에는 0(FALSE)을 돌려줍니다.";
            Text[ chinese_simplified ] = "反馈 1 (TRUE),若该日期是闰年内的一个日期,否则反馈 0 (FALSE)。";
            Text[ chinese_traditional ] = "如果是閏年,傳回1(TRUE),反之傳回0(FALSE)。";
            Text[ turkish ] = "Eer gn artk yla aitse 1 (DORU), aksi takdirde 0 (YANLI) verir.";
            Text[ arabic ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ catalan ] = "Torna 1 (TRUE) si s un dia d'un any de trasps, si no 0 (FALSE).";
            Text[ thai ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
            Text[ czech ] = "Vrátí 1 (TRUE) pokud datum je dnem v přestupném roce, jinak vrátí 0 (FALSE).";
            Text[ hebrew ] = "Gibt 1 (WAHR) zurück, wenn das angegebene Datum in einem Schaltjahr liegt, sonst 0 (FALSCH).";
            Text[ hindi ] = "अगर दिनांक अधिकवर्ष का एक दिन है तो 1 (TRUE) को वापस करता है, नहीं तो 0 (FALSE).";
        };
        String 2 // name of parameter 1         IsLeapYear
        {
            Text = "Datum";
            Text[ english ] = "Date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Date";
            Text[ portuguese ] = "Data";
            Text[ russian ] = "";
            Text[ greek ] = "";
            Text[ dutch ] = "Datum";
            Text[ french ] = "Date";
            Text[ spanish ] = "Fecha";
            Text[ finnish ] = "Pivmr";
            Text[ italian ] = "Data ";
            Text[ danish ] = "Dato";
            Text[ swedish ] = "Datum";
            Text[ polish ] = "Data";
            Text[ portuguese_brazilian ] = "Date";
            Text[ japanese ] = "日付";
            Text[ korean ] = "날짜";
            Text[ chinese_simplified ] = "date";
            Text[ chinese_traditional ] = "date";
            Text[ turkish ] = "Tarih";
            Text[ arabic ] = "";
            Text[ catalan ] = "Data";
            Text[ thai ] = "Date";
            Text[ czech ] = "Datum";
            Text[ hebrew ] = "‮תאריך‬";
            Text[ hindi ] = "दिनांक";
        };
        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 ] = "Een willekeurige dag in het gewenste jaar.";
            Text[ french ] = "Un jour quelconque dans l'anne en question.";
            Text[ spanish ] = "Cualquier da en un ao deseado.";
            Text[ finnish ] = "Mik tahansa halutun vuoden piv";
            Text[ italian ] = "Un giorno qualsiasi nell'anno indicato.";
            Text[ danish ] = "En vilkrlig dag i det nskede r.";
            Text[ swedish ] = "En valfri dag p det nskade ret.";
            Text[ polish ] = "Dowolny dzie danego roku";
            Text[ portuguese_brazilian ] = "Qualquer dia do ano desejado";
            Text[ japanese ] = "任意の年月日。";
            Text[ korean ] = "원하는 연도의 임의의 날짜입니다.";
            Text[ chinese_simplified ] = "指定的一年中的任意一天。";
            Text[ chinese_traditional ] = "某一年份之中的任意一天。";
            Text[ turkish ] = "stenen ylda herhangi bir gn";
            Text[ arabic ] = "Any day in the desired year.";
            Text[ catalan ] = "Qualsevol dia de l'any desitjat.";
            Text[ thai ] = "Any day in the desired year";
            Text[ czech ] = "Jakýkoliv den v požadovaném roce";
            Text[ hebrew ] = "Ein beliebiger Tag im gewünschten Jahr.";
            Text[ hindi ] = "उद्देशित वर्ष का किसी एक दिन";
        };
    };

    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 ] = "Geeft als resultaat het aantal dagen van de maand waarin de opgegeven datum valt.";
            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 ] = "Palauttaa kuukauden pivien mrn, joina annettu piv ilmenee";
            Text[ italian ] = "Restituisce il numero di giorni del mese in riferimento alla data indicata.";
            Text[ danish ] = "Returnerer antal dage i den mned, hvori den angivne dato ligger.";
            Text[ swedish ] = "Returnerar antalet dagar i mnaden som ingr i det angivna datumet.";
            Text[ polish ] = "Zwraca liczb dni miesica, w ktrym wypada podana data.";
            Text[ portuguese_brazilian ] = "Retorna quantos dias tem o ms no qual ocorre a data indicada";
            Text[ japanese ] = "入力した日付を含むその月の日数を返します。";
            Text[ korean ] = "입력한 날짜에 해당하는 월의 날짜 수를 구합니다.";
            Text[ chinese_simplified ] = "反馈指定的日期所在月份的天数。";
            Text[ chinese_traditional ] = "傳回指定日期的月份所有的天數。";
            Text[ turkish ] = "Girilen gnn iinde bulunduu ayda ka gn olduu dner";
            Text[ arabic ] = "Returns the number of days of the month in relation to the date entered.";
            Text[ catalan ] = "Torna el nombre de dies del mes.";
            Text[ thai ] = "Returns the number of days of the month in which the date entered occurs";
            Text[ czech ] = "Vrátí počet dní v měsíci, do kterého patří zadané datum";
            Text[ hebrew ] = "Gibt die Anzahl der Tage des Monats zurück, in dem das angegebene Datum liegt.";
            Text[ hindi ] = "प्रविष्ट की हुयी दिनांक का मास में रहनेवाला दिनों की संख्या को वापस करता है";
        };
        String 2 // name of parameter 1         DaysInMonth
        {
            Text = "Datum";
            Text[ english ] = "Date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Date";
            Text[ portuguese ] = "Data";
            Text[ russian ] = "";
            Text[ greek ] = "";
            Text[ dutch ] = "Datum";
            Text[ french ] = "Date";
            Text[ spanish ] = "Fecha";
            Text[ finnish ] = "Pivmr";
            Text[ italian ] = "Data";
            Text[ danish ] = "Dato";
            Text[ swedish ] = "Datum";
            Text[ polish ] = "Data";
            Text[ portuguese_brazilian ] = "Data";
            Text[ japanese ] = "日付";
            Text[ korean ] = "날짜";
            Text[ chinese_simplified ] = "date";
            Text[ chinese_traditional ] = "date";
            Text[ turkish ] = "Tarih";
            Text[ arabic ] = "";
            Text[ catalan ] = "Date";
            Text[ thai ] = "Date";
            Text[ czech ] = "Datum";
            Text[ hebrew ] = "‮תאריך‬";
            Text[ hindi ] = "दिनांक";
        };
        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 ] = "Een willekeurige dag in de gewenste maand.";
            Text[ french ] = "Un jour quelconque dans le mois en question.";
            Text[ spanish ] = "Cualquier da en un mes deseado.";
            Text[ finnish ] = "Mik tahansa halutun kuukauden piv";
            Text[ italian ] = "Un giorno qualsiasi del mese indicato.";
            Text[ danish ] = "En vilkrlig dag i den nskede mned.";
            Text[ swedish ] = "En valfri dag i den nskade mnaden.";
            Text[ polish ] = "Dowolny dzie danego miesica";
            Text[ portuguese_brazilian ] = "Qualquer dia do ms desejado";
            Text[ japanese ] = "任意の月日。";
            Text[ korean ] = "원하는 월의 임의의 날짜입니다.";
            Text[ chinese_simplified ] = "指定的月份中的任意一天。";
            Text[ chinese_traditional ] = "某一月份的任意的一天。";
            Text[ turkish ] = "stenen ayda herhangi bir gn";
            Text[ arabic ] = "Any day in the desired month.";
            Text[ catalan ] = "Qualsevol dia del mes";
            Text[ thai ] = "Any day in the desired month";
            Text[ czech ] = "Jakýkoliv den v požadovaném měsíci";
            Text[ hebrew ] = "Ein beliebiger Tag im gewünschten Monat.";
            Text[ hindi ] = "उद्देशित मास का किसी एक दिन";
        };
    };

    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 ] = "Retourneert het aantal dagen van het jaar dat de opgegeven datum bevat.";
            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 ] = "Palauttaa vuoden pivien mrn, joina annettu piv ilmenee";
            Text[ italian ] = "Restituisce il numero di giorni dell'anno in riferimento alla data indicata.";
            Text[ danish ] = "Returnerer antal dage i det r, hvori den angivne dato ligger.";
            Text[ swedish ] = "Returnerar antalet dagar p ret som ingr i det angivna datumet.";
            Text[ polish ] = "Zwraca liczb dni w roku, w ktrym wypada podana data.";
            Text[ portuguese_brazilian ] = "Retorna quantos dias tem o ano no qual ocorre a data indicada.";
            Text[ japanese ] = "入力した日付を含むその年の日数を返します。";
            Text[ korean ] = "입력한 날짜에 해당하는 연도의 날짜 수를 구합니다.";
            Text[ chinese_simplified ] = "反馈指定的日期所在年份的天数。";
            Text[ chinese_traditional ] = "傳回指定日期的年份所有的天數。";
            Text[ turkish ] = "Verilen gnn iinde bulunduu ylda ka gn olduunu verir.";
            Text[ arabic ] = "Returns the number of days of the year in relation to the date entered.";
            Text[ catalan ] = "Torna el nombre de dies de l'any en relaci amb la data.";
            Text[ thai ] = "Returns the number of days of the year in which the date entered occurs.";
            Text[ czech ] = "Vrátí počet dní v roce, do kterého patří zadané datum.";
            Text[ hebrew ] = "Gibt die Anzahl der Tage des Jahres zurück, in dem das angegebene Datum liegt.";
            Text[ hindi ] = "प्रविष्ट की हुयी दिनांक का वर्ष में रहनेवाला दिनों की संख्या को वापस करता है ।";
        };
        String 2 // name of parameter 1         DaysInYear
        {
            Text = "Datum";
            Text[ english ] = "Date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Date";
            Text[ portuguese ] = "Data";
            Text[ russian ] = "";
            Text[ greek ] = "";
            Text[ dutch ] = "Datum";
            Text[ french ] = "Date";
            Text[ spanish ] = "Fecha";
            Text[ finnish ] = "Pivmr";
            Text[ italian ] = "Data";
            Text[ danish ] = "Dato";
            Text[ swedish ] = "Datum";
            Text[ polish ] = "Data";
            Text[ portuguese_brazilian ] = "Data";
            Text[ japanese ] = "日付";
            Text[ korean ] = "날짜";
            Text[ chinese_simplified ] = "date";
            Text[ chinese_traditional ] = "date";
            Text[ turkish ] = "Tarih";
            Text[ arabic ] = "";
            Text[ catalan ] = "Data";
            Text[ thai ] = "Date";
            Text[ czech ] = "Datum";
            Text[ hebrew ] = "‮תאריך‬";
            Text[ hindi ] = "दिनांक";
        };
        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 ] = "Een willekeurige dag in het gewenste jaar.";
            Text[ french ] = "Un jour quelconque dans l'anne en question.";
            Text[ spanish ] = "Cualquier da en un ao deseado.";
            Text[ finnish ] = "Mik tahansa halutun vuoden piv";
            Text[ italian ] = "Un giorno qualsiasi dell'anno indicato.";
            Text[ danish ] = "En vilkrlig dag i det nskede r.";
            Text[ swedish ] = "En valfri dag p det nskade ret.";
            Text[ polish ] = "Dowolny dzie danego roku";
            Text[ portuguese_brazilian ] = "Qualquer dia do ano desejado";
            Text[ japanese ] = "任意の年月日。";
            Text[ korean ] = "원하는 연도의 임의의 날짜입니다.";
            Text[ chinese_simplified ] = "指定的一年中的任意一天。";
            Text[ chinese_traditional ] = "某一年份的任意的一天。";
            Text[ turkish ] = "stenen ylda herhangi bir gn";
            Text[ arabic ] = "Any day in the desired year.";
            Text[ catalan ] = "Qualsevol dia de l'any desitjat.";
            Text[ thai ] = "Any day in the desired year";
            Text[ czech ] = "Jakýkoliv den v požadovaném roce";
            Text[ hebrew ] = "Ein beliebiger Tag im gewünschten Jahr.";
            Text[ hindi ] = "उद्देशित वर्ष का किसी एक दिन";
        };
    };

    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 ] = "Retourneert het aantal weken van het jaar dat de opgegeven datum bevat.";
            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 ] = "Palauttaa vuoden viikkojen mrn, joina annettu piv ilmenee";
            Text[ italian ] = "Restituisce il numero di settimane dell'anno in riferimento alla data indicata.";
            Text[ danish ] = "Returnerer antal uger i det r, hvori den angivne dato ligger.";
            Text[ swedish ] = "Returnerar antalet veckor p ret som ingr i det angivna datumet.";
            Text[ polish ] = "Zwraca liczb tygodni w roku, w ktrym wypada podana data.";
            Text[ portuguese_brazilian ] = "Retorna quantas semanas tem o ano no qual ocorre a data indicada";
            Text[ japanese ] = "入力した日付を含むその年の週数を返します。";
            Text[ korean ] = "입력한 날짜에 해당하는 연도의 주 수를 구합니다.";
            Text[ chinese_simplified ] = "反馈指定的日期所在年份具有的星期数。";
            Text[ chinese_traditional ] = "傳回指定日期的月份所有的週數目。";
            Text[ turkish ] = "Belirtilen gnn iinde bulunduu yldaki hafta saysn verir";
            Text[ arabic ] = "Returns the number of weeks of the year in relation to the date entered.";
            Text[ catalan ] = "Torna el nmero de setmanes de l'any en relaci amb la data.";
            Text[ thai ] = "Returns the number of weeks of the year in which the date entered occurs";
            Text[ czech ] = "Vrátí počet týdnů v roce, do kterého patří zadané datum";
            Text[ hebrew ] = "Gibt die Anzahl der Wochen des Jahres zurück, in dem das angegebene Datum liegt.";
            Text[ hindi ] = "प्रविष्ट की हुयी दिनांक का वर्ष में रहनेवाला सप्ताहों की संख्या को वापस करता है";
        };
        String 2 // name of parameter 1         WeeksInYear
        {
            Text = "Datum";
            Text[ english ] = "Date";
            Text[ language_user1 ] = " ";
            Text[ english_us ] = "Date";
            Text[ portuguese ] = "Data";
            Text[ russian ] = "";
            Text[ greek ] = "";
            Text[ dutch ] = "Datum";
            Text[ french ] = "Date";
            Text[ spanish ] = "Fecha";
            Text[ finnish ] = "Pivmr";
            Text[ italian ] = "Data";
            Text[ danish ] = "Dato";
            Text[ swedish ] = "Datum";
            Text[ polish ] = "Data";
            Text[ portuguese_brazilian ] = "Data";
            Text[ japanese ] = "日付";
            Text[ korean ] = "날짜";
            Text[ chinese_simplified ] = "date";
            Text[ chinese_traditional ] = "date";
            Text[ turkish ] = "Tarih";
            Text[ arabic ] = "";
            Text[ catalan ] = "Data";
            Text[ thai ] = "Date";
            Text[ czech ] = "Datum";
            Text[ hebrew ] = "‮תאריך‬";
            Text[ hindi ] = "दिनांक";
        };
        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 ] = "Een willekeurige dag in het gewenste jaar.";
            Text[ french ] = "Un jour quelconque dans l'anne en question.";
            Text[ spanish ] = "Cualquier da en un ao deseado.";
            Text[ finnish ] = "Mik tahansa halutun vuoden piv";
            Text[ italian ] = "Un giorno qualsiasi dell'anno indicato.";
            Text[ danish ] = "En vilkrlig dag i det nskede r.";
            Text[ swedish ] = "En valfri dag p det nskade ret.";
            Text[ polish ] = "Dowolny dzie danego roku";
            Text[ portuguese_brazilian ] = "Qualquer dia do ano desejado";
            Text[ japanese ] = "任意の年月日。";
            Text[ korean ] = "원하는 연도의 임의의 날짜입니다.";
            Text[ chinese_simplified ] = "指定的一年中的任意一天。";
            Text[ chinese_traditional ] = "某一年份的任意的一天。";
            Text[ turkish ] = "stenen ylda herhangi bir gn";
            Text[ arabic ] = "Any day in the desired year.";
            Text[ catalan ] = "Qualsevol setmana de l'any desitjat.";
            Text[ thai ] = "Any day in the desired year";
            Text[ czech ] = "Jakýkoliv den v požadovaném roce";
            Text[ hebrew ] = "Ein beliebiger Tag im gewünschten Jahr.";
            Text[ hindi ] = "उद्देशित वर्ष का किसी एक दिन";
        };
    };

    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 ] = "Codeert of decodeert een tekst met behulp van de ROT13-algoritme.";
            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 ] = "Koodaa tai purkaa tekstin koodin kytten ROT13-algoritmia";
            Text[ italian ] = "Codifica o decodifica un testo tramite l'algoritmo ROT13.";
            Text[ danish ] = "Krypterer eller dekrypterer en tekst ved hjlp af ROT13-algoritmen.";
            Text[ swedish ] = "Krypterar text eller omvandlar krypterad text till klartext med hjlp av ROT13-algoritmen.";
            Text[ polish ] = "Szyfruje i deszyfruje teksty przy uyciu algorytmu ROT13";
            Text[ portuguese_brazilian ] = "Codifica ou decodifica um texto usando o algoritmo de criptografia ROT13";
            Text[ japanese ] = "ROT13 アルゴリズムを使ってテキストを暗号処理、または複合処理します。";
            Text[ korean ] = "ROT13 알고리즘을 사용하여 텍스트를 암호화하거나 텍스트의 암호를 해독합니다.";
            Text[ chinese_simplified ] = "借助 ROT13 运算法则加密或者解密一个文本。";
            Text[ chinese_traditional ] = "透過ROT13程式加密或解密一個文字。";
            Text[ turkish ] = "ROT13 algoritmasn kullanarak bir metni ifreler veya ifresini zer";
            Text[ arabic ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
            Text[ catalan ] = "Encripta o desencripta un text utilitzant l'algorisme ROT13.";
            Text[ thai ] = "Encrypts or decrypts a text using the ROT13 algorithm";
            Text[ czech ] = "Šifruje nebo dešifruje text za použití algoritmu ROT13";
            Text[ hebrew ] = "Verschlüsselt oder entschlüsselt einen Text mit Hilfe des ROT13-Algorithmus.";
            Text[ hindi ] = "ROT13 सिद्धांत को उपयोग करके टेक्स्ट् को ऐनक्रिप्ट् अथवा डिक्रिप्ट् करता है";
        };
        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 ] = "Texto";
            Text[ japanese ] = "テキスト";
            Text[ korean ] = "텍스트";
            Text[ chinese_simplified ] = "text";
            Text[ chinese_traditional ] = "text";
            Text[ turkish ] = "Metin";
            Text[ arabic ] = "";
            Text[ catalan ] = "Text";
            Text[ thai ] = "Text";
            Text[ czech ] = "Text";
            Text[ hebrew ] = "‮טקסט‬";
            Text[ hindi ] = "टेक्स्ट्";
        };
        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 ] = "Te coderen of gecodeerde tekst.";
            Text[ french ] = "Texte  chiffrer ou  dchiffrer";
            Text[ spanish ] = "Texto codificado o a codificar.";
            Text[ finnish ] = "Koodattava teksti tai jo koodattu teksti";
            Text[ italian ] = "Testo da codificare o decodificare.";
            Text[ danish ] = "Tekst, som skal krypteres, eller som er krypteret.";
            Text[ swedish ] = "Text som ska krypteras eller text som r krypterad.";
            Text[ polish ] = "Tekst do szyfrowania lub ju zaszyfrowany.";
            Text[ portuguese_brazilian ] = "Texto a codificar ou texto j codificado";
            Text[ japanese ] = "暗号化するテキスト、または暗号化したテキスト。";
            Text[ korean ] = "암호화할 텍스트 또는 이미 암호화되어 있는 텍스트입니다.";
            Text[ chinese_simplified ] = "需要加密的或者已经加密的文本。";
            Text[ chinese_traditional ] = "要加密或解密的文字。";
            Text[ turkish ] = "ifrelenecek veya ifrelenmi metin";
            Text[ arabic ] = "Text to be encrypted or encrypted text.";
            Text[ catalan ] = "Text per ser encriptat o text encriptat.";
            Text[ thai ] = "Text to be encrypted or text already encrypted";
            Text[ czech ] = "Text, který má být zašifrován, nebo už zašifrovaný text";
            Text[ hebrew ] = "Zu verschlüsselnder oder verschlüsselter Text.";
            Text[ hindi ] = "टेक्स्ट् को ऐनक्रिप्ट् करना है अथवा टेक्स्ट् को पहिले से ही ऐनक्रिप्ट् किया है";
        };
    };
};


Resource RID_DATE_FUNCTION_NAMES
{
    String DATE_FUNCNAME_DiffWeeks
    {
        Text = "WOCHEN";
        Text[ english ] = "WEEKS";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "WEEKS";
        Text[ portuguese ] = "Semanas";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "WEKEN";
        Text[ french ] = "SEMAINES";
        Text[ spanish ] = "SEMANAS";
        Text[ finnish ] = "VIIKOT";
        Text[ italian ] = "SETTIMANE";
        Text[ danish ] = "UGER";
        Text[ swedish ] = "ANTALVECKOR";
        Text[ polish ] = "WEEKS";
        Text[ portuguese_brazilian ] = "SEMANAS";
        Text[ japanese ] = "WEEKS";
        Text[ korean ] = "WEEKS";
        Text[ chinese_simplified ] = "WEEKS";
        Text[ chinese_traditional ] = "WEEKS";
        Text[ turkish ] = "WEEKS";
        Text[ arabic ] = "";
        Text[ catalan ] = "WEEKS";
        Text[ thai ] = "สัปดาห์";
        Text[ czech ] = "WEEKS";
        Text[ hebrew ] = "WOCHEN";
        Text[ hindi ] = "WEEKS";
    };
    String DATE_FUNCNAME_DiffMonths
    {
        Text = "MONATE";
        Text[ english ] = "MONTHS";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "MONTHS";
        Text[ portuguese ] = "Meses";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "MAANDEN";
        Text[ french ] = "NB.MOIS";
        Text[ spanish ] = "MESES";
        Text[ finnish ] = "KUUKAUDET";
        Text[ italian ] = "MESI";
        Text[ danish ] = "MNEDER";
        Text[ swedish ] = "ANTALMNADER";
        Text[ polish ] = "MONTHS";
        Text[ portuguese_brazilian ] = "MESES";
        Text[ japanese ] = "MONTHS";
        Text[ korean ] = "MONTHS";
        Text[ chinese_simplified ] = "MONTHS";
        Text[ chinese_traditional ] = "MONTHS";
        Text[ turkish ] = "MONTHS";
        Text[ arabic ] = "";
        Text[ catalan ] = "MONTHS";
        Text[ thai ] = "เดือน";
        Text[ czech ] = "MONTHS";
        Text[ hebrew ] = "MONATE";
        Text[ hindi ] = "MONTHS";
    };
    String DATE_FUNCNAME_DiffYears
    {
        Text = "JAHRE";
        Text[ english ] = "YEARS";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "YEARS";
        Text[ portuguese ] = "Anos";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "JAREN";
        Text[ french ] = "ANNEES";
        Text[ spanish ] = "AOS";
        Text[ finnish ] = "VUODET";
        Text[ italian ] = "ANNI";
        Text[ danish ] = "R";
        Text[ swedish ] = "ANTALR";
        Text[ polish ] = "YEARS";
        Text[ portuguese_brazilian ] = "ANOS";
        Text[ japanese ] = "YEARS";
        Text[ korean ] = "YEARS";
        Text[ chinese_simplified ] = "YEARS";
        Text[ chinese_traditional ] = "YEARS";
        Text[ turkish ] = "YEARS";
        Text[ arabic ] = "";
        Text[ catalan ] = "YEARS";
        Text[ thai ] = "ปี";
        Text[ czech ] = "YEARS";
        Text[ hebrew ] = "JAHRE";
        Text[ hindi ] = "YEARS";
    };
    String DATE_FUNCNAME_IsLeapYear
    {
        Text = "ISTSCHALTJAHR";
        Text[ english ] = "ISLEAPYEAR";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "ISLEAPYEAR";
        Text[ portuguese ] = "AnoBissexto";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "ISSCHRIKKELJAAR";
        Text[ french ] = "ESTBISSEXTILE";
        Text[ spanish ] = "ESAOBISIESTO";
        Text[ finnish ] = "ONKARK_VUOSI";
        Text[ italian ] = "ANNO.BISESTILE";
        Text[ danish ] = "ERSKUDR";
        Text[ swedish ] = "RSKOTTR";
        Text[ polish ] = "ISLEAPYEAR";
        Text[ portuguese_brazilian ] = "ANOBISSEXTO";
        Text[ japanese ] = "ISLEAPYEAR";
        Text[ korean ] = "ISLEAPYEAR";
        Text[ chinese_simplified ] = "ISLEAPYEAR";
        Text[ chinese_traditional ] = "ISLEAPYEAR";
        Text[ turkish ] = "ISLEAPYEAR";
        Text[ arabic ] = "  ";
        Text[ catalan ] = "IsLeapYear";
        Text[ thai ] = "เป็นปีอธิกวาร";
        Text[ czech ] = "ISLEAPYEAR";
        Text[ hebrew ] = "ISTSCHALTJAHR";
        Text[ hindi ] = "ISLEAPYEAR";
    };
    String DATE_FUNCNAME_DaysInMonth
    {
        Text = "TAGEIMMONAT";
        Text[ english ] = "DAYSINMONTH";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "DAYSINMONTH";
        Text[ portuguese ] = "DiasNoMs";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "DAGENINMAAND";
        Text[ french ] = "JOURSDANSMOIS";
        Text[ spanish ] = "DASENMES";
        Text[ finnish ] = "PIVT_KUUKAUSI";
        Text[ italian ] = "GIORNI.MESE";
        Text[ danish ] = "DAGEMNED";
        Text[ swedish ] = "DAGARIMNADEN";
        Text[ polish ] = "DAYSINMONTH";
        Text[ portuguese_brazilian ] = "DIASNOMES";
        Text[ japanese ] = "DAYSINMONTH";
        Text[ korean ] = "DAYSINMONTH";
        Text[ chinese_simplified ] = "DAYSINMONTH";
        Text[ chinese_traditional ] = "DAYSINMONTH";
        Text[ turkish ] = "DAYSINMONTH";
        Text[ arabic ] = "DaysInMonth";
        Text[ catalan ] = "DaysInMonth";
        Text[ thai ] = "วันในเดือน";
        Text[ czech ] = "DAYSINMONTH";
        Text[ hebrew ] = "TAGEIMMONAT";
        Text[ hindi ] = "DAYSINMONTH";
    };
    String DATE_FUNCNAME_DaysInYear
    {
        Text = "TAGEIMJAHR";
        Text[ english ] = "DAYSINYEAR";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "DAYSINYEAR";
        Text[ portuguese ] = "DiasNoAno";
        Text[ russian ] = "";
        Text[ greek ] = "";
        Text[ dutch ] = "DAGENINJAAR";
        Text[ french ] = "JOURSDANSANNEE";
        Text[ spanish ] = "DASENAO";
        Text[ finnish ] = "PIVT_VUOSI";
        Text[ italian ] = "GIORNI.ANNO";
        Text[ danish ] = "DAGER";
        Text[ swedish ] = "DAGARPRET";
        Text[ polish ] = "DAYSINYEAR";
        Text[ portuguese_brazilian ] = "DIASNOANO";
        Text[ japanese ] = "DAYSINYEAR";
        Text[ korean ] = "DAYSINYEAR";
        Text[ chinese_simplified ] = "DAYSINYEAR";
        Text[ chinese_traditional ] = "DAYSINYEAR";
        Text[ turkish ] = "DAYSINYEAR";
        Text[ arabic ] = "DaysInYear";
        Text[ catalan ] = "DaysInYear";
        Text[ thai ] = "วันในปี";
        Text[ czech ] = "DAYSINYEAR";
        Text[ hebrew ] = "TAGEIMJAHR";
        Text[ hindi ] = "DAYSINYEAR";
    };
    String DATE_FUNCNAME_WeeksInYear
    {
        Text = "WOCHENIMJAHR";
        Text[ english ] = "WEEKSINYEAR";
        Text[ language_user1 ] = " ";
        Text[ english_us ] = "WEEKSINYEAR";
        Text[ portuguese ] = "SemanasNoAno";
        Text[ russian ] = "";
        Text[ greek ] = "ܸ";
        Text[ dutch ] = "WEKENINJAAR";
        Text[ french ] = "SEMAINESDANSANNEE";
        Text[ spanish ] = "SEMANASENAO";
        Text[ finnish ] = "VIIKOT_VUOSI";
        Text[ italian ] = "SETTIMANE.ANNO";
        Text[ danish ] = "UGERR";
        Text[ swedish ] = "VECKORPERR";
        Text[ polish ] = "WEEKSINYEAR";
        Text[ portuguese_brazilian ] = "SEMANASNOANO";
        Text[ japanese ] = "WEEKSINYEAR";
        Text[ korean ] = "WEEKSINYEAR";
        Text[ chinese_simplified ] = "WEEKSINYEAR";
        Text[ chinese_traditional ] = "WEEKSINYEAR";
        Text[ turkish ] = "WEEKSINYEAR";
        Text[ arabic ] = "WeeksInYear";
        Text[ catalan ] = "WeeksInYear";
        Text[ thai ] = "สัปดาห์ในปี";
        Text[ czech ] = "WEEKSINYEAR";
        Text[ hebrew ] = "WOCHENIMJAHR";
        Text[ hindi ] = "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";
        Text[ thai ] = "ROT13";
        Text[ czech ] = "ROT13";
        Text[ hebrew ] = "ROT13";
        Text[ hindi ] = "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"; >;
        };
    };
};