17bbdf254SAndrew Rist/************************************************************** 2*33485770Smseidel * 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 10*33485770Smseidel * 117bbdf254SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*33485770Smseidel * 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. 19*33485770Smseidel * 207bbdf254SAndrew Rist *************************************************************/ 217bbdf254SAndrew Rist 227bbdf254SAndrew Rist 23*33485770Smseidel 24cdf0e10cSrcweir#define _SV_UNITS_SRC 25cdf0e10cSrcweir 26cdf0e10cSrcweir#include <svids.hrc> 27cdf0e10cSrcweir 28cdf0e10cSrcweirStringArray SV_FUNIT_STRINGS 29cdf0e10cSrcweir{ 30cdf0e10cSrcweir ItemList [ en-US ] = 31cdf0e10cSrcweir { 32*33485770Smseidel < "mm" ; FUNIT_MM ; > ; 33*33485770Smseidel < "cm" ; FUNIT_CM ; > ; 34*33485770Smseidel < "m" ; FUNIT_M ; > ; 35*33485770Smseidel < "km" ; FUNIT_KM ; > ; 36*33485770Smseidel < "twips" ; FUNIT_TWIP ; > ; 37*33485770Smseidel < "twip" ; FUNIT_TWIP ; > ; 38*33485770Smseidel < "pt" ; FUNIT_POINT ; > ; 39*33485770Smseidel < "pi" ; FUNIT_PICA ; > ; 40*33485770Smseidel < "\"" ; FUNIT_INCH ; > ; 41*33485770Smseidel < "in" ; FUNIT_INCH ; > ; 42*33485770Smseidel < "inch" ; FUNIT_INCH ; > ; 43*33485770Smseidel < "'" ; FUNIT_FOOT ; > ; 44*33485770Smseidel < "ft" ; FUNIT_FOOT ; > ; 45*33485770Smseidel < "foot" ; FUNIT_FOOT ; > ; 46*33485770Smseidel < "feet" ; FUNIT_FOOT ; > ; 47*33485770Smseidel < "miles" ; FUNIT_MILE ; > ; 48*33485770Smseidel < "mile" ; FUNIT_MILE ; > ; 49*33485770Smseidel < "%" ; FUNIT_PERCENT ; > ; 50cdf0e10cSrcweir }; 51cdf0e10cSrcweir}; 52cdf0e10cSrcweir 53*33485770Smseidel// ********************************************************************** EOF 54