xref: /aoo41x/main/cui/source/options/treeopt.src (revision 0e2af6af)
1*0e2af6afSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*0e2af6afSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*0e2af6afSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*0e2af6afSAndrew Rist * distributed with this work for additional information
6*0e2af6afSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*0e2af6afSAndrew Rist * to you under the Apache License, Version 2.0 (the
8*0e2af6afSAndrew Rist * "License"); you may not use this file except in compliance
9*0e2af6afSAndrew Rist * with the License.  You may obtain a copy of the License at
10*0e2af6afSAndrew Rist *
11*0e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*0e2af6afSAndrew Rist *
13*0e2af6afSAndrew Rist * Unless required by applicable law or agreed to in writing,
14*0e2af6afSAndrew Rist * software distributed under the License is distributed on an
15*0e2af6afSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*0e2af6afSAndrew Rist * KIND, either express or implied.  See the License for the
17*0e2af6afSAndrew Rist * specific language governing permissions and limitations
18*0e2af6afSAndrew Rist * under the License.
19*0e2af6afSAndrew Rist *
20*0e2af6afSAndrew Rist *************************************************************/
21*0e2af6afSAndrew Rist
22*0e2af6afSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "treeopt.hrc"
25cdf0e10cSrcweir#include <cuires.hrc>
26cdf0e10cSrcweir#include "helpid.hrc"
27cdf0e10cSrcweir#include <svx/dialogs.hrc>
28cdf0e10cSrcweir
29cdf0e10cSrcweir#define IMAGE_STDBTN_COLOR Color { Red = 0xC000; Green = 0xC000; Blue = 0xC000; }
30cdf0e10cSrcweir
31cdf0e10cSrcweirModalDialog RID_OFADLG_OPTIONS_TREE
32cdf0e10cSrcweir{
33cdf0e10cSrcweir	HelpID = HID_OFADLG_OPTIONS_TREE;
34cdf0e10cSrcweir	Moveable = TRUE ;
35cdf0e10cSrcweir	OutputSize = TRUE ;
36cdf0e10cSrcweir	SVLook = TRUE ;
37cdf0e10cSrcweir
38cdf0e10cSrcweir	Size = MAP_APPFONT ( COL_12 , ROW_5 ) ;
39cdf0e10cSrcweir	Text [ en-US ] = "Options";
40cdf0e10cSrcweir
41cdf0e10cSrcweir	OKButton PB_OK
42cdf0e10cSrcweir	{
43cdf0e10cSrcweir		Pos = MAP_APPFONT ( COL_4, ROW_3 ) ;
44cdf0e10cSrcweir		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
45cdf0e10cSrcweir		TabStop = TRUE ;
46cdf0e10cSrcweir		DefButton = TRUE;
47cdf0e10cSrcweir	};
48cdf0e10cSrcweir	CancelButton PB_CANCEL
49cdf0e10cSrcweir	{
50cdf0e10cSrcweir		Pos = MAP_APPFONT ( COL_6, ROW_3 ) ;
51cdf0e10cSrcweir		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
52cdf0e10cSrcweir		TabStop = TRUE ;
53cdf0e10cSrcweir	};
54cdf0e10cSrcweir	HelpButton PB_HELP
55cdf0e10cSrcweir	{
56cdf0e10cSrcweir		Pos = MAP_APPFONT ( COL_8, ROW_3 ) ;
57cdf0e10cSrcweir		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
58cdf0e10cSrcweir		TabStop = TRUE ;
59cdf0e10cSrcweir	};
60cdf0e10cSrcweir	PushButton PB_BACK
61cdf0e10cSrcweir	{
62cdf0e10cSrcweir	    HelpID = "cui:PushButton:RID_OFADLG_OPTIONS_TREE:PB_BACK";
63cdf0e10cSrcweir		Pos = MAP_APPFONT ( COL_10, ROW_3 ) ;
64cdf0e10cSrcweir		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
65cdf0e10cSrcweir		TabStop = TRUE ;
66cdf0e10cSrcweir		Text [ en-US ] = "~Back" ;
67cdf0e10cSrcweir	};
68cdf0e10cSrcweir	//TreeListBox
69cdf0e10cSrcweir	Control TLB_PAGES
70cdf0e10cSrcweir	{
71cdf0e10cSrcweir		Pos = MAP_APPFONT ( COL_1, ROW_1 ) ;
72cdf0e10cSrcweir		Size = MAP_APPFONT ( (COL_2-COL_1), (ROW_4-ROW_1) );
73cdf0e10cSrcweir		TabStop = TRUE ;
74cdf0e10cSrcweir		Border = TRUE;
75cdf0e10cSrcweir	};
76cdf0e10cSrcweir	Control FB_BORDER
77cdf0e10cSrcweir	{
78cdf0e10cSrcweir		Pos = MAP_APPFONT ( COL_3, ROW_1 ) ;
79cdf0e10cSrcweir		Size = MAP_APPFONT ( WIDTH_PAGEFRAME, HEIGHT_PAGEFRAME ) ;
80cdf0e10cSrcweir		Hide = TRUE;
81cdf0e10cSrcweir	};
82cdf0e10cSrcweir    FixedImage IMG_HELP
83cdf0e10cSrcweir	{
84cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_3_1, ROW_1_1 ) ;
85cdf0e10cSrcweir        Size = MAP_APPFONT ( WIDTH_IMG_HELP, HEIGHT_IMG_HELP ) ;
86cdf0e10cSrcweir		Hide = TRUE;
87cdf0e10cSrcweir	};
88cdf0e10cSrcweir    FixedText FT_PAGE_TITLE
89cdf0e10cSrcweir	{
90cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_3_3, ROW_1_2 ) ;
91cdf0e10cSrcweir		Size = MAP_APPFONT ( (COL_3_5-COL_3_3), 15 ) ;
92cdf0e10cSrcweir		Hide = TRUE;
93cdf0e10cSrcweir	};
94cdf0e10cSrcweir	FixedLine FL_LINE_1
95cdf0e10cSrcweir	{
96cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_3_1 , ROW_1_3 ) ;
97cdf0e10cSrcweir        Size = MAP_APPFONT ( (COL_3_5-COL_3_1), 1 ) ;
98cdf0e10cSrcweir		Comment = "Trennlinie" ;
99cdf0e10cSrcweir		Hide = TRUE;
100cdf0e10cSrcweir	};
101cdf0e10cSrcweir	FixedText FT_HELPTEXT
102cdf0e10cSrcweir	{
103cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_3_3, ROW_1_4 ) ;
104cdf0e10cSrcweir        Size = MAP_APPFONT ( (COL_3_5-COL_3_3), (HEIGHT_PAGEFRAME-ROW_1_4-1) ) ;
105cdf0e10cSrcweir		WordBreak = TRUE;
106cdf0e10cSrcweir		Hide = TRUE;
107cdf0e10cSrcweir	};
108cdf0e10cSrcweir    String ST_LOAD_ERROR
109cdf0e10cSrcweir	{
110cdf0e10cSrcweir		Text [ en-US ] = "The selected module could not be loaded.";
111cdf0e10cSrcweir	};
112cdf0e10cSrcweir	StringArray STR_HELPTEXTS
113cdf0e10cSrcweir	{
114cdf0e10cSrcweir		ItemList [ en-US ] =
115cdf0e10cSrcweir		{
116cdf0e10cSrcweir			< "This dialog is used to define general settings when working with %PRODUCTNAME. Enter your personal data, the defaults to be used when saving documents, and paths to important files. These settings will be saved automatically and used in later sessions as well."; SID_GENERAL_OPTIONS; > ;
117cdf0e10cSrcweir			< "This is where you make settings concerning language and writing aids for your work with %PRODUCTNAME."; SID_LANGUAGE_OPTIONS; > ;
118cdf0e10cSrcweir			< "This is where you configure %PRODUCTNAME for the Internet. You can define search engines or save your proxy settings." ; SID_INET_DLG; > ;
119cdf0e10cSrcweir			< "This is where you specify various settings for text documents. These settings determine how your text documents are handled in %PRODUCTNAME and are valid for all new %PRODUCTNAME Writer documents. You can also define a few settings for the active text document if you save it afterwards." ; SID_SW_EDITOPTIONS; > ;
120cdf0e10cSrcweir			< "This is where you define the basic settings for %PRODUCTNAME documents in HTML format. For example, you decide which contents should be displayed on the screen or printed, how the pages are scrolled on the screen, in which color keywords are highlighted in the source text and much more." ; SID_SW_ONLINEOPTIONS; > ;
121cdf0e10cSrcweir			< "This is where you define various global settings for spreadsheets. For example, you can define which contents should be displayed and in which direction the cursor will move after you enter data in a cell. You also define sort lists, the number of the decimal places displayed, etc." ; SID_SC_EDITOPTIONS; > ;
122cdf0e10cSrcweir			< "This is where you define the settings that apply to all newly saved presentations. Among other things, you decide which contents are displayed on the slides, which default unit of measure is used, if and how grid alignment is used, and if notes and handouts are always printed." ; SID_SD_EDITOPTIONS; > ;
123cdf0e10cSrcweir			< "This is where you define the settings for drawing documents. Among other things, you determine which contents are displayed on the pages, which scale is used, if and how grid alignment is used, and which contents are printed by default." ; SID_SD_GRAPHIC_OPTIONS; > ;
124cdf0e10cSrcweir			< "This is where you select the print format and print options for all newly saved formula documents. These options take effect when you want to print a formula directly from %PRODUCTNAME Math." ; SID_SM_EDITOPTIONS; > ;
125cdf0e10cSrcweir			< "This is where you specify general default settings for your %PRODUCTNAME Charts. Set the colors you want for all new charts." ; SID_SCH_EDITOPTIONS; > ;
126cdf0e10cSrcweir			< "This is where you define general settings for accessing external data sources."; SID_SB_STARBASEOPTIONS; > ;
127cdf0e10cSrcweir			< "This is where you define general settings for opening and saving documents in external formats. You can control the behavior of macros or OLE objects in Microsoft Office documents or define settings for HTML documents." ; SID_FILTER_DLG; > ;
128cdf0e10cSrcweir		};
129cdf0e10cSrcweir	};
130cdf0e10cSrcweir	Bitmap BMP_ROOT_CLOSED
131cdf0e10cSrcweir	{
132cdf0e10cSrcweir		File = "plus.bmp" ;
133cdf0e10cSrcweir	};
134cdf0e10cSrcweir	Bitmap BMP_ROOT_OPENED
135cdf0e10cSrcweir	{
136cdf0e10cSrcweir		File = "minus.bmp" ;
137cdf0e10cSrcweir	};
138cdf0e10cSrcweir};
139cdf0e10cSrcweir
140cdf0e10cSrcweirResource RID_OFADLG_OPTIONS_TREE_PAGES
141cdf0e10cSrcweir{
142cdf0e10cSrcweir	StringArray SID_GENERAL_OPTIONS
143cdf0e10cSrcweir	{
144cdf0e10cSrcweir		ItemList [ en-US ] =
145cdf0e10cSrcweir		{
146cdf0e10cSrcweir			< "%PRODUCTNAME" ; 0; > ;
147cdf0e10cSrcweir			< "User Data" ;  RID_SFXPAGE_GENERAL; > ;
148cdf0e10cSrcweir			< "General" ;  OFA_TP_MISC; > ;
149cdf0e10cSrcweir			< "Memory" ; OFA_TP_MEMORY; > ;
150cdf0e10cSrcweir			< "View" ; OFA_TP_VIEW ; > ;
151cdf0e10cSrcweir			< "Print" ; RID_SFXPAGE_PRINTOPTIONS; > ;
152cdf0e10cSrcweir			< "Paths" ;  RID_SFXPAGE_PATH; > ;
153cdf0e10cSrcweir			< "Colors" ;  RID_SVXPAGE_COLOR; > ;
154cdf0e10cSrcweir	        < "Fonts" ; RID_SVX_FONT_SUBSTITUTION ; > ;
155cdf0e10cSrcweir			< "Security" ; RID_SVXPAGE_INET_SECURITY ; > ;
156cdf0e10cSrcweir	        < "Appearance" ;        RID_SVXPAGE_COLORCONFIG        ; > ;
157cdf0e10cSrcweir	        < "Accessibility" ; RID_SVXPAGE_ACCESSIBILITYCONFIG ; > ;
158cdf0e10cSrcweir            < "Java" ; RID_SVXPAGE_OPTIONS_JAVA ; > ;
159cdf0e10cSrcweir	        < "Network Identity" ; RID_SVXPAGE_SSO ; > ;
160cdf0e10cSrcweir            < "Online Update" ; RID_SVXPAGE_ONLINEUPDATE ; > ;
161cdf0e10cSrcweir            < "" ; RID_SVXPAGE_IMPROVEMENT ; > ;
162cdf0e10cSrcweir        };
163cdf0e10cSrcweir	};
164cdf0e10cSrcweir    StringArray SID_LANGUAGE_OPTIONS
165cdf0e10cSrcweir	{
166cdf0e10cSrcweir		ItemList [ en-US ] =
167cdf0e10cSrcweir		{
168cdf0e10cSrcweir			< "Language Settings" ; 0; > ;
169cdf0e10cSrcweir			< "Languages"; OFA_TP_LANGUAGES; > ;
170cdf0e10cSrcweir			< "Writing Aids" ; RID_SFXPAGE_LINGU; > ;
171cdf0e10cSrcweir			< "Searching in Japanese" ;  RID_SVXPAGE_JSEARCH_OPTIONS; > ;
172cdf0e10cSrcweir			< "Asian Layout" ;  RID_SVXPAGE_ASIAN_LAYOUT; > ;
173cdf0e10cSrcweir			< "Complex Text Layout" ;  RID_SVXPAGE_OPTIONS_CTL; >;
174cdf0e10cSrcweir		};
175cdf0e10cSrcweir	};
176cdf0e10cSrcweir    StringArray SID_INET_DLG
177cdf0e10cSrcweir	{
178cdf0e10cSrcweir		//modified by jmeng begin
179cdf0e10cSrcweir		ItemList [ en-US ] =
180cdf0e10cSrcweir		{
181cdf0e10cSrcweir			< "Internet" ; 0; > ;
182cdf0e10cSrcweir			< "Proxy" ;  RID_SVXPAGE_INET_PROXY; > ;
183cdf0e10cSrcweir			< "Search" ;  RID_SVXPAGE_INET_SEARCH; > ;
184cdf0e10cSrcweir			< "E-mail" ;  RID_SVXPAGE_INET_MAIL; > ;
185cdf0e10cSrcweir            < "Browser Plug-in" ;  RID_SVXPAGE_INET_MOZPLUGIN; > ;
186cdf0e10cSrcweir		};
187cdf0e10cSrcweir		//modified by jmeng end
188cdf0e10cSrcweir	};
189cdf0e10cSrcweir    StringArray SID_SW_EDITOPTIONS
190cdf0e10cSrcweir	{
191cdf0e10cSrcweir        ItemList [ en-US ] =
192cdf0e10cSrcweir		{
193cdf0e10cSrcweir			< "%PRODUCTNAME Writer" ; 0; > ;
194cdf0e10cSrcweir			< "General" ;     RID_SW_TP_OPTLOAD_PAGE   ; > ;
195cdf0e10cSrcweir			< "View" ;       RID_SW_TP_CONTENT_OPT   ;> ;
196cdf0e10cSrcweir			< "Formatting Aids" ;        RID_SW_TP_OPTSHDWCRSR    ; > ;
197cdf0e10cSrcweir			< "Grid" ;        RID_SVXPAGE_GRID        ; > ;
198cdf0e10cSrcweir			< "Basic Fonts (Western)" ;RID_SW_TP_STD_FONT       ; > ;
199cdf0e10cSrcweir			< "Basic Fonts (Asian)" ;RID_SW_TP_STD_FONT_CJK       ; > ;
200cdf0e10cSrcweir	        < "Basic Fonts (CTL)" ;      RID_SW_TP_STD_FONT_CTL       ; > ;
201cdf0e10cSrcweir	        < "Print" ;       RID_SW_TP_OPTPRINT_PAGE  ; > ;
202cdf0e10cSrcweir			< "Table" ;  		RID_SW_TP_OPTTABLE_PAGE  ; > ;
203cdf0e10cSrcweir			< "Changes" ;    RID_SW_TP_REDLINE_OPT    ; > ;
204cdf0e10cSrcweir            < "Compatibility" ; RID_SW_TP_OPTCOMPATIBILITY_PAGE    ; > ;
205cdf0e10cSrcweir            < "AutoCaption" ; RID_SW_TP_OPTCAPTION_PAGE ; > ;
206cdf0e10cSrcweir            < "Mail Merge E-mail" ; RID_SW_TP_MAILCONFIG ; >;
207cdf0e10cSrcweir        };
208cdf0e10cSrcweir	};
209cdf0e10cSrcweir    StringArray SID_SW_ONLINEOPTIONS
210cdf0e10cSrcweir	{
211cdf0e10cSrcweir		ItemList [ en-US ] =
212cdf0e10cSrcweir		{
213cdf0e10cSrcweir			< "%PRODUCTNAME Writer/Web" ; 0; > ;
214cdf0e10cSrcweir			< "View" ;       RID_SW_TP_HTML_CONTENT_OPT      ;> ;
215cdf0e10cSrcweir			< "Formatting Aids" ;        RID_SW_TP_HTML_OPTSHDWCRSR    ; > ;
216cdf0e10cSrcweir			< "Grid" ;        RID_SW_TP_HTML_OPTGRID_PAGE ; > ;
217cdf0e10cSrcweir			< "Print" ;  		RID_SW_TP_HTML_OPTPRINT_PAGE  ; > ;
218cdf0e10cSrcweir			< "Table" ;  		RID_SW_TP_HTML_OPTTABLE_PAGE  ; > ;
219cdf0e10cSrcweir			< "Background" ;  	RID_SW_TP_BACKGROUND  ; > ;
220cdf0e10cSrcweir		};
221cdf0e10cSrcweir	};
222cdf0e10cSrcweir	StringArray SID_SM_EDITOPTIONS
223cdf0e10cSrcweir	{
224cdf0e10cSrcweir		ItemList [ en-US ] =
225cdf0e10cSrcweir		{
226cdf0e10cSrcweir			< "%PRODUCTNAME Math" ; 0; > ;
227cdf0e10cSrcweir			< "Settings" ; SID_SM_TP_PRINTOPTIONS;> ;
228cdf0e10cSrcweir		};
229cdf0e10cSrcweir	};
230cdf0e10cSrcweir	StringArray SID_SC_EDITOPTIONS
231cdf0e10cSrcweir	{
232cdf0e10cSrcweir		ItemList [ en-US ] =
233cdf0e10cSrcweir		{
234cdf0e10cSrcweir			< "%PRODUCTNAME Calc" ; 0; > ;
235cdf0e10cSrcweir			< "General" ;			SID_SC_TP_LAYOUT			;> ;
236cdf0e10cSrcweir			< "View" ;			SID_SC_TP_CONTENT			;> ;
237cdf0e10cSrcweir			< "International" ;		RID_OFA_TP_INTERNATIONAL	;> ;
238cdf0e10cSrcweir			< "Calculate" ;			SID_SC_TP_CALC				;> ;
239cdf0e10cSrcweir			< "Sort Lists" ;		SID_SC_TP_USERLISTS			;> ;
240cdf0e10cSrcweir			< "Changes" ;		SID_SC_TP_CHANGES			;> ;
241cdf0e10cSrcweir			< "Grid" ;			SID_SC_TP_GRID				;> ;
242cdf0e10cSrcweir			< "Print" ;			RID_SC_TP_PRINT				;> ;
243cdf0e10cSrcweir		};
244cdf0e10cSrcweir	};
245cdf0e10cSrcweir	StringArray SID_SD_EDITOPTIONS
246cdf0e10cSrcweir	{
247cdf0e10cSrcweir		ItemList [ en-US ] =
248cdf0e10cSrcweir		{
249cdf0e10cSrcweir			< "%PRODUCTNAME Impress" ; 0; > ;
250cdf0e10cSrcweir			< "General";			SID_SI_TP_MISC					; > ;
251cdf0e10cSrcweir			< "View" ;			SID_SI_TP_CONTENTS				; > ;
252cdf0e10cSrcweir			< "Grid" ;			SID_SI_TP_SNAP					; > ;
253cdf0e10cSrcweir			< "Print" ;			SID_SI_TP_PRINT					; > ;
254cdf0e10cSrcweir		};
255cdf0e10cSrcweir	};
256cdf0e10cSrcweir	StringArray SID_SD_GRAPHIC_OPTIONS
257cdf0e10cSrcweir	{
258cdf0e10cSrcweir		ItemList [ en-US ] =
259cdf0e10cSrcweir		{
260cdf0e10cSrcweir			< "%PRODUCTNAME Draw" ; 0; > ;
261cdf0e10cSrcweir			< "General" ;			SID_SD_TP_MISC				; > ;
262cdf0e10cSrcweir			< "View" ;			SID_SD_TP_CONTENTS			; > ;
263cdf0e10cSrcweir			< "Grid" ;			SID_SD_TP_SNAP				; > ;
264cdf0e10cSrcweir			< "Print" ; 	 		SID_SD_TP_PRINT				; > ;
265cdf0e10cSrcweir		};
266cdf0e10cSrcweir	};
267cdf0e10cSrcweir	StringArray SID_SCH_EDITOPTIONS
268cdf0e10cSrcweir	{
269cdf0e10cSrcweir		ItemList [ en-US ] =
270cdf0e10cSrcweir		{
271cdf0e10cSrcweir			< "Charts" ; 0; > ;
272cdf0e10cSrcweir			< "Default Colors" ; 	 	RID_OPTPAGE_CHART_DEFCOLORS ; > ;
273cdf0e10cSrcweir		};
274cdf0e10cSrcweir	};
275cdf0e10cSrcweir	StringArray SID_FILTER_DLG
276cdf0e10cSrcweir	{
277cdf0e10cSrcweir		ItemList [ en-US ] =
278cdf0e10cSrcweir		{
279cdf0e10cSrcweir				< "Load/Save" ; 0; > ;
280cdf0e10cSrcweir			< "General" ;  RID_SFXPAGE_SAVE; > ;
281cdf0e10cSrcweir			< "VBA Properties" ;  SID_OPTFILTER_MSOFFICE; > ;
282cdf0e10cSrcweir			< "Microsoft Office" ;  RID_OFAPAGE_MSFILTEROPT2; > ;
283cdf0e10cSrcweir			< "HTML Compatibility" ; RID_OFAPAGE_HTMLOPT ; > ;
284cdf0e10cSrcweir		};
285cdf0e10cSrcweir	};
286cdf0e10cSrcweir	StringArray SID_SB_STARBASEOPTIONS
287cdf0e10cSrcweir	{
288cdf0e10cSrcweir		ItemList [ en-US ] =
289cdf0e10cSrcweir		{
290cdf0e10cSrcweir			< "%PRODUCTNAME Base" ; 0; > ;
291cdf0e10cSrcweir			< "Connections" ; SID_SB_CONNECTIONPOOLING; > ;
292cdf0e10cSrcweir			< "Databases" ; SID_SB_DBREGISTEROPTIONS; > ;
293cdf0e10cSrcweir		};
294cdf0e10cSrcweir	};
295cdf0e10cSrcweir};
296cdf0e10cSrcweirString RID_RIDER_SLL_SITE
297cdf0e10cSrcweir{
298cdf0e10cSrcweir	Text [ en-US ] = "Site certificates" ;
299cdf0e10cSrcweir};
300cdf0e10cSrcweirString RID_RIDER_SLL_PERSONAL
301cdf0e10cSrcweir{
302cdf0e10cSrcweir	Text [ en-US ] = "Personal certificates" ;
303cdf0e10cSrcweir};
304cdf0e10cSrcweir
305cdf0e10cSrcweir#define MASK_COL    MaskColor = Color { Red = 0xFF00; Green = 0x0000; Blue = 0xFF00; } ;
306cdf0e10cSrcweir#define IMGLST_IDLST \
307cdf0e10cSrcweir    IdList = {                      \
308cdf0e10cSrcweir        SID_GENERAL_OPTIONS;        \
309cdf0e10cSrcweir        SID_LANGUAGE_OPTIONS;       \
310cdf0e10cSrcweir        SID_INET_DLG;               \
311cdf0e10cSrcweir        SID_SW_EDITOPTIONS;         \
312cdf0e10cSrcweir        SID_SW_ONLINEOPTIONS;       \
313cdf0e10cSrcweir        SID_SC_EDITOPTIONS;         \
314cdf0e10cSrcweir        SID_SD_EDITOPTIONS;         \
315cdf0e10cSrcweir        SID_SD_GRAPHIC_OPTIONS;     \
316cdf0e10cSrcweir        SID_SM_EDITOPTIONS;         \
317cdf0e10cSrcweir        SID_SCH_EDITOPTIONS;        \
318cdf0e10cSrcweir        SID_SB_STARBASEOPTIONS;     \
319cdf0e10cSrcweir        SID_FILTER_DLG;             \
320cdf0e10cSrcweir    };                              \
321cdf0e10cSrcweir    IdCount = {                     \
322cdf0e10cSrcweir        12;                         \
323cdf0e10cSrcweir    };
324cdf0e10cSrcweir
325cdf0e10cSrcweirImageList RID_IMGLIST_TREEOPT
326cdf0e10cSrcweir{
327cdf0e10cSrcweir    Prefix = "tr";
328cdf0e10cSrcweir    MASK_COL
329cdf0e10cSrcweir    IMGLST_IDLST
330cdf0e10cSrcweir};
331cdf0e10cSrcweir
332cdf0e10cSrcweirImageList RID_IMGLIST_TREEOPT_HC
333cdf0e10cSrcweir{
334cdf0e10cSrcweir    Prefix = "trh";
335cdf0e10cSrcweir    MASK_COL
336cdf0e10cSrcweir    IMGLST_IDLST
337cdf0e10cSrcweir};
338cdf0e10cSrcweir
339