Update ooo320-m1
[ooovba.git] / svx / source / cui / connpooloptions.src
blob7ca11257e63b6fd0c233764c58b741cd69526a1c
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: connpooloptions.src,v $
10  * $Revision: 1.9 $
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 #include "connpooloptions.hrc"
32 #include <svx/dialogs.hrc>
34 #define PAGE_SIZE_X             260
35 #define PAGE_SIZE_Y             185
37 #define LIST_SIZE_Y             100
39 TabPage RID_OFAPAGE_CONNPOOLOPTIONS
41      // HelpId = ;
42     OutputSize = TRUE ;
43     Size = MAP_APPFONT ( PAGE_SIZE_X, PAGE_SIZE_Y ) ;
44     SVLook = TRUE ;
45     Hide = TRUE ;
47     FixedLine FL_POOLING
48     {
49         Pos = MAP_APPFONT( 4, 3 );
50         Size = MAP_APPFONT( PAGE_SIZE_X - 8, 8 );
51         Text [ en-US ] = "Connection pool";
52     };
53     CheckBox CB_POOL_CONNS
54     {
55         Pos = MAP_APPFONT( 7, 15 );
56         Size = MAP_APPFONT( PAGE_SIZE_X - 14, 10 );
57         Text [ en-US ] = "Connection pooling enabled";
58     };
59     FixedText FT_DRIVERS
60     {
61         Pos = MAP_APPFONT( 17, 28 );
62         Size = MAP_APPFONT( PAGE_SIZE_X - 14 - 8, 8 );
63         Text [ en-US ] = "Drivers known in %PRODUCTNAME";
64     };
65     Control CTRL_DRIVER_LIST
66     {
67         Pos = MAP_APPFONT( 17, 39 );
68         Size = MAP_APPFONT( PAGE_SIZE_X - 14 - 8, LIST_SIZE_Y );
69         TabStop = TRUE;
70         Border = TRUE;
71         SVLook = TRUE;
72     };
73     FixedText FT_DRIVERLABEL
74     {
75         Pos = MAP_APPFONT( 17, 39 + LIST_SIZE_Y + 4 );
76         Size = MAP_APPFONT( 70, 8 );
77         Text [ en-US ] = "Current driver:";
78     };
79     FixedText FT_DRIVER
80     {
81         Pos = MAP_APPFONT( 17 + 70 + 3, 39 + LIST_SIZE_Y + 4 );
82         Size = MAP_APPFONT( PAGE_SIZE_X - ( 15 + 70 + 3 ) - 7, 8 );
83     };
84     CheckBox CB_DRIVERPOOLING
85     {
86         Pos = MAP_APPFONT( 17, 39 + LIST_SIZE_Y + 4 + 8 + 3 );
87         Size = MAP_APPFONT( PAGE_SIZE_X - 23, 10 );
88         Text [ en-US ] = "Enable pooling for this driver";
89     };
90     FixedText FT_TIMEOUT
91     {
92         Pos = MAP_APPFONT( 27, 39 + LIST_SIZE_Y + 4 + 8 + 3 + 10 + 3 + 2 );
93         Size = MAP_APPFONT( 100, 8 );
94         Text [ en-US ] = "Timeout (seconds)";
95     };
96     NumericField NF_TIMEOUT
97     {
98         Pos = MAP_APPFONT( 27 + 100 + 3, 39 + LIST_SIZE_Y + 4 + 8 + 3 + 10 + 3 );
99         Size = MAP_APPFONT( 40, 12 );
100         SvLook = TRUE;
101         Border = TRUE;
102         Right = TRUE;
103         Spin = TRUE;
104         Repeat = TRUE;
105         Minimum = 30;
106         Maximum = 600;
107         StrictFormat = TRUE;
108         DecimalDigits = 0;
109         SpinSize = 1;
110     };
112     String STR_DRIVER_NAME
113     {
114         Text [ en-US ] = "Driver name";
115     };
116     String STR_POOLED_FLAG
117     {
118         Text [ en-US ] = "Pool";
119     };
120     String STR_POOL_TIMEOUT
121     {
122         Text [ en-US ] = "Timeout";
123     };
124     String STR_YES
125     {
126         Text [ en-US ] = "Yes";
127     };
128     String STR_NO
129     {
130         Text [ en-US ] = "No";
131     };