Update ooo320-m1
[ooovba.git] / scaddins / source / datefunc / datefunc.src
blobd9d0d679e99e6c5a4c09812424ef65477badb1ac
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: datefunc.src,v $
10  * $Revision: 1.27 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
32 #include "datefunc.hrc"
35 Resource RID_DATE_FUNCTION_DESCRIPTIONS
37     Resource DATE_FUNCDESC_DiffWeeks
38     {
39         String 1    // description              DiffWeeks
40         {
41             Text [ en-US ] = "Calculates the number of weeks in a specific period";
42         };
43         String 2 // name of parameter 1         DiffWeeks
44         {
45             Text [ en-US ] = "Start date";
46         };
47         String 3 // description of parameter 1  DiffWeeks
48         {
49             Text [ en-US ] = "First day of the period";
50         };
51         String 4 // name of parameter 2         DiffWeeks
52         {
53             Text [ en-US ] = "End date";
54         };
55         String 5 // description of parameter 2  DiffWeeks
56         {
57             Text [ en-US ] = "Last day of the period";
58         };
59         String 6 // name of parameter 3         DiffWeeks
60         {
61             Text [ en-US ] = "Type";
62         };
63         String 7 // description of parameter 3  DiffWeeks
64         {
65             Text [ en-US ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks.";
66         };
67     };
69     Resource DATE_FUNCDESC_DiffMonths
70     {
71         String 1    // description              DiffMonths
72         {
73             Text [ en-US ] = "Determines the number of months in a specific period.";
74         };
75         String 2 // name of parameter 1         DiffMonths
76         {
77             Text [ en-US ] = "Start date";
78         };
79         String 3 // description of parameter 1  DiffMonths
80         {
81             Text [ en-US ] = "First day of the period.";
82         };
83         String 4 // name of parameter 2         DiffMonths
84         {
85             Text [ en-US ] = "End date";
86         };
87         String 5 // description of parameter 2  DiffMonths
88         {
89             Text [ en-US ] = "Last day of the period.";
90         };
91         String 6 // name of parameter 3         DiffMonths
92         {
93             Text [ en-US ] = "Type";
94         };
95         String 7 // description of parameter 3  DiffMonths
96         {
97             Text [ en-US ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar months.";
98         };
99     };
101     Resource DATE_FUNCDESC_DiffYears
102     {
103         String 1    // description              DiffYears
104         {
105             Text [ en-US ] = "Calculates the number of years in a specific period.";
106         };
107         String 2 // name of parameter 1         DiffYears
108         {
109             Text [ en-US ] = "Start date";
110         };
111         String 3 // description of parameter 1  DiffYears
112         {
113             Text [ en-US ] = "First day of the period";
114         };
115         String 4 // name of parameter 2         DiffYears
116         {
117             Text [ en-US ] = "End date";
118         };
119         String 5 // description of parameter 2  DiffYears
120         {
121             Text [ en-US ] = "Last day of the period";
122         };
123         String 6 // name of parameter 3         DiffYears
124         {
125             Text [ en-US ] = "Type";
126         };
127         String 7 // description of parameter 3  DiffYears
128         {
129             Text [ en-US ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar years.";
130         };
131     };
133     Resource DATE_FUNCDESC_IsLeapYear
134     {
135         String 1    // description              IsLeapYear
136         {
137             Text [ en-US ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
138         };
139         String 2 // name of parameter 1         IsLeapYear
140         {
141             Text [ en-US ] = "Date";
142         };
143         String 3 // description of parameter 1  IsLeapYear
144         {
145             Text [ en-US ] = "Any day in the desired year";
146         };
147     };
149     Resource DATE_FUNCDESC_DaysInMonth
150     {
151         String 1    // description              DaysInMonth
152         {
153             Text [ en-US ] = "Returns the number of days of the month in which the date entered occurs";
154         };
155         String 2 // name of parameter 1         DaysInMonth
156         {
157             Text [ en-US ] = "Date";
158         };
159         String 3 // description of parameter 1  DaysInMonth
160         {
161             Text [ en-US ] = "Any day in the desired month";
162         };
163     };
165     Resource DATE_FUNCDESC_DaysInYear
166     {
167         String 1    // description              DaysInYear
168         {
169             Text [ en-US ] = "Returns the number of days of the year in which the date entered occurs.";
170         };
171         String 2 // name of parameter 1         DaysInYear
172         {
173             Text [ en-US ] = "Date";
174         };
175         String 3 // description of parameter 1  DaysInYear
176         {
177             Text [ en-US ] = "Any day in the desired year";
178         };
179     };
181     Resource DATE_FUNCDESC_WeeksInYear
182     {
183         String 1    // description              WeeksInYear
184         {
185             Text [ en-US ] = "Returns the number of weeks of the year in which the date entered occurs";
186         };
187         String 2 // name of parameter 1         WeeksInYear
188         {
189             Text [ en-US ] = "Date";
190         };
191         String 3 // description of parameter 1  WeeksInYear
192         {
193             Text [ en-US ] = "Any day in the desired year";
194         };
195     };
197     Resource DATE_FUNCDESC_Rot13
198     {
199         String 1    // description              Rot13
200         {
201             Text [ en-US ] = "Encrypts or decrypts a text using the ROT13 algorithm";
202         };
203         String 2 // name of parameter 1         Rot13
204         {
205             Text [ en-US ] = "Text";
206         };
207         String 3 // description of parameter 1  Rot13
208         {
209             Text [ en-US ] = "Text to be encrypted or text already encrypted";
210         };
211     };
215 Resource RID_DATE_FUNCTION_NAMES
217     String DATE_FUNCNAME_DiffWeeks
218     {
219         Text [ en-US ] = "WEEKS";
220     };
221     String DATE_FUNCNAME_DiffMonths
222     {
223         Text [ en-US ] = "MONTHS";
224     };
225     String DATE_FUNCNAME_DiffYears
226     {
227         Text [ en-US ] = "YEARS";
228     };
229     String DATE_FUNCNAME_IsLeapYear
230     {
231         Text [ en-US ] = "ISLEAPYEAR";
232     };
233     String DATE_FUNCNAME_DaysInMonth
234     {
235         Text [ en-US ] = "DAYSINMONTH";
236     };
237     String DATE_FUNCNAME_DaysInYear
238     {
239         Text [ en-US ] = "DAYSINYEAR";
240     };
241     String DATE_FUNCNAME_WeeksInYear
242     {
243         Text [ en-US ] = "WEEKSINYEAR";
244     };
245     String DATE_FUNCNAME_Rot13
246     {
247         Text [ en-US ] = "ROT13";
248     };
252 Resource RID_DATE_DEFFUNCTION_NAMES
255     StringArray DATE_DEFFUNCNAME_DiffWeeks
256     {
257         ItemList =
258         {
259             < "WOCHEN"; >;
260             < "WEEKS"; >;
261         };
262     };
263     StringArray DATE_DEFFUNCNAME_DiffMonths
264     {
265         ItemList =
266         {
267             < "MONATE"; >;
268             < "MONTHS"; >;
269         };
270     };
271     StringArray DATE_DEFFUNCNAME_DiffYears
272     {
273         ItemList =
274         {
275             < "JAHRE"; >;
276             < "YEARS"; >;
277         };
278     };
279     StringArray DATE_DEFFUNCNAME_IsLeapYear
280     {
281         ItemList =
282         {
283             < "ISTSCHALTJAHR"; >;
284             < "ISLEAPYEAR"; >;
285         };
286     };
287     StringArray DATE_DEFFUNCNAME_DaysInMonth
288     {
289         ItemList =
290         {
291             < "TAGEIMMONAT"; >;
292             < "DAYSINMONTH"; >;
293         };
294     };
295     StringArray DATE_DEFFUNCNAME_DaysInYear
296     {
297         ItemList =
298         {
299             < "TAGEIMJAHR"; >;
300             < "DAYSINYEAR"; >;
301         };
302     };
303     StringArray DATE_DEFFUNCNAME_WeeksInYear
304     {
305         ItemList =
306         {
307             < "WOCHENIMJAHR"; >;
308             < "WEEKSINYEAR"; >;
309         };
310     };
311     StringArray DATE_DEFFUNCNAME_Rot13
312     {
313         ItemList =
314         {
315             < "ROT13"; >;
316             < "ROT13"; >;
317         };
318     };