Minor tweaks to Shortcut Glossary and english locale

This commit is contained in:
jtrobinson 2012-08-13 21:43:29 +00:00
parent 88676b51e9
commit 03b58c1221
2 changed files with 17 additions and 8 deletions

View File

@ -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}
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

View File

@ -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')}">
<mx:Script>
<![CDATA[
@ -44,18 +45,19 @@
private var disp:Dispatcher;
private function onCreationComplete():void {
LogUtil.debug("WATERFALL: Shortcut window has been opened");
LogUtil.debug("WATERFALL: Shortcut window has been opened");
}
]]>
</mx:Script>
<mx:ComboBox labelField="Please select an area for which to view shortcut keys: " editable="false">
<mx:ArrayCollection>
<mx:String>All shortcuts</mx:String>
<mx:String>General shortcuts</mx:String>
<mx:String>Presentation shortcuts</mx:String>
<mx:String>Chat shortcuts</mx:String>
<mx:String>Audio shortcuts</mx:String>
<mx:String>{ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.all")}</mx:String>
<mx:String>{ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.general")}</mx:String>
<mx:String>{ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.presentation")}</mx:String>
<mx:String>{ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.chat")}</mx:String>
<mx:String>{ResourceUtil.getInstance().getString("bbb.shortcuthelp.dropdown.audio")}</mx:String>
</mx:ArrayCollection>
</mx:ComboBox>