Merge pull request #372 from pedrobmarin/minor-translations-fix
Adapting some client labels
This commit is contained in:
commit
929f7beda5
@ -624,6 +624,7 @@ bbb.polling.startButton.label = Start Poll
|
|||||||
bbb.polling.publishButton.label = Publish
|
bbb.polling.publishButton.label = Publish
|
||||||
bbb.polling.closeButton.label = Close
|
bbb.polling.closeButton.label = Close
|
||||||
bbb.polling.pollModal.title = Live Poll Results
|
bbb.polling.pollModal.title = Live Poll Results
|
||||||
|
bbb.polling.customPoll.label = Custom Poll...
|
||||||
bbb.polling.customChoices.title = Enter Polling Choices
|
bbb.polling.customChoices.title = Enter Polling Choices
|
||||||
bbb.polling.respondersLabel.novotes = Waiting for responses
|
bbb.polling.respondersLabel.novotes = Waiting for responses
|
||||||
bbb.polling.respondersLabel.text = {0} Users Responded
|
bbb.polling.respondersLabel.text = {0} Users Responded
|
||||||
@ -731,4 +732,4 @@ bbb.langSelector.tr_TR=Turkish
|
|||||||
bbb.langSelector.uk_UA=Ukrainian
|
bbb.langSelector.uk_UA=Ukrainian
|
||||||
bbb.langSelector.vi_VN=Vietnamese
|
bbb.langSelector.vi_VN=Vietnamese
|
||||||
bbb.langSelector.cy_GB=Welsh
|
bbb.langSelector.cy_GB=Welsh
|
||||||
bbb.langSelector.oc=Occitan
|
bbb.langSelector.oc=Occitan
|
||||||
|
@ -622,11 +622,12 @@ bbb.shortcutkey.chat.chatbox.debug = 71
|
|||||||
bbb.shortcutkey.chat.chatbox.debug.function = Tecla de atalho temporária de depuração
|
bbb.shortcutkey.chat.chatbox.debug.function = Tecla de atalho temporária de depuração
|
||||||
|
|
||||||
bbb.polling.startButton.tooltip = Começar uma enquete
|
bbb.polling.startButton.tooltip = Começar uma enquete
|
||||||
bbb.polling.startButton.label = Iniciar enquete
|
bbb.polling.startButton.label = Iniciar
|
||||||
bbb.polling.publishButton.label = Publicar
|
bbb.polling.publishButton.label = Publicar
|
||||||
bbb.polling.closeButton.label = Cancelar
|
bbb.polling.closeButton.label = Cancelar
|
||||||
bbb.polling.pollModal.title = Resultados da enquete em tempo real
|
bbb.polling.pollModal.title = Resultados da enquete em tempo real
|
||||||
bbb.polling.customChoices.title = Entre com as opções da enquete
|
bbb.polling.customPoll.label = Enquete Personalizada
|
||||||
|
bbb.polling.customChoices.title = Opções da Enquete
|
||||||
bbb.polling.respondersLabel.novotes = Aguardando respostas
|
bbb.polling.respondersLabel.novotes = Aguardando respostas
|
||||||
bbb.polling.respondersLabel.text = {0} usuários responderam
|
bbb.polling.respondersLabel.text = {0} usuários responderam
|
||||||
bbb.polling.respondersLabel.finished = Feito
|
bbb.polling.respondersLabel.finished = Feito
|
||||||
@ -733,4 +734,4 @@ bbb.langSelector.tr_TR=Turco
|
|||||||
bbb.langSelector.uk_UA=Ucraniano
|
bbb.langSelector.uk_UA=Ucraniano
|
||||||
bbb.langSelector.vi_VN=Vietnamita
|
bbb.langSelector.vi_VN=Vietnamita
|
||||||
bbb.langSelector.cy_GB=Galês
|
bbb.langSelector.cy_GB=Galês
|
||||||
bbb.langSelector.oc=Occitano
|
bbb.langSelector.oc=Occitano
|
||||||
|
@ -46,5 +46,5 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|||||||
]]>
|
]]>
|
||||||
</mx:Script>
|
</mx:Script>
|
||||||
<chat:AdvancedList id="messageList" width="100%" dragEnabled="false" variableRowHeight="true" wordWrap="true" alternatingItemColors="[#EFEFEF, #FEFEFE]" itemRenderer="org.bigbluebutton.main.views.ClientStatusItemRenderer"/>
|
<chat:AdvancedList id="messageList" width="100%" dragEnabled="false" variableRowHeight="true" wordWrap="true" alternatingItemColors="[#EFEFEF, #FEFEFE]" itemRenderer="org.bigbluebutton.main.views.ClientStatusItemRenderer"/>
|
||||||
<mx:Button id="closeBtn" label="Close" click="handleCloseButtonClick();" />
|
<mx:Button id="closeBtn" label="{ResourceUtil.getInstance().getString('bbb.clientstatus.close')}" click="handleCloseButtonClick();" />
|
||||||
</mx:TitleWindow>
|
</mx:TitleWindow>
|
||||||
|
@ -697,7 +697,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|||||||
constructedLabel += "/" + ResourceUtil.getInstance().getString("bbb.polling.answer."+String.fromCharCode(65+i));
|
constructedLabel += "/" + ResourceUtil.getInstance().getString("bbb.polling.answer."+String.fromCharCode(65+i));
|
||||||
pollMenuData.push({label: constructedLabel});
|
pollMenuData.push({label: constructedLabel});
|
||||||
}
|
}
|
||||||
pollMenuData.push({label: "Custom Poll..."});
|
pollMenuData.push({label: resourceUtil.getString("bbb.polling.customPoll.label")});
|
||||||
}
|
}
|
||||||
|
|
||||||
private function onPollStartButtonClicked():void {
|
private function onPollStartButtonClicked():void {
|
||||||
|
Loading…
Reference in New Issue
Block a user