Commit 81782751 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Rename "Present" to "Enable".

parent a78fb6d7
...@@ -739,7 +739,7 @@ h1 { ...@@ -739,7 +739,7 @@ h1 {
margin-top: .1em; margin-top: .1em;
font-size: 1.1em; font-size: 1.1em;
text-align: left; text-align: left;
width: 5.5em; width: 5.8em;
} }
#videoselect { #videoselect {
......
...@@ -40,12 +40,12 @@ ...@@ -40,12 +40,12 @@
<ul class="nav-menu"> <ul class="nav-menu">
<li> <li>
<button id="presentbutton" class="invisible btn btn-success"> <button id="presentbutton" class="invisible btn btn-success">
<i class="fas fa-play" aria-hidden="true"></i><span class="nav-text"> Ready</span> <i class="fas fa-play" aria-hidden="true"></i><span class="nav-text"> Enable</span>
</button> </button>
</li> </li>
<li> <li>
<button id="unpresentbutton" class="invisible btn btn-cancel"> <button id="unpresentbutton" class="invisible btn btn-cancel">
<i class="fas fa-stop" aria-hidden="true"></i><span class="nav-text"> Panic</span> <i class="fas fa-stop" aria-hidden="true"></i><span class="nav-text"> Disable</span>
</button> </button>
</li> </li>
<li> <li>
...@@ -110,19 +110,19 @@ ...@@ -110,19 +110,19 @@
<label for="password">Password</label> <label for="password">Password</label>
<input id="password" type="password" name="password" <input id="password" type="password" name="password"
autocomplete="current-password" class="form-control"/> autocomplete="current-password" class="form-control"/>
<label>Auto ready</label> <label>Enable at start:</label>
<div class="present-switch"> <div class="present-switch">
<p class="switch-radio"> <p class="switch-radio">
<input id="presentoff" type="radio" name="presentradio" value="" checked/> <input id="presentoff" type="radio" name="presentradio" value="" checked/>
<label for="presentoff">Disabled</label> <label for="presentoff">Nothing</label>
</p> </p>
<p class="switch-radio"> <p class="switch-radio">
<input id="presentmike" type="radio" name="presentradio" value="mike"/> <input id="presentmike" type="radio" name="presentradio" value="mike"/>
<label for="presentmike">Enable microphone</label> <label for="presentmike">Microphone</label>
</p> </p>
<p class="switch-radio"> <p class="switch-radio">
<input id="presentboth" type="radio" name="presentradio" value="both"/> <input id="presentboth" type="radio" name="presentradio" value="both"/>
<label for="presentboth">Enable camera and microphone</label> <label for="presentboth">Camera and microphone</label>
</p> </p>
</div> </div>
<div class="clear"></div> <div class="clear"></div>
......
...@@ -2181,7 +2181,7 @@ async function gotJoined(kind, group, perms, status, message) { ...@@ -2181,7 +2181,7 @@ async function gotJoined(kind, group, perms, status, message) {
} }
} else { } else {
displayMessage( displayMessage(
"Press Ready to enable your camera or microphone" "Press Enable to enable your camera or microphone"
); );
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment