diff --git a/companion/src/generaledit.ui b/companion/src/generaledit.ui
index ec013903f..b94149ef3 100644
--- a/companion/src/generaledit.ui
+++ b/companion/src/generaledit.ui
@@ -1471,14 +1471,14 @@ p, li { white-space: pre-wrap; }
-
- Alarm Warning
+ "No Sound" Warning
-
- Memory Startup Warning
+ Low Memory Warning
diff --git a/companion/src/modeledit/channels.cpp b/companion/src/modeledit/channels.cpp
index debdfae4a..9d493ae55 100644
--- a/companion/src/modeledit/channels.cpp
+++ b/companion/src/modeledit/channels.cpp
@@ -18,16 +18,16 @@ Channels::Channels(QWidget * parent, ModelData & model, GeneralSettings & genera
minimize=true;
addLabel(gridLayout, tr("Name"), col++);
}
- addLabel(gridLayout, tr("Offset"), col++, minimize);
+ addLabel(gridLayout, tr("Subtrim"), col++, minimize);
addLabel(gridLayout, tr("Min"), col++, minimize);
addLabel(gridLayout, tr("Max"), col++, minimize);
- addLabel(gridLayout, tr("Invert"), col++, minimize);
+ addLabel(gridLayout, tr("Direction"), col++, minimize);
if (IS_TARANIS(GetEepromInterface()->getBoard()))
addLabel(gridLayout, tr("Curve"), col++, minimize);
if (GetEepromInterface()->getCapability(PPMCenter))
- addLabel(gridLayout, tr("Center"), col++, minimize);
+ addLabel(gridLayout, tr("PPM Center"), col++, minimize);
if (GetEepromInterface()->getCapability(SYMLimits))
- addLabel(gridLayout, tr("Sym"), col++, true);
+ addLabel(gridLayout, tr("Linear Subtrim"), col++, true);
for (int i=0; igetCapability(Outputs); i++) {
col = 0;
diff --git a/companion/src/modeledit/logicalswitches.cpp b/companion/src/modeledit/logicalswitches.cpp
index b338183f5..1cf097e57 100644
--- a/companion/src/modeledit/logicalswitches.cpp
+++ b/companion/src/modeledit/logicalswitches.cpp
@@ -14,10 +14,10 @@ LogicalSwitchesPanel::LogicalSwitchesPanel(QWidget * parent, ModelData & model,
QGridLayout * gridLayout = new QGridLayout(this);
int col = 1;
- addLabel(gridLayout, tr("Condition"), col++);
+ addLabel(gridLayout, tr("Function"), col++);
addLabel(gridLayout, tr("V1"), col++);
addLabel(gridLayout, tr("V2"), col++);
- addLabel(gridLayout, tr("AND"), col++);
+ addLabel(gridLayout, tr("AND Switch"), col++);
if (GetEepromInterface()->getCapability(LogicalSwitchesExt)) {
addLabel(gridLayout, tr("Duration"), col++);
addLabel(gridLayout, tr("Delay"), col++);
diff --git a/companion/src/modeledit/modeledit.cpp b/companion/src/modeledit/modeledit.cpp
index ef7911c41..7f2ee652e 100644
--- a/companion/src/modeledit/modeledit.cpp
+++ b/companion/src/modeledit/modeledit.cpp
@@ -30,7 +30,7 @@ ModelEdit::ModelEdit(RadioData & radioData, int modelId, bool openWizard, bool i
addTab(new FlightModes(this, model, generalSettings), tr("Flight Modes"));
addTab(new InputsPanel(this, model, generalSettings), tr("Inputs"));
addTab(new MixesPanel(this, model, generalSettings), tr("Mixes"));
- addTab(new Channels(this, model, generalSettings), tr("Channels"));
+ addTab(new Channels(this, model, generalSettings), tr("Servos"));
addTab(new LogicalSwitchesPanel(this, model, generalSettings), tr("Logical Switches"));
if (GetEepromInterface()->getCapability(CustomFunctions))
addTab(new CustomFunctionsPanel(this, model, generalSettings), tr("Special Functions"));
diff --git a/companion/src/modeledit/setup.cpp b/companion/src/modeledit/setup.cpp
index cccf9b7eb..b9b0b62dc 100644
--- a/companion/src/modeledit/setup.cpp
+++ b/companion/src/modeledit/setup.cpp
@@ -22,10 +22,10 @@ TimerPanel::TimerPanel(QWidget *parent, ModelData & model, TimerData & timer, Ge
ui->persistentValue->hide();
}
- ui->countdownBeep->addItem(tr("None"));
+ ui->countdownBeep->addItem(tr("Silent"));
ui->countdownBeep->addItem(tr("Beeps"));
if (IS_ARM(GetEepromInterface()->getBoard()) || IS_2560(GetEepromInterface()->getBoard()))
- ui->countdownBeep->addItem(tr("Countdown"));
+ ui->countdownBeep->addItem(tr("Voice"));
lock = false;
}
@@ -106,7 +106,7 @@ ModulePanel::ModulePanel(QWidget *parent, ModelData & model, ModuleData & module
QString label;
if (moduleIdx < 0) {
- label = tr("Trainer Output");
+ label = tr("Trainer Port");
ui->trainerMode->setCurrentIndex(model.trainerMode);
}
else {
diff --git a/companion/src/modeledit/setup.ui b/companion/src/modeledit/setup.ui
index f91f79a07..2f13d807e 100644
--- a/companion/src/modeledit/setup.ui
+++ b/companion/src/modeledit/setup.ui
@@ -70,7 +70,7 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
Qt::LeftToRight
- Throttle Trim
+ Throttle Trim Idle Only
@@ -187,7 +187,7 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
- Throttle Source
+ Timer Source
Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
@@ -203,7 +203,7 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
- Trim Increment
+ Trim Step
Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
diff --git a/companion/src/modeledit/setup_module.ui b/companion/src/modeledit/setup_module.ui
index a8434e858..ae8cc9783 100644
--- a/companion/src/modeledit/setup_module.ui
+++ b/companion/src/modeledit/setup_module.ui
@@ -526,7 +526,7 @@
- RX Number
+ Receiver No.
Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
diff --git a/companion/src/modeledit/setup_timer.ui b/companion/src/modeledit/setup_timer.ui
index e87ed86b8..e869af71a 100644
--- a/companion/src/modeledit/setup_timer.ui
+++ b/companion/src/modeledit/setup_timer.ui
@@ -46,7 +46,7 @@
-
- MinuteBeep
+ Minute Call
diff --git a/companion/src/modeledit/telemetry.ui b/companion/src/modeledit/telemetry.ui
index 0f1de8a2c..6cd6ee036 100644
--- a/companion/src/modeledit/telemetry.ui
+++ b/companion/src/modeledit/telemetry.ui
@@ -975,6 +975,9 @@
0
+
+ mAh
+
32767
@@ -988,6 +991,9 @@
0
+
+ A
+
1
diff --git a/companion/src/modeledit/telemetry_analog.ui b/companion/src/modeledit/telemetry_analog.ui
index a28c2ea82..10a28bcd9 100644
--- a/companion/src/modeledit/telemetry_analog.ui
+++ b/companion/src/modeledit/telemetry_analog.ui
@@ -17,16 +17,7 @@
0
-
- 0
-
-
- 0
-
-
- 0
-
-
+
0
-
@@ -271,7 +262,7 @@
- Min Value
+ Offset
diff --git a/radio/src/gui/menu_model.cpp b/radio/src/gui/menu_model.cpp
index 4731cf4d7..986cec310 100644
--- a/radio/src/gui/menu_model.cpp
+++ b/radio/src/gui/menu_model.cpp
@@ -1321,7 +1321,7 @@ void menuModelSetup(uint8_t event)
break;
case ITEM_MODEL_EXTERNAL_MODULE_MODE:
- lcd_putsLeft(y, STR_MODULE);
+ lcd_putsLeft(y, STR_MODE);
lcd_putsiAtt(MODEL_SETUP_2ND_COLUMN, y, STR_TARANIS_PROTOCOLS, g_model.externalModule, m_posHorz==0 ? attr : 0);
if (g_model.externalModule == MODULE_TYPE_XJT)
lcd_putsiAtt(MODEL_SETUP_2ND_COLUMN+5*FW, y, STR_XJT_PROTOCOLS, 1+g_model.moduleData[EXTERNAL_MODULE].rfProtocol, m_posHorz==1 ? attr : 0);
diff --git a/radio/src/translations/en.h.txt b/radio/src/translations/en.h.txt
index a72866571..6b43cdf10 100644
--- a/radio/src/translations/en.h.txt
+++ b/radio/src/translations/en.h.txt
@@ -740,7 +740,7 @@
#define TR_MODULE_RANGE "[Range]"
#define TR_RESET_BTN "[Reset]"
#define TR_SET "[Set]"
-#define TR_TRAINER "Trainer"
+#define TR_TRAINER "Trainer Port"
#define TR_ANTENNAPROBLEM CENTER "TX Antenna problem!"
#define TR_MODELIDUSED TR("ID already used","Model ID already used")
#define TR_MODULE INDENT "Module"
@@ -759,7 +759,7 @@
#define TR_PTS "pts"
#define TR_SMOOTH "Smooth"
#define TR_COPY_TRIMS_TO_OFS "Copy Trim To Subtrim"
-#define TR_PERSISTENT_MAH TR(INDENT "Str mAh", INDENT "Store mAh")
+#define TR_PERSISTENT_MAH TR(INDENT "Str mAh", INDENT "Persistent mAh")
#define TR_PREFLIGHT "Preflight Checks"
#define TR_CHECKLIST INDENT "Display Checklist"
#define TR_FAS_OFFSET TR(INDENT "FAS Ofs", INDENT "FAS Offset")