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