1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/localisation/localesupport/src/ls_lntest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,91 @@
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 +* LS_LNENG.CPP
1.19 +* Default settings for the English language (UK & US)
1.20 +*
1.21 +*/
1.22 +
1.23 +
1.24 +#include "ls_std.h"
1.25 +
1.26 +// The suffix table
1.27 +const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
1.28 + {
1.29 + _S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"),
1.30 + _S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
1.31 + _S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
1.32 + _S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
1.33 + _S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"),
1.34 + _S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
1.35 + _S("st")
1.36 + };
1.37 +// The day names
1.38 +const TText * const LLanguage::DayTable[KMaxDays] =
1.39 + {
1.40 + _S("Monday"),
1.41 + _S("Tuesday"),
1.42 + _S("Wednesday"),
1.43 + _S("Thursday"),
1.44 + _S("Friday"),
1.45 + _S("Saturday"),
1.46 + _S("Sunday")
1.47 + };
1.48 +// The abbreviated day names
1.49 +const TText * const LLanguage::DayAbbTable[KMaxDays] =
1.50 + {
1.51 + _S("Mon"),
1.52 + _S("Tue"),
1.53 + _S("Wed"),
1.54 + _S("Thu"),
1.55 + _S("Fri"),
1.56 + _S("Sat"),
1.57 + _S("Sun")
1.58 + };
1.59 +// The month names
1.60 +const TText * const LLanguage::MonthTable[KMaxMonths] =
1.61 + {
1.62 + _S("January"),
1.63 + _S("February"),
1.64 + _S("March"),
1.65 + _S("April"),
1.66 + _S("May"),
1.67 + _S("June"),
1.68 + _S("July"),
1.69 + _S("August"),
1.70 + _S("September"),
1.71 + _S("October"),
1.72 + _S("November"),
1.73 + _S("December")
1.74 + };
1.75 +// The abbreviated month names
1.76 +const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
1.77 + {
1.78 + _S("Jan"),
1.79 + _S("Feb"),
1.80 + _S("Mar"),
1.81 + _S("Apr"),
1.82 + _S("May"),
1.83 + _S("Jun"),
1.84 + _S("Jul"),
1.85 + _S("Aug"),
1.86 + _S("Sep"),
1.87 + _S("Oct"),
1.88 + _S("Nov"),
1.89 + _S("Dec")
1.90 + };
1.91 +// The am/pm strings
1.92 +const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("NRAM"),_S("NRPM")};
1.93 +
1.94 +