Added new sentences for fr_FR and fixed listerneritem to reflect current locale file

git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@3478 af16638f-c34d-0410-8cfa-b39d5352b314
This commit is contained in:
DJP 2010-01-24 20:41:21 +00:00
parent 2db01254c4
commit 6a60678f49
3 changed files with 6 additions and 8 deletions

View File

@ -130,7 +130,6 @@ bbb.listeners.title = Voice
bbb.listeners.muteAllBtn.toolTip = Mute all bbb.listeners.muteAllBtn.toolTip = Mute all
bbb.listeners.unmuteAllBtn.toolTip = Unmute all bbb.listeners.unmuteAllBtn.toolTip = Unmute all
bbb.listeners.ejectBtn.toolTip = Select voice participant to eject. bbb.listeners.ejectBtn.toolTip = Select voice participant to eject.
bbb.listeners.nameLabel.toolTip = Select this user and click button to mute or unmute.
bbb.listeners.ejectTooltip = Click to eject user. bbb.listeners.ejectTooltip = Click to eject user.
# ListenerItem.mxml # ListenerItem.mxml

View File

@ -72,9 +72,9 @@ bbb.presentation.pages = {0} sur {1}
bbb.presentation.uploadcomplete = Envoi du fichier terminé. Merci de patienter pendant la convertion du fichier. bbb.presentation.uploadcomplete = Envoi du fichier terminé. Merci de patienter pendant la convertion du fichier.
bbb.presentation.uploadsuccessful = Envoi réussi. bbb.presentation.uploadsuccessful = Envoi réussi.
bbb.presentation.uploaded = envoyé. bbb.presentation.uploaded = envoyé.
bbb.presentation.document.supported = The uploaded document is supported. bbb.presentation.document.supported = Le document envoyé est compatible.
bbb.presentation.document.converted = Successfully converter the office document. bbb.presentation.document.converted = Convertion du fichier réussie.
bbb.presentation.error.document.convert.failed = Error: Failed to convert the office document. bbb.presentation.error.document.convert.failed = Erreur lors de la convertion du fichier.
bbb.presentation.error.io = Erreur serveur lors de l'envoi du fichier. Contactez l'administrateur. bbb.presentation.error.io = Erreur serveur lors de l'envoi du fichier. Contactez l'administrateur.
bbb.presentation.error.security = Erreur de sécurité lors de l'envoi du fichier. Contactez l'administrateur. bbb.presentation.error.security = Erreur de sécurité lors de l'envoi du fichier. Contactez l'administrateur.
bbb.presentation.error.convert.format = Erreur lors de la détection du format de fichier envoyé. Le fichier a-t-il bien une extension valide ? bbb.presentation.error.convert.format = Erreur lors de la détection du format de fichier envoyé. Le fichier a-t-il bien une extension valide ?
@ -130,11 +130,10 @@ bbb.listeners.title = Conférence voix
bbb.listeners.muteAllBtn.toolTip = Rendre tout le monde muet bbb.listeners.muteAllBtn.toolTip = Rendre tout le monde muet
bbb.listeners.unmuteAllBtn.toolTip = Rendre la parole à tout le monde bbb.listeners.unmuteAllBtn.toolTip = Rendre la parole à tout le monde
bbb.listeners.ejectBtn.toolTip = Selectionnez un participant à expulser. bbb.listeners.ejectBtn.toolTip = Selectionnez un participant à expulser.
bbb.listeners.nameLabel.toolTip = Select this user and click button to mute or unmute.
bbb.listeners.ejectTooltip = Cliquer pour éjecter ce participant. bbb.listeners.ejectTooltip = Cliquer pour éjecter ce participant.
# ListenerItem.mxml # ListenerItem.mxml
bbb.listenerItem.nameLbl.toolTip = Selectionnez un utilisateur et cliquez sur le bouton Select this user and click button to mute or unmute. bbb.listenerItem.nameLbl.toolTip = Selectionnez un utilisateur et cliquez sur le bouton Rendre muet/bavard
bbb.listenerItem.talkImg.toolTip = Parler bbb.listenerItem.talkImg.toolTip = Parler
# PublishWindow.mxml # PublishWindow.mxml

View File

@ -73,6 +73,6 @@
]]> ]]>
</mx:Script> </mx:Script>
<mx:Button id="muteBtn" width="18" height="16" icon="{data.muted ? muteIcon : unmuteIcon}" click="muteUser()"/> <mx:Button id="muteBtn" width="18" height="16" icon="{data.muted ? muteIcon : unmuteIcon}" click="muteUser()"/>
<mx:Label id="nameLabel" textAlign="left" text="{data.callerName}" width="147" toolTip="{ResourceUtil.getInstance().getString('bbb.listeners.nameLabel.toolTip')}"/> <mx:Label id="nameLabel" textAlign="left" text="{data.callerName}" width="147" toolTip="{ResourceUtil.getInstance().getString('bbb.listenerItem.nameLbl.toolTip')}"/>
<mx:Image id="talkImg" source="{talkIcon}" visible="{data.talking}" toolTip="Talking"/> <mx:Image id="talkImg" source="{talkIcon}" visible="{data.talking}" toolTip=""{ResourceUtil.getInstance().getString('bbb.listenerItem.talkImg.toolTip')}"/>
</mx:HBox> </mx:HBox>