Included shared note characters remaining tooltip
This commit is contained in:
parent
0dc3cef38e
commit
d0a597059c
@ -537,6 +537,8 @@ bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
|
||||
bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
|
||||
bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
|
||||
bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
|
||||
bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
|
||||
bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
|
||||
bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
|
||||
bbb.settings.deskshare.start = Check Desktop Sharing
|
||||
bbb.settings.voice.volume = Microphone Activity
|
||||
|
@ -577,7 +577,10 @@
|
||||
<mx:Label id="charRemain"
|
||||
includeInLayout="true"
|
||||
visible="{(options.maxNoteLength - richTextEditor.text.length) < (options.maxNoteLength / 8)}"
|
||||
text="{options.maxNoteLength - richTextEditor.text.length}"/>
|
||||
text="{options.maxNoteLength - richTextEditor.text.length}"
|
||||
toolTip="{options.maxNoteLength - richTextEditor.text.length > 0 ?
|
||||
ResourceUtil.getInstance().getString('bbb.sharedNotes.remaining.tooltip') :
|
||||
ResourceUtil.getInstance().getString('bbb.sharedNotes.full.tooltip')}"/>
|
||||
<mx:Button id="btnNew"
|
||||
styleName="sharedNotesNewButtonStyle"
|
||||
width="26"
|
||||
|
Loading…
Reference in New Issue
Block a user