localisation/localesupport/src/ls_ln_template_chinese_traditional.cpp
changeset 0 1fb32624e06b
equal deleted inserted replaced
-1:000000000000 0:1fb32624e06b
       
     1 /*
       
     2 * Copyright (c) 2000-2009 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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include "ls_std.h"
       
    21 
       
    22 // The suffix table
       
    23 const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
       
    24 	{
       
    25 	_S(""),_S(""),_S(""),_S(""),_S(""),
       
    26 	_S(""),_S(""),_S(""),_S(""),_S(""),
       
    27 	_S(""),_S(""),_S(""),_S(""),_S(""),
       
    28 	_S(""),_S(""),_S(""),_S(""),_S(""),
       
    29 	_S(""),_S(""),_S(""),_S(""),_S(""),
       
    30 	_S(""),_S(""),_S(""),_S(""),_S(""),
       
    31 	_S("")
       
    32 	};
       
    33 // The day names
       
    34 const TText * const LLanguage::DayTable[KMaxDays] =
       
    35 	{
       
    36 	_S("\x661f\x671f\x4e00"),
       
    37 	_S("\x661f\x671f\x4e8c"),
       
    38 	_S("\x661f\x671f\x4e09"),
       
    39 	_S("\x661f\x671f\x56db"),
       
    40 	_S("\x661f\x671f\x4e94"),
       
    41 	_S("\x661f\x671f\x516d"),
       
    42 	_S("\x661f\x671f\x65e5")
       
    43 	};
       
    44 // The abbreviated day names
       
    45 const TText * const LLanguage::DayAbbTable[KMaxDays] =
       
    46 	{
       
    47 	_S("\x661f\x671f\x4e00"),
       
    48 	_S("\x661f\x671f\x4e8c"),
       
    49 	_S("\x661f\x671f\x4e09"),
       
    50 	_S("\x661f\x671f\x56db"),
       
    51 	_S("\x661f\x671f\x4e94"),
       
    52 	_S("\x661f\x671f\x516d"),
       
    53 	_S("\x661f\x671f\x65e5")
       
    54 	};
       
    55 // The month names
       
    56 const TText * const LLanguage::MonthTable[KMaxMonths] =
       
    57 	{
       
    58 	_S("\x4e00\x6708"),
       
    59 	_S("\x4e8c\x6708"),
       
    60 	_S("\x4e09\x6708"),
       
    61 	_S("\x56db\x6708"),
       
    62 	_S("\x4e94\x6708"),
       
    63 	_S("\x516d\x6708"),
       
    64 	_S("\x4e03\x6708"),
       
    65 	_S("\x516b\x6708"),
       
    66 	_S("\x4e5d\x6708"),
       
    67 	_S("\x5341\x6708"),
       
    68 	_S("\x5341\x4e00\x6708"),
       
    69 	_S("\x5341\x4e8c\x6708")
       
    70 	};
       
    71 // The abbreviated month names
       
    72 const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
       
    73 	{
       
    74 	_S("\x4e00\x6708"),
       
    75 	_S("\x4e8c\x6708"),
       
    76 	_S("\x4e09\x6708"),
       
    77 	_S("\x56db\x6708"),
       
    78 	_S("\x4e94\x6708"),
       
    79 	_S("\x516d\x6708"),
       
    80 	_S("\x4e03\x6708"),
       
    81 	_S("\x516b\x6708"),
       
    82 	_S("\x4e5d\x6708"),
       
    83 	_S("\x5341\x6708"),
       
    84 	_S("\x5341\x4e00\x6708"),
       
    85 	_S("\x5341\x4e8c\x6708")
       
    86 	};
       
    87 // The am/pm strings
       
    88 const TText * const LLanguage::AmPmTable[KMaxAmPms] =
       
    89 	{
       
    90 	_S("\x4e0a\x5348"),
       
    91 	_S("\x4e0b\x5348")
       
    92 	};
       
    93