localisation/localesupport/src/ls_lnita.cpp
branchanywhere
changeset 41 d32f34975bbf
parent 40 04a1b74efd48
parent 37 a9bf1d2c555e
child 48 10816385149a
equal deleted inserted replaced
40:04a1b74efd48 41:d32f34975bbf
     1 /*
       
     2 * Copyright (c) 1994-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 * Default settings for the Italian language
       
    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("Luned\354"),
       
    37 	_S("Marted\354"),
       
    38 	_S("Mercoled\354"),
       
    39 	_S("Gioved\354"),
       
    40 	_S("Venerd\354"),
       
    41 	_S("Sabato"),
       
    42 	_S("Domenica")
       
    43 	};
       
    44 // The abbreviated day names
       
    45 const TText * const LLanguage::DayAbbTable[KMaxDays] =
       
    46 	{
       
    47 	_S("Lun"),
       
    48 	_S("Mar"),
       
    49 	_S("Mer"),
       
    50 	_S("Gio"),
       
    51 	_S("Ven"),
       
    52 	_S("Sab"),
       
    53 	_S("Dom")
       
    54 	};
       
    55 // The month names
       
    56 const TText * const LLanguage::MonthTable[KMaxMonths] =
       
    57 	{
       
    58 	_S("Gennaio"),
       
    59 	_S("Febbraio"),
       
    60 	_S("Marzo"),
       
    61 	_S("Aprile"),
       
    62 	_S("Maggio"),
       
    63 	_S("Giugno"),
       
    64 	_S("Luglio"),
       
    65 	_S("Agosto"),
       
    66 	_S("Settembre"),
       
    67 	_S("Ottobre"),
       
    68 	_S("Novembre"),
       
    69 	_S("Dicembre")
       
    70 	};
       
    71 // The abbreviated month names
       
    72 const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
       
    73 	{
       
    74 	_S("Gen"),
       
    75 	_S("Feb"),
       
    76 	_S("Mar"),
       
    77 	_S("Apr"),
       
    78 	_S("Mag"),
       
    79 	_S("Giu"),
       
    80 	_S("Lug"),
       
    81 	_S("Ago"),
       
    82 	_S("Set"),
       
    83 	_S("Ott"),
       
    84 	_S("Nov"),
       
    85 	_S("Dic")
       
    86 	};
       
    87 // The am/pm strings
       
    88 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
       
    89 
       
    90