xref: /trunk/main/sfx2/source/dialog/dialog.src (revision 5078721ecbf0de63885956c94da1c1cb4d850deb)
1acbf353aSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3acbf353aSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4acbf353aSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5acbf353aSAndrew Rist * distributed with this work for additional information
6acbf353aSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7acbf353aSAndrew Rist * to you under the Apache License, Version 2.0 (the
8acbf353aSAndrew Rist * "License"); you may not use this file except in compliance
9acbf353aSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
11acbf353aSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13acbf353aSAndrew Rist * Unless required by applicable law or agreed to in writing,
14acbf353aSAndrew Rist * software distributed under the License is distributed on an
15acbf353aSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16acbf353aSAndrew Rist * KIND, either express or implied.  See the License for the
17acbf353aSAndrew Rist * specific language governing permissions and limitations
18acbf353aSAndrew Rist * under the License.
19cdf0e10cSrcweir *
20acbf353aSAndrew Rist *************************************************************/
21acbf353aSAndrew Rist
22cdf0e10cSrcweir// include ---------------------------------------------------------------
23cdf0e10cSrcweir#include <sfx2/sfx.hrc>
24cdf0e10cSrcweir#include "dialog.hrc"
25cdf0e10cSrcweir#include "helpid.hrc"
26cdf0e10cSrcweir#include "sfxlocal.hrc"
27cdf0e10cSrcweir
28cdf0e10cSrcweirString STR_RESET
29cdf0e10cSrcweir{
30cdf0e10cSrcweir    Text [ en-US ] = "~Reset" ;
31cdf0e10cSrcweir};
32cdf0e10cSrcweirString STR_APPLY
33cdf0e10cSrcweir{
34cdf0e10cSrcweir    Text [ en-US ] = "Apply" ;
35cdf0e10cSrcweir};
36cdf0e10cSrcweirString STR_TABPAGE_MANAGESTYLES
37cdf0e10cSrcweir{
38cdf0e10cSrcweir    Text [ en-US ] = "Organizer" ;
39cdf0e10cSrcweir};
40cdf0e10cSrcweirInfoBox MSG_TABPAGE_INVALIDNAME
41cdf0e10cSrcweir{
42cdf0e10cSrcweir    BUTTONS = WB_OK ;
43cdf0e10cSrcweir    DEFBUTTON = WB_DEF_OK ;
44cdf0e10cSrcweir    Message [ en-US ] = "This name is already in use." ;
45cdf0e10cSrcweir};
46cdf0e10cSrcweirInfoBox MSG_TABPAGE_INVALIDSTYLE
47cdf0e10cSrcweir{
48cdf0e10cSrcweir    BUTTONS = WB_OK ;
49cdf0e10cSrcweir    DEFBUTTON = WB_DEF_OK ;
50cdf0e10cSrcweir    Message [ en-US ] = "This Style does not exist." ;
51cdf0e10cSrcweir};
52cdf0e10cSrcweirInfoBox MSG_TABPAGE_INVALIDPARENT
53cdf0e10cSrcweir{
54cdf0e10cSrcweir    BUTTONS = WB_OK ;
55cdf0e10cSrcweir    DEFBUTTON = WB_DEF_OK ;
56cdf0e10cSrcweir    Message [ en-US ] = "This Style cannot be used as a base Style,\nbecause it would result in a recursive reference." ;
57cdf0e10cSrcweir};
58cdf0e10cSrcweirInfoBox MSG_POOL_STYLE_NAME
59cdf0e10cSrcweir{
60cdf0e10cSrcweir    Message [ en-US ] = "Name already exists as a default Style.\nPlease choose another name." ;
61cdf0e10cSrcweir};
62cdf0e10cSrcweirString STR_DELETE_STYLE
63cdf0e10cSrcweir{
64cdf0e10cSrcweir    Text [ en-US ] = "Do you really want to delete Style $1?" ;
65cdf0e10cSrcweir};
66cdf0e10cSrcweirString STR_DELETE_STYLE_USED
67cdf0e10cSrcweir{
68cdf0e10cSrcweir    Text [ en-US ] = "You are deleting an applied Style!\n" ;
69cdf0e10cSrcweir};
70cdf0e10cSrcweirMenu MN_CONTEXT_TEMPLDLG
71cdf0e10cSrcweir{
72cdf0e10cSrcweir    ItemList =
73cdf0e10cSrcweir    {
74cdf0e10cSrcweir        MenuItem
75cdf0e10cSrcweir        {
76cdf0e10cSrcweir            Identifier = ID_NEW ;
77cdf0e10cSrcweir            Text [ en-US ] = "New..." ;
78cdf0e10cSrcweir            HelpId = HID_STYLIST_NEW ;
79cdf0e10cSrcweir        };
80cdf0e10cSrcweir        MenuItem
81cdf0e10cSrcweir        {
82cdf0e10cSrcweir            Identifier = ID_EDIT ;
83cdf0e10cSrcweir            Text [ en-US ] = "Modify..." ;
84cdf0e10cSrcweir            HelpId = HID_STYLIST_EDIT ;
85cdf0e10cSrcweir        };
86cdf0e10cSrcweir        MenuItem
87cdf0e10cSrcweir        {
88cdf0e10cSrcweir            Identifier = ID_DELETE ;
89cdf0e10cSrcweir            Text [ en-US ] = "Delete..." ;
90cdf0e10cSrcweir            HelpId = HID_STYLIST_DELETE ;
91cdf0e10cSrcweir        };
92cdf0e10cSrcweir    };
93cdf0e10cSrcweir};
94cdf0e10cSrcweir
95cdf0e10cSrcweir //------------------------------------------------------------------------
96cdf0e10cSrcweirString SID_NAVIGATOR
97cdf0e10cSrcweir{
98cdf0e10cSrcweir    Text [ en-US ] = "Navigator" ;
99cdf0e10cSrcweir};
100cdf0e10cSrcweirString SID_TASKPANE
101cdf0e10cSrcweir{
102*5078721eSmseidel    Text = "Task Pane" ;
103cdf0e10cSrcweir};
10422de8995SAndre FischerString SID_SIDEBAR
10522de8995SAndre Fischer{
10622de8995SAndre Fischer    Text [ en-US ] = "Sidebar" ;
10722de8995SAndre Fischer};
108cdf0e10cSrcweir
109cdf0e10cSrcweirErrorBox MSG_ERROR_WRONG_CONFIRM
110cdf0e10cSrcweir{
111cdf0e10cSrcweir    BUTTONS = WB_OK ;
112cdf0e10cSrcweir    DEFBUTTON = WB_DEF_OK ;
113cdf0e10cSrcweir    Message [ en-US ] = "Faulty password confirmation" ;
114cdf0e10cSrcweir};
115cdf0e10cSrcweir
116cdf0e10cSrcweirString STR_PDF_EXPORT_SEND
117cdf0e10cSrcweir{
118cdf0e10cSrcweir    Text [ en-US ] = "Send" ;
119cdf0e10cSrcweir};
120cdf0e10cSrcweir
121cdf0e10cSrcweirImage IMG_INFO
122cdf0e10cSrcweir{
123cdf0e10cSrcweir    ImageBitmap = Bitmap
124cdf0e10cSrcweir    {
125cdf0e10cSrcweir        File = "info.png" ;
126cdf0e10cSrcweir    };
127cdf0e10cSrcweir};
128cdf0e10cSrcweir
129cdf0e10cSrcweir// ******************************************************************* EOF
130