description:"Slide to the left to make roll control faster and more accurate. Slide to the right if roll oscillates or is too twitchy."
title:qsTr("Roll sensitivity")
description:qsTr("Slide to the left to make roll control faster and more accurate. Slide to the right if roll oscillates or is too twitchy.")
param:"FW_R_TC"
min:0.2
max:0.8
...
...
@@ -35,8 +35,8 @@ SetupPage {
}
ListElement{
title:"Pitch sensitivity"
description:"Slide to the left to make pitch control faster and more accurate. Slide to the right if pitch oscillates or is too twitchy."
title:qsTr("Pitch sensitivity")
description:qsTr("Slide to the left to make pitch control faster and more accurate. Slide to the right if pitch oscillates or is too twitchy.")
param:"FW_P_TC"
min:0.2
max:0.8
...
...
@@ -44,8 +44,8 @@ SetupPage {
}
ListElement{
title:"Cruise throttle"
description:"This is the throttle setting required to achieve the desired cruise speed. Most planes need 50-60%."
title:qsTr("Cruise throttle")
description:qsTr("This is the throttle setting required to achieve the desired cruise speed. Most planes need 50-60%.")
param:"FW_THR_CRUISE"
min:20
max:80
...
...
@@ -53,8 +53,8 @@ SetupPage {
}
ListElement{
title:"Mission mode sensitivity"
description:"Slide to the left to make position control more accurate and more aggressive. Slide to the right to make flight in mission mode smoother and less twitchy."
title:qsTr("Mission mode sensitivity")
description:qsTr("Slide to the left to make position control more accurate and more aggressive. Slide to the right to make flight in mission mode smoother and less twitchy.")
onClicked:showDialog(calcVoltageDividerDlgComponent,qsTr("Calculate Voltage Divider"),powerPage.showDialogDefaultWidth,StandardButton.Close)
}
...
...
@@ -313,8 +313,8 @@ SetupPage {
Layout.fillWidth:true
font.pointSize:ScreenTools.smallFontPointSize
wrapMode:Text.WordWrap
text:"If the battery voltage reported by the vehicle is largely different than the voltage read externally using a voltmeter you can adjust the voltage multiplier value to correct this. "+
"Click the Calculate button for help with calculating a new value."
text:qsTr("If the battery voltage reported by the vehicle is largely different than the voltage read externally using a voltmeter you can adjust the voltage multiplier value to correct this. ")+
qsTr("Click the Calculate button for help with calculating a new value.")
}
QGCLabel{
...
...
@@ -329,7 +329,7 @@ SetupPage {
QGCButton{
id:ampPerVoltCalculateButton
text:"Calculate"
text:qsTr("Calculate")
onClicked:showDialog(calcAmpsPerVoltDlgComponent,qsTr("Calculate Amps per Volt"),powerPage.showDialogDefaultWidth,StandardButton.Close)
}
...
...
@@ -341,8 +341,8 @@ SetupPage {
Layout.fillWidth:true
font.pointSize:ScreenTools.smallFontPointSize
wrapMode:Text.WordWrap
text:"If the current draw reported by the vehicle is largely different than the current read externally using a current meter you can adjust the amps per volt value to correct this. "+
"Click the Calculate button for help with calculating a new value."
text:qsTr("If the current draw reported by the vehicle is largely different than the current read externally using a current meter you can adjust the amps per volt value to correct this. ")+
qsTr("Click the Calculate button for help with calculating a new value.")
showMessage("Sensor Calibration","Performing sensor calibration over a WiFi connection is known to be unreliable. You should disconnect and perform calibration using a direct USB connection instead.",StandardButton.Ok)
showMessage(qsTr("Sensor Calibration"),qsTr("Performing sensor calibration over a WiFi connection is known to be unreliable. You should disconnect and perform calibration using a direct USB connection instead."),StandardButton.Ok)