xref: /trunk/main/sc/source/ui/src/dbnamdlg.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#include "dbnamdlg.hrc"
28ModelessDialog RID_SCDLG_DBNAMES
29{
30	OutputSize = TRUE ;
31	HelpId = CMD_SID_DEFINE_DBNAME ;
32	Hide = TRUE ;
33	SVLook = TRUE ;
34	Size = MAP_APPFONT ( 222 , 142 ) ;
35	Text [ en-US ] = "Define Database Range" ;
36	Moveable = TRUE ;
37	 // Closeable = TRUE;	// Dieser Dialog hat einen Cancel-Button !
38    FixedLine FL_NAME
39	{
40		Pos = MAP_APPFONT ( 6 , 3 ) ;
41        Size = MAP_APPFONT ( 154 , 8 ) ;
42		Text [ en-US ] = "Na~me" ;
43	};
44	ComboBox ED_NAME
45	{
46	    HelpID = "sc:ComboBox:RID_SCDLG_DBNAMES:ED_NAME";
47		Pos = MAP_APPFONT ( 12 , 14 ) ;
48        Size = MAP_APPFONT ( 145 , 92 ) ;
49		TabStop = TRUE ;
50		VScroll = TRUE ;
51	};
52    FixedLine FL_ASSIGN
53	{
54        Pos = MAP_APPFONT ( 6 , 112 ) ;
55        Size = MAP_APPFONT ( 154 , 8 ) ;
56		Text [ en-US ] = "~Range" ;
57	};
58	Edit ED_DBAREA
59	{
60	    HelpID = "sc:Edit:RID_SCDLG_DBNAMES:ED_DBAREA";
61		Border = TRUE ;
62        Pos = MAP_APPFONT ( 12 , 123 ) ;
63        Size = MAP_APPFONT ( 131 , 12 ) ;
64		TabStop = TRUE ;
65	};
66	ImageButton RB_DBAREA
67	{
68	    HelpID = "sc:ImageButton:RID_SCDLG_DBNAMES:RB_DBAREA";
69        Pos = MAP_APPFONT ( 145 , 122 ) ;
70		Size = MAP_APPFONT ( 13 , 15 ) ;
71		TabStop = FALSE ;
72		QuickHelpText [ en-US ] = "Shrink" ;
73	};
74    FixedLine FL_OPTIONS
75	{
76		Hide = TRUE ;
77		Pos = MAP_APPFONT ( 6 , 142 ) ;
78        Size = MAP_APPFONT ( 154 , 8 ) ;
79		Text [ en-US ] = "Options" ;
80	};
81	CheckBox BTN_HEADER
82	{
83	    HelpID = "sc:CheckBox:RID_SCDLG_DBNAMES:BTN_HEADER";
84		Hide = TRUE ;
85        Pos = MAP_APPFONT ( 12 , 153 ) ;
86        Size = MAP_APPFONT ( 145 , 10 ) ;
87		TabStop = TRUE ;
88		Text [ en-US ] = "Co~ntains column labels" ;
89	};
90	CheckBox BTN_SIZE
91	{
92	    HelpID = "sc:CheckBox:RID_SCDLG_DBNAMES:BTN_SIZE";
93		Hide = TRUE ;
94		Pos = MAP_APPFONT ( 12 , 167 ) ;
95        Size = MAP_APPFONT ( 145 , 10 ) ;
96		TabStop = TRUE ;
97		Text [ en-US ] = "Insert or delete ~cells" ;
98	};
99	CheckBox BTN_FORMAT
100	{
101	    HelpID = "sc:CheckBox:RID_SCDLG_DBNAMES:BTN_FORMAT";
102		Hide = TRUE ;
103        Pos = MAP_APPFONT ( 12 , 181 ) ;
104        Size = MAP_APPFONT ( 145 , 10 ) ;
105		TabStop = TRUE ;
106		Text [ en-US ] = "Keep ~formatting" ;
107	};
108	CheckBox BTN_STRIPDATA
109	{
110	    HelpID = "sc:CheckBox:RID_SCDLG_DBNAMES:BTN_STRIPDATA";
111		Hide = TRUE ;
112        Pos = MAP_APPFONT ( 12 , 195 ) ;
113        Size = MAP_APPFONT ( 145 , 10 ) ;
114		TabStop = TRUE ;
115		Text [ en-US ] = "Don't save ~imported data" ;
116	};
117	FixedText FT_SOURCE
118	{
119		Hide = TRUE ;
120        Pos = MAP_APPFONT ( 12 , 209 ) ;
121        Size = MAP_APPFONT ( 145 , 8 ) ;
122		Text [ en-US ] = "Source:" ;
123	};
124	FixedText FT_OPERATIONS
125	{
126		Hide = TRUE ;
127        Pos = MAP_APPFONT ( 12 , 221 ) ;
128        Size = MAP_APPFONT ( 145 , 8 ) ;
129		Text [ en-US ] = "Operations:" ;
130	};
131	OKButton BTN_OK
132	{
133		Pos = MAP_APPFONT ( 166 , 6 ) ;
134		Size = MAP_APPFONT ( 50 , 14 ) ;
135		TabStop = TRUE ;
136	};
137	CancelButton BTN_CANCEL
138	{
139		Pos = MAP_APPFONT ( 166 , 23 ) ;
140		Size = MAP_APPFONT ( 50 , 14 ) ;
141		TabStop = TRUE ;
142	};
143	PushButton BTN_ADD
144	{
145	    HelpID = "sc:PushButton:RID_SCDLG_DBNAMES:BTN_ADD";
146        Pos = MAP_APPFONT ( 166 , 74 ) ;
147		Size = MAP_APPFONT ( 50 , 14 ) ;
148		Text [ en-US ] = "~Add" ;
149		TabStop = TRUE ;
150		DefButton = TRUE ;
151	};
152	PushButton BTN_REMOVE
153	{
154	    HelpID = "sc:PushButton:RID_SCDLG_DBNAMES:BTN_REMOVE";
155        Pos = MAP_APPFONT ( 166 , 92 ) ;
156		Size = MAP_APPFONT ( 50 , 14 ) ;
157		Text [ en-US ] = "~Delete" ;
158		TabStop = TRUE ;
159	};
160	HelpButton BTN_HELP
161	{
162		Pos = MAP_APPFONT ( 166 , 43 ) ;
163		Size = MAP_APPFONT ( 50 , 14 ) ;
164		TabStop = TRUE ;
165	};
166	MoreButton BTN_MORE
167	{
168	    HelpID = "sc:MoreButton:RID_SCDLG_DBNAMES:BTN_MORE";
169        Pos = MAP_APPFONT ( 166 , 122 ) ;
170		Size = MAP_APPFONT ( 50 , 14 ) ;
171		TabStop = TRUE ;
172		MapUnit = MAP_APPFONT ;
173        Delta = 93 ;
174	};
175	String STR_ADD
176	{
177		Text [ en-US ] = "~Add" ;
178	};
179	String STR_MODIFY
180	{
181		Text [ en-US ] = "M~odify" ;
182	};
183	String STR_DB_INVALID
184	{
185		Text [ en-US ] = "Invalid range" ;
186	};
187};
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209