Add tooltip and info for save lua button.
parent
b05c3105ef
commit
6f6f4738c4
|
@ -4993,7 +4993,7 @@
|
|||
},
|
||||
|
||||
"vtxHelp": {
|
||||
"message": "Here you can configure the values for your Video Transmitter (VTX). You can view and change the transmission values, including the VTX Tables, if the flight controller and the VTX support it.<br>To set up your VTX use the following steps:<br>1. Go to <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/betaflight/betaflight/wiki/VTX-tables\">this</a> page;<br>2. Find the appropriate VTX configuration file for your country and your VTX model and download it;<br>3. Click '$t(vtxButtonLoadFile.message)' below, select the VTX configuration file, load it;<br>4. Verify that the settings are correct;<br>5. Click '$t(vtxButtonSave.message)' to store the VTX settings on the flight controller.",
|
||||
"message": "Here you can configure the values for your Video Transmitter (VTX). You can view and change the transmission values, including the VTX Tables, if the flight controller and the VTX support it.<br>To set up your VTX use the following steps:<br>1. Go to <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/betaflight/betaflight/wiki/VTX-tables\">this</a> page;<br>2. Find the appropriate VTX configuration file for your country and your VTX model and download it;<br>3. Click '$t(vtxButtonLoadFile.message)' below, select the VTX configuration file, load it;<br>4. Verify that the settings are correct;<br>5. Click '$t(vtxButtonSave.message)' to store the VTX settings on the flight controller.<br>6. Optionally click '$t(vtxButtonSaveLua.message)' to save a lua configuration file you can use with the betaflight lua scripts (See more <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/betaflight/betaflight-tx-lua-scripts/\">here</a>.)",
|
||||
"description": "Introduction message in the VTX tab"
|
||||
},
|
||||
"vtxMessageNotSupported": {
|
||||
|
@ -5229,6 +5229,10 @@
|
|||
"message": "Save Lua Script",
|
||||
"description": "Save Lua script button in the VTX tab"
|
||||
},
|
||||
"vtxLuaFileHelp" :{
|
||||
"message": "The '$t(vtxButtonSaveLua.message)' button will allow you to save a <i>craftname</i>.lua file containing the vtx table configuration that can be used with the betaflight lua scripts. (See more <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/betaflight/betaflight-tx-lua-scripts/\">here</a>.)",
|
||||
"description": "Tooltip message for the Save Lua script button in the VTX tab"
|
||||
},
|
||||
"vtxButtonLoadFile": {
|
||||
"message": "Load from file",
|
||||
"description": "Load to file button in the VTX tab"
|
||||
|
|
|
@ -254,6 +254,7 @@
|
|||
<div class="content_toolbar">
|
||||
<div class="btn save_lua_btn">
|
||||
<a class="save_lua" id="save_lua_button" href="#" i18n="vtxButtonSaveLua"></a>
|
||||
<div id="vtxLuaFileTooltip" class="helpicon cf_tip" i18n_title="vtxLuaFileHelp"></div>
|
||||
</div>
|
||||
<div class="btn save_file_btn">
|
||||
<a class="save_file" id="save_file_button" href="#" i18n="vtxButtonSaveFile"></a>
|
||||
|
|
Loading…
Reference in New Issue