1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * $RCSfile: retypepassdlg.src,v $
10 * $Revision: 1.1.2.3 $
11 *
12 * This file is part of OpenOffice.org.
13 *
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
17 *
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
23 *
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org.  If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
28 *
29 ************************************************************************/
30
31#include "textimportoptions.hrc"
32
33ModalDialog RID_SCDLG_TEXT_IMPORT_OPTIONS
34{
35    HelpID = "sc:ModalDialog:RID_SCDLG_TEXT_IMPORT_OPTIONS";
36    Text [ en-US ] = "Import Options" ;
37    Size = MAP_APPFONT ( 230 , 101 ) ;
38    Moveable = TRUE ;
39    Closeable = TRUE ;
40    OutputSize = TRUE ;
41
42    OKButton BTN_OK
43    {
44        Pos = MAP_APPFONT ( 175, 6 ) ;
45        Size = MAP_APPFONT ( 50, 14 ) ;
46        DefButton = TRUE ;
47    };
48
49    CancelButton BTN_CANCEL
50    {
51        Pos = MAP_APPFONT ( 175, 23 ) ;
52        Size = MAP_APPFONT ( 50, 14 ) ;
53    };
54
55    HelpButton BTN_HELP
56    {
57        Pos = MAP_APPFONT ( 175, 43 ) ;
58        Size = MAP_APPFONT ( 50, 14 ) ;
59    };
60
61    FixedLine FL_CHOOSE_LANG
62    {
63        Pos = MAP_APPFONT( 6, 3 ) ;
64        Size = MAP_APPFONT( 165, 14 ) ;
65
66        Text [ en-US ] = "Select the language to use for import" ;
67    };
68
69    RadioButton RB_AUTOMATIC
70    {
71        HelpID = "sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_AUTOMATIC";
72        Pos = MAP_APPFONT( 12, 20 ) ;
73        Size = MAP_APPFONT( 159, 10 ) ;
74        TabStop = TRUE ;
75
76        Text [ en-US ] = "Automatic" ;
77    };
78
79    RadioButton RB_CUSTOM
80    {
81        HelpID = "sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_CUSTOM";
82        Pos = MAP_APPFONT( 12, 34 ) ;
83        Size = MAP_APPFONT( 159, 10 ) ;
84        TabStop = TRUE ;
85
86        Text [ en-US ] = "Custom" ;
87    };
88
89    ListBox LB_CUSTOM_LANG
90    {
91        HelpID = "sc:ListBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:LB_CUSTOM_LANG";
92        Pos = MAP_APPFONT( 20, 50 ) ;
93        Size = MAP_APPFONT( 140, 120 ) ;
94        TabStop = TRUE ;
95        DropDown = TRUE ;
96        Sort = TRUE ;
97    };
98
99    FixedLine FL_OPTION
100    {
101	   Pos = MAP_APPFONT( 6, 70 );
102	   Size = MAP_APPFONT( 165, 14 );
103	   Text [ en-US ] = "Options" ;
104    };
105
106    CheckBox BTN_CONVERT_DATE
107    {
108        HelpID = "sc:CheckBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:BTN_CONVERT_DATE";
109    	Pos = MAP_APPFONT( 12, 86 );
110        Size = MAP_APPFONT( 159, 10 );
111        TabStop = TRUE ;
112        Text [ en-US ] = "Detect special numbers (such as dates)." ;
113    };
114};
115
116