diff options
| -rw-r--r-- | packages/SystemUI/res/values/strings.xml | 4 | ||||
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/SystemUI/res/values/strings.xml b/packages/SystemUI/res/values/strings.xml index 81f932e1799e..92e10d2fe7ae 100644 --- a/packages/SystemUI/res/values/strings.xml +++ b/packages/SystemUI/res/values/strings.xml @@ -1434,8 +1434,8 @@ <string name="keyboard_shortcut_group_applications_contacts">Contacts</string> <!-- User visible title for the keyboard shortcut that takes the user to the email app. --> <string name="keyboard_shortcut_group_applications_email">Email</string> - <!-- User visible title for the keyboard shortcut that takes the user to the instant messaging app. --> - <string name="keyboard_shortcut_group_applications_im">IM</string> + <!-- User visible title for the keyboard shortcut that takes the user to the SMS messaging app. --> + <string name="keyboard_shortcut_group_applications_sms">SMS</string> <!-- User visible title for the keyboard shortcut that takes the user to the music app. --> <string name="keyboard_shortcut_group_applications_music">Music</string> <!-- User visible title for the keyboard shortcut that takes the user to the YouTube app. --> diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java b/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java index e781f1b7d5d6..f4387629b8b3 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java @@ -488,9 +488,9 @@ public final class KeyboardShortcuts { final Icon messagingIcon = getIconForIntentCategory(Intent.CATEGORY_APP_MESSAGING, userId); if (messagingIcon != null) { keyboardShortcutInfoAppItems.add(new KeyboardShortcutInfo( - mContext.getString(R.string.keyboard_shortcut_group_applications_im), + mContext.getString(R.string.keyboard_shortcut_group_applications_sms), messagingIcon, - KeyEvent.KEYCODE_T, + KeyEvent.KEYCODE_S, KeyEvent.META_META_ON)); } |