xref: /trunk/main/cui/source/dialogs/multipat.src (revision e414e35e)
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 "multipat.hrc"
25#include "helpid.hrc"
26#include <cuires.hrc>
27
28// RID_SVXDLG_MULTIPATH --------------------------------------------------
29
30ModalDialog RID_SVXDLG_MULTIPATH
31{
32	HelpId = HID_MULTIPATH ;
33	OutputSize = TRUE ;
34	Size = MAP_APPFONT ( 260, 120 ) ;
35	Text [ en-US ] = "Select Paths" ;
36	Moveable = TRUE ;
37	Closeable = TRUE ;
38	FixedLine FL_MULTIPATH
39	{
40		Pos = MAP_APPFONT ( 6, 3 ) ;
41		Size = MAP_APPFONT ( 248, 8 ) ;
42		Text [ en-US ] = "Paths" ;
43	};
44	ListBox LB_MULTIPATH
45	{
46		HelpID = "cui:ListBox:RID_SVXDLG_MULTIPATH:LB_MULTIPATH" ;
47		Border = TRUE ;
48		Pos = MAP_APPFONT ( 12, 14 ) ;
49		Size = MAP_APPFONT ( 189, 80 ) ;
50		AutoHScroll = TRUE ;
51	};
52	Control LB_RADIOBUTTON
53	{
54		HelpId = HID_OPTIONS_MULTIPATH_LIST ;
55		Hide = TRUE ;
56		Border = TRUE ;
57		Pos = MAP_APPFONT ( 6, 6 ) ;
58		Size = MAP_APPFONT ( 195, 77 ) ;
59	};
60	FixedText FT_RADIOBUTTON
61	{
62		Hide = TRUE ;
63		NoLabel = TRUE ;
64		Pos = MAP_APPFONT ( 6, 86 ) ;
65		Size = MAP_APPFONT ( 195, 8 ) ;
66		Text [ en-US ] = "Mark the default path for new files." ;
67	};
68	PushButton BTN_ADD_MULTIPATH
69	{
70		HelpID = "cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_ADD_MULTIPATH" ;
71		Pos = MAP_APPFONT ( 204, 14 ) ;
72		Size = MAP_APPFONT ( 50, 14 ) ;
73		Text [ en-US ] = "~Add..." ;
74	};
75	PushButton BTN_DEL_MULTIPATH
76	{
77		HelpID = "cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_DEL_MULTIPATH" ;
78		Pos = MAP_APPFONT ( 204, 31 ) ;
79		Size = MAP_APPFONT ( 50, 14 ) ;
80		Text [ en-US ] = "~Delete" ;
81	};
82	OKButton BTN_MULTIPATH_OK
83	{
84		Pos = MAP_APPFONT ( 95, 100 ) ;
85		Size = MAP_APPFONT ( 50, 14 ) ;
86		DefButton = TRUE;
87	};
88	CancelButton BTN_MULTIPATH_CANCEL
89	{
90		Pos = MAP_APPFONT ( 148, 100 ) ;
91		Size = MAP_APPFONT ( 50, 14 ) ;
92	};
93	HelpButton BTN_MULTIPATH_HELP
94	{
95		Pos = MAP_APPFONT ( 204, 100 ) ;
96		Size = MAP_APPFONT ( 50, 14 ) ;
97	};
98	String STR_HEADER_PATHS
99	{
100		Text [ en-US ] = "Path list" ;
101	};
102};
103String RID_MULTIPATH_DBL_ERR
104{
105	Text [ en-US ] = "The path %1 already exists." ;
106};
107String RID_SVXSTR_FILE_TITLE
108{
109	Text [ en-US ] = "Select files" ;
110};
111String RID_SVXSTR_FILE_HEADLINE
112{
113	Text [ en-US ] = "Files" ;
114};
115String RID_SVXSTR_ARCHIVE_TITLE
116{
117	Text [ en-US ] = "Select Archives" ;
118};
119String RID_SVXSTR_ARCHIVE_HEADLINE
120{
121	Text [ en-US ] = "Archives" ;
122};
123String RID_SVXSTR_MULTIFILE_DBL_ERR
124{
125	Text [ en-US ] = "The file %1 already exists." ;
126};
127
128// ********************************************************************** EOF
129