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