locales/loce32/language/src/language_ca.cpp
changeset 53 8f0f421d3d0f
child 65 38e4cecf6e95
equal deleted inserted replaced
50:c6286dcf6040 53:8f0f421d3d0f
       
     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 *
       
    16 */
       
    17 
       
    18 
       
    19 //  EXTERNAL RESOURCES  
       
    20 
       
    21 
       
    22 //  Include Files  
       
    23 
       
    24 #include <kernel/ls_std.h>
       
    25 #include "locl_language.h"
       
    26 
       
    27 const TLanguage LanguageAspect::Language = ELangCatalan;
       
    28 const TLanguage LanguageAspect::LanguageDowngrade[3] = {ELangNone, ELangNone, ELangNone};
       
    29 const TDigitType LanguageAspect::DigitType = EDigitTypeWestern;
       
    30 const TFatUtilityFunctions* const LanguageAspect::FatUtilityFunctions = NULL;
       
    31     
       
    32 
       
    33 
       
    34 //  LOCAL CONSTANTS AND MACROS  
       
    35 const TText * const LanguageAspect::MsgTable[ELocaleMessages_LastMsg] =
       
    36     {
       
    37 // Fileserver
       
    38     _S("Ressayer"),					                       // Button 1
       
    39     _S("Arrêter"),					        	       // Button 2
       
    40     _S("Réinsérer le disque"),			                       // Put the card back - line1
       
    41     _S("ou des données vont être perdues"),			                       // Put the card back - line2
       
    42     _S("Batterie trop faible"),			                       // Low power - line1
       
    43     _S("Impossible de terminer l'écriture sur disque"),		                       // Low power - line2
       
    44     _S("Erreur de disque - impossible de terminer l'écriture"),	                       // Disk error - line1
       
    45     _S("Ressayer ou des données seront perdues"),		                       // Disk error - line2
       
    46 // SoundDriver
       
    47     _S("Carillon"),								// Chimes
       
    48     _S("Sonneries"),								// Rings
       
    49     _S("Signal"),								// Signal
       
    50 // MediaDriver diskname (max 16 chars)
       
    51     _S("Internal"),								// Internal
       
    52     _S("External(01)"),							// External(01)
       
    53     _S("External(02)"),							// External(02)
       
    54     _S("External(03)"),							// External(03)
       
    55     _S("External(04)"),							// External(04)
       
    56     _S("External(05)"),							// External(05)
       
    57     _S("External(06)"),							// External(06)
       
    58     _S("External(07)"),							// External(07)
       
    59     _S("External(08)"),							// External(08)
       
    60 // MediaDriver socketname (max 16 chars)
       
    61     _S("Socket(01)"),							// Socket(01)
       
    62     _S("Socket(02)"),							// Socket(02)
       
    63     _S("Socket(03)"),							// Socket(03)
       
    64     _S("Socket(04)")							// Socket(04)
       
    65     };
       
    66     
       
    67 // The suffix table
       
    68 const TText * const LanguageAspect::DateSuffixTable[KMaxSuffixes] =
       
    69          {
       
    70          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    71          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    72          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    73          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    74          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    75          _S(""),_S(""),_S(""),_S(""),_S(""),
       
    76          _S("")
       
    77          };
       
    78 // The day names
       
    79 const TText * const LanguageAspect::DayTable[KMaxDays] =
       
    80     {
       
    81     _S("Dilluns"),
       
    82     _S("Dimarts"),
       
    83     _S("Dimecres"),
       
    84     _S("Dijous"),
       
    85     _S("Divendres"),
       
    86     _S("Dissabte"),
       
    87     _S("Diumenge")
       
    88     };
       
    89 // The abbreviated day names
       
    90 const TText * const LanguageAspect::DayAbbTable[KMaxDays] =
       
    91     {
       
    92     _S("Dl."),
       
    93     _S("Dt."),
       
    94     _S("Dc."),
       
    95     _S("Dj."),
       
    96     _S("Dv."),
       
    97     _S("Ds."),
       
    98     _S("Dg.")
       
    99     };
       
   100 // The month names
       
   101 const TText * const LanguageAspect::MonthTable[KMaxMonths] =
       
   102     {
       
   103     _S("Gener"),
       
   104     _S("Febrer"),
       
   105     _S("Mar\x00e7"),
       
   106     _S("Abril"),
       
   107     _S("Maig"),
       
   108     _S("Juny"),
       
   109     _S("Juliol"),
       
   110     _S("Agost"),
       
   111     _S("Setembre"),
       
   112     _S("Octubre"),
       
   113     _S("Novembre"),
       
   114     _S("Desembre")
       
   115     };
       
   116 // The abbreviated month names
       
   117 const TText * const LanguageAspect::MonthAbbTable[KMaxMonths] =
       
   118     {
       
   119     _S("Gen."),
       
   120     _S("Febr."),
       
   121     _S("Mar\x00e7"),
       
   122     _S("Abr."),
       
   123     _S("Maig"),
       
   124     _S("Juny"),
       
   125     _S("Jul."),
       
   126     _S("Ag."),
       
   127     _S("Set."),
       
   128     _S("Oct."),
       
   129     _S("Nov."),
       
   130     _S("Des.")
       
   131     };
       
   132 // The am/pm strings
       
   133 const TText * const LanguageAspect::AmPmTable[KMaxAmPms] = {_S("AM"),_S("PM")};
       
   134 
       
   135 
       
   136 
       
   137 //  End of File