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