xref: /trunk/main/sw/source/ui/dbui/dbui.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
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 // #pragma ******************************************************************
28
29 // #include *****************************************************************
30#include "dbui.hrc"
31#include "helpid.h"
32ModalDialog DLG_DBSELECTION
33{
34    HelpID = "sw:ModalDialog:DLG_DBSELECTION";
35    OutputSize = TRUE ;
36    SVLook = TRUE ;
37    Size = MAP_APPFONT ( 168 , 132 ) ;
38    Moveable = TRUE ;
39    Control TLB_DBLIST
40    {
41        Border = TRUE ;
42        Pos = MAP_APPFONT ( 6 , 6 ) ;
43        Size = MAP_APPFONT ( 100 , 120 ) ;
44    };
45    OKButton BTN_OK
46    {
47        Pos = MAP_APPFONT ( 112 , 6 ) ;
48        Size = MAP_APPFONT ( 50 , 14 ) ;
49        TabStop = TRUE ;
50        Disable = TRUE ;
51    };
52    CancelButton BTN_CANCEL
53    {
54        Pos = MAP_APPFONT ( 112 , 23 ) ;
55        Size = MAP_APPFONT ( 50 , 14 ) ;
56        TabStop = TRUE ;
57    };
58    HelpButton BTN_HELP
59    {
60        Pos = MAP_APPFONT ( 112 , 43 ) ;
61        Size = MAP_APPFONT ( 50 , 14 ) ;
62        TabStop = TRUE ;
63    };
64    Text [ en-US ] = "Database Selection" ;
65};
66 // DLG_PRINTMONITOR ------------------------------------------------------
67ModelessDialog DLG_PRINTMONITOR
68{
69    HelpID = HID_MERGE_PRINTMONITOR  ;
70    SVLOOK = TRUE ;
71    HIDE = TRUE ;
72    OUTPUTSIZE = TRUE ;
73    Size = MAP_APPFONT ( 118, 72 ) ;
74    MOVEABLE = TRUE ;
75    APP = FALSE ;
76    FixedText FT_DOCNAME
77    {
78        Pos = MAP_APPFONT ( 6,6 ) ;
79        Size = MAP_APPFONT ( 100, 8 ) ;
80        CENTER = TRUE ;
81    };
82    FixedText FT_PRINTING
83    {
84        Pos = MAP_APPFONT ( 6, 17 ) ;
85        Size = MAP_APPFONT (  100, 8 ) ;
86        CENTER = TRUE ;
87        Text [ en-US ] = "is being prepared for printing on" ;
88    };
89    FixedText FT_SENDING
90    {
91        Pos = MAP_APPFONT ( 6, 17 ) ;
92        Size = MAP_APPFONT (  100, 8 ) ;
93        CENTER = TRUE ;
94        Text [ en-US ] = "is being sent to";
95    };
96    FixedText FT_SAVING
97    {
98        Pos = MAP_APPFONT ( 6, 17 ) ;
99        Size = MAP_APPFONT (  100, 8 ) ;
100        CENTER = TRUE ;
101        Text [ en-US ] = "is being saved to" ;
102    };
103    FixedText FT_PRINTER
104    {
105        Pos = MAP_APPFONT ( 6, 28 ) ;
106        Size = MAP_APPFONT (  100, 8 ) ;
107        CENTER = TRUE ;
108    };
109    FixedText FT_PRINTINFO
110    {
111        Pos = MAP_APPFONT ( 6, 39 ) ;
112        Size = MAP_APPFONT (  100, 8 ) ;
113        CENTER = TRUE ;
114    };
115    CancelButton PB_CANCELPRNMON
116    {
117        Pos = MAP_APPFONT ( 31, 52 ) ;
118        Size = MAP_APPFONT (  50, 14 ) ;
119        TABSTOP = TRUE ;
120    };
121    String STR_EMAILMON
122    {
123        Text [ en-US ] = "Send-Monitor";
124    };
125    String STR_SAVEMON
126    {
127        Text [ en-US ] = "Save-Monitor";
128    };
129    Text [ en-US ] = "Print monitor" ;
130};
131
132String STR_DB_EMAIL
133{
134    Text [ en-US ] = "E-mail" ;
135};
136
137StringArray SA_ADDRESS_HEADER
138{
139    ItemList [en-US]=
140    {
141        < "Title" ;                 MM_PART_TITLE           ;> ;
142        < "First Name" ;            MM_PART_FIRSTNAME       ;> ;
143        < "Last Name" ;             MM_PART_LASTNAME        ;> ;
144        < "Company Name" ;          MM_PART_COMPANY         ;> ;
145        < "Address Line 1" ;        MM_PART_ADDRESS_1       ;> ;
146        < "Address Line 2" ;        MM_PART_ADDRESS_2       ;> ;
147        < "City" ;                  MM_PART_CITY            ;> ;
148        < "State" ;                 MM_PART_REGION          ;> ;
149        < "ZIP" ;                   MM_PART_ZIP             ;> ;
150        < "Country" ;               MM_PART_COUNTRY         ;> ;
151        < "Telephone private" ;     MM_PART_PHONE_PRIVATE   ;> ;
152        < "Telephone business" ;    MM_PART_PHONE_BUSINESS  ;> ;
153        < "E-mail Address" ;        MM_PART_E_MAIL          ;> ;
154        < "Gender";                 MM_PART_GENDER          ;> ;
155    };
156};
157String STR_NOTASSIGNED
158{
159    Text[ en-US ] = " not yet matched ";
160};
161String STR_FILTER_ALL
162{
163    Text [ en-US ] = "All files (*.*)" ;
164};
165String STR_FILTER_ALL_DATA
166{
167    Text [ en-US ] = "Address lists(*.*)" ;
168};
169String STR_FILTER_SXB
170{
171    Text [ en-US ] = "%PRODUCTNAME Base (*.odb)" ;
172};
173String STR_FILTER_SXC
174{
175    Text [ en-US ] = "%PRODUCTNAME Calc (*.ods;*.sxc)" ;
176};
177String STR_FILTER_DBF
178{
179    Text [ en-US ] = "dBase (*.dbf)" ;
180};
181String STR_FILTER_XLS
182{
183    Text [ en-US ] = "Microsoft Excel (*.xls)" ;
184};
185String STR_FILTER_TXT
186{
187    Text [ en-US ] = "Plain text (*.txt)" ;
188};
189String STR_FILTER_CSV
190{
191    Text [ en-US ] = "Text Comma Separated (*.csv)" ;
192};
193String STR_FILTER_MDB
194{
195    Text [ en-US ] = "Microsoft Access (*.mdb)" ;
196};
197String STR_FILTER_ACCDB
198{
199    Text [ en-US ] = "Microsoft Access 2007 (*.accdb)" ;
200};
201
202 // DLG_MM_CREATIONMONITOR ------------------------------------------------------
203ModelessDialog DLG_MM_CREATIONMONITOR
204{
205    HelpID = HID_MERGE_PRINTMONITOR  ;
206    SVLOOK = TRUE ;
207    HIDE = TRUE ;
208    OUTPUTSIZE = TRUE ;
209    _WHMAPMODE = MAP_APPFONT ;
210    _WIDTH = 140 ;
211    _HEIGHT = 52 ;
212    MOVEABLE = TRUE ;
213    APP = FALSE ;
214
215    Text [ en-US ] = "Mail Merge" ;
216
217    FixedText FT_STATUS
218    {
219        HIDE = FALSE ;
220        _XYMAPMODE = MAP_APPFONT ;
221        _X = 6 ;
222        _Y = 6 ;
223        _WHMAPMODE = MAP_APPFONT ;
224        _WIDTH = 35 ;
225        _HEIGHT = 8 ;
226        Text [ en-US ] = "Status:" ;
227        LEFT = FALSE ;
228        CENTER = FALSE ;
229        RIGHT = TRUE ;
230    };
231    FixedText FT_PROGRESS
232    {
233        HIDE = FALSE ;
234        _XYMAPMODE = MAP_APPFONT ;
235        _X = 6 ;
236        _Y = 17 ;
237        _WHMAPMODE = MAP_APPFONT ;
238        _WIDTH = 35 ;
239        _HEIGHT = 8 ;
240        Text [ en-US ] = "Progress:" ;
241        LEFT = FALSE ;
242        CENTER = FALSE ;
243        RIGHT = TRUE ;
244    };
245    FixedText FT_CREATEDOCUMENTS
246    {
247        HIDE = FALSE ;
248        _XYMAPMODE = MAP_APPFONT ;
249        _X = 45 ;
250        _Y = 6 ;
251        _WHMAPMODE = MAP_APPFONT ;
252        _WIDTH = 91 ;
253        _HEIGHT = 8 ;
254        Text [ en-US ] = "Creating documents...";
255        LEFT = TRUE ;
256        CENTER = FALSE ;
257        RIGHT = FALSE ;
258    };
259    FixedText FT_COUNTING
260    {
261        HIDE = FALSE ;
262        _XYMAPMODE = MAP_APPFONT ;
263        _X = 45 ;
264        _Y = 17 ;
265        _WHMAPMODE = MAP_APPFONT ;
266        _WIDTH = 91 ;
267        _HEIGHT = 8 ;
268        Text [ en-US ] = "%X of %Y";
269        LEFT = TRUE ;
270        CENTER = FALSE ;
271        RIGHT = FALSE ;
272    };
273    CancelButton PB_CANCELPRNMON
274    {
275        HIDE = FALSE ;
276        _XYMAPMODE = MAP_APPFONT ;
277        _X = 74 ;
278        _Y = 32 ;
279        _WHMAPMODE = MAP_APPFONT ;
280        _WIDTH = 50 ;
281        _HEIGHT = 14 ;
282        TABSTOP = TRUE ;
283    };
284};
285