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