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:
commit
130a51467b
@ -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
|
||||
|
@ -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}"/>
|
||||
|
Loading…
Reference in New Issue
Block a user