locales/loce32/src/ls_lnind.cpp
changeset 0 05e9090e2422
equal deleted inserted replaced
-1:000000000000 0:05e9090e2422
       
     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 Indonesian language, ELOCL.59
       
    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("Senin"),
       
    45 	_S("Selasa"),
       
    46 	_S("Rabu"),
       
    47 	_S("Kamis"),
       
    48 	_S("Jumat"),
       
    49 	_S("Sabtu"),
       
    50 	_S("Minggu")
       
    51 	};
       
    52 // The abbreviated day names
       
    53 const TText * const LLanguage::DayAbbTable[KMaxDays] =
       
    54 	{
       
    55 	_S("Sen"),
       
    56 	_S("Sel"),
       
    57 	_S("Rab"),
       
    58 	_S("Kam"),
       
    59 	_S("Jum"),
       
    60 	_S("Sab"),
       
    61 	_S("Mg")
       
    62 	};
       
    63 // The month names
       
    64 const TText * const LLanguage::MonthTable[KMaxMonths] =
       
    65 	{
       
    66 	_S("Januari"),
       
    67 	_S("Februari"),
       
    68 	_S("Maret"),
       
    69 	_S("April"),
       
    70 	_S("Mei"),
       
    71 	_S("Juni"),
       
    72 	_S("Juli"),
       
    73 	_S("Agustus"),
       
    74 	_S("September"),
       
    75 	_S("Oktober"),
       
    76 	_S("November"),
       
    77 	_S("Desember")
       
    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("Mei"),
       
    87 	_S("Jun"),
       
    88 	_S("Jul"),
       
    89 	_S("Agust"),
       
    90 	_S("Sep"),
       
    91 	_S("Okt"),
       
    92 	_S("Nov"),
       
    93 	_S("Des")
       
    94 	};
       
    95 // The am/pm strings
       
    96 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("AM"),_S("PM")};
       
    97 
       
    98 //  End of File