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