1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-01 05:01:41 +02:00

Add tooltips for tchat buttons

This commit is contained in:
Daniel Berteaud 2014-05-04 14:49:54 +02:00
parent 77c65c48f1
commit a480375248
3 changed files with 6 additions and 2 deletions

View File

@ -43,6 +43,8 @@ our %Lexicon = (
"SUSPEND_CAM" => "Suspend your webcam, other will see a black screen instead, but can still hear you",
"LOGOUT" => "Leave the room",
"SET_YOUR_NAME_TO_CHAT" => "You need to set your name to be able to chat",
"SEND_MESSAGE" => "Send the message",
"SAVE_HISTORY" => "Save history to a file",
"MIC_MUTED" => "Your microphone is now muted",
"MIC_UNMUTED" => "Your microphone is now unmuted",
"CAM_SUSPENDED" => "Your webcam is now suspended",

View File

@ -48,6 +48,8 @@ our %Lexicon = (
"mais pourront toujours vous entendre",
"LOGOUT" => "Quitter le salon",
"SET_YOUR_NAME_TO_CHAT" => "Vous devez saisir votre nom avant de pouvoir tchater",
"SEND_MESSAGE" => "Envoyer le message",
"SAVE_HISTORY" => "Sauvegarder l'historique dans un fichier",
"MIC_MUTED" => "Votre micro est coupé",
"MIC_UNMUTED" => "Votre micro est à nouveau actif",
"CAM_SUSPENDED" => "Votre webcam est en pause",

View File

@ -133,11 +133,11 @@
<div class="input-group">
<textarea class="form-control" id="chatBox" form_id="chatForm" placeholder="<%=l 'SET_YOUR_NAME_TO_CHAT' %>" rows=1 disabled></textarea>
<span class="input-group-btn">
<button type="submit" class="btn btn-default">
<button type="submit" class="btn btn-default help" data-toggle="tooltip" data-placement="bottom" title="<%=l 'SEND_MESSAGE' %>">
<span class="glyphicon glyphicon-share-alt">
</span>
</button>
<button type="button" id="saveChat" class="btn btn-default">
<button type="button" id="saveChat" class="btn btn-default help" data-toggle="tooltip" data-placement="bottom" title="<%=l 'SAVE_HISTORY' %>">
<span class="glyphicon glyphicon-floppy-save">
</span>
</button>