locales/loce32/src/ls_lnvie.cpp
changeset 0 05e9090e2422
equal deleted inserted replaced
-1:000000000000 0:05e9090e2422
       
     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 Vietnamese, Epoc code 96
       
    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("Th1ee9" L" hai"),
       
    44         _S("Th1ee9" L" ba"),
       
    45         _S("Th1ee9" L" t01b0" L""),
       
    46         _S("Th1ee9" L" n0103" L"m"),
       
    47         _S("Th1ee9" L" s00e1" L"u"),
       
    48         _S("Th1ee9" L" b1ea3" L"y"),
       
    49         _S("Ch1ee7" L" Nh1ead" L"t")
       
    50         };
       
    51 // The abbreviated day names
       
    52 const TText * const LLanguage::DayAbbTable[KMaxDays] =
       
    53         {
       
    54         _S("T2"),
       
    55         _S("T3"),
       
    56         _S("T4"),
       
    57         _S("T5"),
       
    58         _S("T6"),
       
    59         _S("T7"),
       
    60         _S("CN")
       
    61         };
       
    62 // The month names
       
    63 const TText * const LLanguage::MonthTable[KMaxMonths] =
       
    64         {
       
    65         _S("Th00e1" L"ng 1"),
       
    66         _S("Th00e1" L"ng 2"),
       
    67         _S("Th00e1" L"ng 3"),
       
    68         _S("Th00e1" L"ng 4"),
       
    69         _S("Th00e1" L"ng 5"),
       
    70         _S("Th00e1" L"ng 6"),
       
    71         _S("Th00e1" L"ng 7"),
       
    72         _S("Th00e1" L"ng 8"),
       
    73         _S("Th00e1" L"ng 9"),
       
    74         _S("Th00e1" L"ng 10"),
       
    75         _S("Th00e1" L"ng 11"),
       
    76         _S("Th00e1" L"ng 12")
       
    77         };
       
    78 // The abbreviated month names
       
    79 const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
       
    80         {
       
    81         _S("Th1"),
       
    82         _S("Th2"),
       
    83         _S("Th3"),
       
    84         _S("Th4"),
       
    85         _S("Th00e1" L"ng 5"),
       
    86         _S("Th6"),
       
    87         _S("Th7"),
       
    88         _S("Th8"),
       
    89         _S("Th9"),
       
    90         _S("Th10"),
       
    91         _S("Th11"),
       
    92         _S("Th12")
       
    93         };
       
    94 // The am/pm strings
       
    95 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("SA"),_S("CH")};
       
    96 
       
    97 //  End of File