locales/loce32/src/ls_ln_eu.cpp
branchRCL_3
changeset 107 9f95a5546443
parent 0 05e9090e2422
equal deleted inserted replaced
106:e4e3998ddda2 107:9f95a5546443
       
     1 /*
       
     2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   Day & Month names, abbreviations and datesuffix table
       
    15 *                + am/pm symbols for Basque, Epoc code 401
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 //  EXTERNAL RESOURCES
       
    22 
       
    23 //  Include Files
       
    24 
       
    25 #include <kernel/ls_std.h>
       
    26 
       
    27 //  LOCAL CONSTANTS AND MACROS
       
    28 
       
    29 // The suffix table
       
    30 const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
       
    31          {
       
    32          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    33          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    34          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    35          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    36          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    37          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    38          _S("")
       
    39          };
       
    40 // The day names
       
    41 const TText * const LLanguage::DayTable[KMaxDays] =
       
    42 	{
       
    43 	_S("Astelehena"),
       
    44 	_S("Asteartea"),
       
    45 	_S("Asteazkena"),
       
    46 	_S("Osteguna"),
       
    47 	_S("Ostirala"),
       
    48 	_S("Larunbata"),
       
    49 	_S("Igandea")
       
    50 	};
       
    51 // The abbreviated day names
       
    52 const TText * const LLanguage::DayAbbTable[KMaxDays] =
       
    53 	{
       
    54 	_S("al."),
       
    55 	_S("ar."),
       
    56 	_S("az."),
       
    57 	_S("og."),
       
    58 	_S("ol."),
       
    59 	_S("lr."),
       
    60 	_S("ig.")
       
    61 	};
       
    62 // The month names
       
    63 const TText * const LLanguage::MonthTable[KMaxMonths] =
       
    64 	{
       
    65 	_S("Urtarrila"),
       
    66 	_S("Otsaila"),
       
    67 	_S("Martxoa"),
       
    68 	_S("Apirila"),
       
    69 	_S("Maiatza"),
       
    70 	_S("Ekaina"),
       
    71 	_S("Uztaila"),
       
    72 	_S("Abuztua"),
       
    73 	_S("Iraila"),
       
    74 	_S("Urria"),
       
    75 	_S("Azaroa"),
       
    76 	_S("Abendua")
       
    77 	};
       
    78 // The abbreviated month names
       
    79 const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
       
    80 	{
       
    81 	_S("Urt"),
       
    82 	_S("Ots"),
       
    83 	_S("Mar"),
       
    84 	_S("Api"),
       
    85 	_S("Mai"),
       
    86 	_S("Eka"),
       
    87 	_S("Uzt"),
       
    88 	_S("Abu"),
       
    89 	_S("Ira"),
       
    90 	_S("Urr"),
       
    91 	_S("Aza"),
       
    92 	_S("Abe")
       
    93 	};
       
    94 // The am/pm strings
       
    95 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("AM"),_S("PM")};
       
    96 
       
    97 //  End of File