merge the formfield patch from ooo-build
[ooovba.git] / dbaccess / source / ui / dlg / UserAdmin.src
blobac5dfb389d8111508f2dec53cb19801421734d66
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: UserAdmin.src,v $
10  * $Revision: 1.26 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #ifndef DBAUI_USERADMIN_HRC
32 #include "UserAdmin.hrc"
33 #endif
34 #ifndef _DBU_DLG_HRC_
35 #include "dbu_dlg.hrc"
36 #endif
37 #ifndef _DBA_DBACCESS_HELPID_HRC_
38 #include "dbaccess_helpid.hrc"
39 #endif
41 #define WINDOW_SIZE_X 260
42 #define WINDOW_SIZE_Y 185
44 TabPage TAB_PAGE_USERADMIN
46     SVLook              = TRUE ;
47     HelpId              = HID_TAB_PAGE_USERADMIN ;
48     Size                = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ;
49     Hide = TRUE;
51     FixedLine FL_USER
52     {
53         Pos                                     = MAP_APPFONT ( 6 , 3  ) ;
54         Size                            = MAP_APPFONT ( WINDOW_SIZE_X - 8, 8) ;
55         Text [ en-US ]  = "User selection";
56     };
58     FixedText FT_USER
59     {
60         Pos                                     = MAP_APPFONT ( 12 , 14 ) ;
61         Size                            = MAP_APPFONT ( 90 , 10 ) ;
62         Text [ en-US ]  = "Us~er:";
63     };
65     ListBox LB_USER
66     {
67         Border                          = TRUE ;
68         Pos                                     = MAP_APPFONT ( 108 , 13) ;
69         Size                            = MAP_APPFONT ( 105 , 97 ) ;
70         TabStop                         = TRUE ;
71         HScroll                         = TRUE ;
72         Sort                            = TRUE ;
73         DropDown                        = TRUE ;
74         HelpId                          = HID_TAB_PAGE_LBUSER ;
75     };
78     PushButton PB_NEWUSER
79     {
80         Pos                                     = MAP_APPFONT ( 12 , 29 ) ;
81         Size                            = MAP_APPFONT ( 70 , 14 ) ;
82         TabStop                         = TRUE ;
83         DefButton                       = TRUE ;
84         HelpId                          = HID_TAB_PAGE_PBUSER ;
85         Text [ en-US ] = "~Add User...";
86     };
88     PushButton PB_CHANGEPWD
89     {
90         Pos                                     = MAP_APPFONT ( 95 , 29 ) ;
91         Size                            = MAP_APPFONT ( 70 , 14 ) ;
92         TabStop                         = TRUE ;
93         DefButton                       = TRUE ;
94         HelpId                          = HID_TAB_PAGE_PBCHGPWD ;
95         Text [ en-US ] = "Change ~Password...";
96     };
98     PushButton PB_DELETEUSER
99     {
100         Pos                                     = MAP_APPFONT ( WINDOW_SIZE_X - 82 , 29 ) ;
101         Size                            = MAP_APPFONT ( 70 , 14 ) ;
102         TabStop                         = TRUE ;
103         DefButton                       = TRUE ;
104         HelpId                          = HID_TAB_PAGE_PBUSERDELETE ;
105         Text [ en-US ] = "~Delete User...";
106     };
108     FixedLine FL_TABLE_GRANTS
109     {
110         Pos                                     = MAP_APPFONT ( 6 , 52  ) ;
111         Size                            = MAP_APPFONT ( WINDOW_SIZE_X - 8, 8) ;
112         Text [ en-US ] = "Access rights for selected user";
113     };
115     Control CTRL_TABLE_GRANTS
116     {
117         Pos                                     = MAP_APPFONT ( 12 , 63  ) ;
118         Size                            = MAP_APPFONT ( WINDOW_SIZE_X - 22, WINDOW_SIZE_Y - 75 );
119         Border                          = TRUE ;
120         TabStop                         = TRUE ;
121         HelpId                          = HID_TAB_PAGE_TBLGRANTS ;
122     };
125 QueryBox QUERY_USERADMIN_DELETE_USER
127     Buttons = WB_YES_NO ;
128     Message [ en-US ] = "Do you really want to delete the user?";
131 String STR_USERADMIN_NOT_AVAILABLE
133     Text [ en-US ] = "The database does not support user administration." ;
136 #define EDIT_SIZE_X             50
137 #define FT_SIZE_X               90
138 #define WIN_X                   220
139 #define WIN_Y                   72
141 ModalDialog DLG_PASSWORD
143     HelpId = HID_DLG_PASSWORD ;
144     Border = TRUE ;
145     Moveable = TRUE ;
146     OutputSize = TRUE ;
147     SVLook = TRUE ;
148     Size = MAP_APPFONT ( WIN_X , WIN_Y ) ;
150     FixedLine FL_USER
151     {
152         Pos = MAP_APPFONT ( 3 , 3 ) ;
153         Size = MAP_APPFONT ( WIN_X - 3 - 6 - 6 - 50 , 8 ) ;
154         Text [ en-US ] = "User \"$name$:  $\"";
155     };
157     FixedText FT_OLDPASSWORD
158     {
159         Pos = MAP_APPFONT ( 6 , 17 ) ;
160         Size = MAP_APPFONT ( FT_SIZE_X , 10 ) ;
161         Text [ en-US ] = "Old p~assword";
162     };
163     Edit ED_OLDPASSWORD
164     {
165         Border = TRUE ;
166         Pos = MAP_APPFONT ( 12 + FT_SIZE_X , 16 ) ;
167         Size = MAP_APPFONT ( EDIT_SIZE_X , 12 ) ;
168         PassWord = TRUE ;
169     };
171     FixedText FT_PASSWORD
172     {
173         Pos = MAP_APPFONT ( 6 , 35 ) ;
174         Size = MAP_APPFONT ( FT_SIZE_X , 10 ) ;
175         Text [ en-US ] = "~Password";
176     };
177     Edit ED_PASSWORD
178     {
179         Border = TRUE ;
180         Pos = MAP_APPFONT ( 12 + FT_SIZE_X , 34 ) ;
181         Size = MAP_APPFONT ( EDIT_SIZE_X , 12 ) ;
182         PassWord = TRUE ;
183     };
184     FixedText FT_PASSWORD_REPEAT
185     {
186         Pos = MAP_APPFONT ( 6 , 52 ) ;
187         Size = MAP_APPFONT ( FT_SIZE_X , 10 ) ;
188         Text [ en-US ] = "~Confirm  password";
189     };
190     Edit ED_PASSWORD_REPEAT
191     {
192         Border = TRUE ;
193         Pos = MAP_APPFONT ( 12 + FT_SIZE_X , 51 ) ;
194         Size = MAP_APPFONT ( EDIT_SIZE_X , 12 ) ;
195         PassWord = TRUE ;
196     };
197     
198     OKButton BTN_PASSWORD_OK
199     {
200         Pos = MAP_APPFONT ( WIN_X - 56 , 6 ) ;
201         Size = MAP_APPFONT ( 50 , 14 ) ;
202         DefButton = TRUE ;
203     };
204     CancelButton BTN_PASSWORD_CANCEL
205     {
206         Pos = MAP_APPFONT ( WIN_X - 56 , 23 ) ;
207         Size = MAP_APPFONT ( 50 , 14 ) ;
208     };
209     HelpButton BTN_PASSWORD_HELP
210     {
211         Pos = MAP_APPFONT ( WIN_X - 56 , 43 ) ;
212         Size = MAP_APPFONT ( 50 , 14 ) ;
213     };  
214     Text [ en-US ] = "Change Password";
217 String STR_ERROR_PASSWORDS_NOT_IDENTICAL
219     Text [ en-US ] = "The passwords do not match. Please enter the password again.";