Version 3.6.0.2, tag libreoffice-3.6.0.2
[LibreOffice.git] / dbaccess / source / ui / dlg / dbadmin2.src
blob44ef3f024e3a61fd88fb5789475c5dd1e59a950b
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  ************************************************************************/
28 #ifndef _DBA_DBACCESS_HELPID_HRC_
29 #include "dbaccess_helpid.hrc"
30 #endif
32 #ifndef _DBU_DLG_HRC_
33 #include "dbu_dlg.hrc"
34 #endif
35 #ifndef _DBAUI_DBADMIN_HRC_
36 #include "dbadmin.hrc"
37 #endif
38 #ifndef DBACCESS_UI_BROWSER_ID_HXX
39 #include "browserids.hxx"
40 #endif
41 #ifndef DBAUI_TOOLBOX_HXX
42 #include "toolbox.hrc"
43 #endif
44 #ifndef _DBAUI_AUTOCONTROLS_HRC_
45 #include "AutoControls.hrc"
46 #endif
48 //.........................................................................
50 String STR_ENTER_CONNECTION_PASSWORD
52     Text [ en-US ] = "A password is needed to connect to the data source \"$name$\".";
55 String STR_ASK_FOR_DIRECTORY_CREATION
57     Text [ en-US ] = "The directory\n\n$path$\n\ndoes not exist. Should it be created?";
60 String STR_COULD_NOT_CREATE_DIRECTORY
62     Text [ en-US ] = "The directory $name$ could not be created.";
70 #define EDIT_SIZE_X     50
71 #define FT_SIZE_X       90
72 #define WIN_X           220
73 #define WIN_Y           72
75 ModalDialog DLG_DOMAINPASSWORD
77     HelpID = "dbaccess:ModalDialog:DLG_DOMAINPASSWORD";
78     Border = TRUE ;
79     Moveable = TRUE ;
80     OutputSize = TRUE ;
81     SVLook = TRUE ;
82     Size = MAP_APPFONT ( WIN_X , WIN_Y ) ;
83     Text[ en-US ] = "Convert Database";
85     FixedLine FT_PASSWORD
86     {
87         Pos = MAP_APPFONT ( 3 , 3 ) ;
88         Size = MAP_APPFONT ( WIN_X - 3 - 6 - 6 - 50 , 8 ) ;
89         Text[ en-US ] = "Please enter the ~password for the user 'DOMAIN'.";
90     };
92     Edit ET_PASSWORD
93     {
94         HelpID = "dbaccess:Edit:DLG_DOMAINPASSWORD:ET_PASSWORD";
95         Border = TRUE ;
96         Pos = MAP_APPFONT ( 12 + FT_SIZE_X , 16 ) ;
97         Size = MAP_APPFONT ( EDIT_SIZE_X , 12 ) ;
98         PassWord = TRUE ;
99     };
100     OKButton BTN_PASSWORD_OK
101     {
102         Pos = MAP_APPFONT ( WIN_X - 56 , 6 ) ;
103         Size = MAP_APPFONT ( 50 , 14 ) ;
104         DefButton = TRUE ;
105     };
106     CancelButton BTN_PASSWORD_CANCEL
107     {
108         Pos = MAP_APPFONT ( WIN_X - 56 , 23 ) ;
109         Size = MAP_APPFONT ( 50 , 14 ) ;
110     };
111     HelpButton BTN_PASSWORD_HELP
112     {
113         Pos = MAP_APPFONT ( WIN_X - 56 , 43 ) ;
114         Size = MAP_APPFONT ( 50 , 14 ) ;
115     };
118 #define PAGE_X_T  (PAGE_X -80)
119 #define PAGE_Y_T  (PAGE_Y -50)
121 TabPage PAGE_TABLESUBSCRIPTION
123     SVLook = TRUE ;
124     Hide = TRUE;
125     Pos = MAP_APPFONT ( 0 , 0 ) ;
126     Size = MAP_APPFONT ( PAGE_X_T, PAGE_Y_T) ;
127     HelpId = HID_DSADMIN_TABLE_SUBSCRIPTION;
129     Text [ en-US ] = "Tables Filter" ;
131     FixedLine FL_SEPARATOR1
132     {
133         Pos = MAP_APPFONT ( RELATED_CONTROLS , UNRELATED_CONTROLS ) ;
134         Size = MAP_APPFONT ( PAGE_X_T - 2* RELATED_CONTROLS, FIXEDTEXT_HEIGHT ) ;
135         Text [ en-US ] = "Tables and table filter";
136     };
137     Control CTL_TABLESUBSCRIPTION
138     {
139         Pos     = MAP_APPFONT ( UNRELATED_CONTROLS , UNRELATED_CONTROLS + FIXEDTEXT_HEIGHT + RELATED_CONTROLS) ;
140         Size    = MAP_APPFONT ( PAGE_X_T - 2*UNRELATED_CONTROLS , 81 ) ;
141         Group   = TRUE;
142         Border  = TRUE ;
143         TabStop = TRUE ;
144         HelpId = HID_DSADMIN_TABLE_SELECTOR;
145     };
146     FixedText FT_FILTER_EXPLANATION
147     {
148         Pos = MAP_APPFONT ( UNRELATED_CONTROLS , 2*UNRELATED_CONTROLS + FIXEDTEXT_HEIGHT + RELATED_CONTROLS + 81 ) ;
149         Size    = MAP_APPFONT ( PAGE_X_T - 2*UNRELATED_CONTROLS , 16 ) ;
150         HelpId = HID_DSADMIN_FILTER_EXPLANATION;
151         WordBreak = TRUE;
152         Text [ en-US ] = "Mark the tables that should be visible for the applications.";
153     };