|
1 /* |
|
2 * Copyright (c) 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: Dialer virtual keypad button text labels. |
|
15 * This variant is for languages written with Hebrew |
|
16 * alphabets. |
|
17 * |
|
18 */ |
|
19 |
|
20 // NOTE: It's mandatory that all variated keypad resources have |
|
21 // the same resouce identifier and same structure. Same interface |
|
22 // is used for all of them! |
|
23 |
|
24 // RESOURCE IDENTIFIER |
|
25 NAME DIKP |
|
26 |
|
27 #include <eikon.rh> |
|
28 #include <eikon.hrh> |
|
29 |
|
30 #include "dialerkeypad.rh" |
|
31 |
|
32 RESOURCE RSS_SIGNATURE { } |
|
33 |
|
34 RESOURCE TBUF { buf=""; } |
|
35 |
|
36 RESOURCE DIALER_KEYPAD r_dialer_keypad |
|
37 { |
|
38 keys = |
|
39 { |
|
40 DIALER_KEY // 1 |
|
41 { |
|
42 firstRow = DEFAULT_KEY_1_TEXT; |
|
43 }, |
|
44 DIALER_KEY // 2 |
|
45 { |
|
46 firstRow = DEFAULT_KEY_2_TEXT; |
|
47 secondRow = <0x05D5><0x05D4><0x05D3>; |
|
48 }, |
|
49 DIALER_KEY // 3 |
|
50 { |
|
51 firstRow = DEFAULT_KEY_3_TEXT; |
|
52 secondRow = <0x05D2><0x05D1><0x05D0>; |
|
53 }, |
|
54 DIALER_KEY // 4 |
|
55 { |
|
56 firstRow = DEFAULT_KEY_4_TEXT; |
|
57 secondRow = <0x05E0><0x05DE>; |
|
58 }, |
|
59 DIALER_KEY // 5 |
|
60 { |
|
61 firstRow = DEFAULT_KEY_5_TEXT; |
|
62 secondRow = <0x05DC><0x05DB><0x05D9>; |
|
63 }, |
|
64 DIALER_KEY // 6 |
|
65 { |
|
66 firstRow = DEFAULT_KEY_6_TEXT; |
|
67 secondRow = <0x05D8><0x05D7><0x05D6>; |
|
68 }, |
|
69 DIALER_KEY // 7 |
|
70 { |
|
71 firstRow = DEFAULT_KEY_7_TEXT; |
|
72 secondRow = <0x05EA><0x05E9><0x05E8>; |
|
73 }, |
|
74 DIALER_KEY // 8 |
|
75 { |
|
76 firstRow = DEFAULT_KEY_8_TEXT; |
|
77 secondRow = <0x05E7><0x05E6>; |
|
78 }, |
|
79 DIALER_KEY // 9 |
|
80 { |
|
81 firstRow = DEFAULT_KEY_9_TEXT; |
|
82 secondRow = <0x05E4><0x05E2><0x05E1>; |
|
83 }, |
|
84 DIALER_KEY // * |
|
85 { |
|
86 firstRow = DEFAULT_KEY_ASTERISK_TEXT; |
|
87 }, |
|
88 DIALER_KEY // 0 |
|
89 { |
|
90 firstRow = DEFAULT_KEY_0_TEXT; |
|
91 }, |
|
92 DIALER_KEY // # |
|
93 { |
|
94 firstRow = DEFAULT_KEY_HASH_TEXT; |
|
95 } |
|
96 }; |
|
97 } |
|
98 |
|
99 // End Of File |