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