xref: /aoo41x/main/cui/source/options/optpath.src (revision cfaf75ed)
10e2af6afSAndrew Rist/**************************************************************
2*cfaf75edSmseidel *
30e2af6afSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
40e2af6afSAndrew Rist * or more contributor license agreements.  See the NOTICE file
50e2af6afSAndrew Rist * distributed with this work for additional information
60e2af6afSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
70e2af6afSAndrew Rist * to you under the Apache License, Version 2.0 (the
80e2af6afSAndrew Rist * "License"); you may not use this file except in compliance
90e2af6afSAndrew Rist * with the License.  You may obtain a copy of the License at
10*cfaf75edSmseidel *
110e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*cfaf75edSmseidel *
130e2af6afSAndrew Rist * Unless required by applicable law or agreed to in writing,
140e2af6afSAndrew Rist * software distributed under the License is distributed on an
150e2af6afSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
160e2af6afSAndrew Rist * KIND, either express or implied.  See the License for the
170e2af6afSAndrew Rist * specific language governing permissions and limitations
180e2af6afSAndrew Rist * under the License.
19*cfaf75edSmseidel *
200e2af6afSAndrew Rist *************************************************************/
210e2af6afSAndrew Rist
22*cfaf75edSmseidel
230e2af6afSAndrew Rist
24*cfaf75edSmseidel// include --------------------------------------------------------------
25cdf0e10cSrcweir#include "optpath.hrc"
26cdf0e10cSrcweir#include <cuires.hrc>
27cdf0e10cSrcweir#ifndef _SFX_HRC
28cdf0e10cSrcweir#include <sfx2/sfx.hrc>
29cdf0e10cSrcweir#endif
30cdf0e10cSrcweir#include "helpid.hrc"
31cdf0e10cSrcweir
32*cfaf75edSmseidel// RID_SFXPAGE_PATH -----------------------------------------------------
33cdf0e10cSrcweir#define STD_MASKCOLOR Color { Red=0xffff; Green=0x0000; Blue=0xffff; }
34cdf0e10cSrcweirTabPage RID_SFXPAGE_PATH
35cdf0e10cSrcweir{
36cdf0e10cSrcweir	HelpId = HID_OPTIONS_PATH ;
37cdf0e10cSrcweir	OutputSize = TRUE ;
38cdf0e10cSrcweir	SVLook = TRUE ;
39cdf0e10cSrcweir	Hide = TRUE ;
40cdf0e10cSrcweir	Size = MAP_APPFONT ( 260 , 185 ) ;
41cdf0e10cSrcweir	Text [ en-US ] = "Paths" ;
42cdf0e10cSrcweir	FixedText FT_TYPE
43cdf0e10cSrcweir	{
44cdf0e10cSrcweir		Hide = TRUE;
45cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 14 ) ;
46cdf0e10cSrcweir		Size = MAP_APPFONT ( 40 , 10 ) ;
47cdf0e10cSrcweir		Text [ en-US ] = "Type" ;
48cdf0e10cSrcweir	};
49cdf0e10cSrcweir	FixedText FT_PATH
50cdf0e10cSrcweir	{
51cdf0e10cSrcweir		Hide = TRUE;
52cdf0e10cSrcweir		Pos = MAP_APPFONT ( 110 , 14 ) ;
53cdf0e10cSrcweir		Size = MAP_APPFONT ( 40 , 10 ) ;
54cdf0e10cSrcweir		Text [ en-US ] = "Path" ;
55cdf0e10cSrcweir	};
56cdf0e10cSrcweir	Control LB_PATH
57cdf0e10cSrcweir	{
58cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 14 ) ;
59cdf0e10cSrcweir		Size = MAP_APPFONT ( 236 , 147 ) ;
60cdf0e10cSrcweir		Border = TRUE ;
61cdf0e10cSrcweir		TabStop = TRUE;
62cdf0e10cSrcweir	};
63cdf0e10cSrcweir	PushButton BTN_PATH
64cdf0e10cSrcweir	{
65cdf0e10cSrcweir	    HelpID = "cui:PushButton:RID_SFXPAGE_PATH:BTN_PATH";
66cdf0e10cSrcweir		Pos = MAP_APPFONT ( 183 , 165 ) ;
67cdf0e10cSrcweir		Size = MAP_APPFONT ( 65 , 14 ) ;
68cdf0e10cSrcweir		Text [ en-US ] = "~Edit..." ;
69cdf0e10cSrcweir	};
70cdf0e10cSrcweir	PushButton BTN_STANDARD
71cdf0e10cSrcweir	{
72cdf0e10cSrcweir	    HelpID = "cui:PushButton:RID_SFXPAGE_PATH:BTN_STANDARD";
73cdf0e10cSrcweir		Pos = MAP_APPFONT ( 115 , 165 ) ;
74cdf0e10cSrcweir		Size = MAP_APPFONT ( 65 , 14 ) ;
75*cfaf75edSmseidel		Text [ en-US ] = "~Default" ;
76cdf0e10cSrcweir	};
77cdf0e10cSrcweir    FixedLine GB_STD
78cdf0e10cSrcweir	{
79cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 3 ) ;
80cdf0e10cSrcweir		Size = MAP_APPFONT ( 248 , 8 ) ;
81cdf0e10cSrcweir		Text [ en-US ] = "Paths used by %PRODUCTNAME" ;
82cdf0e10cSrcweir	};
83cdf0e10cSrcweir    Image IMG_LOCK
84cdf0e10cSrcweir    {
85cdf0e10cSrcweir        ImageBitmap = Bitmap { File = "lock.bmp"; };
86cdf0e10cSrcweir        MaskColor = STD_MASKCOLOR;
87cdf0e10cSrcweir    };
88cdf0e10cSrcweir    Image IMG_LOCK_HC
89cdf0e10cSrcweir    {
90cdf0e10cSrcweir        ImageBitmap = Bitmap { File = "lock_hc.bmp"; };
91cdf0e10cSrcweir        MaskColor = STD_MASKCOLOR;
92cdf0e10cSrcweir    };
93cdf0e10cSrcweir    String STR_MULTIPATHDLG
94cdf0e10cSrcweir    {
95cdf0e10cSrcweir		Text [ en-US ] = "Edit Paths: %1" ;
96cdf0e10cSrcweir    };
97cdf0e10cSrcweir};
98cdf0e10cSrcweirErrorBox RID_SVXERR_OPT_DOUBLEPATHS
99cdf0e10cSrcweir{
100cdf0e10cSrcweir	BUTTONS = WB_OK ;
101cdf0e10cSrcweir	DEFBUTTON = WB_DEF_OK ;
102cdf0e10cSrcweir	Message [ en-US ] = "The configuration and mail directories must be specified as separate directories.\nPlease choose a new path." ;
103cdf0e10cSrcweir};
104*cfaf75edSmseidel// ******************************************************************* EOF
105cdf0e10cSrcweirString RID_SVXSTR_KEY_CONFIG_DIR
106cdf0e10cSrcweir{
107cdf0e10cSrcweir    Text [ en-US ] = "Configuration" ;
108cdf0e10cSrcweir};
109cdf0e10cSrcweirString RID_SVXSTR_KEY_WORK_PATH
110cdf0e10cSrcweir{
111cdf0e10cSrcweir    Text [ en-US ] = "My Documents" ;
112cdf0e10cSrcweir};
113cdf0e10cSrcweirString RID_SVXSTR_KEY_GRAPHICS_PATH
114cdf0e10cSrcweir{
115cdf0e10cSrcweir    Text [ en-US ] = "Graphics" ;
116cdf0e10cSrcweir};
117cdf0e10cSrcweirString RID_SVXSTR_KEY_BASIC_PATH
118cdf0e10cSrcweir{
119cdf0e10cSrcweir    Text = "BASIC" ;
120cdf0e10cSrcweir};
121cdf0e10cSrcweir
122cdf0e10cSrcweirString RID_SVXSTR_KEY_PALETTE_PATH
123cdf0e10cSrcweir{
124cdf0e10cSrcweir    Text [ en-US ] = "Palettes" ;
125cdf0e10cSrcweir};
126cdf0e10cSrcweirString RID_SVXSTR_KEY_BACKUP_PATH
127cdf0e10cSrcweir{
128cdf0e10cSrcweir    Text [ en-US ] = "Backups" ;
129cdf0e10cSrcweir};
130cdf0e10cSrcweirString RID_SVXSTR_KEY_MODULES_PATH
131cdf0e10cSrcweir{
132cdf0e10cSrcweir    Text [ en-US ] = "Modules" ;
133cdf0e10cSrcweir};
134cdf0e10cSrcweirString RID_SVXSTR_KEY_TEMPLATE_PATH
135cdf0e10cSrcweir{
136cdf0e10cSrcweir    Text [ en-US ] = "Templates" ;
137cdf0e10cSrcweir};
138cdf0e10cSrcweirString RID_SVXSTR_KEY_GLOSSARY_PATH
139cdf0e10cSrcweir{
140cdf0e10cSrcweir    Text [ en-US ] = "AutoText";
141cdf0e10cSrcweir};
142cdf0e10cSrcweirString RID_SVXSTR_KEY_DICTIONARY_PATH
143cdf0e10cSrcweir{
144cdf0e10cSrcweir    Text [ en-US ] = "Dictionaries" ;
145cdf0e10cSrcweir};
146cdf0e10cSrcweirString RID_SVXSTR_KEY_HELP_DIR
147cdf0e10cSrcweir{
148cdf0e10cSrcweir    Text [ en-US ] = "Help" ;
149cdf0e10cSrcweir};
150cdf0e10cSrcweirString RID_SVXSTR_KEY_GALLERY_DIR
151cdf0e10cSrcweir{
152cdf0e10cSrcweir    Text [ en-US ] = "Gallery" ;
153cdf0e10cSrcweir};
154cdf0e10cSrcweir
155cdf0e10cSrcweirString RID_SVXSTR_KEY_STORAGE_DIR
156cdf0e10cSrcweir{
157cdf0e10cSrcweir    Text [ en-US ] = "Message Storage" ;
158cdf0e10cSrcweir};
159cdf0e10cSrcweirString RID_SVXSTR_KEY_TEMP_PATH
160cdf0e10cSrcweir{
161cdf0e10cSrcweir    Text [ en-US ] = "Temporary files";
162cdf0e10cSrcweir};
163cdf0e10cSrcweirString RID_SVXSTR_KEY_PLUGINS_PATH
164cdf0e10cSrcweir{
165cdf0e10cSrcweir    Text [ en-US ] = "Plug-ins";
166cdf0e10cSrcweir};
167cdf0e10cSrcweirString RID_SVXSTR_KEY_FAVORITES_DIR
168cdf0e10cSrcweir{
169cdf0e10cSrcweir    Text [ en-US ] = "Folder Bookmarks";
170cdf0e10cSrcweir};
171cdf0e10cSrcweirString RID_SVXSTR_KEY_FILTER_PATH
172cdf0e10cSrcweir{
173cdf0e10cSrcweir    Text [ en-US ] = "Filters";
174cdf0e10cSrcweir};
175cdf0e10cSrcweirString RID_SVXSTR_KEY_ADDINS_PATH
176cdf0e10cSrcweir{
177cdf0e10cSrcweir    Text [ en-US ] = "Add-ins";
178cdf0e10cSrcweir};
179cdf0e10cSrcweirString RID_SVXSTR_KEY_USERCONFIG_PATH
180cdf0e10cSrcweir{
181cdf0e10cSrcweir    Text [ en-US ] = "User Configuration";
182cdf0e10cSrcweir};
183cdf0e10cSrcweirString RID_SVXSTR_KEY_USERDICTIONARY_DIR
184cdf0e10cSrcweir{
185cdf0e10cSrcweir    Text [ en-US ] = "User-defined dictionaries";
186cdf0e10cSrcweir};
187cdf0e10cSrcweirString RID_SVXSTR_KEY_AUTOCORRECT_DIR
188cdf0e10cSrcweir{
189cdf0e10cSrcweir    Text [ en-US ] = "AutoCorrect";
190cdf0e10cSrcweir};
191cdf0e10cSrcweirString RID_SVXSTR_KEY_LINGUISTIC_DIR
192cdf0e10cSrcweir{
193cdf0e10cSrcweir    Text [ en-US ] = "Writing aids";
194cdf0e10cSrcweir};
195