Add tooltips for tchat buttons

master
Daniel Berteaud 11 years ago
parent 77c65c48f1
commit a480375248
  1. 2
      lib/Vroom/I18N/en.pm
  2. 2
      lib/Vroom/I18N/fr.pm
  3. 4
      templates/default/join.html.ep

@ -43,6 +43,8 @@ our %Lexicon = (
"SUSPEND_CAM" => "Suspend your webcam, other will see a black screen instead, but can still hear you", "SUSPEND_CAM" => "Suspend your webcam, other will see a black screen instead, but can still hear you",
"LOGOUT" => "Leave the room", "LOGOUT" => "Leave the room",
"SET_YOUR_NAME_TO_CHAT" => "You need to set your name to be able to chat", "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_MUTED" => "Your microphone is now muted",
"MIC_UNMUTED" => "Your microphone is now unmuted", "MIC_UNMUTED" => "Your microphone is now unmuted",
"CAM_SUSPENDED" => "Your webcam is now suspended", "CAM_SUSPENDED" => "Your webcam is now suspended",

@ -48,6 +48,8 @@ our %Lexicon = (
"mais pourront toujours vous entendre", "mais pourront toujours vous entendre",
"LOGOUT" => "Quitter le salon", "LOGOUT" => "Quitter le salon",
"SET_YOUR_NAME_TO_CHAT" => "Vous devez saisir votre nom avant de pouvoir tchater", "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_MUTED" => "Votre micro est coupé",
"MIC_UNMUTED" => "Votre micro est à nouveau actif", "MIC_UNMUTED" => "Votre micro est à nouveau actif",
"CAM_SUSPENDED" => "Votre webcam est en pause", "CAM_SUSPENDED" => "Votre webcam est en pause",

@ -133,11 +133,11 @@
<div class="input-group"> <div class="input-group">
<textarea class="form-control" id="chatBox" form_id="chatForm" placeholder="<%=l 'SET_YOUR_NAME_TO_CHAT' %>" rows=1 disabled></textarea> <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"> <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 class="glyphicon glyphicon-share-alt">
</span> </span>
</button> </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 class="glyphicon glyphicon-floppy-save">
</span> </span>
</button> </button>

Loading…
Cancel
Save