");
str.append(""+tr("Switch")+" | ");
str.append(""+tr("Function")+" | ");
@@ -1112,7 +1112,7 @@ void compareDialog::printFSwitches()
} else {
str.append(" | | | | | ");
}
- str.append(doTC(tr("CF")+QString("%1").arg(i+1),"",true));
+ str.append(doTC(tr("SF")+QString("%1").arg(i+1),"",true));
if (g_model2->funcSw[i].swtch.type) {
str.append(doTC(g_model2->funcSw[i].swtch.toString(),color2));
str.append(doTC(g_model2->funcSw[i].funcToString(),color2));
diff --git a/companion/src/modeledit/customfunctions.cpp b/companion/src/modeledit/customfunctions.cpp
index e4c9ddadb..058fe9e8a 100644
--- a/companion/src/modeledit/customfunctions.cpp
+++ b/companion/src/modeledit/customfunctions.cpp
@@ -104,7 +104,7 @@ CustomFunctionsPanel::CustomFunctionsPanel(QWidget * parent, ModelData & model,
label->setContextMenuPolicy(Qt::CustomContextMenu);
label->setMouseTracking(true);
label->setProperty("index", i);
- label->setText(tr("CF%1").arg(i+1));
+ label->setText(tr("SF%1").arg(i+1));
gridLayout->addWidget(label, i+1, 0);
connect(label, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(fsw_customContextMenuRequested(QPoint)));
diff --git a/companion/src/modeledit/modeledit.cpp b/companion/src/modeledit/modeledit.cpp
index 8124e4903..bb035c4f9 100644
--- a/companion/src/modeledit/modeledit.cpp
+++ b/companion/src/modeledit/modeledit.cpp
@@ -33,7 +33,7 @@ ModelEdit::ModelEdit(RadioData & radioData, int modelId, bool openWizard, bool i
addTab(new Channels(this, model), tr("Channels"));
addTab(new LogicalSwitchesPanel(this, model), tr("Logical Switches"));
if (GetEepromInterface()->getCapability(CustomFunctions))
- addTab(new CustomFunctionsPanel(this, model, radioData.generalSettings), tr("Switch Assignment"));
+ addTab(new CustomFunctionsPanel(this, model, radioData.generalSettings), tr("Special Functions"));
addTab(new Curves(this, model), tr("Curves"));
if (GetEepromInterface()->getCapability(Telemetry) & TM_HASTELEMETRY)
addTab(new TelemetryPanel(this, model), tr("Telemetry"));
diff --git a/companion/src/printdialog.cpp b/companion/src/printdialog.cpp
index 0988a86ae..bc3dc952e 100644
--- a/companion/src/printdialog.cpp
+++ b/companion/src/printdialog.cpp
@@ -697,7 +697,7 @@ void printDialog::printFSwitches()
{
int sc=0;
QString str = "";
- str.append(""+tr("Switch Assignments")+" | ");
+ str.append(""+tr("Special Functions")+" | ");
str.append("");
str.append(doTC(tr("Switch"), "", true));
str.append(doTL(tr("Function"), "", true));
diff --git a/radio/src/translations/en.h.txt b/radio/src/translations/en.h.txt
index 78f70375b..c8ab4323d 100644
--- a/radio/src/translations/en.h.txt
+++ b/radio/src/translations/en.h.txt
@@ -618,7 +618,7 @@
#define TR_MENUCURVE "CURVE"
#define TR_MENULOGICALSWITCH "LOGICAL SWITCH"
#define TR_MENULOGICALSWITCHES "LOGICAL SWITCHES"
-#define TR_MENUCUSTOMFUNC "SWITCH ASSIGNMENT"
+#define TR_MENUCUSTOMFUNC "SPECIAL FUNCTIONS"
#define TR_MENUCUSTOMSCRIPTS "CUSTOM SCRIPTS"
#define TR_MENUCUSTOMSCRIPT "CUSTOM SCRIPT"
#define TR_MENUTELEMETRY "TELEMETRY"
@@ -732,7 +732,7 @@
#define TR_STATISTICS "Statistics"
#define TR_ABOUT_US "About"
#define TR_AND_SWITCH "AND Switch"
-#define TR_CF "CF"
+#define TR_CF "SF"
#define TR_SPEAKER INDENT "Speaker"
#define TR_BUZZER INDENT "Buzzer"
#define TR_BYTES "bytes"
|
|