xref: /AOO41X/main/sw/source/ui/app/app.src (revision e1372f43f9d79fcf0f98f13efa0438f59fe72ad1)
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
228660f102SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir
25cdf0e10cSrcweir
26cdf0e10cSrcweir#include <svl/style.hrc>
27cdf0e10cSrcweir#include <sfx2/sfx.hrc>
28cdf0e10cSrcweir#include <svx/dialogs.hrc>
29cdf0e10cSrcweir#include <svx/globlmn.hrc>
30cdf0e10cSrcweir#include "cmdid.h"
31cdf0e10cSrcweir#include "globals.hrc"
32cdf0e10cSrcweir#include "app.hrc"
33cdf0e10cSrcweir#include "statstr.hrc"
34cdf0e10cSrcweir#include "swstyle.h"
35cdf0e10cSrcweir#include "comcore.hrc"
36cdf0e10cSrcweir#include "shells.hrc"
37cdf0e10cSrcweir#include "helpid.h"
38cdf0e10cSrcweir
39cdf0e10cSrcweirString RID_SW_NAME
40cdf0e10cSrcweir{
41cdf0e10cSrcweir	Text = "StarWriter" ;
42cdf0e10cSrcweir};
43cdf0e10cSrcweir
44cdf0e10cSrcweirString STR_PRINT_MERGE_MACRO
45cdf0e10cSrcweir{
46cdf0e10cSrcweir	Text [ en-US ] = "Print form letters" ;
47cdf0e10cSrcweir};
48cdf0e10cSrcweir
49cdf0e10cSrcweirString STR_PAGE_COUNT_MACRO
50cdf0e10cSrcweir{
51cdf0e10cSrcweir	Text [ en-US ] = "Changing the page count" ;
52cdf0e10cSrcweir};
53cdf0e10cSrcweir
54cdf0e10cSrcweir // Image-Liste ----------------------------------------------------------------
55cdf0e10cSrcweir // Don't use this image list for normal toolbar images. We have now our commandimagelist
56cdf0e10cSrcweir // folder in default_images. This list is now only used for special toolboxes that are
57cdf0e10cSrcweir // used in floating windows.
58cdf0e10cSrcweir
59cdf0e10cSrcweir#define IMAGELIST_AND_COUNT 			\
60cdf0e10cSrcweir	IdList = { 							\
61cdf0e10cSrcweir		FN_FORMULA_CALC 				;\
62cdf0e10cSrcweir		FN_FORMULA_CANCEL 				;\
63cdf0e10cSrcweir 		FN_FORMULA_APPLY  				;\
64cdf0e10cSrcweir		};								\
65cdf0e10cSrcweir	IdCount = { 						\
66cdf0e10cSrcweir        3;                              \
67cdf0e10cSrcweir	};
68cdf0e10cSrcweir
69cdf0e10cSrcweirImageList RID_DEFAULTIMAGELIST_SC
70cdf0e10cSrcweir{
71cdf0e10cSrcweir    Prefix = "sc";
72cdf0e10cSrcweir    MaskColor = IMAGE_MASK_COLOR ;
73cdf0e10cSrcweir	IMAGELIST_AND_COUNT
74cdf0e10cSrcweir};
75cdf0e10cSrcweirImageList RID_DEFAULTIMAGELIST_LC
76cdf0e10cSrcweir{
77cdf0e10cSrcweir    Prefix = "lc";
78cdf0e10cSrcweir    MaskColor = IMAGE_MASK_COLOR ;
79cdf0e10cSrcweir	IMAGELIST_AND_COUNT
80cdf0e10cSrcweir};
81cdf0e10cSrcweir
82cdf0e10cSrcweirImageList RID_DEFAULTIMAGELIST_SCH
83cdf0e10cSrcweir{
84cdf0e10cSrcweir    Prefix = "sch";
85cdf0e10cSrcweir    MaskColor = IMAGE_MASK_COLOR ;
86cdf0e10cSrcweir    IMAGELIST_AND_COUNT
87cdf0e10cSrcweir};
88cdf0e10cSrcweirImageList RID_DEFAULTIMAGELIST_LCH
89cdf0e10cSrcweir{
90cdf0e10cSrcweir    Prefix = "lch";
91cdf0e10cSrcweir    MaskColor = IMAGE_MASK_COLOR ;
92cdf0e10cSrcweir    IMAGELIST_AND_COUNT
93cdf0e10cSrcweir};
94cdf0e10cSrcweir
95cdf0e10cSrcweir// Vorlagen
96cdf0e10cSrcweir#define STYLE_IMAGE_LISTEF \
97cdf0e10cSrcweir    MaskColor = IMAGE_MASK_COLOR ; \
98cdf0e10cSrcweir	IdList = \
99cdf0e10cSrcweir	{ \
100cdf0e10cSrcweir		1; 2; 3; 4; 5; \
101cdf0e10cSrcweir	}; \
102cdf0e10cSrcweir	IdCount = 5;
103cdf0e10cSrcweir
104cdf0e10cSrcweirSfxStyleFamilies DLG_STYLE_DESIGNER
105cdf0e10cSrcweir{
106cdf0e10cSrcweir	StyleFamilyList =
107cdf0e10cSrcweir	{
108cdf0e10cSrcweir		SfxStyleFamilyItem
109cdf0e10cSrcweir		{
110cdf0e10cSrcweir            StyleFamily = SFX_STYLE_FAMILY_PARA ;
111430a148eSJan Iversen			Text [ en-US ] = "Paragraph Styles" ;
112cdf0e10cSrcweir    	FilterList [ en-US ] =
113cdf0e10cSrcweir		{
114cdf0e10cSrcweir		 < "All Styles" ; SFXSTYLEBIT_ALL ; > ;
115cdf0e10cSrcweir			< "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
116cdf0e10cSrcweir			< "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
117cdf0e10cSrcweir			< "Automatic" ; SFXSTYLEBIT_AUTO ; > ;
118cdf0e10cSrcweir			< "Text Styles" ; SWSTYLEBIT_TEXT ; > ;
119cdf0e10cSrcweir			< "Chapter Styles" ; SWSTYLEBIT_CHAPTER ; > ;
120cdf0e10cSrcweir			< "List Styles" ; SWSTYLEBIT_LIST ; > ;
121cdf0e10cSrcweir			< "Index Styles" ; SWSTYLEBIT_IDX ; > ;
122cdf0e10cSrcweir			< "Special Styles" ; SWSTYLEBIT_EXTRA ; > ;
123cdf0e10cSrcweir			< "HTML Styles" ; SWSTYLEBIT_HTML ; > ;
124cdf0e10cSrcweir			< "Conditional Styles" ; SWSTYLEBIT_CONDCOLL ; > ;
125cdf0e10cSrcweir		};
126cdf0e10cSrcweir	};
127cdf0e10cSrcweir		SfxStyleFamilyItem
128cdf0e10cSrcweir		{
129cdf0e10cSrcweir			StyleFamily = SFX_STYLE_FAMILY_CHAR ;
130430a148eSJan Iversen			Text [ en-US ] = "Character Styles" ;
131cdf0e10cSrcweir			FilterList [ en-US ] =
132cdf0e10cSrcweir			{
133cdf0e10cSrcweir				< "All" ; SFXSTYLEBIT_ALL ; > ;
134cdf0e10cSrcweir				< "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
135cdf0e10cSrcweir				< "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
136cdf0e10cSrcweir			};
137cdf0e10cSrcweir	};
138cdf0e10cSrcweir		SfxStyleFamilyItem
139cdf0e10cSrcweir		{
140cdf0e10cSrcweir			StyleFamily = SFX_STYLE_FAMILY_FRAME ;
141430a148eSJan Iversen			Text [ en-US ] = "Frame Styles" ;
142cdf0e10cSrcweir			FilterList [ en-US ] =
143cdf0e10cSrcweir			{
144cdf0e10cSrcweir				< "All" ; SFXSTYLEBIT_ALL ; > ;
145cdf0e10cSrcweir				< "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
146cdf0e10cSrcweir				< "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
147cdf0e10cSrcweir			};
148cdf0e10cSrcweir	};
149cdf0e10cSrcweir		SfxStyleFamilyItem
150cdf0e10cSrcweir		{
151cdf0e10cSrcweir			StyleFamily = SFX_STYLE_FAMILY_PAGE ;
152430a148eSJan Iversen			Text [ en-US ] = "Page Styles" ;
153cdf0e10cSrcweir			FilterList [ en-US ] =
154cdf0e10cSrcweir			{
155cdf0e10cSrcweir				< "All" ; SFXSTYLEBIT_ALL ; > ;
156cdf0e10cSrcweir				< "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
157cdf0e10cSrcweir				< "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
158cdf0e10cSrcweir			};
159cdf0e10cSrcweir	};
160cdf0e10cSrcweir		SfxStyleFamilyItem
161cdf0e10cSrcweir		{
162cdf0e10cSrcweir			StyleFamily = SFX_STYLE_FAMILY_PSEUDO ;
163430a148eSJan Iversen			Text [ en-US ] = "List Styles" ;
164cdf0e10cSrcweir			FilterList [ en-US ] =
165cdf0e10cSrcweir			{
166cdf0e10cSrcweir				< "All" ; SFXSTYLEBIT_ALL ; > ;
167cdf0e10cSrcweir				< "Applied Styles" ; SFXSTYLEBIT_USED ; > ;
168cdf0e10cSrcweir				< "Custom Styles" ; SFXSTYLEBIT_USERDEF ; > ;
169cdf0e10cSrcweir			};
170cdf0e10cSrcweir	};
171cdf0e10cSrcweir	};
172cdf0e10cSrcweir
173cdf0e10cSrcweir	ImageList 1	// == BMP_COLOR_NORMAL + 1
174cdf0e10cSrcweir	{
175cdf0e10cSrcweir        Prefix = "sf";
176cdf0e10cSrcweir		STYLE_IMAGE_LISTEF
177cdf0e10cSrcweir	};
178cdf0e10cSrcweir	ImageList 2	// == BMP_COLOR_HIGHCONTRAST + 1
179cdf0e10cSrcweir	{
180cdf0e10cSrcweir        Prefix = "sfh";
181cdf0e10cSrcweir		STYLE_IMAGE_LISTEF
182cdf0e10cSrcweir	};
183cdf0e10cSrcweir};
184cdf0e10cSrcweir
185cdf0e10cSrcweir
186cdf0e10cSrcweir
187cdf0e10cSrcweir // Default Bitmap fuer Toolbox
188*e1372f43SmseidelBITMAP BMP_FEHLT { FILE = "x.png" ; };
189cdf0e10cSrcweir // Bitmap fuer die NumerierungsVorlagen im Organizer
190*e1372f43SmseidelBitmap BMP_STYLES_FAMILY_NUM { File = "styfamnu.png" ; };
191*e1372f43SmseidelBitmap BMP_STYLES_FAMILY_NUM_HC { File = "styfamnu_h.png" ; };
192cdf0e10cSrcweir
193cdf0e10cSrcweirString STR_ENV_TITLE
194cdf0e10cSrcweir{
195cdf0e10cSrcweir	Text [ en-US ] = "Envelope" ;
196cdf0e10cSrcweir};
197cdf0e10cSrcweir
198cdf0e10cSrcweirString STR_LAB_TITLE
199cdf0e10cSrcweir{
200cdf0e10cSrcweir	Text [ en-US ] = "Labels" ;
201cdf0e10cSrcweir};
202cdf0e10cSrcweir
203cdf0e10cSrcweir // ShortName!!!
204cdf0e10cSrcweirString STR_HUMAN_SWDOC_NAME
205cdf0e10cSrcweir{
206cdf0e10cSrcweir	Text [ en-US ] = "Text" ;
207cdf0e10cSrcweir};
208cdf0e10cSrcweir
209cdf0e10cSrcweirString STR_WRITER_DOCUMENT_FULLTYPE
210cdf0e10cSrcweir{
211cdf0e10cSrcweir    Text [ en-US ] = "%PRODUCTNAME %PRODUCTVERSION Text Document";
212cdf0e10cSrcweir};
213cdf0e10cSrcweir
214cdf0e10cSrcweir
215cdf0e10cSrcweirString STR_CANTOPEN
216cdf0e10cSrcweir{
217cdf0e10cSrcweir	Text [ en-US ] = "Cannot open document." ;
218cdf0e10cSrcweir};
219cdf0e10cSrcweir
220cdf0e10cSrcweirString STR_CANTCREATE
221cdf0e10cSrcweir{
222cdf0e10cSrcweir	Text [ en-US ] = "Can't create document.";
223cdf0e10cSrcweir};
224cdf0e10cSrcweirString STR_DLLNOTFOUND
225cdf0e10cSrcweir{
226cdf0e10cSrcweir	Text [ en-US ] = "Filter not found." ;
227cdf0e10cSrcweir};
228cdf0e10cSrcweir
229cdf0e10cSrcweir
230cdf0e10cSrcweirString STR_UNBENANNT
231cdf0e10cSrcweir{
232cdf0e10cSrcweir	Text [ en-US ] = "Untitled" ;
233cdf0e10cSrcweir};
234cdf0e10cSrcweir
235cdf0e10cSrcweir
236cdf0e10cSrcweirString STR_LOAD_GLOBAL_DOC
237cdf0e10cSrcweir{
238cdf0e10cSrcweir	Text [ en-US ] = "Name and Path of Master Document" ;
239cdf0e10cSrcweir};
240cdf0e10cSrcweir
241cdf0e10cSrcweirString STR_LOAD_HTML_DOC
242cdf0e10cSrcweir{
243cdf0e10cSrcweir	Text [ en-US ] = "Name and Path of the HTML Document" ;
244cdf0e10cSrcweir};
245cdf0e10cSrcweir
246cdf0e10cSrcweirInfoBox MSG_ERROR_SEND_MAIL
247cdf0e10cSrcweir{
248cdf0e10cSrcweir	BUTTONS = WB_OK ;
249cdf0e10cSrcweir	DEFBUTTON = WB_DEF_OK ;
250cdf0e10cSrcweir	Message [ en-US ] = "Error sending mail." ;
251cdf0e10cSrcweir};
252cdf0e10cSrcweirInfoBox MSG_ERROR_PASSWD
253cdf0e10cSrcweir{
254cdf0e10cSrcweir	BUTTONS = WB_OK ;
255cdf0e10cSrcweir	DEFBUTTON = WB_DEF_OK ;
256cdf0e10cSrcweir	Message [ en-US ] = "Invalid password" ;
257cdf0e10cSrcweir};
258cdf0e10cSrcweir
259cdf0e10cSrcweir/*
260cdf0e10cSrcweir * auskommentiert, da die Toolbox z. Zt. nicht aus der Resource
261cdf0e10cSrcweir * geladen werden kann
262cdf0e10cSrcweirWindow WIN_TOOLBOX {
263cdf0e10cSrcweir	   "Bearbeitung von Text, Rahmen, Grafik, Tabellen oder "
264cdf0e10cSrcweir	   "Numerierungen.";
265cdf0e10cSrcweirHelpText [ en-US ] = "The objectbar contains, depending on your current "
266cdf0e10cSrcweir			"working context, buttons for the editing of text, "
267cdf0e10cSrcweir			"frames, graphics, tables or numberings.";
268cdf0e10cSrcweir	OUTPUTSIZE = TRUE;
269cdf0e10cSrcweir	BORDER = TRUE;
270cdf0e10cSrcweir	Size = (28,27);
271cdf0e10cSrcweir};
272cdf0e10cSrcweir */
273cdf0e10cSrcweir
274cdf0e10cSrcweirString STR_FMT_STD
275cdf0e10cSrcweir{
276cdf0e10cSrcweir	Text [ en-US ] = "(none)" ;
277cdf0e10cSrcweir};
278cdf0e10cSrcweir
279cdf0e10cSrcweirString STR_DOC_STAT
280cdf0e10cSrcweir{
281cdf0e10cSrcweir	Text [ en-US ] = "Statistics" ;
282cdf0e10cSrcweir};
283cdf0e10cSrcweir
284cdf0e10cSrcweir // ----------------------------
285cdf0e10cSrcweir // Statusleisten-Ueberschriften
286cdf0e10cSrcweir // ----------------------------
287cdf0e10cSrcweir
288cdf0e10cSrcweirString STR_STATSTR_W4WREAD
289cdf0e10cSrcweir{
290cdf0e10cSrcweir	Text [ en-US ] = "Importing document..." ;
291cdf0e10cSrcweir};
292cdf0e10cSrcweir
293cdf0e10cSrcweirString STR_STATSTR_W4WWRITE
294cdf0e10cSrcweir{
295cdf0e10cSrcweir	Text [ en-US ] = "Exporting document..." ;
296cdf0e10cSrcweir};
297cdf0e10cSrcweir
298cdf0e10cSrcweirString STR_STATSTR_SWGREAD
299cdf0e10cSrcweir{
300cdf0e10cSrcweir	Text [ en-US ] = "Loading document..." ;
301cdf0e10cSrcweir};
302cdf0e10cSrcweir
303cdf0e10cSrcweirString STR_STATSTR_SWGWRITE
304cdf0e10cSrcweir{
305cdf0e10cSrcweir	Text [ en-US ] = "Saving document..." ;
306cdf0e10cSrcweir};
307cdf0e10cSrcweir
308cdf0e10cSrcweirString STR_STATSTR_REFORMAT
309cdf0e10cSrcweir{
310cdf0e10cSrcweir	Text [ en-US ] = "Repagination..." ;
311cdf0e10cSrcweir};
312cdf0e10cSrcweir
313cdf0e10cSrcweirString STR_STATSTR_AUTOFORMAT
314cdf0e10cSrcweir{
315cdf0e10cSrcweir	Text [ en-US ] = "Formatting document automatically..." ;
316cdf0e10cSrcweir};
317cdf0e10cSrcweir
318cdf0e10cSrcweirString STR_STATSTR_IMPGRF
319cdf0e10cSrcweir{
320cdf0e10cSrcweir	Text [ en-US ] = "Importing graphics..." ;
321cdf0e10cSrcweir};
322cdf0e10cSrcweir
323cdf0e10cSrcweirString STR_STATSTR_SEARCH
324cdf0e10cSrcweir{
325cdf0e10cSrcweir	Text [ en-US ] = "Search..." ;
326cdf0e10cSrcweir};
327cdf0e10cSrcweir
328cdf0e10cSrcweirString STR_STATSTR_FORMAT
329cdf0e10cSrcweir{
330cdf0e10cSrcweir	Text [ en-US ] = "Formatting..." ;
331cdf0e10cSrcweir};
332cdf0e10cSrcweir
333cdf0e10cSrcweirString STR_STATSTR_PRINT
334cdf0e10cSrcweir{
335cdf0e10cSrcweir	Text [ en-US ] = "Printing..." ;
336cdf0e10cSrcweir};
337cdf0e10cSrcweir
338cdf0e10cSrcweirString STR_STATSTR_LAYOUTINIT
339cdf0e10cSrcweir{
340cdf0e10cSrcweir	Text [ en-US ] = "Converting..." ;
341cdf0e10cSrcweir};
342cdf0e10cSrcweir
343cdf0e10cSrcweirString STR_STATSTR_LETTER
344cdf0e10cSrcweir{
345cdf0e10cSrcweir	Text [ en-US ] = "Letter" ;
346cdf0e10cSrcweir};
347cdf0e10cSrcweir
348cdf0e10cSrcweirString STR_STATSTR_SPELL
349cdf0e10cSrcweir{
350cdf0e10cSrcweir	Text [ en-US ] = "Spellcheck..." ;
351cdf0e10cSrcweir};
352cdf0e10cSrcweir
353cdf0e10cSrcweirString STR_STATSTR_HYPHEN
354cdf0e10cSrcweir{
355cdf0e10cSrcweir	Text [ en-US ] = "Hyphenation..." ;
356cdf0e10cSrcweir};
357cdf0e10cSrcweir
358cdf0e10cSrcweirString STR_STATSTR_TOX_INSERT
359cdf0e10cSrcweir{
360cdf0e10cSrcweir	Text [ en-US ] = "Inserting Index..." ;
361cdf0e10cSrcweir};
362cdf0e10cSrcweir
363cdf0e10cSrcweirString STR_STATSTR_TOX_UPDATE
364cdf0e10cSrcweir{
365cdf0e10cSrcweir	Text [ en-US ] = "Updating Index..." ;
366cdf0e10cSrcweir};
367cdf0e10cSrcweir
368cdf0e10cSrcweirString STR_STATSTR_SUMMARY
369cdf0e10cSrcweir{
370cdf0e10cSrcweir	Text [ en-US ] = "Creating abstract..." ;
371cdf0e10cSrcweir};
372cdf0e10cSrcweir
373cdf0e10cSrcweirString STR_STATSTR_SWGPRTOLENOTIFY
374cdf0e10cSrcweir{
375cdf0e10cSrcweir	Text [ en-US ] = "Adapt Objects...";
376cdf0e10cSrcweir};
377cdf0e10cSrcweir
378cdf0e10cSrcweir
379cdf0e10cSrcweirQueryBox MSG_COMCORE_ASKSEARCH
380cdf0e10cSrcweir{
381cdf0e10cSrcweir	Buttons = WB_YES_NO_CANCEL ;
382cdf0e10cSrcweir	DefButton = WB_DEF_YES ;
383cdf0e10cSrcweir	Message [ en-US ] = "To proceed with this action, you must first turn off the \"undo\" function. Do you want to turn off the \"undo\" function?" ;
384cdf0e10cSrcweir};
385cdf0e10cSrcweir
386cdf0e10cSrcweirBitmap RID_GRAPHIC_REPLACEBMP
387cdf0e10cSrcweir{
388*e1372f43Smseidel	File = "grafikei.png" ;
389cdf0e10cSrcweir};
390cdf0e10cSrcweir
391cdf0e10cSrcweirBitmap RID_GRAPHIC_ERRORBMP
392cdf0e10cSrcweir{
393*e1372f43Smseidel	File = "grafikde.png" ;
394cdf0e10cSrcweir};
395cdf0e10cSrcweir
396cdf0e10cSrcweirBitmap RID_GRAPHIC_REPLACEBMP_HC
397cdf0e10cSrcweir{
398*e1372f43Smseidel	File = "grafikei_h.png" ;
399cdf0e10cSrcweir};
400cdf0e10cSrcweir
401cdf0e10cSrcweirBitmap RID_GRAPHIC_ERRORBMP_HC
402cdf0e10cSrcweir{
403*e1372f43Smseidel	File = "grafikde_h.png" ;
404cdf0e10cSrcweir};
405cdf0e10cSrcweir
406cdf0e10cSrcweirString STR_TABLE_DEFNAME
407cdf0e10cSrcweir{
408cdf0e10cSrcweir	Text [ en-US ] = "Table" ;
409cdf0e10cSrcweir};
410cdf0e10cSrcweir
411cdf0e10cSrcweirString STR_GRAPHIC_DEFNAME
412cdf0e10cSrcweir{
413cdf0e10cSrcweir	Text[ en-US ] = "graphics" ;
414cdf0e10cSrcweir};
415cdf0e10cSrcweir
416cdf0e10cSrcweirString STR_OBJECT_DEFNAME
417cdf0e10cSrcweir{
418cdf0e10cSrcweir	Text [ en-US ] = "Object" ;
419cdf0e10cSrcweir};
420cdf0e10cSrcweir
421cdf0e10cSrcweirString STR_FRAME_DEFNAME
422cdf0e10cSrcweir{
423cdf0e10cSrcweir	Text [ en-US ] = "Frame" ;
424cdf0e10cSrcweir};
425cdf0e10cSrcweirString STR_REGION_DEFNAME
426cdf0e10cSrcweir{
427cdf0e10cSrcweir	Text [ en-US ] = "Section" ;
428cdf0e10cSrcweir};
429cdf0e10cSrcweirString STR_NUMRULE_DEFNAME
430cdf0e10cSrcweir{
431cdf0e10cSrcweir	Text [ en-US ] = "Numbering" ;
432cdf0e10cSrcweir};
433cdf0e10cSrcweirString STR_EMPTYPAGE
434cdf0e10cSrcweir{
435cdf0e10cSrcweir	Text [ en-US ] = "blank page" ;
436cdf0e10cSrcweir};
437cdf0e10cSrcweir
438cdf0e10cSrcweirQueryBox MSG_CLPBRD_CLEAR
439cdf0e10cSrcweir{
440cdf0e10cSrcweir	BUTTONS = WB_YES_NO ;
441cdf0e10cSrcweir	DEFBUTTON = WB_DEF_NO ;
442cdf0e10cSrcweir	Message [ en-US ] = "You have a large amount of data saved in the clipboard.\nShould the clipboard contents remain available for other applications?" ;
443cdf0e10cSrcweir};
444cdf0e10cSrcweir
445cdf0e10cSrcweirQueryBox MSG_SAVE_HTML_QUERY
446cdf0e10cSrcweir{
447cdf0e10cSrcweir	BUTTONS = WB_YES_NO_CANCEL ;
448cdf0e10cSrcweir	DEFBUTTON = WB_DEF_YES ;
449cdf0e10cSrcweir	Message [ en-US ] = "Conversion into HTML format \nmay cause information loss. \nDo you want to save the document?" ;
450cdf0e10cSrcweir};
451cdf0e10cSrcweirQueryBox MSG_SAVEAS_HTML_QUERY
452cdf0e10cSrcweir{
453cdf0e10cSrcweir    BUTTONS = WB_YES_NO;
454cdf0e10cSrcweir    DEFBUTTON = WB_DEF_NO ;
455cdf0e10cSrcweir	Message [ en-US ] = "The source code can only be displayed if the document is saved in HTML format.\nWould you like to save the document as HTML?";
456cdf0e10cSrcweir};
457cdf0e10cSrcweirString STR_ABSTRACT_TITLE
458cdf0e10cSrcweir{
459cdf0e10cSrcweir	Text [ en-US ] = "Abstract: " ;
460cdf0e10cSrcweir};
461cdf0e10cSrcweir
462cdf0e10cSrcweirString STR_FDLG_TEMPLATE_BUTTON
463cdf0e10cSrcweir{
464cdf0e10cSrcweir	Text [ en-US ] = "Style" ;
465cdf0e10cSrcweir};
466cdf0e10cSrcweir
467cdf0e10cSrcweirString STR_FDLG_TEMPLATE_NAME
468cdf0e10cSrcweir{
469cdf0e10cSrcweir    //Text [ en-US ] = "Styles: " ;			//#outline level,removed by zhaojianwei
470cdf0e10cSrcweir    Text [ en-US ] = "separated by: " ;	//<-end,add by zhaojianwei
471cdf0e10cSrcweir};
472cdf0e10cSrcweir//#outline level,add by zhaojianwei
473cdf0e10cSrcweirString STR_FDLG_OUTLINE_LEVEL
474cdf0e10cSrcweir{
475cdf0e10cSrcweir    Text [ en-US ] = "Outline: Level ";
476cdf0e10cSrcweir};
477cdf0e10cSrcweir
478cdf0e10cSrcweirString STR_FDLG_STYLE
479cdf0e10cSrcweir{
480cdf0e10cSrcweir    Text [ en-US ] = "Style: ";
481cdf0e10cSrcweir};
482cdf0e10cSrcweir//<-end
483cdf0e10cSrcweir
484cdf0e10cSrcweir
485cdf0e10cSrcweirString STR_PAGEOFFSET
486cdf0e10cSrcweir{
487cdf0e10cSrcweir	Text [ en-US ] = "Page number: " ;
488cdf0e10cSrcweir};
489cdf0e10cSrcweirString STR_PAGEBREAK
490cdf0e10cSrcweir{
491cdf0e10cSrcweir	Text [ en-US ] = "Break before new page" ;
492cdf0e10cSrcweir};
493cdf0e10cSrcweirString STR_WESTERN_FONT
494cdf0e10cSrcweir{
495cdf0e10cSrcweir	Text [ en-US ] = "Western text: ";
496cdf0e10cSrcweir};
497cdf0e10cSrcweirString STR_CJK_FONT
498cdf0e10cSrcweir{
499cdf0e10cSrcweir	Text [ en-US ] = "Asian text: ";
500cdf0e10cSrcweir};
501cdf0e10cSrcweirString STR_REDLINE_UNKNOWN_AUTHOR
502cdf0e10cSrcweir{
503cdf0e10cSrcweir	Text [ en-US ] = "Unknown Author";
504cdf0e10cSrcweir};
505cdf0e10cSrcweir
506cdf0e10cSrcweirWarningBox MSG_DISABLE_UNDO_QUESTION
507cdf0e10cSrcweir{
508cdf0e10cSrcweir	BUTTONS = WB_YES_NO_CANCEL;
509cdf0e10cSrcweir	DEFBUTTON = WB_DEF_YES ;
510cdf0e10cSrcweir	Message [ en-US ] = "This action deletes the list of actions that can be undone. Previous changes made to the document are still valid, but cannot be undone. Do you want to continue formatting?";
511cdf0e10cSrcweir};
512cdf0e10cSrcweir/*QueryBox MSG_INS_MERGE_FIELDS
513cdf0e10cSrcweir{
514cdf0e10cSrcweir    HelpId = HID_MAIL_MERGE_INSERT_FIELDS;
515cdf0e10cSrcweir    Buttons = WB_OK_CANCEL ;
516cdf0e10cSrcweir    DefButton = WB_DEF_YES ;
517cdf0e10cSrcweir    Message [ en-US ] = "Do you want to use names and addresses from a database?";
518cdf0e10cSrcweir};
519cdf0e10cSrcweir*/
520cdf0e10cSrcweirQueryBox MSG_PRINT_AS_MERGE
521cdf0e10cSrcweir{
522cdf0e10cSrcweir    HelpId = HID_PRINT_AS_MERGE;
523cdf0e10cSrcweir    Buttons = WB_YES_NO ;
524cdf0e10cSrcweir    DefButton = WB_DEF_YES ;
525cdf0e10cSrcweir    Message [ en-US ] = "Your document contains address database fields. Do you want to print a form letter?";
526cdf0e10cSrcweir};
527cdf0e10cSrcweirModalDialog DLG_MERGE_SOURCE_UNAVAILABLE
528cdf0e10cSrcweir{
529cdf0e10cSrcweir    HelpId = HID_MERGE_SOURCE_UNAVAILABLE;
530cdf0e10cSrcweir    OutputSize = TRUE ;
531cdf0e10cSrcweir    SVLook = TRUE ;
532cdf0e10cSrcweir    Size = MAP_APPFONT ( 202 , 72 ) ;
533cdf0e10cSrcweir    Moveable = TRUE ;
534cdf0e10cSrcweir
535cdf0e10cSrcweir    FixedImage IMG_MERGE
536cdf0e10cSrcweir    {
537cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 14 ) ;
538cdf0e10cSrcweir        Size = MAP_APPFONT ( 103 , 32 ) ;
539cdf0e10cSrcweir    };
540cdf0e10cSrcweir    FixedText ST_MERGE_SOURCE_UNAVAILABLE
541cdf0e10cSrcweir    {
542cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 6 ) ;
543cdf0e10cSrcweir        Size = MAP_APPFONT ( 178 , 40 ) ;
544cdf0e10cSrcweir        WordBreak = TRUE;
545cdf0e10cSrcweir        Text [ en-US ] = "The data source \'%1\' was not found. Thus the connection to the data source could not be established.\n\nPlease check the connections settings.";
546cdf0e10cSrcweir    };
547cdf0e10cSrcweir    OKButton PB_MERGE_OK
548cdf0e10cSrcweir    {
549cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 52 ) ;
550cdf0e10cSrcweir        Size = MAP_APPFONT ( 125 , 14 ) ;
551cdf0e10cSrcweir        Text [ en-US ] = "Check Connection Settings...";
552cdf0e10cSrcweir    };
553cdf0e10cSrcweir    CancelButton PB_MERGE_CANCEL
554cdf0e10cSrcweir    {
555cdf0e10cSrcweir        Pos = MAP_APPFONT ( 140 , 52 ) ;
556cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 14 ) ;
557cdf0e10cSrcweir    };
558cdf0e10cSrcweir};
559cdf0e10cSrcweirWarningBox MSG_DATA_SOURCES_UNAVAILABLE
560cdf0e10cSrcweir{
561cdf0e10cSrcweir    HelpId = HID_DATA_SOURCES_UNAVAILABLE;
562cdf0e10cSrcweir    Buttons = WB_OK_CANCEL;
563cdf0e10cSrcweir    Message [ en-US ] = "No data source has been set up yet. You need a data source, such as a database, to supply data (for example, names and addresses) for the fields.";
564cdf0e10cSrcweir};
565cdf0e10cSrcweir
566cdf0e10cSrcweirString RID_MODULE_TOOLBOX
567cdf0e10cSrcweir{
568cdf0e10cSrcweir	Text [ en-US ] = "Function Bar (viewing mode)" ;
569cdf0e10cSrcweir};
570cdf0e10cSrcweirString  STR_DONT_ASK_AGAIN
571cdf0e10cSrcweir{
572cdf0e10cSrcweir    Text [ en-US ] = "~Do not show warning again" ;
573cdf0e10cSrcweir};
574cdf0e10cSrcweir// --> OD 2008-04-14 #outlinelevel#
575cdf0e10cSrcweirString STR_OUTLINE_NUMBERING
576cdf0e10cSrcweir{
577cdf0e10cSrcweir    Text [ en-US ] = "Outline Numbering";
578cdf0e10cSrcweir};
579cdf0e10cSrcweirToolBox RID_MODULE_TOOLBOX
580cdf0e10cSrcweir{
581cdf0e10cSrcweir	HelpID = HID_MODULE_TOOLBOX ;
582cdf0e10cSrcweir	Border = TRUE ;
583cdf0e10cSrcweir	SVLook = TRUE ;
584cdf0e10cSrcweir	Dockable = TRUE ;
585cdf0e10cSrcweir	Moveable = TRUE ;
586cdf0e10cSrcweir	Sizeable = TRUE ;
587cdf0e10cSrcweir	Closeable = TRUE ;
588cdf0e10cSrcweir	Zoomable = TRUE ;
589cdf0e10cSrcweir	HideWhenDeactivate = TRUE ;
590cdf0e10cSrcweir	LineSpacing = TRUE ;
591cdf0e10cSrcweir	Customize = TRUE ;
592cdf0e10cSrcweir	MenuStrings = TRUE ;
593cdf0e10cSrcweir	Hide = TRUE ;
594cdf0e10cSrcweir	ItemList =
595cdf0e10cSrcweir	{
596cdf0e10cSrcweir		ToolBoxItem
597cdf0e10cSrcweir		{
598cdf0e10cSrcweir			Identifier = SID_SAVEASDOC ;
599cdf0e10cSrcweir		};
600cdf0e10cSrcweir		ToolBoxItem
601cdf0e10cSrcweir		{
602cdf0e10cSrcweir			Type = TOOLBOXITEM_SEPARATOR ;
603cdf0e10cSrcweir		};
604cdf0e10cSrcweir		ToolBoxItem
605cdf0e10cSrcweir		{
606cdf0e10cSrcweir			Identifier = SID_EDITDOC ;
607cdf0e10cSrcweir		};
608cdf0e10cSrcweir		ToolBoxItem
609cdf0e10cSrcweir		{
610cdf0e10cSrcweir			Identifier = SID_MAIL_SENDDOC ;
611cdf0e10cSrcweir		};
612cdf0e10cSrcweir		ToolBoxItem
613cdf0e10cSrcweir		{
614cdf0e10cSrcweir			Type = TOOLBOXITEM_SEPARATOR ;
615cdf0e10cSrcweir		};
616cdf0e10cSrcweir		ToolBoxItem
617cdf0e10cSrcweir		{
618cdf0e10cSrcweir			Identifier = SID_DIRECTEXPORTDOCASPDF ;
619cdf0e10cSrcweir		};
620cdf0e10cSrcweir		ToolBoxItem
621cdf0e10cSrcweir		{
622cdf0e10cSrcweir			Identifier = SID_PRINTDOCDIRECT ;
623cdf0e10cSrcweir		};
624cdf0e10cSrcweir		ToolBoxItem
625cdf0e10cSrcweir		{
626cdf0e10cSrcweir			Type = TOOLBOXITEM_SEPARATOR ;
627cdf0e10cSrcweir		};
628cdf0e10cSrcweir		ToolBoxItem
629cdf0e10cSrcweir		{
630cdf0e10cSrcweir			Identifier = SID_COPY ;
631cdf0e10cSrcweir		};
632cdf0e10cSrcweir		ToolBoxItem
633cdf0e10cSrcweir		{
634cdf0e10cSrcweir			Type = TOOLBOXITEM_SEPARATOR ;
635cdf0e10cSrcweir		};
636cdf0e10cSrcweir		ToolBoxItem
637cdf0e10cSrcweir		{
638cdf0e10cSrcweir			Identifier = SID_SEARCH_DLG ;
639cdf0e10cSrcweir		};
640cdf0e10cSrcweir		ToolBoxItem
641cdf0e10cSrcweir		{
642cdf0e10cSrcweir			Identifier = SID_NAVIGATOR ;
643cdf0e10cSrcweir		};
644cdf0e10cSrcweir		ToolBoxItem
645cdf0e10cSrcweir		{
646cdf0e10cSrcweir			Type = TOOLBOXITEM_SEPARATOR ;
647cdf0e10cSrcweir		};
648cdf0e10cSrcweir		ToolBoxItem
649cdf0e10cSrcweir		{
650cdf0e10cSrcweir			Identifier = SID_ATTR_ZOOM ;
651cdf0e10cSrcweir		};
652cdf0e10cSrcweir	};
653cdf0e10cSrcweir	Scroll = TRUE ;
654cdf0e10cSrcweir};
655cdf0e10cSrcweir
656cdf0e10cSrcweirWarningBox MSG_DISABLE_READLINE_QUESTION
657cdf0e10cSrcweir{
658cdf0e10cSrcweir	BUTTONS = WB_YES_NO;
659cdf0e10cSrcweir	DEFBUTTON = WB_DEF_YES ;
660cdf0e10cSrcweir	Message [ en-US ] = "In the current document, changes are being recorded but not shown as such. In large documents, delays can occur when the document is edited. Do you want to show the changes to avoid delays?";
661cdf0e10cSrcweir};
662