Update contrib.
1 // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // f32test\locl\t_cyus.cpp
15 // Default locale settings for the US
19 #include <kernel/localise.h>
21 // The configuration data
22 const TLanguage LCountry::Language = ELangAmerican;
23 const TInt LCountry::CountryCode = 1;
24 const TInt LCountry::UniversalTimeOffset = -6;
25 const TDateFormat LCountry::DateFormat = EDateAmerican;
26 const TTimeFormat LCountry::TimeFormat = ETime12;
27 const TLocalePos LCountry::CurrencySymbolPosition = ELocaleBefore;
28 const TBool LCountry::CurrencySpaceBetween = EFalse;
29 const TInt LCountry::CurrencyDecimalPlaces = 2;
30 const TBool LCountry::CurrencyNegativeInBrackets = EFalse;
31 const TBool LCountry::CurrencyTriadsAllowed = ETrue;
32 const TText * const LCountry::ThousandsSeparator = _S(",");
33 const TText * const LCountry::DecimalSeparator = _S(".");
34 const TText * const LCountry::DateSeparator[KMaxDateSeparators] = {_S(""),_S("/"),_S("/"),_S("")};
35 const TText * const LCountry::TimeSeparator[KMaxTimeSeparators] = {_S(""),_S(":"),_S(":"),_S("")};
36 const TLocalePos LCountry::AmPmSymbolPosition = ELocaleAfter;
37 const TBool LCountry::AmPmSpaceBetween = ETrue;
38 //const TUint LCountry::DaylightSaving = EDstNone;
39 const TDaylightSavingZone LCountry::HomeDaylightSavingZone = EDstNorthern;
40 const TUint LCountry::WorkDays = 0x1f;
41 const TText * const LCountry::CurrencySymbol = _S("$");
42 const TText* const LCountry::ShortDateFormatSpec = _S("%F%*M/%*D/%Y"); // needs checking by a localisation team (this item was added since real localisation - the value given here has been set by a software developer so it may be wrong)
43 const TText* const LCountry::LongDateFormatSpec = _S("%F%*D%X %N %Y"); // needs checking by a localisation team (this item was added since real localisation - the value given here has been set by a software developer so it may be wrong)
44 const TText* const LCountry::TimeFormatSpec = _S("%F%*I:%T:%S %*A"); // needs checking by a localisation team (this item was added since real localisation - the value given here has been set by a software developer so it may be wrong)
45 const TFatUtilityFunctions* const LCountry::FatUtilityFunctions = NULL;
46 const TDay LCountry::StartOfWeek = ESunday;
47 const TClockFormat LCountry::ClockFormat = EClockAnalog;
48 const TUnitsFormat LCountry::UnitsGeneral = EUnitsImperial;
49 const TUnitsFormat LCountry::UnitsDistanceShort = EUnitsImperial;
50 const TUnitsFormat LCountry::UnitsDistanceLong = EUnitsImperial;