mirror of
https://github.com/jech/galene.git
synced 2024-11-12 19:55:59 +01:00
Rename "Present" to "Enable".
This commit is contained in:
parent
a78fb6d747
commit
8178275164
3 changed files with 8 additions and 8 deletions
|
@ -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 @@
|
||||||
<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 @@
|
||||||
<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) {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
displayMessage(
|
displayMessage(
|
||||||
"Press Ready to enable your camera or microphone"
|
"Press Enable to enable your camera or microphone"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue