xref: /trunk/main/wizards/source/schedule/schedule.src (revision 872b2513907e4389be70e2d9b563f47e0d2c5a9f)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24// Dialog labels start at 1000
25#define dlgCalTitle         1000
26#define dlgCalTitleBack     1001
27#define dlgCalTitleOwnData  1002
28#define dlgSchdlTitle       1003
29#define dlgOK               1004
30#define dlgCancel           1005
31#define dlgCalFrameOption   1006
32#define dlgCalOptionYear    1007
33#define dlgCalOptionMonth   1008
34#define dlgSchdlDescription 1009
35#define dlgSchdlCountry     1010
36#define dlgTime             1011
37#define dlgYear             1012
38#define dlgCalMonth         1013
39#define dlgSpecificBankholidays 1014
40#define dlgCalOwnData       1015
41#define dlgCalInsert        1016
42#define dlgCalDelete        1017
43#define dlgCalNewEvent      1018
44#define dlgCalEvent         1019
45#define dlgCalEventOnce     1020
46#define dlgCalEventDay      1021
47#define dlgCalEventMonth    1022
48#define dlgCalEventYear     1023
49
50// Bitmap file is 1099
51#define dlgBitmapFile   1099
52
53// Names of states start at 1100
54#define dlgState    1100
55
56// Months start at 1200
57#define dlgMonth    1200
58
59// Messages start at 1300
60#define msgCalErrorTitle    1300
61#define msgCalError         1301
62#define msgCalRemoveTitle   1302
63#define msgCalRemove        1303
64
65// Styles start at 1400
66#define stlWorkday  1400
67#define stlWeekend  1401
68
69// Sheet names start at 1410
70#define nameCalYear     1410
71#define nameCalMonth    1411
72
73#define sProgress   1500
74
75// --------------------------------------------------------------------
76
77String dlgCalTitle
78{
79Text [ en-US ] = "%PRODUCTNAME Calendar" ;
80};
81
82String dlgCalTitleBack
83{
84Text [ en-US ] = "Back" ;
85};
86
87String dlgCalTitleOwnData
88{
89Text [ en-US ] = "Personal Data" ;
90};
91
92String dlgSchdlTitle
93{
94Text [ en-US ] = "Add Holidays to Calendar" ;
95};
96
97String dlgOK
98{
99Text [ en-US ] = "Create" ;
100};
101
102String dlgCancel
103{
104Text [ en-US ] = "Cancel" ;
105};
106
107String dlgCalFrameOption
108{
109Text [ en-US ] = "Calendar" ;
110};
111
112String dlgCalOptionYear
113{
114Text [ en-US ] = "~Year Overview" ;
115};
116
117String dlgCalOptionMonth
118{
119Text [ en-US ] = "~Month" ;
120};
121
122String dlgSchdlDescription
123{
124Text [ en-US ] = "Add holidays for" ;
125};
126
127String dlgSchdlCountry
128{
129Text [ en-US ] = "USA" ;
130};
131
132String dlgTime
133{
134Text [ en-US ] = "Time Frame" ;
135};
136
137String dlgYear
138{
139Text [ en-US ] = "Year" ;
140};
141
142String dlgCalMonth
143{
144Text [ en-US ] = "Month" ;
145};
146
147String dlgSpecificBankholidays
148{
149Text [ en-US ] = "-" ;
150};
151
152String dlgCalOwnData
153{
154Text [ en-US ] = "Personal Data" ;
155};
156
157String dlgCalInsert
158{
159Text [ en-US ] = "~Insert" ;
160};
161
162String dlgCalDelete
163{
164Text [ en-US ] = "~Delete" ;
165};
166
167String dlgCalNewEvent
168{
169Text [ en-US ] = "New Event" ;
170};
171
172String dlgCalEvent
173{
174Text [ en-US ] = "Event" ;
175};
176
177String dlgCalEventOnce
178{
179Text [ en-US ] = "One-Time" ;
180};
181
182String dlgCalEventDay
183{
184Text [ en-US ] = "Day" ;
185};
186
187String dlgCalEventMonth
188{
189Text [ en-US ] = "Month" ;
190};
191
192String dlgCalEventYear
193{
194Text [ en-US ] = "Year" ;
195};
196
197// --------------------------------------------------------------------
198
199String dlgBitmapFile
200{
201Text [ en-US ] = "usa.bmp" ;
202
203};
204
205// --------------------------------------------------------------------
206
207String dlgState
208{
209Text [ en-US ] = "Public holidays" ;
210};
211
212
213// --------------------------------------------------------------------
214
215String dlgMonth
216{
217Text [ en-US ] = "January" ;
218};
219
220String dlgMonth+1
221{
222Text [ en-US ] = "February" ;
223};
224
225String dlgMonth+2
226{
227Text [ en-US ] = "March" ;
228};
229
230String dlgMonth+3
231{
232Text [ en-US ] = "April" ;
233};
234
235String dlgMonth+4
236{
237Text [ en-US ] = "May" ;
238};
239
240String dlgMonth+5
241{
242Text [ en-US ] = "June" ;
243};
244
245String dlgMonth+6
246{
247Text [ en-US ] = "July" ;
248};
249
250String dlgMonth+7
251{
252Text [ en-US ] = "August" ;
253};
254
255String dlgMonth+8
256{
257Text [ en-US ] = "September" ;
258};
259
260String dlgMonth+9
261{
262Text [ en-US ] = "October" ;
263};
264
265String dlgMonth+10
266{
267Text [ en-US ] = "November" ;
268};
269
270String dlgMonth+11
271{
272Text [ en-US ] = "December" ;
273};
274
275// --------------------------------------------------------------------
276
277String msgCalErrorTitle
278{
279Text [ en-US ] = "Yearly / Monthly Calendar" ;
280};
281
282String msgCalError
283{
284Text [ en-US ] = "An error occurred while creating the calendar." ;
285};
286
287String msgCalRemoveTitle
288{
289Text [ en-US ] = "Delete event entries" ;
290};
291
292String msgCalRemove
293{
294Text [ en-US ] = "Delete the selected entries?" ;
295};
296
297// --------------------------------------------------------------------
298
299String stlWorkday
300{
301Text [ en-US ] = "Workweek" ;
302};
303
304String stlWeekend
305{
306Text [ en-US ] = "Weekend" ;
307};
308
309// --------------------------------------------------------------------
310
311String nameCalYear
312{
313Text [ en-US ] = "Calendar" ;
314};
315
316String nameCalMonth
317{
318Text [ en-US ] = "Month" ;
319};
320
321
322
323String sProgress
324{
325Text [ en-US ] = "Progress:" ;
326};
327
328// ********************************************************************** EOF
329