1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-21 07:15:15 +03:00

Improved label texts and help positioning in receiver tab.

This commit is contained in:
mikeller 2017-09-14 00:27:56 +12:00
parent bcd9cb7487
commit 4a642adfb5
2 changed files with 17 additions and 23 deletions

View file

@ -1104,22 +1104,22 @@
"message": "Throttle EXPO"
},
"receiverStickMin": {
"message": "Stick Min"
"message": "'Stick Low' Threshold"
},
"receiverHelpStickMin": {
"message": "The value (in us) used to determine if a stick is low."
"message": "The maximum value (in us) for a stick to be recognised as low / left for command input (MIN_CHECK)."
},
"receiverStickCenter": {
"message": "Stick Center"
},
"receiverHelpStickCenter": {
"message": "The value (in us) used to determine if a stick is centered."
"message": "The value (in us) used to determine if a stick is centered (MID_RC)."
},
"receiverStickMax": {
"message": "Stick Max"
"message": "'Stick High' Threshold"
},
"receiverHelpStickMax": {
"message": "The value (in us) used to determine if a stick is high."
"message": "The minimum value (in us) for a stick to be recognised as high / right for command input (MAX_CHECK)."
},
"receiverDeadband": {
"message": "RC Deadband"

View file

@ -41,19 +41,16 @@
</tr>
<tr>
<td>
<div class="cf_tip" i18n_title="receiverHelpStickMin">
<input type="number" name="stick_min" min="1000" max="1200" />
</div>
<input type="number" name="stick_min" min="1000" max="1200" style="width:80%;"/>
<div class="helpicon cf_tip" i18n_title="receiverHelpStickMin"/>
</td>
<td>
<div class="cf_tip" i18n_title="receiverHelpStickCenter">
<input type="number" name="stick_center" min="1401" max="1599" />
</div>
<input type="number" name="stick_center" min="1401" max="1599" style="width:70%;"/>
<div class="helpicon cf_tip" i18n_title="receiverHelpStickCenter"/>
</td>
<td>
<div class="cf_tip" i18n_title="receiverHelpStickMax">
<input type="number" name="stick_max" min="1800" max="2000" />
</div>
<input type="number" name="stick_max" min="1800" max="2000" style="width:80%;"/>
<div class="helpicon cf_tip" i18n_title="receiverHelpStickMax"/>
</td>
</tr>
</table>
@ -67,19 +64,16 @@
</tr>
<tr>
<td>
<div class="cf_tip" i18n_title="receiverHelpDeadband">
<input type="number" name="deadband" step="1" min="0" max="32" />
</div>
<input type="number" name="deadband" step="1" min="0" max="32" style="width:70%;"/>
<div class="helpicon cf_tip" i18n_title="receiverHelpDeadband"/>
</td>
<td>
<div class="cf_tip" i18n_title="receiverHelpYawDeadband">
<input type="number" name="yaw_deadband" step="1" min="0" max="100" />
</div>
<input type="number" name="yaw_deadband" step="1" min="0" max="100" style="width:80%;"/>
<div class="helpicon cf_tip" i18n_title="receiverHelpYawDeadband"/>
</td>
<td>
<div class="cf_tip" i18n_title="receiverHelp3dDeadbandThrottle">
<input type="number" name="3ddeadbandthrottle" step="1" min="0" max="1000" />
</div>
<input type="number" name="3ddeadbandthrottle" step="1" min="0" max="1000" style="width:80%;"/>
<div class="helpicon cf_tip" i18n_title="receiverHelp3dDeadbandThrottle"/>
</td>
</tr>
</table>