mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-25 01:05:15 +03:00
i18n failsafe switch modes
This commit is contained in:
parent
5f68d5982c
commit
0deae9d8fe
2 changed files with 12 additions and 3 deletions
|
@ -2777,6 +2777,15 @@
|
||||||
"failsafeSwitchModeHelp": {
|
"failsafeSwitchModeHelp": {
|
||||||
"message": "This option determines what happens when Failsafe is activated through AUX switch:<br/><strong>Stage 1</strong> activates Stage 1 failsafe. This is useful if you want to simulate the exact signal loss failsafe behavior.<br/><strong>Stage 2</strong> skips Stage 1 and activates the Stage 2 procedure immediately<br/><strong>Kill</strong> disarms instantly (your craft will crash)"
|
"message": "This option determines what happens when Failsafe is activated through AUX switch:<br/><strong>Stage 1</strong> activates Stage 1 failsafe. This is useful if you want to simulate the exact signal loss failsafe behavior.<br/><strong>Stage 2</strong> skips Stage 1 and activates the Stage 2 procedure immediately<br/><strong>Kill</strong> disarms instantly (your craft will crash)"
|
||||||
},
|
},
|
||||||
|
"failsafeSwitchOptionStage1": {
|
||||||
|
"message": "Stage 1"
|
||||||
|
},
|
||||||
|
"failsafeSwitchOptionStage2": {
|
||||||
|
"message": "Stage 2"
|
||||||
|
},
|
||||||
|
"failsafeSwitchOptionKill": {
|
||||||
|
"message": "Kill"
|
||||||
|
},
|
||||||
|
|
||||||
"powerButtonSave": {
|
"powerButtonSave": {
|
||||||
"message": "Save"
|
"message": "Save"
|
||||||
|
|
|
@ -50,9 +50,9 @@
|
||||||
<div class="selectSwitchMode">
|
<div class="selectSwitchMode">
|
||||||
<label>
|
<label>
|
||||||
<select class="switchMode" name="failsafe_switch_mode">
|
<select class="switchMode" name="failsafe_switch_mode">
|
||||||
<option value="0">Stage 1</option>
|
<option value="0" i18n="failsafeSwitchOptionStage1"></option>
|
||||||
<option value="2">Stage 2</option>
|
<option value="2" i18n="failsafeSwitchOptionStage2"></option>
|
||||||
<option value="1">Kill</option>
|
<option value="1" i18n="failsafeSwitchOptionKill"></option>
|
||||||
</select>
|
</select>
|
||||||
<span i18n="failsafeSwitchModeItem"></span>
|
<span i18n="failsafeSwitchModeItem"></span>
|
||||||
<div class="helpicon cf_tip" i18n_title="failsafeSwitchModeHelp"></div>
|
<div class="helpicon cf_tip" i18n_title="failsafeSwitchModeHelp"></div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue