localisation/localesupport/src/ls_lnita.cpp
changeset 0 a41df078684a
child 15 4122176ea935
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     1 // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Default settings for the Italian language
       
    15 // 
       
    16 //
       
    17 
       
    18 #include "ls_std.h"
       
    19 
       
    20 // The suffix table
       
    21 const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
       
    22 	{
       
    23 	_S(""),_S(""),_S(""),_S(""),_S(""),
       
    24 	_S(""),_S(""),_S(""),_S(""),_S(""),
       
    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("")
       
    30 	};
       
    31 // The day names
       
    32 const TText * const LLanguage::DayTable[KMaxDays] =
       
    33 	{
       
    34 	_S("Luned\354"),
       
    35 	_S("Marted\354"),
       
    36 	_S("Mercoled\354"),
       
    37 	_S("Gioved\354"),
       
    38 	_S("Venerd\354"),
       
    39 	_S("Sabato"),
       
    40 	_S("Domenica")
       
    41 	};
       
    42 // The abbreviated day names
       
    43 const TText * const LLanguage::DayAbbTable[KMaxDays] =
       
    44 	{
       
    45 	_S("Lun"),
       
    46 	_S("Mar"),
       
    47 	_S("Mer"),
       
    48 	_S("Gio"),
       
    49 	_S("Ven"),
       
    50 	_S("Sab"),
       
    51 	_S("Dom")
       
    52 	};
       
    53 // The month names
       
    54 const TText * const LLanguage::MonthTable[KMaxMonths] =
       
    55 	{
       
    56 	_S("Gennaio"),
       
    57 	_S("Febbraio"),
       
    58 	_S("Marzo"),
       
    59 	_S("Aprile"),
       
    60 	_S("Maggio"),
       
    61 	_S("Giugno"),
       
    62 	_S("Luglio"),
       
    63 	_S("Agosto"),
       
    64 	_S("Settembre"),
       
    65 	_S("Ottobre"),
       
    66 	_S("Novembre"),
       
    67 	_S("Dicembre")
       
    68 	};
       
    69 // The abbreviated month names
       
    70 const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
       
    71 	{
       
    72 	_S("Gen"),
       
    73 	_S("Feb"),
       
    74 	_S("Mar"),
       
    75 	_S("Apr"),
       
    76 	_S("Mag"),
       
    77 	_S("Giu"),
       
    78 	_S("Lug"),
       
    79 	_S("Ago"),
       
    80 	_S("Set"),
       
    81 	_S("Ott"),
       
    82 	_S("Nov"),
       
    83 	_S("Dic")
       
    84 	};
       
    85 // The am/pm strings
       
    86 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
       
    87 
       
    88