1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/localisation/localesupport/src/ls_lnspa.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 Spanish 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("Lunes"),
1.40 + _S("Martes"),
1.41 + _S("Mi\351rcoles"),
1.42 + _S("Jueves"),
1.43 + _S("Viernes"),
1.44 + _S("S\341bado"),
1.45 + _S("Domingo")
1.46 + };
1.47 +// The abbreviated day names
1.48 +const TText * const LLanguage::DayAbbTable[KMaxDays] =
1.49 + {
1.50 + _S("Lun"),
1.51 + _S("Mar"),
1.52 + _S("Mi\351"),
1.53 + _S("Jue"),
1.54 + _S("Vie"),
1.55 + _S("S\341b"),
1.56 + _S("Dom")
1.57 + };
1.58 +// The month names
1.59 +const TText * const LLanguage::MonthTable[KMaxMonths] =
1.60 + {
1.61 + _S("Enero"),
1.62 + _S("Febrero"),
1.63 + _S("Marzo"),
1.64 + _S("Abril"),
1.65 + _S("Mayo"),
1.66 + _S("Junio"),
1.67 + _S("Julio"),
1.68 + _S("Agosto"),
1.69 + _S("Septiembre"),
1.70 + _S("Octubre"),
1.71 + _S("Noviembre"),
1.72 + _S("Diciembre")
1.73 + };
1.74 +// The abbreviated month names
1.75 +const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
1.76 + {
1.77 + _S("Ene"),
1.78 + _S("Feb"),
1.79 + _S("Mar"),
1.80 + _S("Abr"),
1.81 + _S("May"),
1.82 + _S("Jun"),
1.83 + _S("Jul"),
1.84 + _S("Ago"),
1.85 + _S("Sep"),
1.86 + _S("Oct"),
1.87 + _S("Nov"),
1.88 + _S("Dic")
1.89 + };
1.90 +// The am/pm strings
1.91 +const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
1.92 +
1.93 +