xref: /trunk/main/sw/source/ui/utlui/initui.src (revision 09d89288a77c4c17af30e3795daa4e6c1b41f376)
18660f102SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
38660f102SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
48660f102SAndrew Rist * or more contributor license agreements.  See the NOTICE file
58660f102SAndrew Rist * distributed with this work for additional information
68660f102SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
78660f102SAndrew Rist * to you under the Apache License, Version 2.0 (the
88660f102SAndrew Rist * "License"); you may not use this file except in compliance
98660f102SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
118660f102SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
138660f102SAndrew Rist * Unless required by applicable law or agreed to in writing,
148660f102SAndrew Rist * software distributed under the License is distributed on an
158660f102SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
168660f102SAndrew Rist * KIND, either express or implied.  See the License for the
178660f102SAndrew Rist * specific language governing permissions and limitations
188660f102SAndrew Rist * under the License.
19cdf0e10cSrcweir *
208660f102SAndrew Rist *************************************************************/
218660f102SAndrew Rist
22cdf0e10cSrcweir#include "globals.hrc"
23cdf0e10cSrcweir#include "utlui.hrc"
24cdf0e10cSrcweir#include "helpid.h"
25cdf0e10cSrcweir#include "initui.hrc"
26cdf0e10cSrcweir
27cdf0e10cSrcweir/*---------------------------------------------------------------------
28*9cd2463eSmseidel    Calculator errors
29cdf0e10cSrcweir ---------------------------------------------------------------------*/
30cdf0e10cSrcweirResource RID_SW_SHELLRES
31cdf0e10cSrcweir{
32cdf0e10cSrcweir    String STR_POSTIT_PAGE
33cdf0e10cSrcweir    {
34cdf0e10cSrcweir        Text [ en-US ] = "Page" ;
35cdf0e10cSrcweir    };
36cdf0e10cSrcweir    String STR_POSTIT_LINE
37cdf0e10cSrcweir    {
38cdf0e10cSrcweir        Text [ en-US ] = "Line" ;
39cdf0e10cSrcweir    };
40cdf0e10cSrcweir    String STR_POSTIT_AUTHOR
41cdf0e10cSrcweir    {
42cdf0e10cSrcweir        Text [ en-US ] = "Author" ;
43cdf0e10cSrcweir    };
44cdf0e10cSrcweir    String STR_CALC_SYNTAX
45cdf0e10cSrcweir    {
46cdf0e10cSrcweir        Text [ en-US ] = "** Syntax Error **" ;
47cdf0e10cSrcweir    };
48cdf0e10cSrcweir    String STR_CALC_ZERODIV
49cdf0e10cSrcweir    {
50cdf0e10cSrcweir        Text [ en-US ] = "** Division by zero **" ;
51cdf0e10cSrcweir    };
52cdf0e10cSrcweir    String STR_CALC_BRACK
53cdf0e10cSrcweir    {
54cdf0e10cSrcweir        Text [ en-US ] = "** Wrong use of brackets **" ;
55cdf0e10cSrcweir    };
56cdf0e10cSrcweir    String STR_CALC_POW
57cdf0e10cSrcweir    {
58cdf0e10cSrcweir        Text [ en-US ] = "** Square function overflow **" ;
59cdf0e10cSrcweir    };
60cdf0e10cSrcweir    String STR_CALC_VARNFND
61cdf0e10cSrcweir    {
62cdf0e10cSrcweir        Text [ en-US ] = "** Variable not found **" ;
63cdf0e10cSrcweir    };
64cdf0e10cSrcweir    String STR_CALC_OVERFLOW
65cdf0e10cSrcweir    {
66cdf0e10cSrcweir        Text [ en-US ] = "** Overflow **" ;
67cdf0e10cSrcweir    };
68cdf0e10cSrcweir    String STR_CALC_WRONGTIME
69cdf0e10cSrcweir    {
70cdf0e10cSrcweir        Text [ en-US ] = "** Wrong time format **" ;
71cdf0e10cSrcweir    };
72cdf0e10cSrcweir    String STR_CALC_DEFAULT
73cdf0e10cSrcweir    {
74cdf0e10cSrcweir        Text [ en-US ] = "** Error **" ;
75cdf0e10cSrcweir    };
76cdf0e10cSrcweir    String STR_CALC_ERROR
77cdf0e10cSrcweir    {
78cdf0e10cSrcweir        Text [ en-US ] = "** Expression is faulty **" ;
79cdf0e10cSrcweir    };
80cdf0e10cSrcweir    String STR_GETREFFLD_UP
81cdf0e10cSrcweir    {
82cdf0e10cSrcweir        Text [ en-US ] = "above" ;
83cdf0e10cSrcweir    };
84cdf0e10cSrcweir    String STR_GETREFFLD_DOWN
85cdf0e10cSrcweir    {
86cdf0e10cSrcweir        Text [ en-US ] = "below" ;
87cdf0e10cSrcweir    };
88cdf0e10cSrcweir    String STR_GETREFFLD_REFITEMNOTFOUND
89cdf0e10cSrcweir    {
90cdf0e10cSrcweir        Text [ en-US ] = "Error: Reference source not found" ;
91cdf0e10cSrcweir    };
92cdf0e10cSrcweir    String STR_ALLPAGE_HEADFOOT
93cdf0e10cSrcweir    {
94cdf0e10cSrcweir        Text [ en-US ] = "All" ;
95cdf0e10cSrcweir    };
96cdf0e10cSrcweir    String STR_TEMPLATE_NONE
97cdf0e10cSrcweir    {
98cdf0e10cSrcweir        Text [ en-US ] = "None" ;
99cdf0e10cSrcweir    };
100cdf0e10cSrcweir    String STR_FIELD_FIXED
101cdf0e10cSrcweir    {
102cdf0e10cSrcweir        Text [ en-US ] = "(fixed)" ;
103cdf0e10cSrcweir    };
104cdf0e10cSrcweir    String STR_DURATION_FORMAT
105cdf0e10cSrcweir    {
106cdf0e10cSrcweir        Text [en-US] = " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6" ;
107cdf0e10cSrcweir    };
108cdf0e10cSrcweir    String STR_TOI
109cdf0e10cSrcweir    {
110cdf0e10cSrcweir        Text [ en-US ] = "Alphabetical Index" ;
111cdf0e10cSrcweir    };
112cdf0e10cSrcweir
113cdf0e10cSrcweir    String STR_TOU
114cdf0e10cSrcweir    {
115cdf0e10cSrcweir        Text [ en-US ] = "User-Defined" ;
116cdf0e10cSrcweir    };
117cdf0e10cSrcweir
118cdf0e10cSrcweir    String STR_TOC
119cdf0e10cSrcweir    {
120cdf0e10cSrcweir        Text [ en-US ] = "Table of Contents" ;
121cdf0e10cSrcweir    };
122cdf0e10cSrcweir
123cdf0e10cSrcweir    String STR_TOX_AUTH
124cdf0e10cSrcweir    {
125cdf0e10cSrcweir        Text [ en-US ] = "Bibliography" ;
126cdf0e10cSrcweir    };
127cdf0e10cSrcweir    String STR_TOX_TBL
128cdf0e10cSrcweir    {
129cdf0e10cSrcweir        Text [ en-US ] = "Index of Tables" ;
130cdf0e10cSrcweir    };
131cdf0e10cSrcweir    String STR_TOX_OBJ
132cdf0e10cSrcweir    {
133cdf0e10cSrcweir        Text [ en-US ] = "Table of Objects" ;
134cdf0e10cSrcweir    };
135cdf0e10cSrcweir    String STR_TOX_ILL
136cdf0e10cSrcweir    {
137cdf0e10cSrcweir        Text [ en-US ] = "Illustration Index" ;
138cdf0e10cSrcweir    };
139cdf0e10cSrcweir    String STR_HYPERLINK_CLICK
140cdf0e10cSrcweir    {
141cdf0e10cSrcweir        Text [ en-US ] = "%s-click to open hyperlink" ;
142cdf0e10cSrcweir    };
143cdf0e10cSrcweir
144cdf0e10cSrcweir
145cdf0e10cSrcweir    // SubType DocInfo
146cdf0e10cSrcweir    //
147cdf0e10cSrcweir    String FLD_DOCINFO_TITEL
148cdf0e10cSrcweir    {
149cdf0e10cSrcweir        Text [ en-US ] = "Title" ;
150cdf0e10cSrcweir    };
151cdf0e10cSrcweir    String FLD_DOCINFO_THEMA
152cdf0e10cSrcweir    {
153cdf0e10cSrcweir        Text [ en-US ] = "Subject" ;
154cdf0e10cSrcweir    };
155cdf0e10cSrcweir    String FLD_DOCINFO_KEYS
156cdf0e10cSrcweir    {
157cdf0e10cSrcweir        Text [ en-US ] = "Keywords" ;
158cdf0e10cSrcweir    };
159cdf0e10cSrcweir    String FLD_DOCINFO_COMMENT
160cdf0e10cSrcweir    {
161cdf0e10cSrcweir        Text [ en-US ] = "Comments" ;
162cdf0e10cSrcweir    };
163cdf0e10cSrcweir    String FLD_DOCINFO_CREATE
164cdf0e10cSrcweir    {
165cdf0e10cSrcweir        Text [ en-US ] = "Created" ;
166cdf0e10cSrcweir    };
167cdf0e10cSrcweir    String FLD_DOCINFO_CHANGE
168cdf0e10cSrcweir    {
169cdf0e10cSrcweir        Text [ en-US ] = "Modified" ;
170cdf0e10cSrcweir    };
171cdf0e10cSrcweir    String FLD_DOCINFO_PRINT
172cdf0e10cSrcweir    {
173cdf0e10cSrcweir        Text [ en-US ] = "Last printed" ;
174cdf0e10cSrcweir    };
175cdf0e10cSrcweir    String FLD_DOCINFO_DOCNO
176cdf0e10cSrcweir    {
177cdf0e10cSrcweir        Text [ en-US ] = "Revision number" ;
178cdf0e10cSrcweir    };
179cdf0e10cSrcweir    String FLD_DOCINFO_EDIT
180cdf0e10cSrcweir    {
181cdf0e10cSrcweir        Text [ en-US ] = "Total editing time" ;
182cdf0e10cSrcweir    };
183cdf0e10cSrcweir
184cdf0e10cSrcweir    String STR_PAGEDESC_NAME
185cdf0e10cSrcweir    {
186cdf0e10cSrcweir        Text [ en-US ] = "Convert $(ARG1)" ;
187cdf0e10cSrcweir    };
188cdf0e10cSrcweir    String STR_PAGEDESC_FIRSTNAME
189cdf0e10cSrcweir    {
190cdf0e10cSrcweir        Text [ en-US ] = "First convert $(ARG1)" ;
191cdf0e10cSrcweir    };
192cdf0e10cSrcweir    String STR_PAGEDESC_FOLLOWNAME
193cdf0e10cSrcweir    {
194cdf0e10cSrcweir        Text [ en-US ] = "Next convert $(ARG1)" ;
195cdf0e10cSrcweir    };
196cdf0e10cSrcweir};
197cdf0e10cSrcweir
198cdf0e10cSrcweirString STR_AUTH_TYPE_ARTICLE
199cdf0e10cSrcweir{
200cdf0e10cSrcweir    Text [ en-US ] = "Article" ;
201cdf0e10cSrcweir};
202cdf0e10cSrcweirString STR_AUTH_TYPE_BOOK
203cdf0e10cSrcweir{
204cdf0e10cSrcweir    Text [ en-US ] = "Book" ;
205cdf0e10cSrcweir};
206cdf0e10cSrcweirString STR_AUTH_TYPE_BOOKLET
207cdf0e10cSrcweir{
208cdf0e10cSrcweir    Text [ en-US ] = "Brochures" ;
209cdf0e10cSrcweir};
210cdf0e10cSrcweirString STR_AUTH_TYPE_CONFERENCE
211cdf0e10cSrcweir{
212cdf0e10cSrcweir    Text [ en-US ] = "Conference proceedings" ;
213cdf0e10cSrcweir};
214cdf0e10cSrcweirString STR_AUTH_TYPE_INBOOK
215cdf0e10cSrcweir{
216cdf0e10cSrcweir    Text [ en-US ] = "Book excerpt" ;
217cdf0e10cSrcweir};
218cdf0e10cSrcweirString STR_AUTH_TYPE_INCOLLECTION
219cdf0e10cSrcweir{
220cdf0e10cSrcweir    Text [ en-US ] = "Book excerpt with title" ;
221cdf0e10cSrcweir};
222cdf0e10cSrcweirString STR_AUTH_TYPE_INPROCEEDINGS
223cdf0e10cSrcweir{
224cdf0e10cSrcweir    Text [ en-US ] = "Conference proceedings" ;
225cdf0e10cSrcweir};
226cdf0e10cSrcweirString STR_AUTH_TYPE_JOURNAL
227cdf0e10cSrcweir{
228cdf0e10cSrcweir    Text [ en-US ] = "Journal" ;
229cdf0e10cSrcweir};
230cdf0e10cSrcweirString STR_AUTH_TYPE_MANUAL
231cdf0e10cSrcweir{
232cdf0e10cSrcweir    Text [ en-US ] = "Techn. documentation" ;
233cdf0e10cSrcweir};
234cdf0e10cSrcweirString STR_AUTH_TYPE_MASTERSTHESIS
235cdf0e10cSrcweir{
236cdf0e10cSrcweir    Text [ en-US ] = "Thesis" ;
237cdf0e10cSrcweir};
238cdf0e10cSrcweirString STR_AUTH_TYPE_MISC
239cdf0e10cSrcweir{
240cdf0e10cSrcweir    Text [ en-US ] = "Miscellaneous" ;
241cdf0e10cSrcweir};
242cdf0e10cSrcweirString STR_AUTH_TYPE_PHDTHESIS
243cdf0e10cSrcweir{
244cdf0e10cSrcweir    Text [ en-US ] = "Dissertation" ;
245cdf0e10cSrcweir};
246cdf0e10cSrcweirString STR_AUTH_TYPE_PROCEEDINGS
247cdf0e10cSrcweir{
248cdf0e10cSrcweir    Text [ en-US ] = "Conference proceedings" ;
249cdf0e10cSrcweir};
250cdf0e10cSrcweirString STR_AUTH_TYPE_TECHREPORT
251cdf0e10cSrcweir{
252cdf0e10cSrcweir    Text [ en-US ] = "Research report" ;
253cdf0e10cSrcweir};
254cdf0e10cSrcweirString STR_AUTH_TYPE_UNPUBLISHED
255cdf0e10cSrcweir{
256cdf0e10cSrcweir    Text [ en-US ] = "Unpublished" ;
257cdf0e10cSrcweir};
258cdf0e10cSrcweirString STR_AUTH_TYPE_EMAIL
259cdf0e10cSrcweir{
260cdf0e10cSrcweir    Text [ en-US ] = "e-mail" ;
261cdf0e10cSrcweir};
262cdf0e10cSrcweirString STR_AUTH_TYPE_WWW
263cdf0e10cSrcweir{
264cdf0e10cSrcweir    Text [ en-US ] = "WWW document" ;
265cdf0e10cSrcweir};
266cdf0e10cSrcweirString STR_AUTH_TYPE_CUSTOM1
267cdf0e10cSrcweir{
268cdf0e10cSrcweir    Text [ en-US ] = "User-defined1" ;
269cdf0e10cSrcweir};
270cdf0e10cSrcweirString STR_AUTH_TYPE_CUSTOM2
271cdf0e10cSrcweir{
272cdf0e10cSrcweir    Text [ en-US ] = "User-defined2" ;
273cdf0e10cSrcweir};
274cdf0e10cSrcweirString STR_AUTH_TYPE_CUSTOM3
275cdf0e10cSrcweir{
276cdf0e10cSrcweir    Text [ en-US ] = "User-defined3" ;
277cdf0e10cSrcweir};
278cdf0e10cSrcweirString STR_AUTH_TYPE_CUSTOM4
279cdf0e10cSrcweir{
280cdf0e10cSrcweir    Text [ en-US ] = "User-defined4" ;
281cdf0e10cSrcweir};
282cdf0e10cSrcweirString STR_AUTH_TYPE_CUSTOM5
283cdf0e10cSrcweir{
284cdf0e10cSrcweir    Text [ en-US ] = "User-defined5" ;
285cdf0e10cSrcweir};
286cdf0e10cSrcweir
287cdf0e10cSrcweirString STR_AUTH_FIELD_IDENTIFIER
288cdf0e10cSrcweir{
289cdf0e10cSrcweir    Text [ en-US ] = "Short name" ;
290cdf0e10cSrcweir};
291cdf0e10cSrcweirString STR_AUTH_FIELD_AUTHORITY_TYPE
292cdf0e10cSrcweir{
293cdf0e10cSrcweir    Text [ en-US ] = "Type" ;
294cdf0e10cSrcweir};
295cdf0e10cSrcweirString STR_AUTH_FIELD_ADDRESS
296cdf0e10cSrcweir{
297cdf0e10cSrcweir    Text [ en-US ] = "Address" ;
298cdf0e10cSrcweir};
299cdf0e10cSrcweirString STR_AUTH_FIELD_ANNOTE
300cdf0e10cSrcweir{
301cdf0e10cSrcweir    Text [ en-US ] = "Annotation" ;
302cdf0e10cSrcweir};
303cdf0e10cSrcweirString STR_AUTH_FIELD_AUTHOR
304cdf0e10cSrcweir{
305cdf0e10cSrcweir    Text [ en-US ] = "Author(s)" ;
306cdf0e10cSrcweir};
307cdf0e10cSrcweirString STR_AUTH_FIELD_BOOKTITLE
308cdf0e10cSrcweir{
309cdf0e10cSrcweir    Text [ en-US ] = "Book title" ;
310cdf0e10cSrcweir};
311cdf0e10cSrcweirString STR_AUTH_FIELD_CHAPTER
312cdf0e10cSrcweir{
313cdf0e10cSrcweir    Text [ en-US ] = "Chapter" ;
314cdf0e10cSrcweir};
315cdf0e10cSrcweirString STR_AUTH_FIELD_EDITION
316cdf0e10cSrcweir{
317cdf0e10cSrcweir    Text [ en-US ] = "Edition" ;
318cdf0e10cSrcweir};
319cdf0e10cSrcweirString STR_AUTH_FIELD_EDITOR
320cdf0e10cSrcweir{
321cdf0e10cSrcweir    Text [ en-US ] = "Editor" ;
322cdf0e10cSrcweir};
323cdf0e10cSrcweirString STR_AUTH_FIELD_HOWPUBLISHED
324cdf0e10cSrcweir{
325cdf0e10cSrcweir    Text [ en-US ] = "Publication type" ;
326cdf0e10cSrcweir};
327cdf0e10cSrcweirString STR_AUTH_FIELD_INSTITUTION
328cdf0e10cSrcweir{
329cdf0e10cSrcweir    Text [ en-US ] = "Institution" ;
330cdf0e10cSrcweir};
331cdf0e10cSrcweirString STR_AUTH_FIELD_JOURNAL
332cdf0e10cSrcweir{
333cdf0e10cSrcweir    Text [ en-US ] = "Journal" ;
334cdf0e10cSrcweir};
335cdf0e10cSrcweirString STR_AUTH_FIELD_MONTH
336cdf0e10cSrcweir{
337cdf0e10cSrcweir    Text [ en-US ] = "Month" ;
338cdf0e10cSrcweir};
339cdf0e10cSrcweirString STR_AUTH_FIELD_NOTE
340cdf0e10cSrcweir{
341cdf0e10cSrcweir    Text [ en-US ] = "Note" ;
342cdf0e10cSrcweir};
343cdf0e10cSrcweirString STR_AUTH_FIELD_NUMBER
344cdf0e10cSrcweir{
345cdf0e10cSrcweir    Text [ en-US ] = "Number" ;
346cdf0e10cSrcweir};
347cdf0e10cSrcweirString STR_AUTH_FIELD_ORGANIZATIONS
348cdf0e10cSrcweir{
349cdf0e10cSrcweir    Text [ en-US ] = "Organization" ;
350cdf0e10cSrcweir};
351cdf0e10cSrcweirString STR_AUTH_FIELD_PAGES
352cdf0e10cSrcweir{
353cdf0e10cSrcweir    Text [ en-US ] = "Page(s)" ;
354cdf0e10cSrcweir};
355cdf0e10cSrcweirString STR_AUTH_FIELD_PUBLISHER
356cdf0e10cSrcweir{
357cdf0e10cSrcweir    Text [ en-US ] = "Publisher" ;
358cdf0e10cSrcweir};
359cdf0e10cSrcweirString STR_AUTH_FIELD_SCHOOL
360cdf0e10cSrcweir{
361cdf0e10cSrcweir    Text [ en-US ] = "University" ;
362cdf0e10cSrcweir};
363cdf0e10cSrcweirString STR_AUTH_FIELD_SERIES
364cdf0e10cSrcweir{
365cdf0e10cSrcweir    Text [ en-US ] = "Series" ;
366cdf0e10cSrcweir};
367cdf0e10cSrcweirString STR_AUTH_FIELD_TITLE
368cdf0e10cSrcweir{
369cdf0e10cSrcweir    Text [ en-US ] = "Title" ;
370cdf0e10cSrcweir};
371cdf0e10cSrcweirString STR_AUTH_FIELD_TYPE
372cdf0e10cSrcweir{
373cdf0e10cSrcweir    Text [ en-US ] = "Type of report" ;
374cdf0e10cSrcweir};
375cdf0e10cSrcweirString STR_AUTH_FIELD_VOLUME
376cdf0e10cSrcweir{
377cdf0e10cSrcweir    Text [ en-US ] = "Volume" ;
378cdf0e10cSrcweir};
379cdf0e10cSrcweirString STR_AUTH_FIELD_YEAR
380cdf0e10cSrcweir{
381cdf0e10cSrcweir    Text [ en-US ] = "Year" ;
382cdf0e10cSrcweir};
383cdf0e10cSrcweirString STR_AUTH_FIELD_URL
384cdf0e10cSrcweir{
385cdf0e10cSrcweir    Text [ en-US ] = "URL" ;
386cdf0e10cSrcweir};
387cdf0e10cSrcweirString STR_AUTH_FIELD_CUSTOM1
388cdf0e10cSrcweir{
389cdf0e10cSrcweir    Text [ en-US ] = "User-defined1" ;
390cdf0e10cSrcweir};
391cdf0e10cSrcweirString STR_AUTH_FIELD_CUSTOM2
392cdf0e10cSrcweir{
393cdf0e10cSrcweir    Text [ en-US ] = "User-defined2" ;
394cdf0e10cSrcweir};
395cdf0e10cSrcweirString STR_AUTH_FIELD_CUSTOM3
396cdf0e10cSrcweir{
397cdf0e10cSrcweir    Text [ en-US ] = "User-defined3" ;
398cdf0e10cSrcweir};
399cdf0e10cSrcweirString STR_AUTH_FIELD_CUSTOM4
400cdf0e10cSrcweir{
401cdf0e10cSrcweir    Text [ en-US ] = "User-defined4" ;
402cdf0e10cSrcweir};
403cdf0e10cSrcweirString STR_AUTH_FIELD_CUSTOM5
404cdf0e10cSrcweir{
405cdf0e10cSrcweir    Text [ en-US ] = "User-defined5" ;
406cdf0e10cSrcweir};
407cdf0e10cSrcweirString STR_AUTH_FIELD_ISBN
408cdf0e10cSrcweir{
409cdf0e10cSrcweir    Text [ en-US ] = "ISBN" ;
410cdf0e10cSrcweir};
411cdf0e10cSrcweir
412*9cd2463eSmseidel// ********************************************************************** EOF
413