sl@0: // Copyright (c) 2002-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // LOGCLI.RSS sl@0: // sl@0: // sl@0: sl@0: #include <badef.rh> sl@0: sl@0: // Formatting constants sl@0: RESOURCE LBUF r_log_lit_date_format { txt = "%D%M%Y%1 %2 %3 %H:%T:%S"; } sl@0: sl@0: STRUCT INT16 sl@0: { sl@0: WORD value; sl@0: } sl@0: sl@0: //The default contact match count is 7 - the LogServ contact matching is emabled by default. sl@0: //The default value is kept here for compatibility reasons. The resource file is not used anymore. sl@0: //The related LogServ confml file is used for loading the default contact match count. sl@0: RESOURCE INT16 r_log_contact_match_count { value = 7; } sl@0: sl@0: // r_name_format_values enum values are used for for initializing sl@0: // r_log_contact_name_format integer resource. sl@0: ENUM r_name_format_values sl@0: { sl@0: r_western_format, sl@0: r_chinese_format sl@0: }; sl@0: sl@0: // r_log_contact_name_format value determines the order of storing of sl@0: // {family_name, given_name} strings pair in the logs. sl@0: // sl@0: // If r_log_contact_name_format = r_chinese_format, then the order will be: sl@0: // {family_name,name_separator,given_name} sl@0: // sl@0: // If r_log_contact_name_format = r_western_format, then the order will be: sl@0: // {given_name,name_separator,family_name} sl@0: // sl@0: // By default r_log_contact_name_format value is set to r_western_format. sl@0: // It has to be set to r_chinese_format for chinese builds. sl@0: // The default value is kept here for compatibility reasons. The resource file is not used anymore. sl@0: // The related LogServ confml file is used for loading the default contact name format. sl@0: RESOURCE INT16 r_log_contact_name_format { value = r_western_format; } sl@0: