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 24#include "textimportoptions.hrc" 25 26ModalDialog RID_SCDLG_TEXT_IMPORT_OPTIONS 27{ 28 HelpID = "sc:ModalDialog:RID_SCDLG_TEXT_IMPORT_OPTIONS"; 29 Text [ en-US ] = "Import Options" ; 30 Size = MAP_APPFONT ( 230 , 101 ) ; 31 Moveable = TRUE ; 32 Closeable = TRUE ; 33 OutputSize = TRUE ; 34 35 OKButton BTN_OK 36 { 37 Pos = MAP_APPFONT ( 175, 6 ) ; 38 Size = MAP_APPFONT ( 50, 14 ) ; 39 DefButton = TRUE ; 40 }; 41 42 CancelButton BTN_CANCEL 43 { 44 Pos = MAP_APPFONT ( 175, 23 ) ; 45 Size = MAP_APPFONT ( 50, 14 ) ; 46 }; 47 48 HelpButton BTN_HELP 49 { 50 Pos = MAP_APPFONT ( 175, 43 ) ; 51 Size = MAP_APPFONT ( 50, 14 ) ; 52 }; 53 54 FixedLine FL_CHOOSE_LANG 55 { 56 Pos = MAP_APPFONT( 6, 3 ) ; 57 Size = MAP_APPFONT( 165, 14 ) ; 58 59 Text [ en-US ] = "Select the language to use for import" ; 60 }; 61 62 RadioButton RB_AUTOMATIC 63 { 64 HelpID = "sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_AUTOMATIC"; 65 Pos = MAP_APPFONT( 12, 20 ) ; 66 Size = MAP_APPFONT( 159, 10 ) ; 67 TabStop = TRUE ; 68 69 Text [ en-US ] = "Automatic" ; 70 }; 71 72 RadioButton RB_CUSTOM 73 { 74 HelpID = "sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_CUSTOM"; 75 Pos = MAP_APPFONT( 12, 34 ) ; 76 Size = MAP_APPFONT( 159, 10 ) ; 77 TabStop = TRUE ; 78 79 Text [ en-US ] = "Custom" ; 80 }; 81 82 ListBox LB_CUSTOM_LANG 83 { 84 HelpID = "sc:ListBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:LB_CUSTOM_LANG"; 85 Pos = MAP_APPFONT( 20, 50 ) ; 86 Size = MAP_APPFONT( 140, 120 ) ; 87 TabStop = TRUE ; 88 DropDown = TRUE ; 89 Sort = TRUE ; 90 }; 91 92 FixedLine FL_OPTION 93 { 94 Pos = MAP_APPFONT( 6, 70 ); 95 Size = MAP_APPFONT( 165, 14 ); 96 Text [ en-US ] = "Options" ; 97 }; 98 99 CheckBox BTN_CONVERT_DATE 100 { 101 HelpID = "sc:CheckBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:BTN_CONVERT_DATE"; 102 Pos = MAP_APPFONT( 12, 86 ); 103 Size = MAP_APPFONT( 159, 10 ); 104 TabStop = TRUE ; 105 Text [ en-US ] = "Detect special numbers (such as dates)." ; 106 }; 107}; 108 109