xref: /trunk/main/cui/source/options/internationaloptions.src (revision 1ecadb572e7010ff3b3382ad9bf179dbc6efadbb)
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
28#include "internationaloptions.hrc"
29#include "helpid.hrc"
30#include <cuires.hrc>
31#include <svx/dialogs.hrc>
32
33TabPage RID_OFA_TP_INTERNATIONAL
34{
35    HelpID = "cui:TabPage:RID_OFA_TP_INTERNATIONAL";
36    OutputSize = TRUE ;
37    Size = MAP_APPFONT ( PAGE_SIZE_X, PAGE_SIZE_Y ) ;
38    SVLook = TRUE ;
39    Hide = TRUE ;
40
41    FixedLine FL_DEFTXTDIRECTION
42    {
43        Pos = MAP_APPFONT( COL_0, ROW_0 );
44        Size = MAP_APPFONT( WIDTH2END( COL_0 ), HEIGHT_FL );
45        Text [ en-US ] = "Default text direction";
46    };
47
48    RadioButton RB_TXTDIR_LEFT2RIGHT
49    {
50        HelpID = "cui:RadioButton:RID_OFA_TP_INTERNATIONAL:RB_TXTDIR_LEFT2RIGHT";
51        Pos = MAP_APPFONT( COL_1, ROW_1 );
52        Size = MAP_APPFONT( WIDTH2END( COL_1 ), HEIGHT_RB );
53        Group = TRUE;
54        Text [ en-US ] = "~Left-to-right";
55    };
56
57    RadioButton RB_TXTDIR_RIGHT2LEFT
58    {
59        HelpID = "cui:RadioButton:RID_OFA_TP_INTERNATIONAL:RB_TXTDIR_RIGHT2LEFT";
60        Pos = MAP_APPFONT( COL_1, ROW_2 );
61        Size = MAP_APPFONT( WIDTH2END( COL_1 ), HEIGHT_RB );
62        Text [ en-US ] = "~Right-to-left";
63    };
64
65    FixedLine FL_SHEETVIEW
66    {
67        Pos = MAP_APPFONT( COL_0, ROW_3 );
68        Size = MAP_APPFONT( WIDTH2END( COL_0 ), HEIGHT_FL );
69        Text [ en-US ] = "Sheet view";
70    };
71
72    CheckBox CB_SHTVW_RIGHT2LEFT
73    {
74        HelpID = "cui:CheckBox:RID_OFA_TP_INTERNATIONAL:CB_SHTVW_RIGHT2LEFT";
75        Pos = MAP_APPFONT( COL_1, ROW_4 );
76        Size = MAP_APPFONT( WIDTH2END( COL_1 ), HEIGHT_CB );
77        Text [ en-US ] = "Right-~to-left";
78    };
79
80    CheckBox CB_SHTVW_CURRENTDOCONLY
81    {
82        HelpID = "cui:CheckBox:RID_OFA_TP_INTERNATIONAL:CB_SHTVW_CURRENTDOCONLY";
83        Pos = MAP_APPFONT( COL_2, ROW_5 );
84        Size = MAP_APPFONT( WIDTH2END( COL_2 ), HEIGHT_CB );
85        Text [ en-US ] = "~Current document only";
86    };
87};
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109