1 /* |
|
2 * Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Default locale settings for the UK |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #include <ls_std.h> |
|
21 #include "complocl.h" |
|
22 |
|
23 |
|
24 // The configuration data |
|
25 const TLanguage LLocaleData::Language = ELangEnglish; |
|
26 const TInt LLocaleData::CountryCode = 44; |
|
27 const TInt LLocaleData::UniversalTimeOffset = 0; |
|
28 const TDateFormat LLocaleData::DateFormat = EDateEuropean; |
|
29 const TTimeFormat LLocaleData::TimeFormat = ETime12; |
|
30 const TLocalePos LLocaleData::CurrencySymbolPosition = ELocaleBefore; |
|
31 const TBool LLocaleData::CurrencySpaceBetween = EFalse; |
|
32 const TInt LLocaleData::CurrencyDecimalPlaces = 2; |
|
33 const TLocale::TNegativeCurrencyFormat LLocaleData::NegativeCurrencyFormat=TLocale::TNegativeCurrencyFormat(0); // replacing CurrencyNegativeInBrackets |
|
34 const TBool LLocaleData::CurrencyTriadsAllowed = ETrue; |
|
35 const TText * const LLocaleData::ThousandsSeparator = _S(","); |
|
36 const TText * const LLocaleData::DecimalSeparator = _S("."); |
|
37 const TText * const LLocaleData::DateSeparator[KMaxDateSeparators] = {_S(""),_S("/"),_S("/"),_S("")}; |
|
38 const TText * const LLocaleData::TimeSeparator[KMaxTimeSeparators] = {_S(""),_S(":"),_S(":"),_S("")}; |
|
39 const TLocalePos LLocaleData::AmPmSymbolPosition = ELocaleAfter; |
|
40 const TBool LLocaleData::AmPmSpaceBetween = ETrue; |
|
41 //const TUint LLocaleData::DaylightSaving = EDstNone; |
|
42 const TDaylightSavingZone LLocaleData::HomeDaylightSavingZone = EDstEuropean; |
|
43 const TUint LLocaleData::WorkDays = 0x1f; |
|
44 const TText * const LLocaleData::CurrencySymbol = _S("\x00a3"); |
|
45 const TText* const LLocaleData::ShortDateFormatSpec = _S("%F%*D/%*M/%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) |
|
46 const TText* const LLocaleData::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) |
|
47 const TText* const LLocaleData::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) |
|
48 const TFatUtilityFunctions* const LLocaleData::FatUtilityFunctions = NULL; |
|
49 const TDay LLocaleData::StartOfWeek = EMonday; |
|
50 const TClockFormat LLocaleData::ClockFormat = EClockAnalog; |
|
51 const TUnitsFormat LLocaleData::UnitsGeneral = EUnitsImperial; |
|
52 const TUnitsFormat LLocaleData::UnitsDistanceShort = EUnitsImperial; |
|
53 const TUnitsFormat LLocaleData::UnitsDistanceLong = EUnitsImperial; |
|
54 const TUint LLocaleData::ExtraNegativeCurrencyFormatFlags = 0; |
|
55 const TLanguage LLocaleData::LanguageDowngrade[3] = {ELangNone, ELangNone, ELangNone}; |
|
56 const TDigitType LLocaleData::DigitType = EDigitTypeWestern; |
|
57 |
|