os/kernelhwsrv/kerneltest/e32test/locl/t_cyus.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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_cyus.cpp
sl@0
    15
// Default locale settings for the US
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 = ELangAmerican;
sl@0
    23
const TInt LCountry::CountryCode = 1;
sl@0
    24
const TInt LCountry::UniversalTimeOffset = -6;
sl@0
    25
const TDateFormat LCountry::DateFormat = EDateAmerican;
sl@0
    26
const TTimeFormat LCountry::TimeFormat = ETime12;
sl@0
    27
const TLocalePos LCountry::CurrencySymbolPosition = ELocaleBefore;
sl@0
    28
const TBool LCountry::CurrencySpaceBetween = EFalse;
sl@0
    29
const TInt LCountry::CurrencyDecimalPlaces = 2;
sl@0
    30
const TBool LCountry::CurrencyNegativeInBrackets = EFalse;
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 = EDstNorthern;
sl@0
    40
const TUint LCountry::WorkDays = 0x1f;
sl@0
    41
const TText * const LCountry::CurrencySymbol = _S("$");
sl@0
    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)
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%*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)
sl@0
    45
const TFatUtilityFunctions* const LCountry::FatUtilityFunctions = NULL;
sl@0
    46
const TDay LCountry::StartOfWeek = ESunday;
sl@0
    47
const TClockFormat LCountry::ClockFormat = EClockAnalog;
sl@0
    48
const TUnitsFormat LCountry::UnitsGeneral = EUnitsImperial;
sl@0
    49
const TUnitsFormat LCountry::UnitsDistanceShort = EUnitsImperial;
sl@0
    50
const TUnitsFormat LCountry::UnitsDistanceLong = EUnitsImperial;
sl@0
    51