diff --git a/bigbluebutton-client/locale/en_US/bbbResources.properties b/bigbluebutton-client/locale/en_US/bbbResources.properties
index e22698a237..33656386e7 100755
--- a/bigbluebutton-client/locale/en_US/bbbResources.properties
+++ b/bigbluebutton-client/locale/en_US/bbbResources.properties
@@ -202,4 +202,11 @@ bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the lates
bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
bbb.accessibility.chat.chatView.publicTabNew = NEW MESSAGE IN PUBLIC CHAT
-bbb.accessibility.chat.chatView.privateTabNew = NEW MESSAGE IN PRIVATE CHAT WITH {0}
\ No newline at end of file
+bbb.accessibility.chat.chatView.privateTabNew = NEW MESSAGE IN PRIVATE CHAT WITH {0}
+
+bbb.shortcuthelp.title = Shortcut glossary
+bbb.shortcuthelp.dropdown.all = All shortcuts
+bbb.shortcuthelp.dropdown.general = General shortcuts
+bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
+bbb.shortcuthelp.dropdown.chat = Chat shortcuts
+bbb.shortcuthelp.dropdown.audio = Audio shortcuts
\ No newline at end of file
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/views/ShortcutHelpWindow.mxml b/bigbluebutton-client/src/org/bigbluebutton/main/views/ShortcutHelpWindow.mxml
index 813686b81e..12eb91a6ba 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/views/ShortcutHelpWindow.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/views/ShortcutHelpWindow.mxml
@@ -24,7 +24,8 @@
xmlns:mx="http://www.adobe.com/2006/mxml"
showCloseButton="true"
creationComplete="onCreationComplete()"
- xmlns:mate="http://mate.asfusion.com/" >
+ xmlns:mate="http://mate.asfusion.com/"
+ title="{ResourceUtil.getInstance().getString('bbb.shortcuthelp.title')}">
- All shortcuts
- General shortcuts
- Presentation shortcuts
- Chat shortcuts
- Audio shortcuts
+ {ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.all")}
+ {ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.general")}
+ {ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.presentation")}
+ {ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.chat")}
+ {ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.audio")}