os/textandloc/localisation/localesupport/src/ls_lndut.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/localisation/localesupport/src/ls_lndut.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,90 @@
     1.4 +/*
     1.5 +* Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +* Default settings for the Dutch language
    1.19 +*
    1.20 +*/
    1.21 +
    1.22 +
    1.23 +#include "ls_std.h"
    1.24 +
    1.25 +// The suffix table
    1.26 +const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
    1.27 +	{
    1.28 +	_S(""),_S(""),_S(""),_S(""),_S(""),
    1.29 +	_S(""),_S(""),_S(""),_S(""),_S(""),
    1.30 +	_S(""),_S(""),_S(""),_S(""),_S(""),
    1.31 +	_S(""),_S(""),_S(""),_S(""),_S(""),
    1.32 +	_S(""),_S(""),_S(""),_S(""),_S(""),
    1.33 +	_S(""),_S(""),_S(""),_S(""),_S(""),
    1.34 +	_S("")
    1.35 +	};
    1.36 +// The day names
    1.37 +const TText * const LLanguage::DayTable[KMaxDays] =
    1.38 +	{
    1.39 +	_S("Maandag"),
    1.40 +	_S("Dinsdag"),
    1.41 +	_S("Woensdag"),
    1.42 +	_S("Donderdag"),
    1.43 +	_S("Vrijdag"),
    1.44 +	_S("Zaterdag"),
    1.45 +	_S("Zondag")
    1.46 +	};
    1.47 +// The abbreviated day names
    1.48 +const TText * const LLanguage::DayAbbTable[KMaxDays] =
    1.49 +	{
    1.50 +	_S("Ma"),
    1.51 +	_S("Di"),
    1.52 +	_S("Wo"),
    1.53 +	_S("Do"),
    1.54 +	_S("Vr"),
    1.55 +	_S("Za"),
    1.56 +	_S("Zo")
    1.57 +	};
    1.58 +// The month names
    1.59 +const TText * const LLanguage::MonthTable[KMaxMonths] =
    1.60 +	{
    1.61 +	_S("Januari"),
    1.62 +	_S("Februari"),
    1.63 +	_S("Maart"),
    1.64 +	_S("April"),
    1.65 +	_S("Mei"),
    1.66 +	_S("Juni"),
    1.67 +	_S("Juli"),
    1.68 +	_S("Augustus"),
    1.69 +	_S("September"),
    1.70 +	_S("Oktober"),
    1.71 +	_S("November"),
    1.72 +	_S("December")
    1.73 +	};
    1.74 +// The abbreviated month names
    1.75 +const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
    1.76 +	{
    1.77 +	_S("Jan"),
    1.78 +	_S("Feb"),
    1.79 +	_S("Maa"),
    1.80 +	_S("Apr"),
    1.81 +	_S("Mei"),
    1.82 +	_S("Jun"),
    1.83 +	_S("Jul"),
    1.84 +	_S("Aug"),
    1.85 +	_S("Sep"),
    1.86 +	_S("Okt"),
    1.87 +	_S("Nov"),
    1.88 +	_S("Dec")
    1.89 +	};
    1.90 +// The am/pm strings
    1.91 +const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
    1.92 +
    1.93 +