xref: /aoo42x/main/cui/source/dialogs/multipat.src (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#include "multipat.hrc"
29#include "helpid.hrc"
30#include <cuires.hrc>
31
32// RID_SVXDLG_MULTIPATH --------------------------------------------------
33
34ModalDialog RID_SVXDLG_MULTIPATH
35{
36	HelpId = HID_MULTIPATH ;
37	OutputSize = TRUE ;
38	Size = MAP_APPFONT ( 260 , 120 ) ;
39	Text [ en-US ] = "Select Paths" ;
40	Moveable = TRUE ;
41	Closeable = TRUE ;
42    FixedLine FL_MULTIPATH
43    {
44        Pos = MAP_APPFONT ( 6 , 3 ) ;
45        Size = MAP_APPFONT ( 248 , 8 ) ;
46        Text [ en-US ] = "Paths" ;
47    };
48    ListBox LB_MULTIPATH
49    {
50        HelpID = "cui:ListBox:RID_SVXDLG_MULTIPATH:LB_MULTIPATH";
51        Border = TRUE ;
52        Pos = MAP_APPFONT ( 12 , 14 ) ;
53        Size = MAP_APPFONT ( 189 , 80 ) ;
54        AutoHScroll = TRUE ;
55    };
56    Control LB_RADIOBUTTON
57    {
58        HelpId = HID_OPTIONS_MULTIPATH_LIST ;
59        Hide = TRUE ;
60        Border = TRUE ;
61        Pos = MAP_APPFONT ( 6 , 6 ) ;
62        Size = MAP_APPFONT ( 195 , 77 ) ;
63    };
64    FixedText FT_RADIOBUTTON
65    {
66        Hide = TRUE ;
67        NoLabel = TRUE ;
68        Pos = MAP_APPFONT ( 6 , 86 );
69        Size = MAP_APPFONT ( 195 , 8 );
70        Text [ en-US ] = "Mark the default path for new files.";
71    };
72    PushButton BTN_ADD_MULTIPATH
73	{
74        HelpID = "cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_ADD_MULTIPATH";
75		Pos = MAP_APPFONT ( 204 , 14 ) ;
76		Size = MAP_APPFONT ( 50 , 14 ) ;
77		Text [ en-US ] = "~Add..." ;
78	};
79	PushButton BTN_DEL_MULTIPATH
80	{
81	    HelpID = "cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_DEL_MULTIPATH";
82		Pos = MAP_APPFONT ( 204 , 31 ) ;
83		Size = MAP_APPFONT ( 50 , 14 ) ;
84		Text [ en-US ] = "~Delete" ;
85	};
86	OKButton BTN_MULTIPATH_OK
87	{
88		Pos = MAP_APPFONT ( 95 , 100 ) ;
89		Size = MAP_APPFONT ( 50 , 14 ) ;
90		DefButton = TRUE;
91	};
92	CancelButton BTN_MULTIPATH_CANCEL
93	{
94		Pos = MAP_APPFONT ( 148 , 100 ) ;
95		Size = MAP_APPFONT ( 50 , 14 ) ;
96	};
97	HelpButton BTN_MULTIPATH_HELP
98	{
99		Pos = MAP_APPFONT (  204 , 100 ) ;
100		Size = MAP_APPFONT ( 50 , 14 ) ;
101	};
102    String STR_HEADER_PATHS
103    {
104        Text [ en-US ] = "Path list" ;
105    };
106};
107String RID_MULTIPATH_DBL_ERR
108{
109	Text [ en-US ] = "The path %1 already exists." ;
110};
111String RID_SVXSTR_FILE_TITLE
112{
113	Text [ en-US ] = "Select files" ;
114};
115String RID_SVXSTR_FILE_HEADLINE
116{
117	Text [ en-US ] = "Files" ;
118};
119String RID_SVXSTR_ARCHIVE_TITLE
120{
121	Text [ en-US ] = "Select Archives" ;
122};
123String RID_SVXSTR_ARCHIVE_HEADLINE
124{
125	Text [ en-US ] = "Archives" ;
126};
127String RID_SVXSTR_MULTIFILE_DBL_ERR
128{
129	Text [ en-US ] = "The file %1 already exists." ;
130};
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154