locales/loce32/src/ls_lnlav.cpp
branchRCL_3
changeset 107 9f95a5546443
parent 0 05e9090e2422
equal deleted inserted replaced
106:e4e3998ddda2 107:9f95a5546443
       
     1 /*
       
     2 * Copyright (c) 2002 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 + am/pm symbols for Latvian language, ELOCL.67
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 //  EXTERNAL RESOURCES  
       
    22 
       
    23 
       
    24 //  Include Files  
       
    25 
       
    26 #include <kernel/ls_std.h>
       
    27 
       
    28 //  LOCAL CONSTANTS AND MACROS  
       
    29 
       
    30 //  The suffix table
       
    31 const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
       
    32 	{
       
    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("."),_S("."),_S("."),_S("."),_S("."),
       
    39 	_S(".")
       
    40 	};
       
    41 // The day names
       
    42 const TText * const LLanguage::DayTable[KMaxDays] =
       
    43 	{
       
    44 	_S("pirmdiena"),
       
    45 	_S("otrdiena"),
       
    46 	_S("trešdiena"),
       
    47 	_S("ceturtdiena"),
       
    48 	_S("piektdiena"),
       
    49 	_S("sestdiena"),
       
    50 	_S("sv\x0113" L"tdiena")
       
    51 	};
       
    52 // The abbreviated day names
       
    53 const TText * const LLanguage::DayAbbTable[KMaxDays] =
       
    54 	{
       
    55 	_S("Pr"),
       
    56 	_S("Ot"),
       
    57 	_S("Tr"),
       
    58 	_S("Ce"),
       
    59 	_S("Pk"),
       
    60 	_S("Se"),
       
    61 	_S("Sv")
       
    62 	};
       
    63 // The month names
       
    64 const TText * const LLanguage::MonthTable[KMaxMonths] =
       
    65 	{
       
    66 	_S("janv\x0101" L"ris"),
       
    67 	_S("febru\x0101" L"ris"),
       
    68 	_S("marts"),
       
    69 	_S("apr\x012B" L"lis"),
       
    70 	_S("maijs"),
       
    71 	_S("j\x016B" L"nijs"),
       
    72 	_S("j\x016B" L"lijs"),
       
    73 	_S("augusts"),
       
    74 	_S("septembris"),
       
    75 	_S("oktobris"),
       
    76 	_S("novembris"),
       
    77 	_S("decembris")
       
    78 	};
       
    79 // The abbreviated month names
       
    80 const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
       
    81 	{
       
    82 	_S("Jan"),
       
    83 	_S("Feb"),
       
    84 	_S("Mar"),
       
    85 	_S("Apr"),
       
    86 	_S("Mai"),
       
    87 	_S("J\x016B" L"n"),
       
    88 	_S("J\x016B" L"l"),
       
    89 	_S("Aug"),
       
    90 	_S("Sep"),
       
    91 	_S("Okt"),
       
    92 	_S("Nov"),
       
    93 	_S("Dec")
       
    94 	};
       
    95 // The am/pm strings
       
    96 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("AM"),_S("PM")};
       
    97 
       
    98 //  End of File