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