sl@0: /* 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 "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: * Default settings for the Spanish language sl@0: * sl@0: */ sl@0: sl@0: sl@0: #include "ls_std.h" sl@0: sl@0: // The suffix table sl@0: const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] = sl@0: { sl@0: _S(""),_S(""),_S(""),_S(""),_S(""), sl@0: _S(""),_S(""),_S(""),_S(""),_S(""), sl@0: _S(""),_S(""),_S(""),_S(""),_S(""), sl@0: _S(""),_S(""),_S(""),_S(""),_S(""), sl@0: _S(""),_S(""),_S(""),_S(""),_S(""), sl@0: _S(""),_S(""),_S(""),_S(""),_S(""), sl@0: _S("") sl@0: }; sl@0: // The day names sl@0: const TText * const LLanguage::DayTable[KMaxDays] = sl@0: { sl@0: _S("Lunes"), sl@0: _S("Martes"), sl@0: _S("Mi\351rcoles"), sl@0: _S("Jueves"), sl@0: _S("Viernes"), sl@0: _S("S\341bado"), sl@0: _S("Domingo") sl@0: }; sl@0: // The abbreviated day names sl@0: const TText * const LLanguage::DayAbbTable[KMaxDays] = sl@0: { sl@0: _S("Lun"), sl@0: _S("Mar"), sl@0: _S("Mi\351"), sl@0: _S("Jue"), sl@0: _S("Vie"), sl@0: _S("S\341b"), sl@0: _S("Dom") sl@0: }; sl@0: // The month names sl@0: const TText * const LLanguage::MonthTable[KMaxMonths] = sl@0: { sl@0: _S("Enero"), sl@0: _S("Febrero"), sl@0: _S("Marzo"), sl@0: _S("Abril"), sl@0: _S("Mayo"), sl@0: _S("Junio"), sl@0: _S("Julio"), sl@0: _S("Agosto"), sl@0: _S("Septiembre"), sl@0: _S("Octubre"), sl@0: _S("Noviembre"), sl@0: _S("Diciembre") sl@0: }; sl@0: // The abbreviated month names sl@0: const TText * const LLanguage::MonthAbbTable[KMaxMonths] = sl@0: { sl@0: _S("Ene"), sl@0: _S("Feb"), sl@0: _S("Mar"), sl@0: _S("Abr"), sl@0: _S("May"), sl@0: _S("Jun"), sl@0: _S("Jul"), sl@0: _S("Ago"), sl@0: _S("Sep"), sl@0: _S("Oct"), sl@0: _S("Nov"), sl@0: _S("Dic") sl@0: }; sl@0: // The am/pm strings sl@0: const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")}; sl@0: sl@0: