xref: /aoo41x/main/sc/source/ui/styleui/styledlg.src (revision cdf0e10c)
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 "sc.hrc"
29#include "styledlg.hrc" // -> TP_xxx
30TabDialog RID_SCDLG_STYLES_PAR
31{
32	OutputSize = TRUE ;
33	SVLook = TRUE ;
34	Size = MAP_APPFONT ( 289 , 176 ) ;
35	Text [ en-US ] = "Cell Style" ;
36	Moveable = TRUE ;
37	Closeable = FALSE ;
38	TabControl 1
39	{
40		OutputSize = TRUE ;
41		Pos = MAP_APPFONT ( 3 , 3 ) ;
42		Size = MAP_APPFONT ( 260 , 135 ) ;
43		PageList =
44		{
45			PageItem
46			{
47				Identifier = TP_NUMBER ;
48				Text [ en-US ] = "Numbers" ;
49			};
50			PageItem
51			{
52				Identifier = TP_FONT ;
53				/* ### ACHTUNG: Neuer Text in Resource? Schrift : Zeichen */
54				Text [ en-US ] = "Font" ;
55			};
56			PageItem
57			{
58				Identifier = TP_FONTEFF ;
59				Text [ en-US ] = "Font Effects";
60			};
61			PageItem
62			{
63				Identifier = TP_ALIGNMENT ;
64				Text [ en-US ] = "Alignment" ;
65			};
66			PageItem
67			{
68				Identifier = TP_ASIAN ;
69				Text [ en-US ] = "Asian Typography";
70			};
71			PageItem
72			{
73				Identifier = TP_BORDER ;
74				Text [ en-US ] = "Borders" ;
75			};
76			PageItem
77			{
78				Identifier = TP_BACKGROUND ;
79				Text [ en-US ] = "Background" ;
80			};
81			PageItem
82			{
83				Identifier = TP_PROTECTION ;
84				Text [ en-US ] = "Cell Protection" ;
85			};
86		};
87	};
88};
89TabDialog RID_SCDLG_STYLES_PAGE
90{
91	OutputSize = TRUE ;
92	SVLook = TRUE ;
93	Size = MAP_APPFONT ( 280 , 165 ) ;
94	Text [ en-US ] = "Page Style" ;
95	Moveable = TRUE ;
96	Closeable = FALSE ;
97	TabControl 1
98	{
99		OutputSize = TRUE ;
100		Pos = MAP_APPFONT ( 3 , 6 ) ;
101		Size = MAP_APPFONT ( 260 , 135 ) ;
102		PageList =
103		{
104			PageItem
105			{
106				Identifier = TP_PAGE_STD ;
107				Text [ en-US ] = "Page" ;
108			};
109			PageItem
110			{
111				Identifier = TP_BORDER ;
112				Text [ en-US ] = "Borders" ;
113			};
114			PageItem
115			{
116				Identifier = TP_BACKGROUND ;
117				Text [ en-US ] = "Background" ;
118			};
119			PageItem
120			{
121				Identifier = TP_PAGE_HEADER ;
122				Text [ en-US ] = "Header" ;
123			};
124			PageItem
125			{
126				Identifier = TP_PAGE_FOOTER ;
127				Text [ en-US ] = "Footer" ;
128			};
129			PageItem
130			{
131				Identifier = TP_TABLE ;
132				Text [ en-US ] = "Sheet" ;
133			};
134		};
135	};
136};
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173