xref: /aoo4110/main/sfx2/source/dialog/dialog.src (revision b1cdbd2c)
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 // include ---------------------------------------------------------------
25#include <sfx2/sfx.hrc>
26#include "dialog.hrc"
27#include "helpid.hrc"
28#include "sfxlocal.hrc"
29
30String STR_RESET
31{
32	Text [ en-US ] = "~Reset" ;
33};
34String STR_APPLY
35{
36	Text [ en-US ] = "Apply";
37};
38String STR_TABPAGE_MANAGESTYLES
39{
40	Text [ en-US ] = "Organizer" ;
41};
42InfoBox MSG_TABPAGE_INVALIDNAME
43{
44	BUTTONS = WB_OK ;
45	DEFBUTTON = WB_DEF_OK ;
46	Message [ en-US ] = "This name is already in use." ;
47};
48InfoBox MSG_TABPAGE_INVALIDSTYLE
49{
50	BUTTONS = WB_OK ;
51	DEFBUTTON = WB_DEF_OK ;
52	Message [ en-US ] = "This Style does not exist." ;
53};
54InfoBox MSG_TABPAGE_INVALIDPARENT
55{
56	BUTTONS = WB_OK ;
57	DEFBUTTON = WB_DEF_OK ;
58	Message [ en-US ] = "This Style cannot be used as a base Style,\nbecause it would result in a recursive reference." ;
59};
60InfoBox MSG_POOL_STYLE_NAME
61{
62	Message [ en-US ] = "Name already exists as a default Style.\nPlease choose another name." ;
63};
64String STR_DELETE_STYLE
65{
66	Text [ en-US ] = "Do you really want to delete Style $1?" ;
67};
68String STR_DELETE_STYLE_USED
69{
70	Text [ en-US ] = "You are deleting an applied Style!\n" ;
71};
72Menu MN_CONTEXT_TEMPLDLG
73{
74	ItemList =
75	{
76		MenuItem
77		{
78			Identifier = ID_NEW ;
79			Text [ en-US ] = "New..." ;
80			HelpId = HID_STYLIST_NEW ;
81		};
82		MenuItem
83		{
84			Identifier = ID_EDIT ;
85			Text [ en-US ] = "Modify..." ;
86			HelpId = HID_STYLIST_EDIT ;
87		};
88		MenuItem
89		{
90			Identifier = ID_DELETE ;
91			Text [ en-US ] = "Delete..." ;
92			HelpId = HID_STYLIST_DELETE ;
93		};
94	};
95};
96
97 //------------------------------------------------------------------------
98String SID_NAVIGATOR
99{
100	Text [ en-US ] = "Navigator";
101};
102String SID_TASKPANE
103{
104    Text [ en-US ] = "Task Pane";
105};
106String SID_SIDEBAR
107{
108    Text [ en-US ] = "Sidebar";
109};
110
111ErrorBox MSG_ERROR_WRONG_CONFIRM
112{
113	BUTTONS = WB_OK ;
114	DEFBUTTON = WB_DEF_OK ;
115	Message [ en-US ] = "Faulty password confirmation";
116};
117
118String STR_PDF_EXPORT_SEND
119{
120  Text [ en-US ] = "Send" ;
121};
122
123Image IMG_INFO
124{
125	ImageBitmap = Bitmap
126	{
127        File = "info.png" ;
128	};
129};
130
131// ******************************************************************* EOF
132
133