Merge pull request #372 from pedrobmarin/minor-translations-fix

Adapting some client labels
This commit is contained in:
Pedro Beschorner Marin 2017-02-07 09:58:59 -02:00 committed by GitHub
commit 929f7beda5
4 changed files with 8 additions and 6 deletions

View File

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

View File

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

View File

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

View File

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