Merge pull request #207 from SenecaCDOT-BigBlueButton/move-you-to-locales

moved the you indicator in the users grid to the locales file
This commit is contained in:
Chad Pilkey 2013-07-12 15:34:57 -07:00
commit 130a51467b
2 changed files with 2 additions and 1 deletions

View File

@ -53,6 +53,7 @@ bbb.users.muteMeBtnTxt.muted = Muted
bbb.users.muteMeBtnTxt.unmuted = Unmuted
bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
bbb.users.usersGrid.nameItemRenderer = Name
bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Change Presenter
bbb.users.usersGrid.statusItemRenderer.presenter = Presenter

View File

@ -27,7 +27,7 @@
import org.bigbluebutton.util.i18n.ResourceUtil;
]]>
</mx:Script>
<mx:Label id="nameLabel" textAlign="left" text="{data.name} {data.me ? '(you)' : ''}"
<mx:Label id="nameLabel" textAlign="left" text="{data.name} {data.me ? '(' + ResourceUtil.getInstance().getString('bbb.users.usersGrid.nameItemRenderer.youIdentifier') + ')' : ''}"
fontWeight="{data.me ? 'bold' : 'normal'}"
color="{data.me ? 0x003399 : 0x000000}"
toolTip="{data.name}"/>