xref: /AOO42X/main/vcl/source/src/units.src (revision 4b821e6c78f56c88001362fd58a927258ea35536)
17bbdf254SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
37bbdf254SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
47bbdf254SAndrew Rist * or more contributor license agreements.  See the NOTICE file
57bbdf254SAndrew Rist * distributed with this work for additional information
67bbdf254SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
77bbdf254SAndrew Rist * to you under the Apache License, Version 2.0 (the
87bbdf254SAndrew Rist * "License"); you may not use this file except in compliance
97bbdf254SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
117bbdf254SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
137bbdf254SAndrew Rist * Unless required by applicable law or agreed to in writing,
147bbdf254SAndrew Rist * software distributed under the License is distributed on an
157bbdf254SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
167bbdf254SAndrew Rist * KIND, either express or implied.  See the License for the
177bbdf254SAndrew Rist * specific language governing permissions and limitations
187bbdf254SAndrew Rist * under the License.
19cdf0e10cSrcweir *
207bbdf254SAndrew Rist *************************************************************/
217bbdf254SAndrew Rist
22cdf0e10cSrcweir#define _SV_UNITS_SRC
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include <svids.hrc>
25cdf0e10cSrcweir
26cdf0e10cSrcweirStringArray SV_FUNIT_STRINGS
27cdf0e10cSrcweir{
28cdf0e10cSrcweir    ItemList [ en-US ] =
29cdf0e10cSrcweir    {
30cdf0e10cSrcweir        < "mm" ; FUNIT_MM ;         > ;
31cdf0e10cSrcweir        < "cm" ; FUNIT_CM ;         > ;
32cdf0e10cSrcweir        < "m" ; FUNIT_M ;           > ;
33cdf0e10cSrcweir        < "km" ; FUNIT_KM ;         > ;
34cdf0e10cSrcweir        < "twips" ; FUNIT_TWIP ;    > ;
35cdf0e10cSrcweir        < "twip" ; FUNIT_TWIP ;     > ;
36cdf0e10cSrcweir        < "pt" ; FUNIT_POINT ;      > ;
37cdf0e10cSrcweir        < "pi" ; FUNIT_PICA ;       > ;
38cdf0e10cSrcweir        < "\"" ; FUNIT_INCH ;       > ;
39cdf0e10cSrcweir        < "in" ; FUNIT_INCH ;       > ;
40cdf0e10cSrcweir        < "inch" ; FUNIT_INCH ;     > ;
41cdf0e10cSrcweir        < "'" ; FUNIT_FOOT ;        > ;
42cdf0e10cSrcweir        < "ft" ; FUNIT_FOOT ;       > ;
43cdf0e10cSrcweir        < "foot" ; FUNIT_FOOT ;     > ;
44cdf0e10cSrcweir        < "feet" ; FUNIT_FOOT ;     > ;
45cdf0e10cSrcweir        < "miles" ; FUNIT_MILE ;    > ;
46cdf0e10cSrcweir        < "mile" ; FUNIT_MILE ;     > ;
47cdf0e10cSrcweir        < "%" ; FUNIT_PERCENT ;     > ;
48cdf0e10cSrcweir    };
49cdf0e10cSrcweir};
50cdf0e10cSrcweir
51*c09c8fa7Smseidel// ********************************************************************** EOF
52