xref: /trunk/main/svx/source/dialog/ruler.src (revision 9cd2463e)
109a1d057SAndrew Rist/**************************************************************
2*9cd2463eSmseidel *
309a1d057SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
409a1d057SAndrew Rist * or more contributor license agreements.  See the NOTICE file
509a1d057SAndrew Rist * distributed with this work for additional information
609a1d057SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
709a1d057SAndrew Rist * to you under the Apache License, Version 2.0 (the
809a1d057SAndrew Rist * "License"); you may not use this file except in compliance
909a1d057SAndrew Rist * with the License.  You may obtain a copy of the License at
10*9cd2463eSmseidel *
1109a1d057SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*9cd2463eSmseidel *
1309a1d057SAndrew Rist * Unless required by applicable law or agreed to in writing,
1409a1d057SAndrew Rist * software distributed under the License is distributed on an
1509a1d057SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1609a1d057SAndrew Rist * KIND, either express or implied.  See the License for the
1709a1d057SAndrew Rist * specific language governing permissions and limitations
1809a1d057SAndrew Rist * under the License.
19*9cd2463eSmseidel *
2009a1d057SAndrew Rist *************************************************************/
2109a1d057SAndrew Rist
2209a1d057SAndrew Rist
23*9cd2463eSmseidel
24cdf0e10cSrcweir#include <svx/dialogs.hrc>
25cdf0e10cSrcweir#include "ruler.hrc"
26cdf0e10cSrcweir
27cdf0e10cSrcweirMenu RID_SVXMN_RULER
28cdf0e10cSrcweir{
29cdf0e10cSrcweir	ItemList =
30cdf0e10cSrcweir	{
31cdf0e10cSrcweir		MenuItem
32cdf0e10cSrcweir		{
33cdf0e10cSrcweir			Identifier = ID_MM ;
34cdf0e10cSrcweir			Checkable = TRUE ;
35cdf0e10cSrcweir			Text [ en-US ] = "Millimeter" ;
36cdf0e10cSrcweir		};
37cdf0e10cSrcweir		MenuItem
38cdf0e10cSrcweir		{
39cdf0e10cSrcweir			Identifier = ID_CM ;
40cdf0e10cSrcweir			Checkable = TRUE ;
41cdf0e10cSrcweir			Text [ en-US ] = "Centimeter" ;
42cdf0e10cSrcweir		};
43cdf0e10cSrcweir		MenuItem
44cdf0e10cSrcweir		{
45cdf0e10cSrcweir			Identifier = ID_M ;
46cdf0e10cSrcweir			Checkable = TRUE ;
47cdf0e10cSrcweir			Text [ en-US ] = "Meter" ;
48cdf0e10cSrcweir		};
49cdf0e10cSrcweir		MenuItem
50cdf0e10cSrcweir		{
51cdf0e10cSrcweir			Identifier = ID_KM ;
52cdf0e10cSrcweir			Checkable = TRUE ;
53cdf0e10cSrcweir			Text [ en-US ] = "Kilometer" ;
54cdf0e10cSrcweir		};
55cdf0e10cSrcweir		MenuItem
56cdf0e10cSrcweir		{
57cdf0e10cSrcweir			Identifier = ID_INCH ;
58cdf0e10cSrcweir			Checkable = TRUE ;
59cdf0e10cSrcweir			Text [ en-US ] = "Inch" ;
60cdf0e10cSrcweir		};
61cdf0e10cSrcweir		MenuItem
62cdf0e10cSrcweir		{
63cdf0e10cSrcweir			Identifier = ID_FOOT ;
64cdf0e10cSrcweir			Checkable = TRUE ;
65cdf0e10cSrcweir			Text [ en-US ] = "Foot" ;
66cdf0e10cSrcweir		};
67cdf0e10cSrcweir		MenuItem
68cdf0e10cSrcweir		{
69cdf0e10cSrcweir			Identifier = ID_MILE ;
70cdf0e10cSrcweir			Checkable = TRUE ;
71cdf0e10cSrcweir			Text [ en-US ] = "Miles" ;
72cdf0e10cSrcweir		};
73cdf0e10cSrcweir		MenuItem
74cdf0e10cSrcweir		{
75cdf0e10cSrcweir			Identifier = ID_POINT ;
76cdf0e10cSrcweir			Checkable = TRUE ;
77cdf0e10cSrcweir			Text [ en-US ] = "Point" ;
78cdf0e10cSrcweir		};
79cdf0e10cSrcweir		MenuItem
80cdf0e10cSrcweir		{
81cdf0e10cSrcweir			Identifier = ID_PICA ;
82cdf0e10cSrcweir			Checkable = TRUE ;
83*9cd2463eSmseidel			Text [ en-US ] = "Pica" ;
84*9cd2463eSmseidel		};
85cdf0e10cSrcweir	};
86cdf0e10cSrcweir};
87cdf0e10cSrcweirString RID_SVXSTR_RULER_TAB_LEFT
88cdf0e10cSrcweir{
89cdf0e10cSrcweir	Text [ en-US ] = "Left" ;
90cdf0e10cSrcweir};
91cdf0e10cSrcweirString RID_SVXSTR_RULER_TAB_RIGHT
92cdf0e10cSrcweir{
93cdf0e10cSrcweir	Text [ en-US ] = "Right" ;
94cdf0e10cSrcweir};
95cdf0e10cSrcweirString RID_SVXSTR_RULER_TAB_DECIMAL
96cdf0e10cSrcweir{
97cdf0e10cSrcweir	Text [ en-US ] = "Decimal" ;
98cdf0e10cSrcweir};
99cdf0e10cSrcweirString RID_SVXSTR_RULER_TAB_CENTER
100cdf0e10cSrcweir{
101cdf0e10cSrcweir	Text [ en-US ] = "Center" ;
102cdf0e10cSrcweir};
103cdf0e10cSrcweir
104*9cd2463eSmseidel// ********************************************************************** EOF
105