localisation/localesupport/src/ls_cysc.cpp
changeset 0 a41df078684a
child 15 4122176ea935
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Default locale settings for Scandinavian countries (English)
       
    15 // 
       
    16 //
       
    17 
       
    18 #include "ls_std.h"
       
    19 #include "complocl.h"
       
    20 
       
    21 // The configuration data
       
    22 const TLanguage LLocaleData::Language = ELangEnglish;
       
    23 const TInt LLocaleData::CountryCode = 44;
       
    24 const TInt LLocaleData::UniversalTimeOffset = 0;
       
    25 const TDateFormat LLocaleData::DateFormat = EDateEuropean;
       
    26 const TTimeFormat LLocaleData::TimeFormat = ETime24;
       
    27 const TLocalePos LLocaleData::CurrencySymbolPosition = ELocaleAfter;
       
    28 const TBool LLocaleData::CurrencySpaceBetween = ETrue;
       
    29 const TInt LLocaleData::CurrencyDecimalPlaces = 2;
       
    30 const TLocale::TNegativeCurrencyFormat LLocaleData::NegativeCurrencyFormat=TLocale::TNegativeCurrencyFormat(0); // replacing CurrencyNegativeInBrackets
       
    31 const TBool LLocaleData::CurrencyTriadsAllowed = ETrue;
       
    32 const TText * const LLocaleData::ThousandsSeparator = _S(".");
       
    33 const TText * const LLocaleData::DecimalSeparator = _S(",");
       
    34 const TText * const LLocaleData::DateSeparator[KMaxDateSeparators] = {_S(""),_S("-"),_S("-"),_S("")};
       
    35 const TText * const LLocaleData::TimeSeparator[KMaxTimeSeparators] = {_S(""),_S(":"),_S(":"),_S("")};
       
    36 const TLocalePos LLocaleData::AmPmSymbolPosition = ELocaleAfter;
       
    37 const TBool LLocaleData::AmPmSpaceBetween = ETrue;
       
    38 //const TUint LLocaleData::DaylightSaving = EDstNone;
       
    39 const TDaylightSavingZone LLocaleData::HomeDaylightSavingZone = EDstEuropean;
       
    40 const TUint LLocaleData::WorkDays = 0x1f;
       
    41 const TText * const LLocaleData::CurrencySymbol = _S("kr");
       
    42 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)
       
    43 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)
       
    44 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)
       
    45 const TFatUtilityFunctions* const LLocaleData::FatUtilityFunctions = NULL;
       
    46 const TDay LLocaleData::StartOfWeek = EMonday;
       
    47 const TClockFormat LLocaleData::ClockFormat = EClockDigital;
       
    48 const TUnitsFormat LLocaleData::UnitsGeneral = EUnitsMetric;
       
    49 const TUnitsFormat LLocaleData::UnitsDistanceShort = EUnitsMetric;
       
    50 const TUnitsFormat LLocaleData::UnitsDistanceLong = EUnitsMetric;
       
    51 const TUint LLocaleData::ExtraNegativeCurrencyFormatFlags = 0;
       
    52 const TLanguage LLocaleData::LanguageDowngrade[3] = {ELangNone, ELangNone, ELangNone};
       
    53 const TDigitType LLocaleData::DigitType = EDigitTypeWestern;
       
    54 
       
    55 // end of LS_CYSC.CPP