diff options
author | Yorke Lee <yorkelee@google.com> | 2013-08-09 20:23:04 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-08-09 20:23:04 +0000 |
commit | 36da96ba381c6b8f363ea0c69d18b7d992fce719 (patch) | |
tree | 828b5e5f665e5c1903c55bf713a51673c2676691 | |
parent | f923f3ed402d0e87f87a90982ea54cf63602cc70 (diff) | |
parent | c3877df56876507c173535d6bd65e8a4b1c5b424 (diff) |
Merge "Enable transations for dialpad digits" into klp-dev
-rw-r--r-- | res/values/strings.xml | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index f35df9d53..6ea6db648 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -547,53 +547,54 @@ <!-- Title of activity that displays a list of all calls --> <string name="call_log_activity_title">History</string> - <!-- Do not translate. --> + <!-- The digit to be displayed on the 0 key of the dialpad [CHAR LIMIT=1]--> <string name="dialpad_0_number">0</string> + <!-- The digit to be displayed on the 1 key of the dialpad [CHAR LIMIT=1]--> + <string name="dialpad_1_number">1</string> + <!-- The digit to be displayed on the 2 key of the dialpad [CHAR LIMIT=1]--> + <string name="dialpad_2_number">2</string> + <!-- The digit to be displayed on the 3 key of the dialpad [CHAR LIMIT=1]--> + <string name="dialpad_3_number">3</string> + <!-- The digit to be displayed on the 4 key of the dialpad [CHAR LIMIT=1]--> + <string name="dialpad_4_number">4</string> + <!-- The digit to be displayed on the 5 key of the dialpad [CHAR LIMIT=1]--> + <string name="dialpad_5_number">5</string> + <!-- The digit to be displayed on the 6 key of the dialpad [CHAR LIMIT=1]--> + <string name="dialpad_6_number">6</string> + <!-- The digit to be displayed on the 7 key of the dialpad [CHAR LIMIT=1]--> + <string name="dialpad_7_number">7</string> + <!-- The digit to be displayed on the 8 key of the dialpad [CHAR LIMIT=1]--> + <string name="dialpad_8_number">8</string> + <!-- The digit to be displayed on the 9 key of the dialpad [CHAR LIMIT=1]--> + <string name="dialpad_9_number">9</string> <!-- Do not translate. --> - <string name="dialpad_0_letters">+</string> + <string name="dialpad_star_number">*</string> <!-- Do not translate. --> - <string name="dialpad_1_number">1</string> + <string name="dialpad_pound_number">#</string> + <!-- Do not translate. --> - <string name="dialpad_1_letters"></string> + <string name="dialpad_0_letters">+</string> <!-- Do not translate. --> - <string name="dialpad_2_number">2</string> + <string name="dialpad_1_letters"></string> <!-- Do not translate. --> <string name="dialpad_2_letters">ABC</string> <!-- Do not translate. --> - <string name="dialpad_3_number">3</string> - <!-- Do not translate. --> <string name="dialpad_3_letters">DEF</string> <!-- Do not translate. --> - <string name="dialpad_4_number">4</string> - <!-- Do not translate. --> <string name="dialpad_4_letters">GHI</string> <!-- Do not translate. --> - <string name="dialpad_5_number">5</string> - <!-- Do not translate. --> <string name="dialpad_5_letters">JKL</string> <!-- Do not translate. --> - <string name="dialpad_6_number">6</string> - <!-- Do not translate. --> <string name="dialpad_6_letters">MNO</string> <!-- Do not translate. --> - <string name="dialpad_7_number">7</string> - <!-- Do not translate. --> <string name="dialpad_7_letters">PQRS</string> <!-- Do not translate. --> - <string name="dialpad_8_number">8</string> - <!-- Do not translate. --> <string name="dialpad_8_letters">TUV</string> <!-- Do not translate. --> - <string name="dialpad_9_number">9</string> - <!-- Do not translate. --> <string name="dialpad_9_letters">WXYZ</string> <!-- Do not translate. --> - <string name="dialpad_star_number">*</string> - <!-- Do not translate. --> <string name="dialpad_star_letters"></string> <!-- Do not translate. --> - <string name="dialpad_pound_number">#</string> - <!-- Do not translate. --> <string name="dialpad_pound_letters"></string> <!-- Title of fragment that displays all contacts --> |