|
1 // Copyright (c) 2002-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 "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 // LOGCLI.RSS |
|
15 // |
|
16 // |
|
17 |
|
18 #include <badef.rh> |
|
19 |
|
20 // Formatting constants |
|
21 RESOURCE LBUF r_log_lit_date_format { txt = "%D%M%Y%1 %2 %3 %H:%T:%S"; } |
|
22 |
|
23 STRUCT INT16 |
|
24 { |
|
25 WORD value; |
|
26 } |
|
27 |
|
28 #ifdef SYSLIBS_TEST |
|
29 //The phone digits match count must be at least 7 otherwise the Contacts server won't perform the match properly |
|
30 RESOURCE INT16 r_log_contact_match_count { value = 8; } |
|
31 #else |
|
32 // Set number of digits to use for contacts matching |
|
33 // Set to zero to disable contacts matching when adding events |
|
34 RESOURCE INT16 r_log_contact_match_count { value = 0; } |
|
35 #endif |
|
36 |
|
37 // r_name_format_values enum values are used for for initializing |
|
38 // r_log_contact_name_format integer resource. |
|
39 ENUM r_name_format_values |
|
40 { |
|
41 r_western_format, |
|
42 r_chinese_format |
|
43 }; |
|
44 |
|
45 // r_log_contact_name_format value determines the order of storing of |
|
46 // {family_name, given_name} strings pair in the logs. |
|
47 // |
|
48 // If r_log_contact_name_format = r_chinese_format, then the order will be: |
|
49 // {family_name,name_separator,given_name} |
|
50 // |
|
51 // If r_log_contact_name_format = r_western_format, then the order will be: |
|
52 // {given_name,name_separator,family_name} |
|
53 // |
|
54 // By default r_log_contact_name_format value is set to r_western_format. |
|
55 // It has to be set to r_chinese_format for chinese builds. |
|
56 RESOURCE INT16 r_log_contact_name_format { value = r_western_format; } |
|
57 |