182177cdbSAndrew Rist/**************************************************************
2*16288348Smseidel *
382177cdbSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
482177cdbSAndrew Rist * or more contributor license agreements.  See the NOTICE file
582177cdbSAndrew Rist * distributed with this work for additional information
682177cdbSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
782177cdbSAndrew Rist * to you under the Apache License, Version 2.0 (the
882177cdbSAndrew Rist * "License"); you may not use this file except in compliance
982177cdbSAndrew Rist * with the License.  You may obtain a copy of the License at
10*16288348Smseidel *
1182177cdbSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*16288348Smseidel *
1382177cdbSAndrew Rist * Unless required by applicable law or agreed to in writing,
1482177cdbSAndrew Rist * software distributed under the License is distributed on an
1582177cdbSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1682177cdbSAndrew Rist * KIND, either express or implied.  See the License for the
1782177cdbSAndrew Rist * specific language governing permissions and limitations
1882177cdbSAndrew Rist * under the License.
19*16288348Smseidel *
2082177cdbSAndrew Rist *************************************************************/
2182177cdbSAndrew Rist
2282177cdbSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "textimportoptions.hrc"
25cdf0e10cSrcweir
26cdf0e10cSrcweirModalDialog RID_SCDLG_TEXT_IMPORT_OPTIONS
27cdf0e10cSrcweir{
28*16288348Smseidel	HelpID = "sc:ModalDialog:RID_SCDLG_TEXT_IMPORT_OPTIONS" ;
29cdf0e10cSrcweir    Text [ en-US ] = "Import Options" ;
30*16288348Smseidel    Size = MAP_APPFONT ( 230, 101 ) ;
31cdf0e10cSrcweir    Moveable = TRUE ;
32cdf0e10cSrcweir    Closeable = TRUE ;
33cdf0e10cSrcweir    OutputSize = TRUE ;
34cdf0e10cSrcweir
35cdf0e10cSrcweir    OKButton BTN_OK
36cdf0e10cSrcweir    {
37cdf0e10cSrcweir        Pos = MAP_APPFONT ( 175, 6 ) ;
38cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
39cdf0e10cSrcweir        DefButton = TRUE ;
40cdf0e10cSrcweir    };
41cdf0e10cSrcweir
42cdf0e10cSrcweir    CancelButton BTN_CANCEL
43cdf0e10cSrcweir    {
44cdf0e10cSrcweir        Pos = MAP_APPFONT ( 175, 23 ) ;
45cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
46cdf0e10cSrcweir    };
47cdf0e10cSrcweir
48cdf0e10cSrcweir    HelpButton BTN_HELP
49cdf0e10cSrcweir    {
50cdf0e10cSrcweir        Pos = MAP_APPFONT ( 175, 43 ) ;
51cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
52cdf0e10cSrcweir    };
53cdf0e10cSrcweir
54cdf0e10cSrcweir    FixedLine FL_CHOOSE_LANG
55cdf0e10cSrcweir    {
56*16288348Smseidel        Pos = MAP_APPFONT ( 6, 3 ) ;
57*16288348Smseidel        Size = MAP_APPFONT ( 165, 14 ) ;
58cdf0e10cSrcweir
59*16288348Smseidel        Text [ en-US ] = "Select the language to use for import" ;
60cdf0e10cSrcweir    };
61cdf0e10cSrcweir
62cdf0e10cSrcweir    RadioButton RB_AUTOMATIC
63cdf0e10cSrcweir    {
64*16288348Smseidel        HelpID = "sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_AUTOMATIC" ;
65*16288348Smseidel        Pos = MAP_APPFONT ( 12, 20 ) ;
66*16288348Smseidel        Size = MAP_APPFONT ( 159, 10 ) ;
67cdf0e10cSrcweir        TabStop = TRUE ;
68cdf0e10cSrcweir
69*16288348Smseidel        Text [ en-US ] = "Automatic" ;
70cdf0e10cSrcweir    };
71cdf0e10cSrcweir
72cdf0e10cSrcweir    RadioButton RB_CUSTOM
73cdf0e10cSrcweir    {
74*16288348Smseidel        HelpID = "sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_CUSTOM" ;
75*16288348Smseidel        Pos = MAP_APPFONT ( 12, 34 ) ;
76*16288348Smseidel        Size = MAP_APPFONT ( 159, 10 ) ;
77cdf0e10cSrcweir        TabStop = TRUE ;
78cdf0e10cSrcweir
79*16288348Smseidel        Text [ en-US ] = "Custom" ;
80*16288348Smseidel	};
81cdf0e10cSrcweir
82cdf0e10cSrcweir    ListBox LB_CUSTOM_LANG
83cdf0e10cSrcweir    {
84*16288348Smseidel        HelpID = "sc:ListBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:LB_CUSTOM_LANG" ;
85*16288348Smseidel        Pos = MAP_APPFONT ( 20, 50 ) ;
86*16288348Smseidel        Size = MAP_APPFONT ( 140, 120 ) ;
87cdf0e10cSrcweir        TabStop = TRUE ;
88cdf0e10cSrcweir        DropDown = TRUE ;
89*16288348Smseidel		Sort = TRUE ;
90*16288348Smseidel	};
91*16288348Smseidel
92*16288348Smseidel	FixedLine FL_OPTION
93*16288348Smseidel	{
94*16288348Smseidel		Pos = MAP_APPFONT ( 6, 70 ) ;
95*16288348Smseidel		Size = MAP_APPFONT ( 165, 14 ) ;
96*16288348Smseidel		Text [ en-US ] = "Options" ;
97*16288348Smseidel	};
98*16288348Smseidel
99*16288348Smseidel	CheckBox BTN_CONVERT_DATE
100*16288348Smseidel	{
101*16288348Smseidel		HelpID = "sc:CheckBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:BTN_CONVERT_DATE" ;
102*16288348Smseidel		Pos = MAP_APPFONT ( 12, 86 ) ;
103*16288348Smseidel		Size = MAP_APPFONT ( 159, 10 ) ;
104*16288348Smseidel		TabStop = TRUE ;
105*16288348Smseidel		Text [ en-US ] = "Detect special numbers (such as dates)" ;
106*16288348Smseidel	};
107cdf0e10cSrcweir};
108cdf0e10cSrcweir
109*16288348Smseidel// ********************************************************************** EOF
110