xref: /aoo42x/main/svx/source/items/svxitems.src (revision cdf0e10c)
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir // include ------------------------------------------------------------------
28*cdf0e10cSrcweir
29*cdf0e10cSrcweir#include "svx/svxitems.hrc"
30*cdf0e10cSrcweir#include "svx/svxids.hrc"
31*cdf0e10cSrcweir#include <editeng/editids.hrc>
32*cdf0e10cSrcweir
33*cdf0e10cSrcweirStringArray RID_ATTR_NAMES
34*cdf0e10cSrcweir{
35*cdf0e10cSrcweir	ItemList [ en-US ] =
36*cdf0e10cSrcweir	{
37*cdf0e10cSrcweir		< "Scale"			;           SID_ATTR_ZOOM ; > ;
38*cdf0e10cSrcweir		< "Brush"			;           SID_ATTR_BRUSH ; > ;
39*cdf0e10cSrcweir		< "Tab stops"				;   SID_ATTR_TABSTOP ; > ;
40*cdf0e10cSrcweir		< "Character"				;   SID_ATTR_CHAR ; > ;
41*cdf0e10cSrcweir		< "Font"			;           SID_ATTR_CHAR_FONT ; > ;
42*cdf0e10cSrcweir		< "Font posture"		;       SID_ATTR_CHAR_POSTURE ; > ;
43*cdf0e10cSrcweir		< "Font weight"				;   SID_ATTR_CHAR_WEIGHT ; > ;
44*cdf0e10cSrcweir		< "Shadowed"			;       SID_ATTR_CHAR_SHADOWED ; > ;
45*cdf0e10cSrcweir		< "Individual words"		;   SID_ATTR_CHAR_WORDLINEMODE ; > ;
46*cdf0e10cSrcweir		< "Outline"			;           SID_ATTR_CHAR_CONTOUR ; > ;
47*cdf0e10cSrcweir		< "Strikethrough"			;   SID_ATTR_CHAR_STRIKEOUT ; > ;
48*cdf0e10cSrcweir		< "Underline"			;       SID_ATTR_CHAR_UNDERLINE ; > ;
49*cdf0e10cSrcweir		< "Font size"				;   SID_ATTR_CHAR_FONTHEIGHT ; > ;
50*cdf0e10cSrcweir		< "Rel. Font size"		;       SID_ATTR_CHAR_PROPSIZE ; > ;
51*cdf0e10cSrcweir		< "Font color"			;       SID_ATTR_CHAR_COLOR ; > ;
52*cdf0e10cSrcweir		< "Kerning"		;               SID_ATTR_CHAR_KERNING ; > ;
53*cdf0e10cSrcweir		< "Effects"		;               SID_ATTR_CHAR_CASEMAP ; > ;
54*cdf0e10cSrcweir		< "Language";                   SID_ATTR_CHAR_LANGUAGE ; > ;
55*cdf0e10cSrcweir		< "Position"		;           SID_ATTR_CHAR_ESCAPEMENT ; > ;
56*cdf0e10cSrcweir        < "Blinking"    ;               SID_ATTR_CHAR_AUTOKERN ; > ;
57*cdf0e10cSrcweir        < "Character set color"       ; SID_ATTR_CHAR_CHARSETCOLOR ; > ;
58*cdf0e10cSrcweir        < "Overline"      ;             SID_ATTR_CHAR_OVERLINE ; > ;
59*cdf0e10cSrcweir		< "Paragraph"		;           SID_ATTR_PARA ; > ;
60*cdf0e10cSrcweir		< "Alignment"		;           SID_ATTR_PARA_ADJUST ; > ;
61*cdf0e10cSrcweir		< "Line spacing"		;       SID_ATTR_PARA_LINESPACE ; > ;
62*cdf0e10cSrcweir		< "Page Break"		;           SID_ATTR_PARA_PAGEBREAK ; > ;
63*cdf0e10cSrcweir		< "Hyphenation"		;           SID_ATTR_PARA_HYPHENZONE ; > ;
64*cdf0e10cSrcweir		< "Do not split paragraph";     SID_ATTR_PARA_SPLIT ; > ;
65*cdf0e10cSrcweir		< "Orphans"		;               SID_ATTR_PARA_ORPHANS ; > ;
66*cdf0e10cSrcweir		< "Widows"		;               SID_ATTR_PARA_WIDOWS ; > ;
67*cdf0e10cSrcweir		< "Spacing"		;               SID_ATTR_PARA_ULSPACE ; > ;
68*cdf0e10cSrcweir		< "Indent"		;               SID_ATTR_PARA_LRSPACE ; > ;
69*cdf0e10cSrcweir		< "Indent"		;               SID_ATTR_LRSPACE ; > ;
70*cdf0e10cSrcweir		< "Spacing"		;               SID_ATTR_ULSPACE ; > ;
71*cdf0e10cSrcweir		< "Page"		;               SID_ATTR_PAGE ; > ;
72*cdf0e10cSrcweir		< "Page Style"		;           SID_ATTR_PARA_MODEL ; > ;
73*cdf0e10cSrcweir		< "Keep with next paragraph";   SID_ATTR_PARA_KEEP ; > ;
74*cdf0e10cSrcweir		< "Blinking"		;           SID_ATTR_FLASH ; > ;
75*cdf0e10cSrcweir		< "Register-true"		;       SID_ATTR_PARA_REGISTER ; > ;
76*cdf0e10cSrcweir		< "Character background"	;   SID_ATTR_BRUSH_CHAR ; > ;
77*cdf0e10cSrcweir		< "Asian font"		;           SID_ATTR_CHAR_CJK_FONT ; > ;
78*cdf0e10cSrcweir		< "Size of Asian font"		;   SID_ATTR_CHAR_CJK_FONTHEIGHT ; > ;
79*cdf0e10cSrcweir		< "Language of Asian font";     SID_ATTR_CHAR_CJK_LANGUAGE ; > ;
80*cdf0e10cSrcweir		< "Posture of Asian font"	;   SID_ATTR_CHAR_CJK_POSTURE ; > ;
81*cdf0e10cSrcweir		< "Weight of Asian font"	;   SID_ATTR_CHAR_CJK_WEIGHT ; > ;
82*cdf0e10cSrcweir		< "CTL"		;                   SID_ATTR_CHAR_CTL_FONT ; > ;
83*cdf0e10cSrcweir		< "Size of complex scripts"	;   SID_ATTR_CHAR_CTL_FONTHEIGHT ; > ;
84*cdf0e10cSrcweir		< "Language of complex scripts";SID_ATTR_CHAR_CTL_LANGUAGE ; > ;
85*cdf0e10cSrcweir		< "Posture of complex scripts"; SID_ATTR_CHAR_CTL_POSTURE ; > ;
86*cdf0e10cSrcweir		< "Weight of complex scripts";  SID_ATTR_CHAR_CTL_WEIGHT ; > ;
87*cdf0e10cSrcweir		< "Double-lined"		;       SID_ATTR_CHAR_TWO_LINES ; > ;
88*cdf0e10cSrcweir		< "Emphasis mark"		;       SID_ATTR_CHAR_EMPHASISMARK ; > ;
89*cdf0e10cSrcweir		< "Text spacing"		;       SID_ATTR_PARA_SCRIPTSPACE ; > ;
90*cdf0e10cSrcweir		< "Hanging punctuation"		;   SID_ATTR_PARA_HANGPUNCTUATION ; > ;
91*cdf0e10cSrcweir		< "Forbidden characters"	;   SID_ATTR_PARA_FORBIDDEN_RULES ; > ;
92*cdf0e10cSrcweir		< "Rotation"		;           SID_ATTR_CHAR_ROTATED ; > ;
93*cdf0e10cSrcweir		< "Scale"		;               SID_ATTR_CHAR_SCALEWIDTH ; > ;
94*cdf0e10cSrcweir		< "Relief"		;               SID_ATTR_CHAR_RELIEF ; > ;
95*cdf0e10cSrcweir		< "Vertical text alignment"	;   SID_PARA_VERTALIGN ; > ;
96*cdf0e10cSrcweir	};
97*cdf0e10cSrcweir};
98*cdf0e10cSrcweir
99*cdf0e10cSrcweir
100*cdf0e10cSrcweirString RID_SVXITEMS_EXTRAS_CHARCOLOR
101*cdf0e10cSrcweir{
102*cdf0e10cSrcweir	Text [ en-US ] = "Font color" ;
103*cdf0e10cSrcweir};
104*cdf0e10cSrcweir // SvxSearchItem ------------------------------------------------------------
105*cdf0e10cSrcweir // Kommando
106*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHCMD_FIND
107*cdf0e10cSrcweir{
108*cdf0e10cSrcweir	Text [ en-US ] = "Search" ;
109*cdf0e10cSrcweir};
110*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHCMD_FIND_ALL
111*cdf0e10cSrcweir{
112*cdf0e10cSrcweir	Text [ en-US ] = "Find All" ;
113*cdf0e10cSrcweir};
114*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHCMD_REPLACE
115*cdf0e10cSrcweir{
116*cdf0e10cSrcweir	Text [ en-US ] = "Replace" ;
117*cdf0e10cSrcweir};
118*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHCMD_REPLACE_ALL
119*cdf0e10cSrcweir{
120*cdf0e10cSrcweir	Text [ en-US ] = "Replace all" ;
121*cdf0e10cSrcweir};
122*cdf0e10cSrcweir // Vorlagen
123*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHSTYL_CHAR
124*cdf0e10cSrcweir{
125*cdf0e10cSrcweir	Text [ en-US ] = "Character Style" ;
126*cdf0e10cSrcweir};
127*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHSTYL_PARA
128*cdf0e10cSrcweir{
129*cdf0e10cSrcweir	Text [ en-US ] = "Paragraph Style" ;
130*cdf0e10cSrcweir};
131*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHSTYL_FRAME
132*cdf0e10cSrcweir{
133*cdf0e10cSrcweir	Text [ en-US ] = "Frame Style" ;
134*cdf0e10cSrcweir};
135*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHSTYL_PAGE
136*cdf0e10cSrcweir{
137*cdf0e10cSrcweir	Text [ en-US ] = "Page Style" ;
138*cdf0e10cSrcweir};
139*cdf0e10cSrcweir // Zellen-Typ
140*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHIN_FORMULA
141*cdf0e10cSrcweir{
142*cdf0e10cSrcweir	Text [ en-US ] = "Formula" ;
143*cdf0e10cSrcweir};
144*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHIN_VALUE
145*cdf0e10cSrcweir{
146*cdf0e10cSrcweir	Text [ en-US ] = "Value" ;
147*cdf0e10cSrcweir};
148*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHIN_NOTE
149*cdf0e10cSrcweir{
150*cdf0e10cSrcweir	Text [ en-US ] = "Note" ;
151*cdf0e10cSrcweir};
152*cdf0e10cSrcweir // Applikation
153*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHAPP_WRITER
154*cdf0e10cSrcweir{
155*cdf0e10cSrcweir	Text = "StarWriter" ;
156*cdf0e10cSrcweir};
157*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHAPP_CALC
158*cdf0e10cSrcweir{
159*cdf0e10cSrcweir	Text = "StarCalc" ;
160*cdf0e10cSrcweir};
161*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHAPP_DRAW
162*cdf0e10cSrcweir{
163*cdf0e10cSrcweir	Text = "StarDraw" ;
164*cdf0e10cSrcweir};
165*cdf0e10cSrcweirString RID_SVXITEMS_SEARCHAPP_BASE
166*cdf0e10cSrcweir{
167*cdf0e10cSrcweir	Text = "StarBase" ;
168*cdf0e10cSrcweir};
169*cdf0e10cSrcweir // enum BrushStyle ----------------------------------------------------------
170*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_NULL
171*cdf0e10cSrcweir{
172*cdf0e10cSrcweir	Text [ en-US ] = "None" ;
173*cdf0e10cSrcweir};
174*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_SOLID
175*cdf0e10cSrcweir{
176*cdf0e10cSrcweir	Text [ en-US ] = "Solid" ;
177*cdf0e10cSrcweir};
178*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_HORZ
179*cdf0e10cSrcweir{
180*cdf0e10cSrcweir	Text [ en-US ] = "Horizontal" ;
181*cdf0e10cSrcweir};
182*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_VERT
183*cdf0e10cSrcweir{
184*cdf0e10cSrcweir	Text [ en-US ] = "Vertical" ;
185*cdf0e10cSrcweir};
186*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_CROSS
187*cdf0e10cSrcweir{
188*cdf0e10cSrcweir	Text [ en-US ] = "Grid" ;
189*cdf0e10cSrcweir};
190*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_DIAGCROSS
191*cdf0e10cSrcweir{
192*cdf0e10cSrcweir	Text [ en-US ] = "Diamond" ;
193*cdf0e10cSrcweir};
194*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_UPDIAG
195*cdf0e10cSrcweir{
196*cdf0e10cSrcweir	Text [ en-US ] = "Diagonal up" ;
197*cdf0e10cSrcweir};
198*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_DOWNDIAG
199*cdf0e10cSrcweir{
200*cdf0e10cSrcweir	Text [ en-US ] = "Diagonal down" ;
201*cdf0e10cSrcweir};
202*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_25
203*cdf0e10cSrcweir{
204*cdf0e10cSrcweir	Text = "25%" ;
205*cdf0e10cSrcweir};
206*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_50
207*cdf0e10cSrcweir{
208*cdf0e10cSrcweir	Text = "50%" ;
209*cdf0e10cSrcweir};
210*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_75
211*cdf0e10cSrcweir{
212*cdf0e10cSrcweir	Text = "75%" ;
213*cdf0e10cSrcweir};
214*cdf0e10cSrcweirString RID_SVXITEMS_BRUSHSTYLE_BITMAP
215*cdf0e10cSrcweir{
216*cdf0e10cSrcweir	Text [ en-US ] = "Image" ;
217*cdf0e10cSrcweir};
218*cdf0e10cSrcweir
219*cdf0e10cSrcweirString RID_SVXITEMS_HORJUST_STANDARD
220*cdf0e10cSrcweir{
221*cdf0e10cSrcweir	Text [ en-US ] = "Horizontal alignment default" ;
222*cdf0e10cSrcweir};
223*cdf0e10cSrcweirString RID_SVXITEMS_HORJUST_LEFT
224*cdf0e10cSrcweir{
225*cdf0e10cSrcweir	Text [ en-US ] = "Align left" ;
226*cdf0e10cSrcweir};
227*cdf0e10cSrcweirString RID_SVXITEMS_HORJUST_CENTER
228*cdf0e10cSrcweir{
229*cdf0e10cSrcweir	Text [ en-US ] = "Centered horizontally" ;
230*cdf0e10cSrcweir};
231*cdf0e10cSrcweirString RID_SVXITEMS_HORJUST_RIGHT
232*cdf0e10cSrcweir{
233*cdf0e10cSrcweir	Text [ en-US ] = "Align right" ;
234*cdf0e10cSrcweir};
235*cdf0e10cSrcweirString RID_SVXITEMS_HORJUST_BLOCK
236*cdf0e10cSrcweir{
237*cdf0e10cSrcweir	Text [ en-US ] = "Justify" ;
238*cdf0e10cSrcweir};
239*cdf0e10cSrcweirString RID_SVXITEMS_HORJUST_REPEAT
240*cdf0e10cSrcweir{
241*cdf0e10cSrcweir	Text [ en-US ] = "Repeat alignment" ;
242*cdf0e10cSrcweir};
243*cdf0e10cSrcweirString RID_SVXITEMS_VERJUST_STANDARD
244*cdf0e10cSrcweir{
245*cdf0e10cSrcweir	Text [ en-US ] = "Vertical alignment default" ;
246*cdf0e10cSrcweir};
247*cdf0e10cSrcweirString RID_SVXITEMS_VERJUST_TOP
248*cdf0e10cSrcweir{
249*cdf0e10cSrcweir	Text [ en-US ] = "Align to top" ;
250*cdf0e10cSrcweir};
251*cdf0e10cSrcweirString RID_SVXITEMS_VERJUST_CENTER
252*cdf0e10cSrcweir{
253*cdf0e10cSrcweir	Text [ en-US ] = "Centered vertically" ;
254*cdf0e10cSrcweir};
255*cdf0e10cSrcweirString RID_SVXITEMS_VERJUST_BOTTOM
256*cdf0e10cSrcweir{
257*cdf0e10cSrcweir	Text [ en-US ] = "Align to bottom" ;
258*cdf0e10cSrcweir};
259*cdf0e10cSrcweirString RID_SVXITEMS_ORI_STANDARD
260*cdf0e10cSrcweir{
261*cdf0e10cSrcweir	Text [ en-US ] = "Default orientation" ;
262*cdf0e10cSrcweir};
263*cdf0e10cSrcweirString RID_SVXITEMS_ORI_TOPBOTTOM
264*cdf0e10cSrcweir{
265*cdf0e10cSrcweir	Text [ en-US ] = "From top to bottom" ;
266*cdf0e10cSrcweir};
267*cdf0e10cSrcweirString RID_SVXITEMS_ORI_BOTTOMTOP
268*cdf0e10cSrcweir{
269*cdf0e10cSrcweir	Text [ en-US ] = "Bottom to Top" ;
270*cdf0e10cSrcweir};
271*cdf0e10cSrcweirString RID_SVXITEMS_ORI_STACKED
272*cdf0e10cSrcweir{
273*cdf0e10cSrcweir	Text [ en-US ] = "Stacked" ;
274*cdf0e10cSrcweir};
275*cdf0e10cSrcweir // GetValueText von BoolItems
276*cdf0e10cSrcweirString RID_SVXITEMS_BOXINF_TABLE_TRUE
277*cdf0e10cSrcweir{
278*cdf0e10cSrcweir	Text [ en-US ] = "Table" ;
279*cdf0e10cSrcweir};
280*cdf0e10cSrcweirString RID_SVXITEMS_BOXINF_TABLE_FALSE
281*cdf0e10cSrcweir{
282*cdf0e10cSrcweir	Text [ en-US ] = "Not Table" ;
283*cdf0e10cSrcweir};
284*cdf0e10cSrcweirString RID_SVXITEMS_BOXINF_DIST_TRUE
285*cdf0e10cSrcweir{
286*cdf0e10cSrcweir	Text [ en-US ] = "Spacing enabled" ;
287*cdf0e10cSrcweir};
288*cdf0e10cSrcweirString RID_SVXITEMS_BOXINF_DIST_FALSE
289*cdf0e10cSrcweir{
290*cdf0e10cSrcweir	Text [ en-US ] = "Spacing disabled" ;
291*cdf0e10cSrcweir};
292*cdf0e10cSrcweirString RID_SVXITEMS_BOXINF_MDIST_TRUE
293*cdf0e10cSrcweir{
294*cdf0e10cSrcweir	Text [ en-US ] = "Keep spacing interval" ;
295*cdf0e10cSrcweir};
296*cdf0e10cSrcweirString RID_SVXITEMS_BOXINF_MDIST_FALSE
297*cdf0e10cSrcweir{
298*cdf0e10cSrcweir	Text [ en-US ] = "Allowed to fall short of spacing interval" ;
299*cdf0e10cSrcweir};
300*cdf0e10cSrcweirString RID_SVXITEMS_MARGIN_LEFT
301*cdf0e10cSrcweir{
302*cdf0e10cSrcweir	Text [ en-US ] = "Left margin: " ;
303*cdf0e10cSrcweir};
304*cdf0e10cSrcweirString RID_SVXITEMS_MARGIN_TOP
305*cdf0e10cSrcweir{
306*cdf0e10cSrcweir	Text [ en-US ] = "Top margin: " ;
307*cdf0e10cSrcweir};
308*cdf0e10cSrcweirString RID_SVXITEMS_MARGIN_RIGHT
309*cdf0e10cSrcweir{
310*cdf0e10cSrcweir	Text [ en-US ] = "Right margin: " ;
311*cdf0e10cSrcweir};
312*cdf0e10cSrcweirString RID_SVXITEMS_MARGIN_BOTTOM
313*cdf0e10cSrcweir{
314*cdf0e10cSrcweir	Text [ en-US ] = "Bottom margin: " ;
315*cdf0e10cSrcweir};
316*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_COMPLETE
317*cdf0e10cSrcweir{
318*cdf0e10cSrcweir	Text [ en-US ] = "Page Description: " ;
319*cdf0e10cSrcweir};
320*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_NUM_CHR_UPPER
321*cdf0e10cSrcweir{
322*cdf0e10cSrcweir	Text [ en-US ] = "Capitals" ;
323*cdf0e10cSrcweir};
324*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_NUM_CHR_LOWER
325*cdf0e10cSrcweir{
326*cdf0e10cSrcweir	Text [ en-US ] = "Lowercase" ;
327*cdf0e10cSrcweir};
328*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_NUM_ROM_UPPER
329*cdf0e10cSrcweir{
330*cdf0e10cSrcweir	Text [ en-US ] = "Uppercase Roman" ;
331*cdf0e10cSrcweir};
332*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_NUM_ROM_LOWER
333*cdf0e10cSrcweir{
334*cdf0e10cSrcweir	Text [ en-US ] = "Lowercase Roman" ;
335*cdf0e10cSrcweir};
336*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_NUM_ARABIC
337*cdf0e10cSrcweir{
338*cdf0e10cSrcweir	Text [ en-US ] = "Arabic" ;
339*cdf0e10cSrcweir};
340*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_NUM_NONE
341*cdf0e10cSrcweir{
342*cdf0e10cSrcweir	Text [ en-US ] = "None" ;
343*cdf0e10cSrcweir};
344*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_LAND_TRUE
345*cdf0e10cSrcweir{
346*cdf0e10cSrcweir	Text [ en-US ] = "Landscape" ;
347*cdf0e10cSrcweir};
348*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_LAND_FALSE
349*cdf0e10cSrcweir{
350*cdf0e10cSrcweir	Text [ en-US ] = "Portrait" ;
351*cdf0e10cSrcweir};
352*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_USAGE_LEFT
353*cdf0e10cSrcweir{
354*cdf0e10cSrcweir	Text [ en-US ] = "Left" ;
355*cdf0e10cSrcweir};
356*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_USAGE_RIGHT
357*cdf0e10cSrcweir{
358*cdf0e10cSrcweir	Text [ en-US ] = "Right" ;
359*cdf0e10cSrcweir};
360*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_USAGE_ALL
361*cdf0e10cSrcweir{
362*cdf0e10cSrcweir	Text [ en-US ] = "All" ;
363*cdf0e10cSrcweir};
364*cdf0e10cSrcweirString RID_SVXITEMS_PAGE_USAGE_MIRROR
365*cdf0e10cSrcweir{
366*cdf0e10cSrcweir	Text [ en-US ] = "Mirrored" ;
367*cdf0e10cSrcweir};
368*cdf0e10cSrcweirString RID_SVXITEMS_AUTHOR_COMPLETE
369*cdf0e10cSrcweir{
370*cdf0e10cSrcweir	Text [ en-US ] = "Author: " ;
371*cdf0e10cSrcweir};
372*cdf0e10cSrcweirString RID_SVXITEMS_DATE_COMPLETE
373*cdf0e10cSrcweir{
374*cdf0e10cSrcweir	Text [ en-US ] = "Date: " ;
375*cdf0e10cSrcweir};
376*cdf0e10cSrcweirString RID_SVXITEMS_TEXT_COMPLETE
377*cdf0e10cSrcweir{
378*cdf0e10cSrcweir	Text [ en-US ] = "Text: " ;
379*cdf0e10cSrcweir};
380*cdf0e10cSrcweirString RID_SVXITEMS_BACKGROUND_COLOR
381*cdf0e10cSrcweir{
382*cdf0e10cSrcweir	Text [ en-US ] = "Background color: " ;
383*cdf0e10cSrcweir};
384*cdf0e10cSrcweirString RID_SVXITEMS_PATTERN_COLOR
385*cdf0e10cSrcweir{
386*cdf0e10cSrcweir	Text [ en-US ] = "Pattern color: " ;
387*cdf0e10cSrcweir};
388*cdf0e10cSrcweirString RID_SVXITEMS_BRUSH_CHAR
389*cdf0e10cSrcweir{
390*cdf0e10cSrcweir	Text [ en-US ] = "Character background";
391*cdf0e10cSrcweir};
392*cdf0e10cSrcweir // ********************************************************************** EOF
393*cdf0e10cSrcweir
394