sl@0: // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // f32test\locl\t_lneng.cpp sl@0: // Default settings for the English language (UK & US) sl@0: // sl@0: // sl@0: sl@0: #include sl@0: sl@0: // The suffix table sl@0: const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] = sl@0: { sl@0: _S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"), sl@0: _S("th"),_S("th"),_S("th"),_S("th"),_S("th"), sl@0: _S("th"),_S("th"),_S("th"),_S("th"),_S("th"), sl@0: _S("th"),_S("th"),_S("th"),_S("th"),_S("th"), sl@0: _S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"), sl@0: _S("th"),_S("th"),_S("th"),_S("th"),_S("th"), sl@0: _S("st") sl@0: }; sl@0: // The day names sl@0: const TText * const LLanguage::DayTable[KMaxDays] = sl@0: { sl@0: _S("Monday"), sl@0: _S("Tuesday"), sl@0: _S("Wednesday"), sl@0: _S("Thursday"), sl@0: _S("Friday"), sl@0: _S("Saturday"), sl@0: _S("Sunday") sl@0: }; sl@0: // The abbreviated day names sl@0: const TText * const LLanguage::DayAbbTable[KMaxDays] = sl@0: { sl@0: _S("Mon"), sl@0: _S("Tue"), sl@0: _S("Wed"), sl@0: _S("Thu"), sl@0: _S("Fri"), sl@0: _S("Sat"), sl@0: _S("Sun") sl@0: }; sl@0: // The month names sl@0: const TText * const LLanguage::MonthTable[KMaxMonths] = sl@0: { sl@0: _S("January"), sl@0: _S("February"), sl@0: _S("March"), sl@0: _S("April"), sl@0: _S("May"), sl@0: _S("June"), sl@0: _S("July"), sl@0: _S("August"), sl@0: _S("September"), sl@0: _S("October"), sl@0: _S("November"), sl@0: _S("December") sl@0: }; sl@0: // The abbreviated month names sl@0: const TText * const LLanguage::MonthAbbTable[KMaxMonths] = sl@0: { sl@0: _S("Jan"), sl@0: _S("Feb"), sl@0: _S("Mar"), sl@0: _S("Apr"), sl@0: _S("May"), sl@0: _S("Jun"), sl@0: _S("Jul"), sl@0: _S("Aug"), sl@0: _S("Sep"), sl@0: _S("Oct"), sl@0: _S("Nov"), sl@0: _S("Dec") sl@0: }; sl@0: // The am/pm strings sl@0: const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")}; sl@0: sl@0: