diff --git a/DONATIONS.txt b/DONATIONS.txt
index 8436823af..219a89828 100644
--- a/DONATIONS.txt
+++ b/DONATIONS.txt
@@ -312,3 +312,6 @@ Dietmar Drees
Bradley Murchie
Richard Fahie
James Kaufman
+Henry Deucker
+Christian Fuchs
+Arold Reinders
diff --git a/companion/src/comparedialog.cpp b/companion/src/comparedialog.cpp
index 6b1609c0e..e24f636c4 100644
--- a/companion/src/comparedialog.cpp
+++ b/companion/src/comparedialog.cpp
@@ -83,7 +83,6 @@ void compareDialog::printDiff()
printCurves();
printGvars();
printSwitches();
- printSafetySwitches();
printFSwitches();
printFrSky();
te->scrollToAnchor("1");
@@ -1097,7 +1096,7 @@ void compareDialog::printFSwitches()
if (g_model1->funcSw[i].swtch.type) {
str.append(doTC(g_model1->funcSw[i].swtch.toString(),color1));
str.append(doTC(getFuncName(g_model1->funcSw[i].func),color1));
- str.append(doTC(FuncParam(g_model1->funcSw[i].func,g_model1->funcSw[i].param,g_model1->funcSw[i].paramarm, g_model1->funcSw[i].adjustMode),color1));
+ str.append(doTC(g_model1->funcSw[i].paramToString(),color1));
int index=g_model1->funcSw[i].func;
if (index==FuncPlaySound || index==FuncPlayHaptic || index==FuncPlayValue || index==FuncPlayPrompt || index==FuncPlayBoth || index==FuncBackgroundMusic) {
str.append(doTC(QString("%1").arg(g_model1->funcSw[i].repeatParam),color1));
@@ -1116,7 +1115,7 @@ void compareDialog::printFSwitches()
if (g_model2->funcSw[i].swtch.type) {
str.append(doTC(g_model2->funcSw[i].swtch.toString(),color2));
str.append(doTC(getFuncName(g_model2->funcSw[i].func),color2));
- str.append(doTC(FuncParam(g_model2->funcSw[i].func,g_model2->funcSw[i].param,g_model2->funcSw[i].paramarm, g_model2->funcSw[i].adjustMode),color2));
+ str.append(doTC(g_model2->funcSw[i].paramToString(),color2));
int index=g_model2->funcSw[i].func;
if (index==FuncPlaySound || index==FuncPlayHaptic || index==FuncPlayValue || index==FuncPlayPrompt || index==FuncPlayBoth || index==FuncBackgroundMusic) {
str.append(doTC(QString("%1").arg(g_model2->funcSw[i].repeatParam),color2));
@@ -1142,55 +1141,6 @@ void compareDialog::printFSwitches()
te->append(str);
}
-void compareDialog::printSafetySwitches()
-{
- QString color1;
- QString color2;
- int sc=0;
- QString str = "
";
- str.append(""+tr("Safety Switches")+" |
");
- str.append("");
- str.append(""+tr("Switch")+" | ");
- str.append(""+tr("Value")+" | ");
- str.append(" | ");
- str.append(""+tr("Switch")+" | ");
- str.append(""+tr("Value")+" | ");
- str.append(" ");
- for(int i=0; igetCapability(Outputs); i++)
- {
- if ((g_model1->safetySw[i].swtch.type!=SWITCH_TYPE_NONE)||(g_model2->safetySw[i].swtch.type!=SWITCH_TYPE_NONE)) {
- if ((g_model1->safetySw[i].swtch!=g_model2->safetySw[i].swtch)||(g_model1->safetySw[i].val!=g_model2->safetySw[i].val)) {
- color1="green";
- color2="red";
- } else {
- color1="grey";
- color2="grey";
- }
- str.append("");
- if (g_model1->safetySw[i].swtch.type) {
- str.append(doTC(g_model1->safetySw[i].swtch.toString(),color1));
- str.append(doTC(QString::number(g_model1->safetySw[i].val),color1));
- }
- else {
- str.append(" | | ");
- }
- str.append(doTC(tr("CH")+QString("%1").arg(i+1),"",true));
- if (g_model2->safetySw[i].swtch.type) {
- str.append(doTC(g_model2->safetySw[i].swtch.toString(),color2));
- str.append(doTC(QString::number(g_model2->safetySw[i].val),color2));
- } else {
- str.append(" | | ");
- }
- str.append(" ");
- sc++;
- }
-}
- str.append("
|
");
- str.append("
");
- if (sc!=0)
- te->append(str);
-}
-
void compareDialog::printFrSky()
{
QString color;
diff --git a/companion/src/eeprominterface.cpp b/companion/src/eeprominterface.cpp
index 9b5126780..cf5b22675 100644
--- a/companion/src/eeprominterface.cpp
+++ b/companion/src/eeprominterface.cpp
@@ -345,6 +345,149 @@ QString CurveReference::toString()
}
}
+#if 0
+QStringList FuncSwData::toStringList()
+{
+ QStringList result;
+ QStringList qs;
+
+ result << swtch.toString();
+ result << funcToString();
+
+ if (func < FuncInstantTrim) {
+ result << QString("%1").arg(param);
+ }
+ else if (func==FuncPlaySound) {
+ qs <<"Beep 1" << "Beep 2" << "Beep 3" << "Warn1" << "Warn2" << "Cheep" << "Ratata" << "Tick" << "Siren" << "Ring" ;
+ qs << "SciFi" << "Robot" << "Chirp" << "Tada" << "Crickt" << "AlmClk" ;
+ if (param>=0 && param<(int)qs.count())
+ result << qs.at(param);
+ else
+ result << QObject::tr("Inconsistent parameter");
+ }
+ else if (func==FuncPlayHaptic) {
+ qs << "0" << "1" << "2" << "3";
+ if (param>=0 && param<(int)qs.count())
+ result << qs.at(param);
+ else
+ result << QObject::tr("Inconsistent parameter");
+ }
+ else if (func==FuncReset) {
+ qs.append( QObject::tr("Timer1"));
+ qs.append( QObject::tr("Timer2"));
+ qs.append( QObject::tr("All"));
+ qs.append( QObject::tr("Telemetry"));
+ if (param>=0 && param<(int)qs.count())
+ result << qs.at(param);
+ else
+ result << QObject::tr("Inconsistent parameter");
+ }
+ else if ((func==FuncVolume)|| (func==FuncPlayValue)) {
+ RawSource item(param);
+ result << item.toString();
+ }
+ else if ((func==FuncPlayPrompt) || (func==FuncPlayBoth)) {
+ if ( GetEepromInterface()->getCapability(VoicesAsNumbers)) {
+ result << QString("%1").arg(param);
+ } else {
+ result << paramarm;
+ }
+ }
+ else if ((func>FuncBackgroundMusicPause) && (func=0 && param<(int)qs.count())
+ return qs.at(param);
+ else
+ return QObject::tr("Inconsistent parameter");
+ }
+ else if (func==FuncPlayHaptic) {
+ qs << "0" << "1" << "2" << "3";
+ if (param>=0 && param<(int)qs.count())
+ return qs.at(param);
+ else
+ return QObject::tr("Inconsistent parameter");
+ }
+ else if (func==FuncReset) {
+ qs.append( QObject::tr("Timer1"));
+ qs.append( QObject::tr("Timer2"));
+ qs.append( QObject::tr("All"));
+ qs.append( QObject::tr("Telemetry"));
+ if (param>=0 && param<(int)qs.count())
+ return qs.at(param);
+ else
+ return QObject::tr("Inconsistent parameter");
+ }
+ else if ((func==FuncVolume)|| (func==FuncPlayValue)) {
+ RawSource item(param);
+ return item.toString();
+ }
+ else if ((func==FuncPlayPrompt) || (func==FuncPlayBoth)) {
+ if ( GetEepromInterface()->getCapability(VoicesAsNumbers)) {
+ return QString("%1").arg(param);
+ } else {
+ return paramarm;
+ }
+ }
+ else if ((func>FuncBackgroundMusicPause) && (func>1)<<1;
}
diff --git a/companion/src/firmwares/opentx/open9xStockeeprom.cpp b/companion/src/firmwares/opentx/open9xStockeeprom.cpp
index 9989cf8c5..18a203700 100644
--- a/companion/src/firmwares/opentx/open9xStockeeprom.cpp
+++ b/companion/src/firmwares/opentx/open9xStockeeprom.cpp
@@ -662,14 +662,6 @@ t_Open9xFuncSwData_v210::operator FuncSwData ()
return c9x;
}
-t_Open9xSafetySwData::operator SafetySwData ()
-{
- SafetySwData c9x;
- c9x.swtch = open9xStockToSwitch(swtch);
- c9x.val = val;
- return c9x;
-}
-
t_Open9xSwashRingData_v208::operator SwashRingData ()
{
SwashRingData c9x;
@@ -993,8 +985,8 @@ t_Open9xModelData_v201::operator ModelData ()
c9x.customSw[i] = customSw[i];
for (int i=0; i<12; i++)
c9x.funcSw[i] = funcSw[i];
- for (int i=0; i= 216) {
+ for (int i=0; i<32; i++) {
+ addConversion(i, val);
+ }
+ val++;
+ }
+ else if (IS_ARM(board) || version < 213) {
for (int i=0; i<16; i++) {
addConversion(val, val);
val++;
@@ -1249,32 +1255,67 @@ class CustomFunctionsConversionTable: public ConversionTable {
}
val+=4;
}
- addConversion(FuncTrainer, val++);
- addConversion(FuncTrainerRUD, val++);
- addConversion(FuncTrainerELE, val++);
- addConversion(FuncTrainerTHR, val++);
- addConversion(FuncTrainerAIL, val++);
- addConversion(FuncInstantTrim, val++);
- addConversion(FuncPlaySound, val++);
- if (!IS_TARANIS(board))
- addConversion(FuncPlayHaptic, val++);
- addConversion(FuncReset, val++);
- addConversion(FuncVario, val++);
- addConversion(FuncPlayPrompt, val++);
- if (version >= 213 && !IS_ARM(board))
- addConversion(FuncPlayBoth, val++);
- addConversion(FuncPlayValue, val++);
- if (board == BOARD_GRUVIN9X || IS_ARM(board) )
- addConversion(FuncLogs, val++);
- if (IS_ARM(board))
- addConversion(FuncVolume, val++);
- addConversion(FuncBacklight, val++);
- if (IS_ARM(board)) {
- addConversion(FuncBackgroundMusic, val++);
- addConversion(FuncBackgroundMusicPause, val++);
+
+ if (version >= 216) {
+ addConversion(FuncTrainer, val);
+ addConversion(FuncTrainerRUD, val);
+ addConversion(FuncTrainerELE, val);
+ addConversion(FuncTrainerTHR, val);
+ addConversion(FuncTrainerAIL, val);
+ val++;
+ }
+ else {
+ addConversion(FuncTrainer, val++);
+ addConversion(FuncTrainerRUD, val++);
+ addConversion(FuncTrainerELE, val++);
+ addConversion(FuncTrainerTHR, val++);
+ addConversion(FuncTrainerAIL, val++);
+ }
+ addConversion(FuncInstantTrim, val++);
+ if (version >= 216) {
+ addConversion(FuncReset, val++);
+ for (int i=0; i= 213 && !IS_ARM(board))
+ addConversion(FuncPlayBoth, val++);
+ addConversion(FuncPlayValue, val++);
+ if (IS_ARM(board)) {
+ addConversion(FuncBackgroundMusic, val++);
+ addConversion(FuncBackgroundMusicPause, val++);
+ }
+ addConversion(FuncVario, val++);
+ addConversion(FuncPlayHaptic, val++);
+ if (board == BOARD_GRUVIN9X || IS_ARM(board) )
+ addConversion(FuncLogs, val++);
+ addConversion(FuncBacklight, val++);
+ }
+ else {
+ addConversion(FuncPlaySound, val++);
+ if (!IS_TARANIS(board))
+ addConversion(FuncPlayHaptic, val++);
+ addConversion(FuncReset, val++);
+ addConversion(FuncVario, val++);
+ addConversion(FuncPlayPrompt, val++);
+ if (version >= 213 && !IS_ARM(board))
+ addConversion(FuncPlayBoth, val++);
+ addConversion(FuncPlayValue, val++);
+ if (board == BOARD_GRUVIN9X || IS_ARM(board) )
+ addConversion(FuncLogs, val++);
+ if (IS_ARM(board))
+ addConversion(FuncVolume, val++);
+ addConversion(FuncBacklight, val++);
+ if (IS_ARM(board)) {
+ addConversion(FuncBackgroundMusic, val++);
+ addConversion(FuncBackgroundMusicPause, val++);
+ }
+ for (int i=0; i<5; i++)
+ addConversion(FuncAdjustGV1+i, val++);
}
- for (int i=0; i<5; i++)
- addConversion(FuncAdjustGV1+i, val++);
}
};
@@ -1436,7 +1477,7 @@ class CustomFunctionField: public TransformedField {
if (version >= 213)
_union_param = fn.repeatParam / 10;
}
- else if (fn.func <= FuncSafetyCh16) {
+ else if (fn.func <= FuncSafetyCh32) {
if (version >= 213)
_union_param += ((fn.func % 4) << 1);
}
@@ -1518,7 +1559,7 @@ class CustomFunctionField: public TransformedField {
if (version >= 213)
fn.repeatParam = _union_param * 10;
}
- else if (fn.func <= FuncSafetyCh16) {
+ else if (fn.func <= FuncSafetyCh32) {
if (version >= 213) {
fn.func = AssignFunc(((fn.func >> 2) << 2) + ((_union_param >> 1) & 0x03));
}
diff --git a/companion/src/helpers.cpp b/companion/src/helpers.cpp
index c27a88672..71244aae1 100644
--- a/companion/src/helpers.cpp
+++ b/companion/src/helpers.cpp
@@ -129,7 +129,7 @@ QString getRepeatString(unsigned int val)
QString getFuncName(unsigned int val)
{
- if (val < NUM_SAFETY_CHNOUT) {
+ if (val < C9X_NUM_CHNOUT) {
return QObject::tr("Safety %1").arg(RawSource(SOURCE_TYPE_CH, val).toString());
}
else if (val == FuncTrainer)
@@ -290,186 +290,6 @@ QString getProtocolStr(const int proto)
return CHECK_IN_ARRAY(strings, proto);
}
-void populateFuncCB(QComboBox *b, unsigned int value)
-{
- b->clear();
- for (unsigned int i = 0; i < FuncCount; i++) {
- b->addItem(getFuncName(i));
- if (!GetEepromInterface()->getCapability(HasVolume)) {
- if (i==FuncVolume || i==FuncBackgroundMusic || i==FuncBackgroundMusicPause) {
- QModelIndex index = b->model()->index(i, 0);
- QVariant v(0);
- b->model()->setData(index, v, Qt::UserRole - 1);
- }
- }
- if ((i==FuncPlayHaptic) && !GetEepromInterface()->getCapability(Haptic)) {
- QModelIndex index = b->model()->index(i, 0);
- QVariant v(0);
- b->model()->setData(index, v, Qt::UserRole - 1);
- }
- if ((i==FuncPlayBoth) && !GetEepromInterface()->getCapability(HasBeeper)) {
- QModelIndex index = b->model()->index(i, 0);
- QVariant v(0);
- b->model()->setData(index, v, Qt::UserRole - 1);
- }
- if ((i==FuncLogs) && !GetEepromInterface()->getCapability(HasSDLogs)) {
- QModelIndex index = b->model()->index(i, 0);
- QVariant v(0);
- b->model()->setData(index, v, Qt::UserRole - 1);
- }
- }
- b->setCurrentIndex(value);
- b->setMaxVisibleItems(10);
-}
-
-QString FuncParam(uint function, int value, QString paramT,unsigned int adjustmode)
-{
- QStringList qs;
- if (function <= FuncInstantTrim) {
- return QString("%1").arg(value);
- }
- else if (function==FuncPlaySound) {
- qs <<"Beep 1" << "Beep 2" << "Beep 3" << "Warn1" << "Warn2" << "Cheep" << "Ratata" << "Tick" << "Siren" << "Ring" ;
- qs << "SciFi" << "Robot" << "Chirp" << "Tada" << "Crickt" << "AlmClk" ;
- if (value>=0 && value<(int)qs.count())
- return qs.at(value);
- else
- return QObject::tr("Inconsistent parameter");
- }
- else if (function==FuncPlayHaptic) {
- qs << "0" << "1" << "2" << "3";
- if (value>=0 && value<(int)qs.count())
- return qs.at(value);
- else
- return QObject::tr("Inconsistent parameter");
- }
- else if (function==FuncReset) {
- qs.append( QObject::tr("Timer1"));
- qs.append( QObject::tr("Timer2"));
- qs.append( QObject::tr("All"));
- qs.append( QObject::tr("Telemetry"));
- if (value>=0 && value<(int)qs.count())
- return qs.at(value);
- else
- return QObject::tr("Inconsistent parameter");
- }
- else if ((function==FuncVolume)|| (function==FuncPlayValue)) {
- RawSource item(value);
- return item.toString();
- }
- else if ((function==FuncPlayPrompt) || (function==FuncPlayBoth)) {
- if ( GetEepromInterface()->getCapability(VoicesAsNumbers)) {
- return QString("%1").arg(value);
- } else {
- return paramT;
- }
- } else if ((function>FuncBackgroundMusicPause) && (functionclear();
- b->addItem("----");
-
- QString currentvalue(value);
- foreach ( QString entry, paramsList ) {
- b->addItem(entry);
- if (entry==currentvalue) {
- b->setCurrentIndex(b->count()-1);
- }
- }
-}
-
-void populateFuncParamCB(QComboBox *b, const ModelData & model, uint function, unsigned int value, unsigned int adjustmode)
-{
- QStringList qs;
- b->clear();
- if (function==FuncPlaySound) {
- qs <<"Beep 1" << "Beep 2" << "Beep 3" << "Warn1" << "Warn2" << "Cheep" << "Ratata" << "Tick" << "Siren" << "Ring" ;
- qs << "SciFi" << "Robot" << "Chirp" << "Tada" << "Crickt" << "AlmClk" ;
- b->addItems(qs);
- b->setCurrentIndex(value);
- }
- else if (function==FuncPlayHaptic) {
- qs << "0" << "1" << "2" << "3";
- b->addItems(qs);
- b->setCurrentIndex(value);
- }
- else if (function==FuncReset) {
- qs.append( QObject::tr("Timer1"));
- qs.append( QObject::tr("Timer2"));
- qs.append( QObject::tr("All"));
- qs.append( QObject::tr("Telemetry"));
- int reCount = GetEepromInterface()->getCapability(RotaryEncoders);
- if (reCount == 1) {
- qs.append( QObject::tr("Rotary Encoder"));
- }
- else if (reCount == 2) {
- qs.append( QObject::tr("REa"));
- qs.append( QObject::tr("REb"));
- }
- b->addItems(qs);
- b->setCurrentIndex(value);
- }
- else if (function==FuncVolume) {
- populateSourceCB(b, RawSource(value), model, POPULATE_SOURCES|POPULATE_TRIMS);
- }
- else if (function==FuncPlayValue) {
- populateSourceCB(b, RawSource(value), model, POPULATE_SOURCES|POPULATE_VIRTUAL_INPUTS|POPULATE_SWITCHES|POPULATE_GVARS|POPULATE_TRIMS|POPULATE_TELEMETRYEXT);
- }
- else if (function>=FuncAdjustGV1 && function<=FuncAdjustGVLast) {
- switch (adjustmode) {
- case 1:
- populateSourceCB(b, RawSource(value), model, POPULATE_SOURCES|POPULATE_TRIMS|POPULATE_SWITCHES);
- break;
- case 2:
- populateSourceCB(b, RawSource(value), model, POPULATE_GVARS);
- break;
- case 3:
- b->clear();
- b->addItem("-1", 0);
- b->addItem("+1", 1);
- b->setCurrentIndex(value);
- break;
- }
- }
- else {
- b->hide();
- }
-}
-
-void populateGVmodeCB(QComboBox *b, unsigned int value)
-{
- b->clear();
- b->addItem(QObject::tr("Value"));
- b->addItem(QObject::tr("Source"));
- b->addItem(QObject::tr("GVAR"));
- b->addItem(QObject::tr("Increment"));
- b->setCurrentIndex(value);
-}
-
void populatePhasesCB(QComboBox *b, int value)
{
for (int i=-GetEepromInterface()->getCapability(FlightPhases); i<=GetEepromInterface()->getCapability(FlightPhases); i++) {
@@ -842,28 +662,6 @@ void populateSwitchCB(QComboBox *b, const RawSwitch & value, unsigned long attr,
return;
}
-#if 0
- // TODO check ... I removed negative toggle switches in the FW, no?
- if (attr & POPULATE_MSWITCHES) {
- if (attr & POPULATE_ONOFF) {
- item = RawSwitch(SWITCH_TYPE_ONM, 1);
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
-
- for (int i=-GetEepromInterface()->getCapability(CustomSwitches); i<0; i++) {
- item = RawSwitch(SWITCH_TYPE_MOMENT_VIRTUAL, i);
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
- for (int i=-GetEepromInterface()->getCapability(SwitchesPositions); i<0; i++) {
- item = RawSwitch(SWITCH_TYPE_MOMENT_SWITCH, i);
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
- }
-#endif
-
if (attr & POPULATE_ONOFF) {
item = RawSwitch(SWITCH_TYPE_OFF);
if (GetEepromInterface()->isAvailable(item, context)) {
@@ -922,51 +720,14 @@ void populateSwitchCB(QComboBox *b, const RawSwitch & value, unsigned long attr,
if (item == value) b->setCurrentIndex(b->count()-1);
}
- if (attr & POPULATE_MSWITCHES) {
- for (int i=1; i<=GetEepromInterface()->getCapability(SwitchesPositions); i++) {
- item = RawSwitch(SWITCH_TYPE_MOMENT_SWITCH, i);
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
-
- for (int i=1; i<=GetEepromInterface()->getCapability(CustomSwitches); i++) {
- item = RawSwitch(SWITCH_TYPE_MOMENT_VIRTUAL, i);
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
- }
-
- if (attr & POPULATE_MSWITCHES) {
- if (attr & POPULATE_ONOFF) {
- item = RawSwitch(SWITCH_TYPE_ONM);
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
- if (IS_ARM(GetEepromInterface()->getBoard())) {
- item = RawSwitch(SWITCH_TYPE_TRN,0);
- if (GetEepromInterface()->isAvailable(item, context)) {
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
- item = RawSwitch(SWITCH_TYPE_TRN,1);
- if (GetEepromInterface()->isAvailable(item, context)) {
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
- }
- if (GetEepromInterface()->getBoard()==BOARD_SKY9X) {
- item = RawSwitch(SWITCH_TYPE_REA,0);
- if (GetEepromInterface()->isAvailable(item, context)) {
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
- item = RawSwitch(SWITCH_TYPE_REA,1);
- if (GetEepromInterface()->isAvailable(item, context)) {
- b->addItem(item.toString(), item.toValue());
- if (item == value) b->setCurrentIndex(b->count()-1);
- }
- }
+#if 0
+ // TODO One ?
+ if (attr & POPULATE_ONOFF) {
+ item = RawSwitch(SWITCH_TYPE_ONM);
+ b->addItem(item.toString(), item.toValue());
+ if (item == value) b->setCurrentIndex(b->count()-1);
}
+#endif
b->setMaxVisibleItems(10);
}
diff --git a/companion/src/helpers.h b/companion/src/helpers.h
index 9cef155e7..3764a0395 100644
--- a/companion/src/helpers.h
+++ b/companion/src/helpers.h
@@ -80,14 +80,8 @@ class CurveGroup : public QObject {
};
#define POPULATE_ONOFF 0x01
-#define POPULATE_MSWITCHES 0x02
-#define POPULATE_AND_SWITCHES 0x04
+#define POPULATE_AND_SWITCHES 0x02
void populateSwitchCB(QComboBox *b, const RawSwitch & value, unsigned long attr=0, UseContext context=DefaultContext);
-void populateFuncCB(QComboBox *b, unsigned int value);
-void populateGVmodeCB(QComboBox *b, unsigned int value);
-QString FuncParam(uint function, int value, QString paramT="",unsigned int adjustmode=0);
-void populateFuncParamCB(QComboBox *b, const ModelData & model, uint function, unsigned int value, unsigned int adjustmode=0);
-void populateFuncParamArmTCB(QComboBox *b, ModelData * g_model, char * value, QStringList & paramsList);
void populatePhasesCB(QComboBox *b, int value);
void populateTrimUseCB(QComboBox *b, unsigned int phase);
void populateGvarUseCB(QComboBox *b, unsigned int phase);
diff --git a/companion/src/images/splasht.png b/companion/src/images/splasht.png
index 22a942ac5..1de729daf 100644
Binary files a/companion/src/images/splasht.png and b/companion/src/images/splasht.png differ
diff --git a/companion/src/mainwindow.cpp b/companion/src/mainwindow.cpp
index 720a003a5..c9857bf05 100644
--- a/companion/src/mainwindow.cpp
+++ b/companion/src/mainwindow.cpp
@@ -641,6 +641,42 @@ void MainWindow::closeEvent(QCloseEvent *event)
}
}
+void MainWindow::setLanguage(QString langString)
+{
+ QSettings settings;
+ settings.setValue("locale", langString );
+
+ QMessageBox msgBox;
+ msgBox.setText(tr("The selected language will be used the next time you start Companion."));
+ msgBox.setIcon(QMessageBox::Information);
+ msgBox.addButton(tr("OK"), QMessageBox::AcceptRole);
+ msgBox.exec();
+}
+
+void MainWindow::setTheme(int index)
+{
+ QSettings settings;
+ settings.setValue("theme", index );
+
+ QMessageBox msgBox;
+ msgBox.setText(tr("The new theme will be loaded the next time you start Companion."));
+ msgBox.setIcon(QMessageBox::Information);
+ msgBox.addButton(tr("OK"), QMessageBox::AcceptRole);
+ msgBox.exec();
+}
+
+void MainWindow::setIconThemeSize(int index)
+{
+ QSettings settings;
+ settings.setValue("icon_size", index );
+
+ QMessageBox msgBox;
+ msgBox.setText(tr("The icon size will be used the next time you start Companion."));
+ msgBox.setIcon(QMessageBox::Information);
+ msgBox.addButton(tr("OK"), QMessageBox::AcceptRole);
+ msgBox.exec();
+}
+
void MainWindow::newFile()
{
MdiChild *child = createMdiChild();
@@ -648,6 +684,7 @@ void MainWindow::newFile()
child->show();
}
+
void MainWindow::openFile()
{
QSettings settings;
@@ -1630,7 +1667,7 @@ void MainWindow::createActions()
logsAct->setStatusTip(tr("Open log file"));
connect(logsAct, SIGNAL(triggered()), this, SLOT(logFile()));
- preferencesAct = new QAction(CompanionIcon("preferences.png"), tr("&Preferences..."), this);
+ preferencesAct = new QAction(CompanionIcon("preferences.png"), tr("&General Preferences..."), this);
preferencesAct->setStatusTip(tr("Edit general preferences"));
connect(preferencesAct, SIGNAL(triggered()), this, SLOT(preferences()));
@@ -1655,7 +1692,7 @@ void MainWindow::createActions()
compareAct->setEnabled(false);
connect(compareAct, SIGNAL(triggered()), this, SLOT(compare()));
- customizeSplashAct = new QAction(CompanionIcon("paintbrush.png"), tr("Customize your &TX..."), this);
+ customizeSplashAct = new QAction(CompanionIcon("paintbrush.png"), tr("Configure transmitter start screen..."), this);
customizeSplashAct->setStatusTip(tr("Customize the splash screen of your TX"));
connect(customizeSplashAct, SIGNAL(triggered()), this, SLOT(customizeSplash()));
@@ -1708,7 +1745,7 @@ void MainWindow::createActions()
burnFromFlashAct->setStatusTip(tr("Read firmware from transmitter"));
connect(burnFromFlashAct,SIGNAL(triggered()),this,SLOT(burnFromFlash()));
- burnConfigAct = new QAction(CompanionIcon("configure.png"), tr("&Configure..."), this);
+ burnConfigAct = new QAction(CompanionIcon("configure.png"), tr("&Configure connection software..."), this);
burnConfigAct->setStatusTip(tr("Configure software for reading from and writing to the transmitter"));
connect(burnConfigAct,SIGNAL(triggered()),this,SLOT(burnConfig()));
EEPROMInterface *eepromInterface = GetEepromInterface();
@@ -1754,6 +1791,79 @@ void MainWindow::createActions()
connect(profileActs[i], SIGNAL(triggered()), this, SLOT(loadProfile()));
}
updateProfilesActions();
+
+ classicThemeAct = new QAction(tr("Classic"), this);
+ classicThemeAct->setStatusTip(tr("The multicolor classical Companion icon theme"));
+ connect(classicThemeAct, SIGNAL(triggered()), this, SLOT(setClassicTheme()));
+ monoThemeAct = new QAction("Monochrome",this);
+ monoThemeAct->setStatusTip(tr("A monochrome black icon theme"));
+ connect(monoThemeAct, SIGNAL(triggered()), this, SLOT(setMonochromeTheme()));
+ monoWhiteThemeAct = new QAction("MonoWhite",this);
+ monoWhiteThemeAct->setStatusTip(tr("A monochrome white icon theme"));
+ connect(monoWhiteThemeAct, SIGNAL(triggered()), this, SLOT(setMonoWhiteTheme()));
+ monoBlueThemeAct = new QAction("MonoBlue",this);
+ monoBlueThemeAct->setStatusTip(tr("A monochrome blue icon theme"));
+ connect(monoBlueThemeAct, SIGNAL(triggered()), this, SLOT(setMonoBlueTheme()));
+
+ smallIconAct = new QAction(tr("Small"),this);
+ smallIconAct->setStatusTip(tr("Use small toolbar icons"));
+ connect(smallIconAct, SIGNAL(triggered()), this, SLOT(setSmallIconThemeSize()));
+ normalIconAct = new QAction(this);
+ normalIconAct->setStatusTip(tr("Use normal size toolbar icons"));
+ normalIconAct->setText(tr("Normal"));
+ connect(normalIconAct, SIGNAL(triggered()), this, SLOT(setNormalIconThemeSize()));
+ bigIconAct = new QAction(this);
+ bigIconAct->setStatusTip(tr("Use big toolbar icons"));
+ bigIconAct->setText(tr("Big"));
+ connect(bigIconAct, SIGNAL(triggered()), this, SLOT(setBigIconThemeSize()));
+ hugeIconAct = new QAction(this);
+ hugeIconAct->setStatusTip(tr("Use huge toolbar icons"));
+ hugeIconAct->setText(tr("Huge"));
+ connect(hugeIconAct, SIGNAL(triggered()), this, SLOT(setHugeIconThemeSize()));
+
+ defaultLanguageAct = new QAction(tr("System default language"),this);
+ defaultLanguageAct->setStatusTip(tr("Use system default language in menus"));
+ connect(defaultLanguageAct, SIGNAL(triggered()), this, SLOT(setDefaultLanguage()));
+
+ czechLanguageAct = new QAction(tr("Czech"),this);
+ czechLanguageAct->setStatusTip(tr("Use Czech in menus"));
+ connect(czechLanguageAct, SIGNAL(triggered()), this, SLOT(setCZLanguage()));
+
+ germanLanguageAct = new QAction(tr("German"),this);
+ germanLanguageAct->setStatusTip(tr("Use German in menus"));
+ connect(germanLanguageAct, SIGNAL(triggered()), this, SLOT(setDELanguage()));
+
+ englishLanguageAct = new QAction(tr("English"),this);
+ englishLanguageAct->setStatusTip(tr("Use English in menus"));
+ connect(englishLanguageAct, SIGNAL(triggered()), this, SLOT(setENLanguage()));
+
+ frenchLanguageAct = new QAction(tr("French"),this);
+ frenchLanguageAct->setStatusTip(tr("Use French in menus"));
+ connect(frenchLanguageAct, SIGNAL(triggered()), this, SLOT(setFRLanguage()));
+
+ italianLanguageAct = new QAction(tr("Italian"),this);
+ italianLanguageAct->setStatusTip(tr("Use Italian in menus"));
+ connect(italianLanguageAct, SIGNAL(triggered()), this, SLOT(setITLanguage()));
+
+ hebrewLanguageAct = new QAction(tr("Hebrew"),this);
+ hebrewLanguageAct->setStatusTip(tr("Use Hebrew in menus"));
+ connect(hebrewLanguageAct, SIGNAL(triggered()), this, SLOT(setHELanguage()));
+
+ polishLanguageAct = new QAction(tr("Polish"),this);
+ polishLanguageAct->setStatusTip(tr("Use Polish in menus"));
+ connect(polishLanguageAct, SIGNAL(triggered()), this, SLOT(setPLLanguage()));
+
+ portugueseLanguageAct = new QAction(tr("Portuguese"),this);
+ portugueseLanguageAct->setStatusTip(tr("Use Portuguese in menus"));
+ connect(portugueseLanguageAct, SIGNAL(triggered()), this, SLOT(setPTLanguage()));
+
+ swedishLanguageAct = new QAction(tr("Swedish"),this);
+ swedishLanguageAct->setStatusTip(tr("Use Swedish in menus"));
+ connect(swedishLanguageAct, SIGNAL(triggered()), this, SLOT(setSELanguage()));
+
+ russianLanguageAct = new QAction(tr("Russian"),this);
+ russianLanguageAct->setStatusTip(tr("Use Russian in menus"));
+ connect(russianLanguageAct, SIGNAL(triggered()), this, SLOT(setRULanguage()));
}
void MainWindow::createMenus()
@@ -1761,6 +1871,9 @@ void MainWindow::createMenus()
{
QMenu *recentFileMenu=new QMenu(tr("Recent Files"));
QMenu *profilesMenu=new QMenu(tr("Firmware Profiles"));
+ QMenu *languageMenu=new QMenu(tr("Set Menu Language"));
+ QMenu *themeMenu=new QMenu(tr("Set Icon Theme"));
+ QMenu *iconThemeSizeMenu=new QMenu(tr("Set Icon Size"));
fileMenu = menuBar()->addMenu(tr("&File"));
fileMenu->addAction(newAct);
@@ -1778,7 +1891,6 @@ void MainWindow::createMenus()
fileMenu->addAction(printAct);
fileMenu->addAction(compareAct);
fileMenu->addSeparator();
- fileMenu->addAction(preferencesAct);
fileMenu->addMenu(profilesMenu);
profilesMenu->setIcon(CompanionIcon("profiles.png"));
@@ -1791,6 +1903,34 @@ void MainWindow::createMenus()
editMenu->addAction(copyAct);
editMenu->addAction(pasteAct);
+ settingsMenu = menuBar()->addMenu(tr("&Settings"));
+ settingsMenu->addMenu(languageMenu);
+ languageMenu->addAction(defaultLanguageAct);
+ languageMenu->addAction(englishLanguageAct);
+ languageMenu->addAction(czechLanguageAct);
+ languageMenu->addAction(germanLanguageAct);
+ languageMenu->addAction(frenchLanguageAct);
+ languageMenu->addAction(hebrewLanguageAct);
+ languageMenu->addAction(italianLanguageAct);
+ languageMenu->addAction(polishLanguageAct);
+ languageMenu->addAction(portugueseLanguageAct);
+ languageMenu->addAction(swedishLanguageAct);
+ languageMenu->addAction(russianLanguageAct);
+ settingsMenu->addMenu(themeMenu);
+ themeMenu->addAction(classicThemeAct);
+ themeMenu->addAction(monoThemeAct);
+ themeMenu->addAction(monoBlueThemeAct);
+ themeMenu->addAction(monoWhiteThemeAct);
+ settingsMenu->addMenu(iconThemeSizeMenu);
+ iconThemeSizeMenu->addAction(smallIconAct);
+ iconThemeSizeMenu->addAction(normalIconAct);
+ iconThemeSizeMenu->addAction(bigIconAct);
+ iconThemeSizeMenu->addAction(hugeIconAct);
+ settingsMenu->addSeparator();
+ settingsMenu->addAction(preferencesAct);
+ settingsMenu->addAction(customizeSplashAct);
+ settingsMenu->addAction(burnConfigAct);
+
burnMenu = menuBar()->addMenu(tr("&Read/Write"));
burnMenu->addAction(burnToAct);
burnMenu->addAction(burnFromAct);
@@ -1801,9 +1941,7 @@ void MainWindow::createMenus()
burnMenu->addAction(burnToFlashAct);
burnMenu->addAction(burnFromFlashAct);
burnMenu->addSeparator();
- burnMenu->addAction(customizeSplashAct);
burnMenu->addSeparator();
- burnMenu->addAction(burnConfigAct);
EEPROMInterface *eepromInterface = GetEepromInterface();
if (!IS_ARM(eepromInterface->getBoard())) {
burnMenu->addAction(burnFusesAct);
@@ -1968,14 +2106,6 @@ QMdiSubWindow *MainWindow::findMdiChild(const QString &fileName)
return 0;
}
-void MainWindow::switchLayoutDirection()
-{
- if (layoutDirection() == Qt::LeftToRight)
- qApp->setLayoutDirection(Qt::RightToLeft);
- else
- qApp->setLayoutDirection(Qt::LeftToRight);
-}
-
void MainWindow::setActiveSubWindow(QWidget *window)
{
if (!window)
@@ -2143,3 +2273,5 @@ void MainWindow::autoClose()
{
this->close();
}
+
+
diff --git a/companion/src/mainwindow.h b/companion/src/mainwindow.h
index bdcdcd018..170ebd939 100644
--- a/companion/src/mainwindow.h
+++ b/companion/src/mainwindow.h
@@ -82,6 +82,31 @@ public slots:
void unloadProfile();
private slots:
+ void setLanguage(QString langString);
+ void setDefaultLanguage() {setLanguage("");};
+ void setCZLanguage() {setLanguage("cs_CZ");};
+ void setDELanguage() {setLanguage("de_DE");};
+ void setENLanguage() {setLanguage("en");};
+ void setFRLanguage() {setLanguage("fr_FR");};
+ void setITLanguage() {setLanguage("it_IT");};
+ void setHELanguage() {setLanguage("he_IL");};
+ void setPLLanguage() {setLanguage("pl_PL");};
+ void setPTLanguage() {setLanguage("pt_PT");};
+ void setRULanguage() {setLanguage("ru_RU");};
+ void setSELanguage() {setLanguage("sv_SE");};
+
+ void setTheme(int index);
+ void setClassicTheme() {setTheme(0);};
+ void setMonochromeTheme(){setTheme(1);};
+ void setMonoWhiteTheme() {setTheme(2);};
+ void setMonoBlueTheme() {setTheme(3);};
+
+ void setIconThemeSize(int index);
+ void setSmallIconThemeSize() {setIconThemeSize(0);};
+ void setNormalIconThemeSize() {setIconThemeSize(1);};
+ void setBigIconThemeSize() {setIconThemeSize(2);};
+ void setHugeIconThemeSize() {setIconThemeSize(3);};
+
void checkForUpdates(bool ignoreSettings, QString & fwId);
void checkForUpdateFinished(QNetworkReply * reply);
void displayWarnings();
@@ -121,12 +146,11 @@ private slots:
void preferences();
void updateMenus();
MdiChild *createMdiChild();
- void switchLayoutDirection();
void setActiveSubWindow(QWidget *window);
QMenu * createRecentFileMenu();
QMenu * createProfilesMenu();
void autoClose();
-
+
private:
void createActions();
void createMenus();
@@ -153,7 +177,6 @@ private:
QStringList GetSendFlashCommand(const QString &filename);
int getEpromVersion(QString fileName);
-
bool convertEEPROM(QString backupFile, QString restoreFile, QString flashFile);
bool isValidEEPROM(QString eepromfile);
@@ -183,6 +206,7 @@ private:
QMenu *fileMenu;
QMenu *editMenu;
+ QMenu *settingsMenu;
QMenu *burnMenu;
QMenu *helpMenu;
QToolBar *fileToolBar;
@@ -222,6 +246,25 @@ private:
QAction *logsAct;
QAction *recentFileActs[MAX_RECENT];
QAction *profileActs[MAX_PROFILES];
+ QAction *classicThemeAct;
+ QAction *monoThemeAct;
+ QAction *monoBlueThemeAct;
+ QAction *monoWhiteThemeAct;
+ QAction *smallIconAct;
+ QAction *normalIconAct;
+ QAction *bigIconAct;
+ QAction *hugeIconAct;
+ QAction *defaultLanguageAct;
+ QAction *englishLanguageAct;
+ QAction *czechLanguageAct;
+ QAction *germanLanguageAct;
+ QAction *frenchLanguageAct;
+ QAction *italianLanguageAct;
+ QAction *hebrewLanguageAct;
+ QAction *polishLanguageAct;
+ QAction *portugueseLanguageAct;
+ QAction *swedishLanguageAct;
+ QAction *russianLanguageAct;
QString fwToUpdate;
QToolButton * profileButton;
};
diff --git a/companion/src/modeledit/customfunctions.cpp b/companion/src/modeledit/customfunctions.cpp
index bbbe15fdf..711ddd380 100644
--- a/companion/src/modeledit/customfunctions.cpp
+++ b/companion/src/modeledit/customfunctions.cpp
@@ -95,7 +95,7 @@ CustomFunctionsPanel::CustomFunctionsPanel(QWidget * parent, ModelData & model,
fswtchSwtch[i]->setProperty("index", i);
connect(fswtchSwtch[i], SIGNAL(currentIndexChanged(int)), this, SLOT(customFunctionEdited()));
gridLayout->addWidget(fswtchSwtch[i], i+1, 1);
- populateSwitchCB(fswtchSwtch[i], model.funcSw[i].swtch, POPULATE_MSWITCHES|POPULATE_ONOFF);
+ populateSwitchCB(fswtchSwtch[i], model.funcSw[i].swtch, POPULATE_ONOFF);
// The function
fswtchFunc[i] = new QComboBox(this);
@@ -286,7 +286,7 @@ void CustomFunctionsPanel::refreshCustomFunction(int i, bool modified)
int index = fswtchFunc[i]->currentIndex();
- if (index>=FuncSafetyCh1 && index<=FuncSafetyCh16) {
+ if (index>=FuncSafetyCh1 && index<=FuncSafetyCh32) {
fswtchParam[i]->setDecimals(0);
fswtchParam[i]->setSingleStep(1);
fswtchParam[i]->setMinimum(-125);
@@ -457,7 +457,7 @@ void CustomFunctionsPanel::fswPaste()
FuncSwData *fsw = &model.funcSw[selectedFunction];
memcpy(fsw, fswData.mid(0, sizeof(FuncSwData)).constData(), sizeof(FuncSwData));
// TODO update switch and func
- populateSwitchCB(fswtchSwtch[selectedFunction], model.funcSw[selectedFunction].swtch, POPULATE_MSWITCHES|POPULATE_ONOFF);
+ populateSwitchCB(fswtchSwtch[selectedFunction], model.funcSw[selectedFunction].swtch, POPULATE_ONOFF);
populateFuncCB(fswtchFunc[selectedFunction], model.funcSw[selectedFunction].func);
refreshCustomFunction(selectedFunction);
emit modified();
@@ -468,7 +468,7 @@ void CustomFunctionsPanel::fswDelete()
{
model.funcSw[selectedFunction].clear();
// TODO update switch and func
- populateSwitchCB(fswtchSwtch[selectedFunction], model.funcSw[selectedFunction].swtch, POPULATE_MSWITCHES|POPULATE_ONOFF);
+ populateSwitchCB(fswtchSwtch[selectedFunction], model.funcSw[selectedFunction].swtch, POPULATE_ONOFF);
populateFuncCB(fswtchFunc[selectedFunction], model.funcSw[selectedFunction].func);
refreshCustomFunction(selectedFunction);
emit modified();
@@ -508,3 +508,117 @@ void CustomFunctionsPanel::fsw_customContextMenuRequested(QPoint pos)
contextMenu.exec(globalPos);
}
+
+void CustomFunctionsPanel::populateFuncCB(QComboBox *b, unsigned int value)
+{
+ b->clear();
+ for (unsigned int i=0; iaddItem(getFuncName(i));
+ if (!GetEepromInterface()->getCapability(HasVolume)) {
+ if (i==FuncVolume || i==FuncBackgroundMusic || i==FuncBackgroundMusicPause) {
+ QModelIndex index = b->model()->index(i, 0);
+ QVariant v(0);
+ b->model()->setData(index, v, Qt::UserRole - 1);
+ }
+ }
+ if ((i==FuncPlayHaptic) && !GetEepromInterface()->getCapability(Haptic)) {
+ QModelIndex index = b->model()->index(i, 0);
+ QVariant v(0);
+ b->model()->setData(index, v, Qt::UserRole - 1);
+ }
+ if ((i==FuncPlayBoth) && !GetEepromInterface()->getCapability(HasBeeper)) {
+ QModelIndex index = b->model()->index(i, 0);
+ QVariant v(0);
+ b->model()->setData(index, v, Qt::UserRole - 1);
+ }
+ if ((i==FuncLogs) && !GetEepromInterface()->getCapability(HasSDLogs)) {
+ QModelIndex index = b->model()->index(i, 0);
+ QVariant v(0);
+ b->model()->setData(index, v, Qt::UserRole - 1);
+ }
+ }
+ b->setCurrentIndex(value);
+ b->setMaxVisibleItems(10);
+}
+
+void CustomFunctionsPanel::populateGVmodeCB(QComboBox *b, unsigned int value)
+{
+ b->clear();
+ b->addItem(QObject::tr("Value"));
+ b->addItem(QObject::tr("Source"));
+ b->addItem(QObject::tr("GVAR"));
+ b->addItem(QObject::tr("Increment"));
+ b->setCurrentIndex(value);
+}
+
+void CustomFunctionsPanel::populateFuncParamArmTCB(QComboBox *b, ModelData * g_model, char * value, QStringList & paramsList)
+{
+ b->clear();
+ b->addItem("----");
+
+ QString currentvalue(value);
+ foreach ( QString entry, paramsList ) {
+ b->addItem(entry);
+ if (entry==currentvalue) {
+ b->setCurrentIndex(b->count()-1);
+ }
+ }
+}
+
+void CustomFunctionsPanel::populateFuncParamCB(QComboBox *b, const ModelData & model, uint function, unsigned int value, unsigned int adjustmode)
+{
+ QStringList qs;
+ b->clear();
+ if (function==FuncPlaySound) {
+ qs <<"Beep 1" << "Beep 2" << "Beep 3" << "Warn1" << "Warn2" << "Cheep" << "Ratata" << "Tick" << "Siren" << "Ring" ;
+ qs << "SciFi" << "Robot" << "Chirp" << "Tada" << "Crickt" << "AlmClk" ;
+ b->addItems(qs);
+ b->setCurrentIndex(value);
+ }
+ else if (function==FuncPlayHaptic) {
+ qs << "0" << "1" << "2" << "3";
+ b->addItems(qs);
+ b->setCurrentIndex(value);
+ }
+ else if (function==FuncReset) {
+ qs.append( QObject::tr("Timer1"));
+ qs.append( QObject::tr("Timer2"));
+ qs.append( QObject::tr("All"));
+ qs.append( QObject::tr("Telemetry"));
+ int reCount = GetEepromInterface()->getCapability(RotaryEncoders);
+ if (reCount == 1) {
+ qs.append( QObject::tr("Rotary Encoder"));
+ }
+ else if (reCount == 2) {
+ qs.append( QObject::tr("REa"));
+ qs.append( QObject::tr("REb"));
+ }
+ b->addItems(qs);
+ b->setCurrentIndex(value);
+ }
+ else if (function==FuncVolume) {
+ populateSourceCB(b, RawSource(value), model, POPULATE_SOURCES|POPULATE_TRIMS);
+ }
+ else if (function==FuncPlayValue) {
+ populateSourceCB(b, RawSource(value), model, POPULATE_SOURCES|POPULATE_VIRTUAL_INPUTS|POPULATE_SWITCHES|POPULATE_GVARS|POPULATE_TRIMS|POPULATE_TELEMETRYEXT);
+ }
+ else if (function>=FuncAdjustGV1 && function<=FuncAdjustGVLast) {
+ switch (adjustmode) {
+ case 1:
+ populateSourceCB(b, RawSource(value), model, POPULATE_SOURCES|POPULATE_TRIMS|POPULATE_SWITCHES);
+ break;
+ case 2:
+ populateSourceCB(b, RawSource(value), model, POPULATE_GVARS);
+ break;
+ case 3:
+ b->clear();
+ b->addItem("-1", 0);
+ b->addItem("+1", 1);
+ b->setCurrentIndex(value);
+ break;
+ }
+ }
+ else {
+ b->hide();
+ }
+}
diff --git a/companion/src/modeledit/customfunctions.h b/companion/src/modeledit/customfunctions.h
index ccb73582e..bb109d9e1 100644
--- a/companion/src/modeledit/customfunctions.h
+++ b/companion/src/modeledit/customfunctions.h
@@ -55,6 +55,11 @@ class CustomFunctionsPanel : public ModelPanel
void fswCut();
private:
+ void populateFuncCB(QComboBox *b, unsigned int value);
+ void populateGVmodeCB(QComboBox *b, unsigned int value);
+ void populateFuncParamCB(QComboBox *b, const ModelData & model, uint function, unsigned int value, unsigned int adjustmode=0);
+ void populateFuncParamArmTCB(QComboBox *b, ModelData * g_model, char * value, QStringList & paramsList);
+
GeneralSettings & generalSettings;
bool phononLock;
QComboBox * fswtchSwtch[C9X_MAX_CUSTOM_FUNCTIONS];
diff --git a/companion/src/preferencesdialog.cpp b/companion/src/preferencesdialog.cpp
index a8c50452c..c69672349 100644
--- a/companion/src/preferencesdialog.cpp
+++ b/companion/src/preferencesdialog.cpp
@@ -40,7 +40,6 @@ preferencesDialog::preferencesDialog(QWidget *parent) :
connect(OptionCheckBox[i], SIGNAL(toggled(bool)), this, SLOT(firmwareOptionChanged(bool)));
}
- populateLocale();
initSettings();
connect(ui->downloadVerCB, SIGNAL(currentIndexChanged(int)), this, SLOT(baseFirmwareChanged()));
connect(this, SIGNAL(accepted()), this, SLOT(writeValues()));
@@ -254,11 +253,6 @@ void preferencesDialog::firmwareChanged()
void preferencesDialog::writeValues()
{
QSettings settings;
- if (ui->locale_QB->currentIndex() > 0)
- settings.setValue("locale", ui->locale_QB->itemData(ui->locale_QB->currentIndex()));
- else
- settings.remove("locale");
-
settings.setValue("default_channel_order", ui->channelorderCB->currentIndex());
settings.setValue("default_mode", ui->stickmodeCB->currentIndex());
settings.setValue("cpu_id", ui->CPU_ID_LE->text());
@@ -267,8 +261,6 @@ void preferencesDialog::writeValues()
settings.setValue("rename_firmware_files", ui->renameFirmware->isChecked());
settings.setValue("wizardEnable", ui->wizardEnable_ChkB->isChecked());
settings.setValue("show_splash", ui->showSplash->isChecked());
- settings.setValue("theme", ui->theme_CB->currentIndex());
- settings.setValue("icon_size", ui->iconSize_CB->currentIndex());
settings.setValue("simuSW", ui->simuSW->isChecked());
settings.setValue("history_size", ui->historySize->value());
settings.setValue("burnFirmware", ui->burnFirmware->isChecked());
@@ -387,9 +379,6 @@ void preferencesDialog::populateFirmwareOptions(const FirmwareInfo * firmware)
void preferencesDialog::initSettings()
{
QSettings settings;
- int i = ui->locale_QB->findData(settings.value("locale"));
- if (i < 0) i = 0;
- ui->locale_QB->setCurrentIndex(i);
ui->snapshotClipboardCKB->setChecked(settings.value("snapshot_to_clipboard", false).toBool());
if (ui->snapshotClipboardCKB->isChecked()) {
ui->snapshotPath->setDisabled(true);
@@ -408,8 +397,6 @@ void preferencesDialog::initSettings()
ui->renameFirmware->setChecked(settings.value("rename_firmware_files", false).toBool());
ui->wizardEnable_ChkB->setChecked(settings.value("wizardEnable", true).toBool());
ui->showSplash->setChecked(settings.value("show_splash", true).toBool());
- ui->theme_CB->setCurrentIndex(settings.value("theme", 1).toInt());
- ui->iconSize_CB->setCurrentIndex(settings.value("icon_size", 2).toInt());
ui->historySize->setValue(settings.value("history_size", 10).toInt());
ui->backLightColor->setCurrentIndex(settings.value("backLight", 0).toInt());
ui->startupCheck_fw->setChecked(settings.value("startup_check_fw", true).toBool());
@@ -501,25 +488,6 @@ void preferencesDialog::initSettings()
firmwareChanged();
}
-void preferencesDialog::populateLocale()
-{
- ui->ProfSave_PB->setEnabled(true);
- ui->locale_QB->clear();
- ui->locale_QB->addItem("System default language", "");
- ui->locale_QB->addItem("English", "en");
-
- QStringList strl = QApplication::arguments();
- if (!strl.count()) return;
-
- QDir directory = QDir(":/");
- QStringList files = directory.entryList(QStringList("companion_*.qm"), QDir::Files | QDir::NoSymLinks);
-
- foreach(QString file, files) {
- QLocale loc(file.mid(10, 2));
- ui->locale_QB->addItem(QLocale::languageToString(loc.language()), loc.name());
- }
-}
-
void preferencesDialog::on_fw_dnld_clicked()
{
MainWindow * mw = (MainWindow *)this->parent();
diff --git a/companion/src/preferencesdialog.ui b/companion/src/preferencesdialog.ui
index 31acbd438..3ec09eaf9 100644
--- a/companion/src/preferencesdialog.ui
+++ b/companion/src/preferencesdialog.ui
@@ -25,7 +25,7 @@
Preferences
-
+
QLayout::SetMinimumSize
@@ -35,7 +35,84 @@
4
- -
+
-
+
+
+ Mode selection:
+
+Mode 1:
+ Left stick: Elevator, Rudder
+ Right stick: Throttle, Aileron
+
+Mode 2:
+ Left stick: Throttle, Rudder
+ Right stick: Elevator, Aileron
+
+Mode 3:
+ Left stick: Elevator, Aileron
+ Right stick: Throttle, Rudder
+
+Mode 4:
+ Left stick: Throttle, Aileron
+ Right stick: Elevator, Rudder
+
+
+
+
+ 1
+
+
-
+
+ Mode 1 (RUD ELE THR AIL)
+
+
+ -
+
+ Mode 2 (RUD THR ELE AIL)
+
+
+ -
+
+ Mode 3 (AIL ELE THR RUD)
+
+
+ -
+
+ Mode 4 (AIL THR ELE RUD)
+
+
+
+
+ -
+
+
-
+
+ Blue
+
+
+ -
+
+ Green
+
+
+ -
+
+ Red
+
+
+ -
+
+ Orange
+
+
+ -
+
+ Yellow
+
+
+
+
+ -
-
@@ -60,7 +137,14 @@
- -
+
-
+
+
+ Automatic Backup Folder
+
+
+
+ -
@@ -73,7 +157,7 @@
- -
+
-
-
@@ -101,14 +185,7 @@
- -
-
-
- Automatic Backup Folder
-
-
-
- -
+
-
-
@@ -151,14 +228,14 @@
- -
+
-
Qt::Horizontal
- -
+
-
@@ -174,7 +251,7 @@
- -
+
-
-
@@ -229,43 +306,14 @@
- -
+
-
Remember switches in simulator
- -
-
-
-
-
- Blue
-
-
- -
-
- Green
-
-
- -
-
- Red
-
-
- -
-
- Orange
-
-
- -
-
- Yellow
-
-
-
-
- -
+
-
6
@@ -302,27 +350,21 @@
- -
+
-
Simulator capture folder
- -
-
-
-
- 0
- 0
-
-
-
- Language (requires restart)
+
-
+
+
+ Qt::Horizontal
- -
+
-
@@ -466,7 +508,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
@@ -479,7 +521,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
1
@@ -503,7 +545,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
-
@@ -527,7 +569,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
@@ -540,7 +582,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
-
@@ -583,7 +625,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
-
@@ -610,7 +652,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
-
@@ -658,7 +700,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
1
@@ -689,7 +731,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
@@ -702,7 +744,7 @@ This is used by the templated to determine which channel goes to what number out
- -
+
-
@@ -718,62 +760,14 @@ This is used by the templated to determine which channel goes to what number out
- -
-
-
- Mode selection:
-
-Mode 1:
- Left stick: Elevator, Rudder
- Right stick: Throttle, Aileron
-
-Mode 2:
- Left stick: Throttle, Rudder
- Right stick: Elevator, Aileron
-
-Mode 3:
- Left stick: Elevator, Aileron
- Right stick: Throttle, Rudder
-
-Mode 4:
- Left stick: Throttle, Aileron
- Right stick: Elevator, Rudder
-
-
-
-
- 1
-
-
-
-
- Mode 1 (RUD ELE THR AIL)
-
-
- -
-
- Mode 2 (RUD THR ELE AIL)
-
-
- -
-
- Mode 3 (AIL ELE THR RUD)
-
-
- -
-
- Mode 4 (AIL THR ELE RUD)
-
-
-
-
- -
+
-
Profile slot
- -
+
-
Qt::Vertical
@@ -789,7 +783,7 @@ Mode 4:
- -
+
-
-
@@ -816,7 +810,7 @@ Mode 4:
- -
+
-
QLayout::SetMaximumSize
@@ -907,7 +901,7 @@ May be different from firmware language
- -
+
-
-
@@ -947,7 +941,7 @@ May be different from firmware language
- -
+
-
@@ -960,14 +954,7 @@ May be different from firmware language
- -
-
-
- Qt::Horizontal
-
-
-
- -
+
-
QLayout::SetMaximumSize
@@ -1520,7 +1507,7 @@ May be different from firmware language
- -
+
-
@@ -1533,7 +1520,7 @@ May be different from firmware language
- -
+
-
@@ -1554,116 +1541,6 @@ May be different from firmware language
-
-
-
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
-
-
-
- Theme
-
-
-
- -
-
-
- Requires restart
-
-
-
-
- Classic
-
-
- -
-
- Monochrome
-
-
- -
-
- MonoWhite
-
-
- -
-
- MonoBlue
-
-
-
-
- -
-
-
- Qt::Horizontal
-
-
- QSizePolicy::Fixed
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
-
-
-
- Icon size
-
-
-
- -
-
-
- Requires restart
-
-
-
-
- Small
-
-
- -
-
- Normal
-
-
- -
-
- Big
-
-
- -
-
- Huge
-
-
-
-
-
-
- -
-
@@ -1710,7 +1587,7 @@ May be different from firmware language
- -
+
-
@@ -1723,14 +1600,14 @@ May be different from firmware language
- -
+
-
Google Earth Executable
- -
+
-
-
diff --git a/companion/src/printdialog.cpp b/companion/src/printdialog.cpp
index 45d149c97..5283dd614 100644
--- a/companion/src/printdialog.cpp
+++ b/companion/src/printdialog.cpp
@@ -54,7 +54,6 @@ printDialog::printDialog(QWidget *parent, GeneralSettings *gg, ModelData *gm, QS
printCurves();
printGvars();
printSwitches();
- printSafetySwitches();
printFSwitches();
printFrSky();
@@ -693,33 +692,6 @@ void printDialog::printGvars()
}
}
-void printDialog::printSafetySwitches()
-{
- int sc=0;
- QString str = "
";
- str.append(""+tr("Safety Switches")+" |
");
- str.append("");
- str.append(" | ");
- str.append(doTC(tr("Switch"), "", true));
- str.append(doTL(tr("Value"), "", true));
- str.append(" ");
- for(int i=0; igetCapability(Outputs); i++)
- {
- if (g_model->safetySw[i].swtch.type) {
- str.append("");
- str.append(doTC(tr("CH")+QString("%1").arg(i+1),"",true));
- str.append(doTC(g_model->safetySw[i].swtch.toString(),"green"));
- str.append(doTC(QString::number(g_model->safetySw[i].val),"green"));
- str.append(" ");
- sc++;
- }
- }
- str.append("
|
");
- str.append("
");
- if (sc!=0)
- te->append(str);
-}
-
void printDialog::printFSwitches()
{
int sc=0;
@@ -737,7 +709,7 @@ void printDialog::printFSwitches()
str.append("");
str.append(doTC(g_model->funcSw[i].swtch.toString(),"green"));
str.append(doTC(getFuncName(g_model->funcSw[i].func),"green"));
- str.append(doTC(FuncParam(g_model->funcSw[i].func,g_model->funcSw[i].param,g_model->funcSw[i].paramarm, g_model->funcSw[i].adjustMode),"green"));
+ str.append(doTC(g_model->funcSw[i].paramToString(),"green"));
int index=g_model->funcSw[i].func;
if (index==FuncPlaySound || index==FuncPlayHaptic || index==FuncPlayValue || index==FuncPlayPrompt || index==FuncPlayBoth || index==FuncBackgroundMusic) {
str.append(doTC(QString("%1").arg(g_model->funcSw[i].repeatParam),"green"));
diff --git a/companion/src/simulatordialog.ui b/companion/src/simulatordialog.ui
index de9a3a43a..06fc4655e 100644
--- a/companion/src/simulatordialog.ui
+++ b/companion/src/simulatordialog.ui
@@ -555,6 +555,7 @@ QPushButton:checked {
border-radius: 4px;
border-color: black;
padding: 2px;
+
}
QPushButton:checked {
@@ -1262,7 +1263,7 @@ QPushButton:checked {
-
- CS1
+ LS1
Qt::AlignCenter
@@ -1293,7 +1294,7 @@ QPushButton:checked {
-
- CS2
+ LS2
Qt::AlignCenter
@@ -1324,7 +1325,7 @@ QPushButton:checked {
-
- CS3
+ LS3
Qt::AlignCenter
@@ -1355,7 +1356,7 @@ QPushButton:checked {
-
- CS4
+ LS4
Qt::AlignCenter
@@ -1386,7 +1387,7 @@ QPushButton:checked {
-
- CS5
+ LS5
Qt::AlignCenter
@@ -1417,7 +1418,7 @@ QPushButton:checked {
-
- CS6
+ LS6
Qt::AlignCenter
@@ -1448,7 +1449,7 @@ QPushButton:checked {
-
- CS7
+ LS7
Qt::AlignCenter
@@ -1479,7 +1480,7 @@ QPushButton:checked {
-
- CS8
+ LS8
Qt::AlignCenter
@@ -1510,7 +1511,7 @@ QPushButton:checked {
-
- CS9
+ LS9
Qt::AlignCenter
@@ -1541,7 +1542,7 @@ QPushButton:checked {
-
- CSA
+ LSA
Qt::AlignCenter
@@ -1572,7 +1573,7 @@ QPushButton:checked {
-
- CSB
+ LSB
Qt::AlignCenter
@@ -1603,7 +1604,7 @@ QPushButton:checked {
-
- CSC
+ LSC
Qt::AlignCenter
@@ -1634,7 +1635,7 @@ QPushButton:checked {
-
- CSD
+ LSD
Qt::AlignCenter
@@ -1665,7 +1666,7 @@ QPushButton:checked {
-
- CSE
+ LSE
Qt::AlignCenter
@@ -1696,7 +1697,7 @@ QPushButton:checked {
-
- CSF
+ LSF
Qt::AlignCenter
@@ -1727,7 +1728,7 @@ QPushButton:checked {
-
- CSG
+ LSG
Qt::AlignCenter
@@ -1758,7 +1759,7 @@ QPushButton:checked {
-
- CSH
+ LSH
Qt::AlignCenter
@@ -1789,7 +1790,7 @@ QPushButton:checked {
-
- CSI
+ LSI
Qt::AlignCenter
@@ -1820,7 +1821,7 @@ QPushButton:checked {
-
- CSJ
+ LSJ
Qt::AlignCenter
@@ -1851,7 +1852,7 @@ QPushButton:checked {
-
- CSK
+ LSK
Qt::AlignCenter
@@ -1882,7 +1883,7 @@ QPushButton:checked {
-
- CSL
+ LSL
Qt::AlignCenter
@@ -1913,7 +1914,7 @@ QPushButton:checked {
-
- CSM
+ LSM
Qt::AlignCenter
@@ -1944,7 +1945,7 @@ QPushButton:checked {
-
- CSN
+ LSN
Qt::AlignCenter
@@ -1975,7 +1976,7 @@ QPushButton:checked {
-
- CSO
+ LSO
Qt::AlignCenter
@@ -2006,7 +2007,7 @@ QPushButton:checked {
-
- CSP
+ LSP
Qt::AlignCenter
@@ -2037,7 +2038,7 @@ QPushButton:checked {
-
- CSQ
+ LSQ
Qt::AlignCenter
@@ -2068,7 +2069,7 @@ QPushButton:checked {
-
- CSR
+ LSR
Qt::AlignCenter
@@ -2099,7 +2100,7 @@ QPushButton:checked {
-
- CSS
+ LSS
Qt::AlignCenter
@@ -2130,7 +2131,7 @@ QPushButton:checked {
-
- CST
+ LST
Qt::AlignCenter
@@ -2161,7 +2162,7 @@ QPushButton:checked {
-
- CSU
+ LSU
Qt::AlignCenter
@@ -2192,7 +2193,7 @@ QPushButton:checked {
-
- CSV
+ LSV
Qt::AlignCenter
@@ -2223,7 +2224,7 @@ QPushButton:checked {
-
- CSW
+ LSW
Qt::AlignCenter
@@ -3052,6 +3053,7 @@ border-radius: 4px;
0
+
50
diff --git a/companion/src/translations/companion_cs.ts b/companion/src/translations/companion_cs.ts
index d656507aa..f932aaea4 100644
--- a/companion/src/translations/companion_cs.ts
+++ b/companion/src/translations/companion_cs.ts
@@ -1,10 +1,379 @@
+
+ Channels
+
+
+ Name
+ Název
+
+
+
+ Offset
+
+
+
+
+ Min
+
+
+
+
+ Max
+
+
+
+
+ Invert
+ Invertovat
+
+
+
+ Center
+ Střed
+
+
+
+ Sym
+ Symetrický
+
+
+
+ Channel %1
+
+
+
+
+ ---
+
+
+
+
+ INV
+
+
+
+
+ CurveGroup
+
+
+ Diff
+ Dif
+
+
+
+ Expo
+ Expo
+
+
+
+ Func
+
+
+
+
+ Curve
+ Křivka
+
+
+
+ Curves
+
+
+ Form
+
+
+
+
+ Standard
+ Běžný
+
+
+
+ Custom
+ Vlastní
+
+
+
+ Lines
+
+
+
+
+ Smooth
+
+
+
+
+ Curve type
+ Typ křivky
+
+
+
+ Curve name
+ Název křivky
+
+
+
+ Curve %1
+
+
+
+
+ %1 points
+
+
+
+
+ Are you sure you want to reset curve %1 ?
+
+
+
+
+ Editing curve %1
+ Upravit křivku k%1
+
+
+
+ Not enough free points in EEPROM to store the curve.
+
+
+
+
+ CustomFunctionsPanel
+
+
+ Switch
+ Spínač
+
+
+
+ Action
+
+
+
+
+ Parameters
+
+
+
+
+ Enable
+
+
+
+
+ ON
+ ZAPNUTO
+
+
+
+ Error
+ Chyba
+
+
+
+ Unable to find sound file %1!
+ Nemohu nalézt zvukový soubor %1!
+
+
+
+ &Delete
+ &Odstranit
+
+
+
+ Delete
+
+
+
+
+ &Copy
+ &Kopírovat
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ &Vyjmout
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ &Vložit
+
+
+
+ Ctrl+V
+
+
+
+
+ CustomSwitchesPanel
+
+
+ Condition
+ Podmínka
+
+
+
+ V1
+
+
+
+
+ V2
+
+
+
+
+ AND
+
+
+
+
+ Duration
+ Trvání
+
+
+
+ Delay
+ Zpoždění
+
+
+
+
+ LS%1
+
+
+
+
+ &Delete
+ &Odstranit
+
+
+
+ Delete
+
+
+
+
+ &Copy
+ &Kopírovat
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ &Vyjmout
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ &Vložit
+
+
+
+ Ctrl+V
+
+
+
+
+ Dialog
+
+
+ Dialog
+
+
+
+
+ Curve type
+ Typ křivky
+
+
+
+ Coefficient
+ Koeficient
+
+
+
+ Both
+ Obě
+
+
+
+ x>0
+
+
+
+
+ x<0
+
+
+
+
+ Y at X=0
+ Y na X=0
+
+
+
+ Side
+ Strana
+
+
+
+ Y at X=-100
+ Y na X=-100
+
+
+
+ Y at X=100
+ Y na X=100
+
+
+
+ Linear
+ Lineární
+
+
+
+ Single Expo
+ Expo
+
+
+
+ Symmetrical f(x)=-f(-x)
+ Symetrická f(x)=-f(-x)
+
+
+
+ Symmetrical f(x)=f(-x)
+ Symetrická f(x)=f(-x)
+
+
ExpoDialog
-
+
Weight
Váha
@@ -25,30 +394,22 @@ p, li { white-space: pre-wrap; }
Strana křivky
-
+
Curve
Křivka
-
Switch used by the expo.
If blank then the expo is considered to be "ON" all the time.
- Spínač aktivující DR/Expo. Pokud je nepoužit, je vždy "ZAPNUTO".
+ Spínač aktivující DR/Expo. Pokud je nepoužit, je vždy "ZAPNUTO".
The value of the weight
Hodnota váhy funkce
-
-
Phase used by the expo.
- Režim ve které je DR/Expo aktivní.
-
-
-
- Expo
-
+ Režim ve které je DR/Expo aktivní.
Phases
@@ -56,74 +417,153 @@ If blank then the expo is considered to be "ON" all the time.
Fáze
-
-
-
+
+ The source for the mixer
+ Zdroj pro mix
+
+
+
+ Input name
+
+
+
+
+
GV
GP
-
+
+ Phase used by the input.
+
+
+
+
Flight modes
Letové režimy
-
+
0
-
+
1
-
+
2
-
+
3
-
+
4
-
+
5
-
+
6
-
+
7
-
+
8
-
+
Switch
Spínač
-
- Curve/Exponential
- Křivka/Expo
+
+ Switch used by the input.
+If blank then the input is considered to be "ON" all the time.
+
-
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Delay ans Slow</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These values control the speed and delay of the output of the mix. </p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Delay is not zero the actuation of the mix will be delayed by the specified amount of seconds.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Slow is not zero then the speed of the mix will be set by the value specified -> the value states the number of seconds it takes to transit from -100 to 100.</p></body></html>
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Zpoždění a zpomalení</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Tyto volby nastavují rychlost a zpoždění výstupu mixu. </p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Pokud je nastaveno zpoždění, ovládání mixu bude zpoždéno o uvedený počet sekund.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Pokud je nastaveno zpomalení, nastavená hodnota udává rychlost mixu -> hodnota udává počet sekund které trvá změna hodnoty z -100 na 100.</p></body></html>
+
+
+
+ Scale
+ Rozsah
+
+
+
+ Include Trim
+ Použít trim
+
+
+
+ No
+
+
+
+
+ Yes
+ Ano
+
+
+
+ The curve used by the input
+
+
+
+
+ Source
+ Zdroj
+
+
+
+ Line name
+
+
+
+ Curve/Exponential
+ Křivka/Expo
+
+
+
Stick Side
Strana páky
@@ -132,34 +572,148 @@ If blank then the expo is considered to be "ON" all the time.
Křivka použitá mixem
-
+
NEG
x<0(Negativní)
-
+
POS
x>0(Pozitivní)
-
+
ALL
Obě
-
The curve used by the expo
- Křivka použitá pro expo
+ Křivka použitá pro expo
-
Name
- Název
+ Název
-
- DEST -> %1
-
+
+ Edit %1
+
+
+
+
+ Rud
+ Směrovka
+
+
+
+ Ele
+ Výškovka
+
+
+
+ Thr
+
+
+
+
+ Ail
+ Křidélka
+
+
+
+ FlightMode
+
+
+ Form
+
+
+
+
+ Fade In
+ Přechod při aktivaci
+
+
+
+ Fade Out
+ Přechod při deaktivaci
+
+
+
+ Name
+ Název
+
+
+
+ Switch
+ Spínač
+
+
+
+ trim1
+
+
+
+
+ trim2
+
+
+
+
+ trim4
+
+
+
+
+ trim3
+
+
+
+
+ Rud
+ Směrovka
+
+
+
+ Ele
+ Výškovka
+
+
+
+ Thr
+
+
+
+
+ Ail
+ Křidélka
+
+
+
+ Rotary Encoder %1
+
+
+
+
+ GVAR%1
+
+
+
+
+ FlightModes
+
+
+ Flight Mode %1
+
+
+
+
+ (%1)
+
+
+
+
+ (default)
+
@@ -192,27 +746,27 @@ Tyto volby jsou platné pro všechny modely v jedné EEPROM.
Nastevní
-
+
Timer Beeps
Upozornění stopek
-
+
Contrast
Kontrast
-
+
Channel Order (For Templates)
Pořadí kanálů (pro šablony)
-
+
Owner Name
Jméno pilota
-
+
Mode selection:
Mode 1:
@@ -253,45 +807,45 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
Mód1 (Směr.Výšk.Plyn.Křid)
-
+
Mode 2 (RUD THR ELE AIL)
Mód2 (Směr.Plyn.Výšk.Křid)
-
+
Mode 3 (AIL ELE THR RUD)
Mód3 (Křid.Výšk.Plyn.Směr)
-
+
Mode 4 (AIL THR ELE RUD)
Mód4 (Křid.Plyn.Výšk.Směr)
-
-
+
+
Quiet
Tichý
-
+
Only Alarms
Jen alarm
-
-
+
+
No Keys
Bez kláves
-
-
+
+
All
Vše
@@ -301,47 +855,47 @@ Mode 4:
-
+
4800 Baud
-
+
9600 Baud
-
+
14400 Baud
-
+
19200 Baud
-
+
38400 Baud
-
+
57600 Baud
-
+
76800 Baud
-
+
115200 Baud
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -350,22 +904,22 @@ p, li { white-space: pre-wrap; }
-
+
Every Minute
Každou celou minutu
-
+
Beeps at 30, 15, 10, and down from5 seconds
Upozorní při 30s, 15s, 10s, a pod 5 sekundami zbývajícího času stopek
-
+
Count Down to Zero
Odpočet do nuly
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -374,18 +928,18 @@ p, li { white-space: pre-wrap; }
-
+
Flash on beep
Blikat podsvětlením
-
+
If this value is not 0, any keypress will turn on the backlight and turn it off after the specified number of seconds.
Pokud tato hodnota není nula, každé stisknutí klávesy zapne podsvétlení a vypne ho až po uplynutí nastaveného počtu sekund.
-
-
+
+
sec
s
@@ -394,32 +948,33 @@ p, li { white-space: pre-wrap; }
Auto. vypnutí podsvětlení po
-
+
Input Filter
Filtrování vstupů
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Obrácení funkce plynu.
+ Obrácení funkce plynu.
Pokud je zaškrtnuto,funkce plynu bude opačná. Poloha vypnuto bude nahoře.
Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
Beeper volume
0 - Quiet. No beeps at all.
@@ -436,17 +991,16 @@ Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
4 - Extra Hlasitý.
-
+
Alarms Only
Jen alarmy
-
-
-
-
-
-
+
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -461,32 +1015,29 @@ p, li { white-space: pre-wrap; }
-
+
Beeper Mode
Mód zvuku
-
+
-
-
-
+
+
Off
Vypnuto
-
Switches Up
- Spínače nahoru
+ Spínače nahoru
-
Switches Down
- Spínače dolů
+ Spínače dolů
-
-
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -496,42 +1047,42 @@ p, li { white-space: pre-wrap; }
-
+
Memory Startup Warning
Při zapnutí upozorňit na nízký stav paměti
-
-
+
+
X-Short
Extra krátký
-
-
+
+
Short
Krátký
-
-
+
+
Normal
Normální
-
-
+
+
Long
Dlouhý
-
-
+
+
X-Long
Extra dlouhý
-
+
Battery warning voltage.
This is the threashhold where the battery warning sounds.
@@ -540,165 +1091,164 @@ Acceptable values are 5v..10v
Použitelné hodnoty jsou 5v..10v
-
+
Battery Warning
Alarm baterie
-
+
THR
-
+
RUD
-
+
ELE
-
+
AIL
-
+
GEA
-
+
ID0
-
+
ID1
-
+
ID2
-
+
Sound Mode
Mód zvuku
-
Reverse Throttle Operation
- Reverzovat funkci plynu
+ Reverzovat funkci plynu
-
+
Pot Scrolling Enable
Pohyb v menu potenciometry
-
+
Battery Calibration
Kalibrace měření baterie
-
+
If not zero will sound beeps if the transmitter has been left without inputs for the specified number of minutes.
Pokud není nastaveno na nulu, bude zapnuto zvukové upozornění, že jste rádio nechali bez povšimnutí nastavený počet minut.
-
+
min
-
-
+
+
Show splash screen on startup
Zobrazit úvodní logo při zapnutí vysílčky
-
+
Battery calibration:
This value will be added to the measured battery voltage. Use this value to calibrate the meter with an external meter.
Kalibrace baterie:
Tato hodnota bude přidána k měřenému napětí baterie. Použijte tuto položku ke kalibraci pomocí externího voltmetru.
-
+
Single
Jednoduché
-
+
Oversample
Převzorkování
-
+
Filter
Filtovaná hodnota
-
+
Show Splash Screen on Startup
Zobrazit úvodní logo
-
+
Inactivity Timer
Časovač nečinnosti
-
+
Beeper
Bzučák
-
+
Speaker
Reproduktor
-
+
BeeperVoice
Bzučák+Hlas
-
+
SpeakerVoice
Repro+Hlas
-
+
Beeper Length
Délka zvuku
-
+
GPS Coordinates
Souřadnice GPS
-
+
hh° (N/S) mm' ss''.dd
-
+
NMEA
-
+
Timeshift from UTC
Časový posun od UTC
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -708,17 +1258,17 @@ Toto je použito šablonami k určení
který kanál patří ke kterému výstupu.
-
+
Speaker Pitch (spkr only)
Tón zvuku (pouze spkr)
-
+
Haptic Mode
Mód vibrací
-
+
Stick Mode
Výchozí mód vysílačky
@@ -727,22 +1277,20 @@ který kanál patří ke kterému výstupu.
Spínač podsvětlení
-
Throttle Startup Warning
- Kontrola výchozí polohy plynu
+ Kontrola výchozí polohy plynu
-
+
Show Owner Name on Splash
Jméno pilota v úvodním logu
-
Switch Startup Warning
- Kontrola výchozí polohy spínačů
+ Kontrola výchozí polohy spínačů
-
+
Telemetry NO DATA Alarm
Alarm telemetrie NO DATA
@@ -751,129 +1299,129 @@ který kanál patří ke kterému výstupu.
Podsvětlení při pohybu kniplu
-
+
LCD Display Type
Typ LCD zobrazovače
-
+
Standard
Běžný
-
+
Optrex
-
+
This is the switch selectrion for turning on the backlight (if installed).
Toto je volba spínače který zapne podsvětlení (pokud je nainstalováno).
-
+
Speaker Volume
Hlasitost reproduktoru
-
+
Haptic Length
Délka vibrací
-
+
Haptic Strength
Síla vibrací
-
+
BackLight Brightness
Jas podsvětlení
-
+
Alarm Warning
Upozornění na vypnutý alarm
-
+
BackLight Auto OFF after
Auto. vypnutí podsvětlení po
-
+
Bandgap Measuring Enable
Povolit měření s Bandgap
-
+
RotEnc Navigation
Navigace otočným enkodérem
-
+
BackLight Switch
Spínač podsvětlení
-
+
BackLight On Stick Move
Podsvětlení při pohybu kniplu
-
+
BackLight Invert
Invertovat funkci podsvětlení
-
+
Country Code
Kód země
-
+
Europe
Evropa
-
+
Japan
Japonsko
-
+
America
Amerika
-
+
Metric
Metrické
-
+
Imperial
Imperiální
-
+
Measurement Units
Měrné jednotky
-
+
FrSky Internal Alarm
Integrovaný alarm Frsky
-
+
StickScroll
StickScroll-ovládání menu pákou
-
+
PPMSim
@@ -883,113 +1431,113 @@ který kanál patří ke kterému výstupu.
Jazyk hlasových zpráv
-
+
CrossTrim
CrossTrim -použít trimy druhé páky
-
+
Beep volume
Upozornění
-
+
Wav volume
Wav soubor
-
+
Vario volume
Vario
-
+
Background volume
Zvuk v pozadí
-
+
FAI Mode
FAI mód
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen. This function cannot be disabled by the radio.
FAI je soutéžní mód (www.fai.org), zablokuje vario, zobrazení telemetrie a funkce hlasového hlášení. Tuto funkci nelze vypnout v menu rádia.
-
+
Readonly Unlock
-
+
SC
-
+
SE
-
+
SA
-
+
SF
-
+
SH
-
+
SD
-
+
SB
-
+
SG
-
+
Trainer
Trenér
-
+
Mode
Mód
-
+
Input
Vstup
-
+
Weight
Váha
-
+
Switch
Spínač
-
-
+
+
PPM 1
@@ -1002,200 +1550,222 @@ který kanál patří ke kterému výstupu.
:= (nahradit)
+
-
-
-
+
+
chn1
kanál 1
+
-
-
-
+
+
chn2
kanál 2
+
-
-
-
+
+
chn3
kanál 3
+
-
-
-
+
+
chn4
kanál 4
-
-
+
+
PPM 2
-
-
+
+
PPM 3
-
-
+
+
PPM 4
-
+
Telemetry
Telemetrie
-
+
RSSI Alarm 1
-
-
+
+
----
-
-
+
+
Yellow
Žlutá
-
-
+
+
Orange
Oranžová
-
-
+
+
Red
Červená
-
+
RSSI Alarm 2
-
+
NO DATA Alarm
-
+
Calibration
Kalibrace
-
+
POT 4
POTENCIOMETR 4
-
+
STICK 3
PÁKA 3
-
-
+
+
Negative span
Negativní poloha
-
-
+
+
Mid value
Hodnota střední polohy
-
-
+
+
Positive span
Pozitivní poloha
-
+
STICK 1
PÁKA 1
-
+
STICK 2
PÁKA 2
-
+
STICK 4
PÁKA 4
-
+
+
+ Pot (normal)
+
+
+
+
+
+ Multipos Switch
+
+
+
+
+ S1 Type
+
+
+
+
+ S2 Type
+
+
+
+
POT 1
POTENCIOMETR 1
-
+
POT 2
POTENCIOMETR 2
-
+
POT 3
POTENCIOMETR 3
+
-
-
-
+
+
+= (Sum)
+= (Sečíst)
+
-
-
-
+
+
:= (Replace)
:= (Nahradit)
-
+
Battery
Baterie
-
+
v
-
+
PPM Multiplier
PPM Násobič
-
+
Current
Proud
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen.
This function cannot be disabled by the radio.
Are you sure ?
@@ -1205,32 +1775,242 @@ Tuto funkci nelze vypnout v menu rádia.
Opravdu to takto chcete ?
-
-
+
+
Warning
Pozor
-
+
Wrong data in profile, radio calibration was not retrieved
Špatná data v profilu, není možné získat parametry kalibrace
-
+
Wrong data in profile, hw related parameters were not retrieved
Špatná data v profilu, není možné získat HW parametry
-
+
Do you want to store calibration in %1 profile<br>overwriting existing calibration?
Chcete uložit kalibraci do profilu %1<br>Přepsat existující kalibraci?
-
+
Calibration and HW parameters saved.
Kalibrace a HW parametry byly uloženy.
+
+ Heli
+
+
+ Form
+
+
+
+
+ Invert Elevator
+ Invertovat výškovku
+
+
+
+ Invert Aileron
+ Invertovat křidélka
+
+
+
+ Invert Collective
+ Invertovat kolektiv
+
+
+
+ Invert
+ Invertovat
+
+
+
+ Off
+
+
+
+
+ 120
+ CH120
+
+
+
+ 120X
+ CH120X
+
+
+
+ 140
+ CH140
+
+
+
+ 90
+ CH90
+
+
+
+ Collective
+ Kolektiv
+
+
+
+ Swash Type
+ Typ cykliky
+
+
+
+ Swash Ring
+ Cyklika
+
+
+
+ InputsPanel
+
+
+
+ Move Up
+ Posunout nahoru
+
+
+
+
+ Ctrl+Up
+
+
+
+
+
+ Move Down
+ Posunout dolů
+
+
+
+
+ Ctrl+Down
+
+
+
+
+ Clear All Settings
+
+
+
+
+ Source(%1)
+
+
+
+
+ No Trim
+ Žádný trim
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ Not enough available inputs!
+
+
+
+
+ Delete Selected Inputs?
+
+
+
+
+ &Add
+ &Přidat
+
+
+
+ Ctrl+A
+
+
+
+
+ &Edit
+
+
+
+
+ Enter
+
+
+
+
+ &Delete
+ &Odstranit
+
+
+
+ Delete
+
+
+
+
+ &Copy
+ &Kopírovat
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ &Vyjmout
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ &Vložit
+
+
+
+ Ctrl+V
+
+
+
+
+ Du&plicate
+ &Duplikovat
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Inputs?
+
+
+
+
+ Really clear all the inputs?
+
+
+
MainWindow
@@ -1238,29 +2018,29 @@ Opravdu to takto chcete ?
companion9x - EEPROM Editor - firmware %1
-
-
-
-
+
+
+
+
File loaded
Soubor byl načten
-
+
Display previous warning again at startup ?
Chcete zobrazit předchozí upozornění i příště ?
-
+
Checking for updates
Kontroluji aktualizace
-
-
-
-
-
+
+
+
+
+
Unable to check for updates.
Nelze ověřit aktualizace.
@@ -1269,21 +2049,21 @@ Opravdu to takto chcete ?
Je dostupná nová verze companion9x (verze %1)<br>Chcete ji stáhnout nyní?
-
-
-
-
-
+
+
+
+
+
Save As
Uložit jako
-
+
Executable (*.exe)
Spustitelný (*.exe)
-
+
New release available
Je dostupné nové vydání
@@ -1292,39 +2072,39 @@ Opravdu to takto chcete ?
Je dostupné nové vydání companion9x, prosím zkontrolujte repozitář
-
-
+
+
No updates available at this time.
žádné aktualizace nejsou nyní dostupné.
-
+
Would you like to launch the installer?
Chcete spustit instalátor?
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Chyba
-
-
-
-
-
+
+
+
+
+
Error opening file %1:
%2.
Chyba při otevírání souboru %1:
@@ -1335,7 +2115,7 @@ Opravdu to takto chcete ?
S těmito volbami se Firmware nevejde do paměti FLASH rádia. Je třeba některé funkce vypnout. Vhodné je zejména vypnout podporu loga zaškrtnutím "nosplash", to ušetří značné místo
-
+
Compilation server termporary failure, try later
Server companion je dočasně nedostupný, zkuste to později
@@ -1344,7 +2124,7 @@ Opravdu to takto chcete ?
companion9x - EEPROM Editor - firmware %1 - profil %2
-
+
Display previous message again at startup ?
Chcete zobrazit předchozí zprávu i příště ?
@@ -1353,13 +2133,13 @@ Opravdu to takto chcete ?
Firmware s těmito vybranými součástmi, se již nevejde do paměti FLASH rádia
-
+
Compilation server temporary failure, try later
Dočasná chyba kompilačního serveru, zkuste to prosím později znovu.
-
-
+
+
Compilation server too busy, try later
Server companion je zaneprázdněn, zkuste to později
@@ -1368,8 +2148,8 @@ Opravdu to takto chcete ?
Kompilační server vyžaduje registraci. Více najdete na webu opentx.
-
-
+
+
Unknown server failure, try later
Neznámá chyba serveru, zkuste to později
@@ -1378,7 +2158,7 @@ Opravdu to takto chcete ?
Chcete nyní zapsat firmware do rádia ?
-
+
Firmware %1 does not seem to have ever been downloaded.
Version %2 is available.
Do you want to download it now ?
@@ -1387,31 +2167,31 @@ Verze %2 je dostupná.
Chcete ho nyní stáhnout ?
-
-
+
+
Yes
Ano
-
-
+
+
No
Ne
-
-
+
+
Release Notes
Poznámky k vydání
-
-
+
+
Do you want to download release %1 now ?
Chcete nyní stáhnout vydání %1 ?
-
+
A new version of %1 firmware is available (current %2 - newer %3).
Do you want to download it now ?
Nová verze firmware %1 je dostupná.
@@ -1419,57 +2199,57 @@ Do you want to download it now ?
Chcete ji stáhnout nyní ?
-
+
Ignore this version (r%1)?
Ignorovat tuto verzi (r%1)?
-
+
Release notes contain very important informations. Do you want to see them now ?
Poznámky k vydání mohou obsahovat důležité informace. Chcete si je přečíst nyní ?
-
+
Open
Otevřít
-
-
+
+
File saved
Soubor byl uložen
-
+
Firmware updates
Aktualizace firmwaru
-
+
Current firmware does not provide release notes informations.
K tomuto firmwaru nejsou poznámky k vydání.
-
+
Cannot write file %1:
%2.
Nelze zapsat soubor %1:
%2.
-
-
-
-
-
+
+
+
+
+
Taranis radio not found
Radio Taranis nenalezeno
-
-
-
-
+
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
Nebylo možné identifikovat rádio ve vašem systému, zkontrolujte zda je eeprom disk připojen.
@@ -1490,16 +2270,16 @@ nebyl rozpoznán jako platná EEPROM
Chcete ji přesto naprogramovat?
-
-
-
+
+
+
Backup is impossible
Není možné zálohovat
-
-
-
+
+
+
The backup dir set in preferences does not exist
Složka pro zálohování zvolená v předvolbách neexistuje
@@ -1512,8 +2292,8 @@ Chcete ji přesto naprogramovat?
Nelze ověřit kompatibilitu EEprom! Mám přesto pokračovat?
-
-
+
+
Warning
Varování
@@ -1534,7 +2314,7 @@ Chcete ji přesto naprogramovat?
Zapsat do paměti FLASH rádia
-
+
Conversion failed
Porovnání selhalo
@@ -1547,7 +2327,7 @@ Chcete ji přesto naprogramovat?
Zapsat EEPROM do rádia
-
+
Restore failed
Zápis selhal
@@ -1564,7 +2344,7 @@ Chcete ji přesto naprogramovat?
Nemohu naprogramovat rádio, původní EEPROM najdete zde: %1
-
+
Backup failed
Zálohování selhalo
@@ -1589,66 +2369,83 @@ Chcete ji přesto naprogramovat?
companion9x - Editor nastavení rádia a modelů - %1
-
+
Do you want to write the firmware to the transmitter now ?
Chcete zapsat firmware do rádia nyní ?
-
-
-
-
+
+
+
+
Read Models and Settings From Tx
Načíst modely a nastavení z rádia
-
+
Firmware does not longer fit in the Tx, due to selected firmware options
Firmware s těmito vybranými součástmi, se již nevejde do rádia
-
-
-
+
+
+
Companion - Models and Settings Editor - %1 - profile %2
-
-
-
-
+
+
+
+
Companion - Models and Settings Editor - %1
-
+
A new version of Companion is available (version %1)<br>Would you like to download it?
-
- A new release of Companion is available please check the repository
-
-
-
-
-
+
+
Compilation server requires registration, please check OpenTX web site
-
+
Firmware does not fit in the Tx, due to selected firmware options
Firmware s těmito vybranými součástmi, se již nevejde do rádia
-
+
+ The selected language will be used the next time you start Companion.
+
+
+
+
+
+
+ OK
+
+
+
+
+ The new theme will be loaded the next time you start Companion.
+
+
+
+
+ The icon size will be used the next time you start Companion.
+
+
+
+
Write Models and settings from %1 to the Tx?
Zapsat modely a nastavení z %1 do rádia?
-
+
The file %1
has not been recognized as a valid Models and Settings file
Write anyway ?
@@ -1657,203 +2454,198 @@ neobsahuje platná data modelů a nastavení
Chcete ho přesto zapsat ?
-
-
-
-
-
-
+
+
+
+
+
+
Backup Models and Settings From Tx
Zálohovat modely a nastavení z rádia
-
+
Cannot check Models and Settings compatibility! Continue anyway?
Nelze ověřit kompatibilitu dat modelů a nastavení! Chcete přesto pokračovat?
-
+
The transmitter firmware belongs to another product family, check file and preferences!
Firmware patří do jiné produktové rodiny, zkontrolujte nastavení předvoleb!
-
+
The transmitter firmware is outdated, please upgrade!
Firmware rádia je zastaralý, aktualizujte ho prosím!
-
+
Write Models and Settings To Tx
Zapsat modely a nastavení do rádia
-
-
+
+
Write Firmware To Tx
Zapsat firmware do rádia
-
+
Cannot convert Models and Settings for use with this firmware, original data will be used
Nemohu konvertovat modely a nastavení pro použití s tímto firmwarem, budou použita původní data
-
+
Restore Models and Settings To Tx
Obnovit modely a nastavení do rádia
-
+
Could not restore Models and Settings to TX. The models and settings data file can be found at: %1
Nelze obnovit modely a nastavení do rádia. Soubor s modely a nastavením najdete v: %1
-
+
Firmware write failed
Zápis firmware selhal
-
+
Could not write firmware to to transmitter. The models and settings data file can be found at: %1
Nelze zapsat firmware do rádio. Data modelů a nastavení najdete v: %1
-
+
Cannot backup existing Models and Settings from TX. Firmware write process aborted
Nemohu zálohovat stávající modely a nastavení z rádia. Zápis firmware byl přerušen
-
+
Save transmitter Models and Settings to File
Uložit modely a nastavení do souboru
-
+
Impossible to identify the radio on your system, please verify that the eeprom disk is connected.
Nebylo možné identifikovat rádio ve vašem systému, zkontrolujte zda je eeprom disk připojen.
-
+
Read Tx Firmware to File
Načíst firmware z rádia a uložit do souboru
-
+
Copyright
-
+
+ Configure transmitter start screen...
+
+
+
Version %1 (revision %2), %3
- Verze %1 (revize %2), %3
+ Verze %1 (revize %2), %3
The companion9x project was originally forked from eePe
Projekt companion9x vznikl oddělením z eePe
-
If you've found this program useful, please support by
- Pokud vám byl tento program užitečný, podpořte jej
+ Pokud vám byl tento program užitečný, podpořte jej
-
donating
- darem
+ darem
About companion9x
O aplikaci Companion9x
-
-
-
+
+
&%1 %2
-
- %1 %2
-
-
-
-
+
&New
&Nový
-
+
Create a new file
Vytvořit nový soubor
-
+
&Open...
&Otevřít...
-
+
Open an existing file
Otevřít existující soubor
-
+
&loadBackup...
&Načíst zálohu...
-
+
Load backup from file
Načíst zálohu ze souboru
-
+
&Save
&Uložit
-
+
Save the document to disk
Uložit dokument na disk
-
+
Save &As...
Uložit j&ako...
-
+
Save the document under a new name
Uložit dokument s novým jménem
-
+
Lo&gs
Lo&gy
-
+
Ctrl+G
-
+
Open log file
Otevřít soubor s logy
-
&Preferences...
- &Předvolby...
+ &Předvolby...
-
+
Edit general preferences
Nastavení obecných předvoleb
-
+
&Check for updates...
&Zkontrolovat aktualizace...
@@ -1862,7 +2654,7 @@ Chcete ho přesto zapsat ?
Zkontolovat dostupnost nové verze companion9x/er9x
-
+
Contributors &List...
&Seznam přispěvatelů...
@@ -1871,7 +2663,7 @@ Chcete ho přesto zapsat ?
Zobrazit seznam přispěvatelů companion9x
-
+
ChangeLog...
Změny...
@@ -1880,183 +2672,402 @@ Chcete ho přesto zapsat ?
Zobrazit změny ve verzích companion9x
-
- The Companion project was originally forked from eePe
+
+ A new release of Companion is available please check the OpenTX website!
-
+
+ OpenTX Home Page: <a href='%1'>%1</a>
+
+
+
+
+ The OpenTX Companion project was originally forked from <a href='%2'>eePe</a>
+
+
+
+
+ If you've found this program useful, please support by <a href='%1'>donating</a>
+
+
+
+
+ Version %1, %3
+
+
+
+
About Companion
-
+
+ &General Preferences...
+
+
+
+
Check for new version of Companion
-
+
Show Companion contributors list
-
+
Show Companion changelog
-
+
Firmware ChangeLog...
Změny firmware...
-
+
Show firmware changelog
Zobrazit změny ve firmware
-
+
Compare...
Porovnat...
-
+
Compare models
Porovnat modely
-
Customize your &TX...
- &Přizpůsobení loga...
+ &Přizpůsobení loga...
-
+
Customize the splash screen of your TX
Přizpůsobení úvodního logo vašeho rádia
-
+
E&xit
U&končit
-
+
Exit the application
Ukončit aplikaci companion9x
-
+
Cu&t
&Vyjmout
-
+
Cut the current selection's contents to the clipboard
Vyjmout aktuální výběr a uložit do schránky
-
+
&Copy
&Kopírovat
-
+
Copy the current selection's contents to the clipboard
Kopírovat aktuální výběr do schránky
-
+
&Paste
&Vložit
-
+
Paste the clipboard's contents into the current selection
Vložit obsah schránky na aktuální pozici
-
+
&Write Models and Settings To Tx
&Zapsat modely a nastavení do rádia
-
+
Write Models and Settings to transmitter
Zapsat modely a nastavení do rádia
-
+
&Read Models and Settings From Tx
&Načíst modely a nastavení z rádia
-
+
Read Models and Settings from transmitter
Načíst modely a nastavení z rádia
-
+
Write Firmware
Zapsat firmware
-
+
Write firmware to transmitter
Zapsat firmware do rádia
-
+
Write Models and Settings from file to Tx
Zapsat modely a nastavení ze souboru do rádia
-
+
Write Models and Settings from file to transmitter
Zapsat modely a nastavení ze souboru do rádia
-
+
Save transmitter Models and Settings to file
Uložit modely a nastavení z rádia do souboru
-
+
Save the Models and Settings from the transmitter to a file
Uložit modely a nastavení z rádia do souboru
-
+
Read Firmware
Načíst firmware
-
+
Read firmware from transmitter
Načíst firmware z rádia
-
+
+ &Configure connection software...
+
+
+
+
Configure software for reading from and writing to the transmitter
Nastavení softwaru pro čtení a zápis do rádia
+
+
+ Classic
+
+
+
+
+ The multicolor classical Companion icon theme
+
+
+
+
+ A monochrome black icon theme
+
+
+
+
+ A monochrome white icon theme
+
+
+
+
+ A monochrome blue icon theme
+
+
+
+
+ Small
+
+
+
+
+ Use small toolbar icons
+
+
+
+
+ Use normal size toolbar icons
+
+
+
+
+ Normal
+ Normální
+
+
+
+ Use big toolbar icons
+
+
+
+
+ Big
+
+
+
+
+ Use huge toolbar icons
+
+
+ Huge
+
+
+
+
+ System default language
+
+
+
+
+ Use system default language in menus
+
+
+
+
+ Czech
+
+
+
+
+ Use Czech in menus
+
+
+
+
+ German
+
+
+
+
+ Use German in menus
+
+
+
+
+ English
+
+
+
+
+ Use English in menus
+
+
+
+
+ French
+
+
+
+
+ Use French in menus
+
+
+
+
+ Italian
+
+
+
+
+ Use Italian in menus
+
+
+
+
+ Hebrew
+
+
+
+
+ Use Hebrew in menus
+
+
+
+
+ Polish
+
+
+
+
+ Use Polish in menus
+
+
+
+
+ Portuguese
+
+
+
+
+ Use Portuguese in menus
+
+
+
+
+ Swedish
+
+
+
+
+ Use Swedish in menus
+
+
+
+
+ Russian
+
+
+
+
+ Use Russian in menus
+
+
+
+
+ Set Icon Theme
+
+
+
+
+ Set Icon Size
+
+
+
+
+ &Settings
+
+
+
+
&Read/Write
Čtení/&Zápis
-
+
Write
Zápis
-
-
+
+
Invalid Models and Settings File %1
Neplatný soubor modelů a nastavení %1
-
+
Invalid binary Models and Settings File %1
Neplatný binární soubor modelů a nastavení %1
@@ -2065,7 +3076,7 @@ Chcete ho přesto zapsat ?
&Zapsat do EEPROM rádia
-
+
Ctrl+Alt+W
@@ -2078,7 +3089,7 @@ Chcete ho přesto zapsat ?
&Načíst EEPROM z rádia
-
+
Ctrl+Alt+R
@@ -2119,163 +3130,153 @@ Chcete ho přesto zapsat ?
Načíst paměť FLASH z rádia
-
&Configure...
- &Konfigurace...
+ &Konfigurace...
Configure burning software
Konfigurace programátoru
-
+
&List programmers
&Seznam programátorů
-
+
List available programmers
Seznam použitelných programátorů
-
+
&Fuses...
Pojistky &mikrokontroléru...
-
+
Show fuses dialog
Zobrazit dialog nastavení pojistek mikrokontroléru
-
+
&Simulate
&Simulátor
-
+
Alt+S
-
+
Simulate selected model.
Simulovat vybraný model.
-
+
&Print
&Tisk
-
+
Ctrl+P
-
+
Print current model.
Vytisknout aktuální model.
-
Cl&ose
- &Zavřít
+ &Zavřít
-
Close the active window
- Zavřít aktivní okno
+ Zavřít aktivní okno
-
Close &All
- Zavřít &Vše
+ Zavřít &Vše
-
Close all the windows
- Zavřít všechna okna
+ Zavřít všechna okna
-
&Tile
- D&laždice
+ D&laždice
-
Tile the windows
- Uspořádat okna jako dlaždice
+ Uspořádat okna jako dlaždice
-
&Cascade
- &Kaskáda
+ &Kaskáda
-
Cascade the windows
- Uspořádat okna do kaskády
+ Uspořádat okna do kaskády
-
Ne&xt
- &Další
+ &Další
-
Move the focus to the next window
- Aktivovat následující okno
+ Aktivovat následující okno
-
Pre&vious
- &Předchozí
+ &Předchozí
-
Move the focus to the previous window
- Aktivovat předchozí okno
+ Aktivovat předchozí okno
-
+
&About
&O aplikaci
-
+
Show the application's About box
O aplikaci companion9x
-
Switch layout direction
- Přepnout styl panelu
+ Přepnout styl panelu
-
Switch layout Left/Right
- Přepnout styl rozložení panelu vlevo/vpravo
+ Přepnout styl rozložení panelu vlevo/vpravo
-
-
+
+
Recent Files
Nedávné soubory
-
-
+
+
Firmware Profiles
Profily firmwaru
-
+
+ Set Menu Language
+
+
+
+
&File
&Soubor
-
+
&Edit
&Úpravy
@@ -2284,22 +3285,21 @@ Chcete ho přesto zapsat ?
&Programátor
-
&Window
- &Okno
+ &Okno
-
+
&Help
&Nápověda
-
+
File
Soubor
-
+
Edit
Úpravy
@@ -2308,17 +3308,17 @@ Chcete ho přesto zapsat ?
Programátor
-
+
Help
Nápověda
-
+
Ready
Připraven
-
+
Unable to find file %1!
Nemohu nalézt soubor %1!
@@ -2327,7 +3327,7 @@ Chcete ho přesto zapsat ?
Neplatný soubor EEPROM %1
-
+
Error reading file %1:
%2.
Chyba při otevírání souboru %1:
@@ -2346,187 +3346,187 @@ Chcete ho přesto zapsat ?
volné[B]
-
+
Editing model %1:
Editace modelu %1:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Chyba
-
-
+
+
Unable to find file %1!
Nemohu nalézt soubor %1!
-
-
-
-
+
+
+
+
Error opening file %1:
%2.
Chyba při otevírání souboru %1:
%2.
-
-
+
+
Invalid EEPROM File %1
Neplatný soubor EEPROM %1
-
-
+
+
Error reading file %1:
%2.
Chyba při otevírání souboru %1:
%2.
-
+
Invalid binary EEPROM File %1
Neplatný binární soubor EEPROM %1
-
-
-
-
+
+
+
+
Save As
Uložit jako
-
-
-
-
+
+
+
+
Cannot write file %1:
%2.
Nelze zapsat soubor %1:
%2.
-
-
+
+
Error writing file %1:
%2.
Chyba při zápisuí souboru %1:
%2.
-
+
Do you want to use model wizard?
Chcete použít průvodce nastavením modelu?
-
-
-
+
+
+
Companion
-
+
Ask this question again ?
Zobrazovat tento dotaz i příště?
-
+
%1 has been modified.
Do you want to save your changes?
%1 byl změněn.
Chcete ho uložit?
-
+
Backup is impossible
Není možné zálohovat
-
+
The backup dir set in preferences does not exist
Složka pro zálohování zvolená v předvolbách neexistuje
-
+
Cannot write temporary file!
Nelze zapsat dočasný soubor!
-
-
-
+
+
+
Taranis radio not found
Radio Taranis nenalezeno
-
-
-
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
Nebylo možné identifikovat rádio ve vašem systému, zkontrolujte zda je eeprom disk připojen.
-
-
-
+
+
+
Backup EEPROM From Tx
Zálohovat EEPROM z rádia
-
+
Cannot check eeprom compatibility! Continue anyway?
Nelze ověřit kompatibilitu EEprom! Mám přesto pokračovat?
-
-
+
+
Warning
Varování
-
+
Firmware in radio is of a different family of eeprom written, check file and preferences!
Firmware rádia je z jiné rodiny než EEprom, zkontrolujte nastavení předvoleb!
-
+
Firmware in flash is outdated, please upgrade!
Firmware rádia je zastaralý, aktualizujte ho prosím!
-
+
Write EEPROM To Tx
Zápis EEPROM do TX
-
+
Open
Otevřít
-
+
Invalid binary backup File %1
Neplatný binární soubor zálohy %1
@@ -2534,25 +3534,25 @@ Chcete ho uložit?
MixerDialog
-
+
Dialog
-
+
Source
Zdroj
-
-
-
-
+
+
+
+
The source for the mixer
Zdroj pro mix
-
+
Weight
Váha
@@ -2561,10 +3561,7 @@ Chcete ho uložit?
Hodnota mixu násobena touto hodnotou a dělena 100.
-
-
-
-
+
Offset
Ofset
@@ -2581,39 +3578,38 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Tato hodnota je přidána do <span style=" font-weight:600;">vstupu </span>mixeru.</p></body></html>
-
+
Include Trim
Použít trim
-
-
-
+
+
+
GV
GP
-
+
No
Ne
-
+
Yes
Ano
-
Enable FM Trim
- Povolit FM trim
+ Povolit FM trim
-
+
Curve
Křivka
-
+
The curve used by the mix
Křivka použitá pro mix
@@ -2622,70 +3618,68 @@ p, li { white-space: pre-wrap; }
Fáze
-
+
Switch used by the mix.
If blank then the mix is considered to be "ON" all the time.
Spínač aktivující mix.
Pokud není uveden je mix aktivní pořád.
-
Curve/Differential
- Křivka/Diferenciace
+ Křivka/Diferenciace
Phases
Fáze
-
+
Switch
Spínač
-
+
Warning
Varování
-
Fix Offset
- Kompenzovat Offset
+ Kompenzovat Offset
-
+
Mixer warning.
Setting this value will cause a beep to be emmitted when this value is active.
Zvukové upozornění mixu.
Pokud je tato volba aktivní bude na aktivaci mixu upozorněno zvukovým signálem.
-
+
OFF
Vypnuto
-
+
1 Beep
1x pípnutí
-
+
2 Beep
2x pípnutí
-
+
3 Beep
3x pípnutí
-
+
Multiplex
Matematická operace
-
+
Multiplexer
This determines how mixer values are added.
@@ -2702,17 +3696,17 @@ Toto určuje, jak bude hodnota mixu přidána.
"R" znamená že hodnota nahradí předchozí hodnoty. Pokud je spínač vypnutý hodnota bude ignorována.
-
+
ADD
Sečíst
-
+
MULTIPLY
Násobit
-
+
REPLACE
Zaměnit
@@ -2721,90 +3715,90 @@ Toto určuje, jak bude hodnota mixu přidána.
Diferenciace výchylek
-
+
Name
Název
-
+
Flight modes
Letové režimy
-
+
Include DR/Expo
Použít DR/Expo
-
+
0
-
+
1
-
+
2
-
+
3
-
+
4
-
+
5
-
+
6
-
+
7
-
+
8
-
+
Delay
Zpoždění
-
+
Slow
Zpomalení
-
+
Up
Při zapnutí mixu / (+)
-
+
Down
Při vypnutí mixu / (-)
-
-
-
-
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -2829,604 +3823,446 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Pokud je nastaveno zpomalení, nastavená hodnota udává rychlost mixu -> hodnota udává počet sekund které trvá změna hodnoty z -100 na 100.</p></body></html>
-
+
DEST -> X%1
-
+
DEST -> CH%1%2
-
-
FM Trim Value
- Hodnota FM trimu
+ Hodnota FM trimu
-
+
Rud
Směrovka
-
+
Ele
Výškovka
-
+
Thr
Plyn
-
+
Ail
Křidélka
+
+ MixesPanel
+
+
+
+ Move Up
+ Posunout nahoru
+
+
+
+
+ Ctrl+Up
+
+
+
+
+
+ Move Down
+ Posunout dolů
+
+
+
+
+ Ctrl+Down
+
+
+
+
+ Clear Mixes
+ Vymazat všechny mixy
+
+
+
+
+
+ X%1
+
+
+
+
+
+
+ CH%1%2
+
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ No Trim
+ Žádný trim
+
+
+
+ No DR/Expo
+ Bez DR/Expo
+
+
+
+ Offset(%1)
+
+
+
+
+ Delay(u%1:d%2)
+ Zpoždění(u%1:d%2)
+
+
+
+ Slow(u%1:d%2)
+ Zpomalení(u%1:d%2)
+
+
+
+ Warn(%1)
+ Varování(%1)
+
+
+
+ Not enough available mixers!
+ Není k dispozici dostatek mixů!
+
+
+
+ Delete Selected Mixes?
+ Odstranit vybrané mixy?
+
+
+
+ &Add
+ &Přidat
+
+
+
+ Ctrl+A
+
+
+
+
+ &Edit
+
+
+
+
+ Enter
+
+
+
+
+ &Delete
+ &Odstranit
+
+
+
+ Delete
+
+
+
+
+ &Copy
+ &Kopírovat
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ &Vyjmout
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ &Vložit
+
+
+
+ Ctrl+V
+
+
+
+
+ Du&plicate
+ &Duplikovat
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Mixes?
+ Vymazat mixy?
+
+
+
+ Really clear all the mixes?
+ Opravdu vymazat všechny mixy?
+
+
ModelEdit
-
+
Dialog
-
+
Simulate
Simulace
-
+
Setup
Nastevní
-
-
-
+
+ Heli
+
+
+
+
+ Inputs
+
+
+
+
+ Logical Switches
+
+
+
+
+ Switch Assignment
+
+
+
mSec
- ms
+ ms
-
-
-
-
-
-
- ch
-
-
-
-
-
-
usec
- us
+ us
-
-
-
Protocol
- Protokol
+ Protokol
-
-
-
PPM Frame Length
- Délka PPM rámce
+ Délka PPM rámce
-
-
-
+
Channels
Počet kanálů
-
-
-
PPM delay
- PPM zpoždění
+ PPM zpoždění
-
Trim Increment
- Krok trimu
+ Krok trimu
-
- Throttle2Trig
-
-
-
-
Throttle Expo
- Expo plynu
+ Expo plynu
-
Extended Limits
- Rozšířené limity (125%)
+ Rozšířené limity (125%)
-
-
-
Positive
- Pozitivní
+ Pozitivní
-
-
-
Negative
- Negativní
+ Negativní
-
Pulse Shift (polarity)
- Řazení pulzů (polarita)
+ Řazení pulzů (polarita)
-
- Timer2
-
-
-
-
Disable Throttle Warning
- Nevarovat při zapnutém plynu
+ Nevarovat při zapnutém plynu
-
Exponential
- Exponenciální
+ Exponenciální
-
Extra Fine
- Extra jemný
+ Extra jemný
-
Fine
- Jemný
+ Jemný
-
Medium
- Střední
+ Střední
-
Coarse
- Hrubý
+ Hrubý
-
Switch startup Warning
- Kontrola výchozí polohy spínačů
+ Kontrola výchozí polohy spínačů
-
- Instant Trim
-
-
-
-
Center beep
- Zvuk ve středové poloze
+ Zvuk ve středové poloze
-
Throttle Trim
- Trim plynu
+ Trim plynu
-
Throttle Source
Throttle Trace
- Stopa plynu (pro spínání stopek)
+ Stopa plynu (pro spínání stopek)
Trainer
Trenér
-
-
RX Number
- Číslo přijímače
+ Číslo přijímače
-
- Timer1
-
-
-
-
-
-
-
-
- THR
-
-
-
-
- P1
-
-
-
-
- P2
-
-
-
-
- P3
-
-
-
-
-
- CH01
-
-
-
-
-
- CH02
-
-
-
-
-
- CH03
-
-
-
-
-
- CH04
-
-
-
-
-
- CH05
-
-
-
-
-
- CH06
-
-
-
-
-
- CH07
-
-
-
-
-
- CH08
-
-
-
-
-
- CH09
-
-
-
-
-
- CH10
-
-
-
-
-
- CH11
-
-
-
-
-
- CH12
-
-
-
-
-
- CH13
-
-
-
-
-
- CH14
-
-
-
-
-
- CH15
-
-
-
-
-
- CH16
-
-
-
-
Extended Trims
- Rozšířený rozsah trimů
+ Rozšířený rozsah trimů
-
-
- LP4/LP5
-
-
-
-
-
DSM2only
- Jen DSM2
+ Jen DSM2
-
-
- DSM2/DSMX
-
-
-
-
-
DSM Type
- Typ DSM
+ Typ DSM
-
Model Name
- Název modelu
+ Název modelu
-
- REa
-
-
-
-
-
-
-
-
-
-
-
-
- RUD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ELE
-
-
-
-
-
-
-
-
-
-
-
-
-
- AIL
-
-
-
-
- REb
-
-
-
-
- 3POS
-
-
-
-
-
Check
- Kontrola
+ Kontrola
-
-
-
ON
- ZAPNUTO
+ ZAPNUTO
-
-
OFF
- VYPNUTO
+ VYPNUTO
-
- GEA
-
-
-
-
- ID0
-
-
-
-
- ID1
-
-
-
-
- ID2
-
-
-
-
-
- mm:ss
-
-
-
-
-
Count Down
- Odečítat
+ Odečítat
-
-
Count Up
- Přičítat
+ Přičítat
-
-
TriggerB
- Spínač B
+ Spínač B
-
-
- (00:00:00)
-
-
-
-
Model Voice
- Zvuková stopa
+ Zvuková stopa
-
-
Failsafe Mode
- Režim Failsafe
+ Režim Failsafe
-
-
Hold
- Držet hodnotu
+ Držet hodnotu
-
-
Custom
- Vlastní
+ Vlastní
-
-
No Pulses
- Žádné pulzy
+ Žádné pulzy
-
-
Heli Setup
- Heli
+ Heli
-
Swash Type
- Typ cykliky
+ Typ cykliky
-
-
Off
- VYPNUTO
+ VYPNUTO
-
- 120
-
-
-
-
- 120X
-
-
-
-
- 140
-
-
-
-
- 90
-
-
-
-
Collective
- Kolektiv
+ Kolektiv
-
Swash Ring
- Cyklika
+ Cyklika
-
-
-
Invert
- Invertovat
+ Invertovat
-
Invert Elevator
- Invertovat výškovku
+ Invertovat výškovku
-
Invert Aileron
- Invertovat křidélka
+ Invertovat křidélka
-
Invert Collective
- Invertovat kolektiv
+ Invertovat kolektiv
Phases
@@ -3441,194 +4277,40 @@ p, li { white-space: pre-wrap; }
Název
-
-
-
-
-
-
-
-
-
Fade In
- Přechod při aktivaci
+ Přechod při aktivaci
-
-
-
-
-
-
-
-
-
Fade Out
- Přechod při deaktivaci
+ Přechod při deaktivaci
-
-
-
-
-
-
-
-
-
- trim1
-
-
-
-
-
-
-
-
-
-
-
-
- trim2
-
-
-
-
-
-
-
-
-
-
-
-
- trim4
-
-
-
-
-
-
-
-
-
-
-
-
- trim3
-
-
-
-
-
-
-
-
-
-
-
-
GVAR1
- Glob.Proměnná GP1
+ Glob.Proměnná GP1
-
-
-
-
-
-
-
-
-
- Rotary encoder A
-
-
-
-
-
-
-
-
-
-
-
-
GVAR2
- Glob.Proměnná GP2
+ Glob.Proměnná GP2
-
-
-
-
-
-
-
-
-
- Rotary encoder B
-
-
-
-
-
-
-
-
-
-
-
-
GVAR3
- Glob.Proměnná GP3
+ Glob.Proměnná GP3
-
-
-
-
-
-
-
-
-
GVAR4
- Glob.Proměnná GP4
+ Glob.Proměnná GP4
-
-
-
-
-
-
-
-
-
GVAR5
- Glob.Proměnná GP5
+ Glob.Proměnná GP5
FP 1
Fáze FP1
-
-
-
-
-
-
-
-
-
-
-
-
-
Switch
- Spínač
+ Spínač
FP 2
@@ -3663,489 +4345,295 @@ p, li { white-space: pre-wrap; }
DR/Expo
-
+
Mixes
Mixer
-
Limits
- Limity
+ Limity
NOR
---
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- INV
-
-
-
-
-
-
Channel
- Kanál
+ Kanál
-
-
-
Offset
- Subtrim
+ Subtrim
-
ModelSetup
- Nastavení modelu
+ Nastavení modelu
-
-
Persistent
- Ukládání
+ Ukládání
-
-
MinuteBeep
- Minuta
+ Minuta
-
-
CountDownBeep
- Odpočet
-
-
-
- SB
-
-
-
-
- SD
-
-
-
-
- SA
-
-
-
-
- SC
-
-
-
-
- SG
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- RS
-
+ Odpočet
Trainer mode
Mód trenér
-
RF Module 1
- RF Modul 1
+ RF Modul 1
-
RF Module 2
- RF Modul 2
+ RF Modul 2
-
- Failsafe
-
-
-
-
External module
- Externí modul
+ Externí modul
-
Internal Module
- Interní modul
+ Interní modul
-
+
Flight Modes
Letové režimy
-
Flight Mode 0 (Default)
- Letový Režim 0 (Výchozí)
+ Letový Režim 0 (Výchozí)
-
-
-
-
-
-
-
-
-
Flight Mode Name
- Název režimu
+ Název režimu
-
FM 1
- LR 1
+ LR 1
-
FM 2
- LR 2
+ LR 2
-
FM 3
- LR 3
+ LR 3
-
FM 4
- LR 4
+ LR 4
-
FM 5
- LR 5
+ LR 5
-
FM 6
- LR 6
+ LR 6
-
FM 7
- LR 7
+ LR 7
-
FM 8
- LR 8
+ LR 8
-
Show channels names in mixes
- Zobrazit názvy kanálů v mixech
-
-
-
-
-
-
-
- Min
-
-
-
-
-
-
-
-
- Max
-
+ Zobrazit názvy kanálů v mixech
PPM Center
Střed PPM
-
-
Sym
- Symetrický
+ Symetrický
-
+
Curves
Křivky
-
Curve 1
- Křivka k1
+ Křivka k1
-
Curve 2
- Křivka k2
+ Křivka k2
-
Curve 3
- Křivka k3
+ Křivka k3
-
Curve 4
- Křivka k4
+ Křivka k4
-
Curve 5
- Křivka k5
+ Křivka k5
-
Curve 6
- Křivka k6
+ Křivka k6
-
Curve 7
- Křivka k7
+ Křivka k7
-
Curve 8
- Křivka k8
+ Křivka k8
-
Curve 9
- Křivka k9
+ Křivka k9
-
Curve 10
- Křivka k10
+ Křivka k10
-
Curve 11
- Křivka k11
+ Křivka k11
-
Curve 12
- Křivka k12
+ Křivka k12
-
Curve 13
- Křivka k13
+ Křivka k13
-
Curve 14
- Křivka k14
+ Křivka k14
-
Curve 15
- Křivka k15
+ Křivka k15
-
-
Center
- Střed
+ Střed
-
Curve 16
- Křivka k16
+ Křivka k16
-
-
Curve type
- Typ křivky
+ Typ křivky
-
3 points
- 3 body
+ 3 body
-
3 points custom
- 3 vlastní body
+ 3 vlastní body
-
5 points
- 5 bodů
+ 5 bodů
-
5 points custom
- 5 vlastních bodů
+ 5 vlastních bodů
-
9 points
- 9 bodů
+ 9 bodů
-
9 points custom
- 9 vlastních bodů
+ 9 vlastních bodů
-
17 points
- 17 bodů
+ 17 bodů
-
17 points custom
- 17 vlastních bodů
+ 17 vlastních bodů
-
Curve name
- Název křivky
+ Název křivky
-
Curve Creator
- Kurvítko:
+ Kurvítko:
-
Y at X=100
- Y na X=100
+ Y na X=100
-
Both
- Obě
+ Obě
-
- x>0
-
-
-
-
- x<0
-
-
-
-
Linear
- Lineární
+ Lineární
-
Single Expo
- Expo
+ Expo
-
Symmetrical f(x)=-f(-x)
- Symetrická f(x)=-f(-x)
+ Symetrická f(x)=-f(-x)
-
Symmetrical f(x)=f(-x)
- Symetrická f(x)=f(-x)
+ Symetrická f(x)=f(-x)
-
Apply
- Použít
+ Použít
-
Side
- Strana
+ Strana
-
Y at X=-100
- Y na X=-100
+ Y na X=-100
-
Y at X=0
- Y na X=0
+ Y na X=0
-
Coefficient
- Koeficient
+ Koeficient
-
Clear All Curves
- Smazat všechny křivky
+ Smazat všechny křivky
-
Custom switches
- Virtuální spínače
+ Virtuální spínače
-
CS9
- VS9
+ VS9
-
-
Duration
- Trvání
+ Trvání
CSwitchF
@@ -4155,24 +4643,6 @@ p, li { white-space: pre-wrap; }
CSwitchD
VSD
-
-
-
- AND
-
-
-
-
-
- V2
-
-
-
-
-
- V1
-
-
CSwitch6
VS6
@@ -4182,69 +4652,55 @@ p, li { white-space: pre-wrap; }
VS9
-
Model Image
- Obrázek modelu
+ Obrázek modelu
-
Reverse Throttle Operation
- Reverzovat funkci plynu
+ Reverzovat funkci plynu
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Obrácení funkce plynu.
+ Obrácení funkce plynu.
Pokud je zaškrtnuto,funkce plynu bude opačná. Poloha vypnuto bude nahoře.
Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
-
Master
- Učitel
+ Učitel
-
Slave
- Žák
+ Žák
-
Trainer Mode
- Mód trenér
+ Mód trenér
-
Master/Trainer Port
- Port učitel/žák
+ Port učitel/žák
-
-
-
Start
- První kanál
+ První kanál
-
-
Polarity
- Polarita
+ Polarita
-
GVAR6
- Glob.Proměnná GP6
+ Glob.Proměnná GP6
-
GVAR7
- Glob.Proměnná GP7
+ Glob.Proměnná GP7
CSwitch1
@@ -4275,12 +4731,8 @@ Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
VS5
-
-
-
-
Function
- Funkce
+ Funkce
CSwitch3
@@ -4303,10 +4755,8 @@ Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
VS4
-
-
Delay
- Zpoždění
+ Zpoždění
CSwitchT
@@ -4373,134 +4823,78 @@ Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
VSW
-
Safety Switches
- Bezpečnostní spínače
+ Bezpečnostní spínače
-
Value
- Hodnota
+ Hodnota
-
Custom Functions
Function switches
- Funkce
+ Funkce
-
-
Param
- Parametr
+ Parametr
-
-
Enable
- Povolit
+ Povolit
-
+
Telemetry
Telemetrie
-
Serial Protocol
- Sériový protokol
+ Sériový protokol
-
Volt source
- Snímač napětí
+ Snímač napětí
-
Metric
- Metrické
+ Metrické
-
Imperial
- Imperiální
+ Imperiální
-
Current source
- Snímač proudu
+ Snímač proudu
-
NONE
- Žádný
+ Žádný
-
-
-
-
- A1
-
-
-
-
-
-
-
- A2
-
-
-
-
-
- FAS
-
-
-
-
None
- Žádný
+ Žádný
-
FrSky Sensor Hub
- FrSky Senzor Hub
+ FrSky Senzor Hub
-
CEL
- Článek
+ Článek
-
2
- 2
+ 2
-
- 3
-
-
-
-
- 4
-
-
-
-
Units
- Jednotky
+ Jednotky
-
Blades
- Počet listů vrtule
-
-
-
- Altimetry / Vario
-
+ Počet listů vrtule
Barometer V1
@@ -4511,461 +4905,260 @@ Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
Barometr V2
-
Vario source
- Vario senzor
+ Vario senzor
-
Vario limits
- Rozsah varia
+ Rozsah varia
-
Use GPS as altitude source
- Použít GPS jako senzor výšky
+ Použít GPS jako senzor výšky
-
Display altitude in toolbar
- Zobrazit výšku v nástrojové liště
+ Zobrazit výšku v nástrojové liště
-
-
Unit
- Jednotky
+ Jednotky
-
-
Max Value
- Maximim
+ Maximim
-
-
- Alarm 1
-
-
-
-
-
-
-
-
-
- ----
-
-
-
-
-
-
-
-
-
Yellow
- Žlutá
+ Žlutá
-
-
-
-
-
-
Orange
- Oranžová
+ Oranžová
-
-
-
-
-
-
Red
- Červená
+ Červená
-
-
-
-
- <
-
-
-
-
-
-
-
- >
-
-
-
-
-
-
- Alarm 2
-
-
-
-
-
Min Value
- Minimum
+ Minimum
-
-
Volts (V)
- Volty (V)
+ Volty (V)
-
-
Amps (A)
- Ampéry (A)
+ Ampéry (A)
-
-
Speed (m/s or ft/s)
- Rychlost (m/s nebo ft/s)
+ Rychlost (m/s nebo ft/s)
-
-
Raw (-)
- Jednotky (-)
+ Jednotky (-)
-
-
Speed (km/h or miles/h)
- Rychlost (km/h nebo míle/h)
+ Rychlost (km/h nebo míle/h)
-
-
Meters (m or ft)
- Vzdálenost (m nebo ft)
+ Vzdálenost (m nebo ft)
-
-
Temp (°)
- Teplota (°)
+ Teplota (°)
-
-
Fuel (%)
- Palivo (%)
+ Palivo (%)
-
-
mAmps (mA)
- MiliAmpéry (mA)
-
-
-
- RSSI
-
-
-
-
- Alarm 1
-
+ MiliAmpéry (mA)
Telemetry Gauges
Telemetrické ukazatele
-
-
-
Gauge 1
- Ukazatel 1
+ Ukazatel 1
-
-
-
Gauge 2
- Ukazatel 2
+ Ukazatel 2
-
-
-
Gauge 3
- Ukazatel 3
+ Ukazatel 3
-
-
-
Gauge 4
- Ukazatel 4
+ Ukazatel 4
-
-
-
Source
- Zdroj
+ Zdroj
-
Sink Max
Sunk Max
- Klesání Max
+ Klesání Max
-
Climb Max
Raise Max
- Stoupání Max
+ Stoupání Max
-
Sink Min
Sunk Min
- Klesání Min
+ Klesání Min
-
Climb Min
Raise Min
- Stoupání Min
+ Stoupání Min
-
-
-
Gauge
- Ukazatel
+ Ukazatel
-
Telemetry screen 1
- Panel telemetrie 1
+ Panel telemetrie 1
-
Sticks
- Páky
+ Páky
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ---
-
-
-
-
CSF
- VSF
+ VSF
-
CSD
- VSD
+ VSD
-
CS6
- VS6
+ VS6
-
CS1
- VS1
+ VS1
-
CS8
- VS8
+ VS8
-
CS7
- VS7
+ VS7
-
CSA
- VSA
+ VSA
-
CSB
- VSB
+ VSB
-
CSC
- VSC
+ VSC
-
CS5
- VS5
+ VS5
-
CS3
- VS3
+ VS3
-
CS2
- VS2
+ VS2
-
CSE
- VSE
+ VSE
-
CSG
- VSG
+ VSG
-
CS4
- VS4
+ VS4
-
CST
- VST
+ VST
-
CSM
- VSM
+ VSM
-
CSP
- VSP
+ VSP
-
CSH
- VSH
+ VSH
-
CSO
- VSO
+ VSO
-
CSN
- VSN
+ VSN
-
CSQ
- VSQ
+ VSQ
-
CSR
- VSR
+ VSR
-
CSS
- VSS
+ VSS
-
CSL
- VSL
+ VSL
-
CSK
- VSK
+ VSK
-
CSJ
- VSJ
+ VSJ
-
CSI
- VSI
+ VSI
-
CSU
- VSU
+ VSU
-
CSV
- VSV
+ VSV
-
CSW
- VSW
-
-
-
- Alti
-
-
-
-
- Alti+
-
-
-
-
- Vario
-
+ VSW
Center Max
@@ -4976,1365 +5169,1356 @@ Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
Střed Min
-
-
-
Custom Screen Type
- Typ panelu
+ Typ panelu
-
-
-
Nums
- Hodnoty
+ Hodnoty
-
-
-
Bars
- Ukazatele
+ Ukazatele
-
Telemetry screen 2
- Panel telemetrie 2
+ Panel telemetrie 2
-
Telemetry screen 3
- Panel telemetrie 3
+ Panel telemetrie 3
-
Templates
- Šablony
+ Šablony
-
-
-
-
Move Up
- Posunout nahoru
+ Posunout nahoru
-
-
-
-
- Ctrl+Up
-
-
-
-
-
-
-
Move Down
- Posunout dolů
+ Posunout dolů
-
-
-
-
- Ctrl+Down
-
-
-
-
Clear Expo Settings
- Vymazat všechna expa
+ Vymazat všechna expa
-
Clear Mixes
- Vymazat všechny mixy
+ Vymazat všechny mixy
-
Weight
- Váha
+ Váha
-
-
Expo
- Expo
+ Expo
Phase
Fáze
-
-
Curve
- Křivka
+ Křivka
-
-
-
- CH%1%2
-
-
-
-
-
DISABLED
- ZAKÁZÁN
+ ZAKÁZÁN
-
- S1
-
-
-
-
- S2
-
-
-
-
- LS
-
-
-
-
Rud
- Směrovka
+ Směrovka
-
Ele
- Výškovka
+ Výškovka
-
Ail
- Křidélka
+ Křidélka
-
Thr
- Plyn
+ Plyn
-
-
Flight modes
- Letové režimy
+ Letové režimy
-
-
Flight mode
- Letový režim
+ Letový režim
-
-
-
- X%1
-
-
-
-
No Trim
- Žádný trim
+ Žádný trim
-
No DR/Expo
- Bez DR/Expo
+ Bez DR/Expo
-
- FMTrim
-
-
-
-
Diff
- Dif
+ Dif
-
Delay(u%1:d%2)
- Zpoždění(u%1:d%2)
+ Zpoždění(u%1:d%2)
-
Slow(u%1:d%2)
- Zpomalení(u%1:d%2)
+ Zpomalení(u%1:d%2)
-
Warn(%1)
- Varování(%1)
+ Varování(%1)
FSW%1
FS%1
-
-
-
-
-
- CH %1
-
-
CFN%1
Fce%1
-
CF%1
- FN%1
+ FN%1
-
Error
- Chyba
+ Chyba
-
Unable to find sound file %1!
- Nemohu nalézt zvukový soubor %1!
+ Nemohu nalézt zvukový soubor %1!
-
- Winged Shadow How High
-
-
-
-
Winged Shadow How High (not supported)
- Winged Shadow How High (nepodporován)
+ Winged Shadow How High (nepodporován)
-
-
Range
- Rozsah
+ Rozsah
-
Simple 4-CH
- Základní 4-kanál
+ Základní 4-kanál
-
- T-Cut
-
-
-
-
- Sticky T-Cut
-
-
-
-
- V-Tail
-
-
-
-
- Elevon\Delta
-
-
-
-
Heli Setup with gyro gain control
- Nastavení Heli s řízením zisku gyra
+ Nastavení Heli s řízením zisku gyra
-
Gyro gain control
- Řízení zisku gyra
+ Řízení zisku gyra
-
Heli Setup (Futaba's channel assignment style)
- Nastavení Heli (Styl přiřazení kanálů - Futaba)
+ Nastavení Heli (Styl přiřazení kanálů - Futaba)
-
Heli Setup with gyro gain control (Futaba's channel assignment style)
- Nastavení Heli s řízením zisku gyra(Styl přiřazení kanálů - Futaba)
+ Nastavení Heli s řízením zisku gyra(Styl přiřazení kanálů - Futaba)
-
Gyro gain control (Futaba's channel assignment style)
- Řízením zisku gyra(Styl přiřazení kanálů - Futaba)
+ Řízením zisku gyra(Styl přiřazení kanálů - Futaba)
-
- Servo Test
-
-
-
-
- MultiCopter
-
-
-
-
Use Model Config Wizard
- Použít průvodce nastavením modelu
+ Použít průvodce nastavením modelu
-
Editing curve %1
- Upravit křivku k%1
+ Upravit křivku k%1
-
Not enough available mixers!
- Není k dispozici dostatek mixů!
+ Není k dispozici dostatek mixů!
-
Not enough available expos!
- Není k dispozici dostatek exp!
+ Není k dispozici dostatek exp!
-
Delete Selected Mixes?
- Odstranit vybrané mixy?
+ Odstranit vybrané mixy?
-
Delete Selected Expos?
- Odstranit vybraná expa?
+ Odstranit vybraná expa?
-
-
&Add
- &Přidat
+ &Přidat
-
-
- Ctrl+A
-
-
-
-
-
&Edit
- &Upravit
+ &Upravit
-
-
- Enter
-
-
-
-
-
-
-
&Delete
- &Odstranit
+ &Odstranit
-
-
-
-
- Delete
-
-
-
-
-
-
-
&Copy
- &Kopírovat
+ &Kopírovat
-
-
-
-
- Ctrl+C
-
-
-
-
-
-
-
&Cut
- &Vyjmout
+ &Vyjmout
-
-
-
-
- Ctrl+X
-
-
-
-
-
-
-
&Paste
- &Vložit
+ &Vložit
-
-
-
-
- Ctrl+V
-
-
-
-
-
Du&plicate
- &Duplikovat
+ &Duplikovat
-
-
- Ctrl+U
-
-
-
-
Are you sure you want to delete curve %1 ?
- Opravdu chcete smazat křivku %1 ?
+ Opravdu chcete smazat křivku %1 ?
-
Apply Template?
- Použít šablonu?
+ Použít šablonu?
-
Apply template "%1"?
- Použít šablonu "%1"?
+ Použít šablonu "%1"?
-
Clear Expos?
- Vymazat expa?
+ Vymazat expa?
-
Really clear all the expos?
- Opravdu vymazat všechna expa?
+ Opravdu vymazat všechna expa?
-
-
-
Clear Mixes?
- Vymazat mixy?
+ Vymazat mixy?
-
Really clear all the mixes?
- Opravdu vymazat všechny mixy?
+ Opravdu vymazat všechny mixy?
-
+
Clear Curves?
Vymazat křivky?
-
+
Really clear all the curves?
Opravdu vymazat všechny křivky?
-
-
-
-
AIL2
- Křidélko2
+ Křidélko2
-
-
-
-
ELE2
- Výškovka2
+ Výškovka2
-
-
-
-
-
-
FLAPS
- Klapky
+ Klapky
-
-
-
-
-
-
FLAP%1
- Klapka%1
+ Klapka%1
-
-
-
-
- PITCH
-
-
-
-
-
-
-
-
-
-
-
GYRO
- Gyro
+ Gyro
-
-
SPOIL
- Spoiler
+ Spoiler
-
-
SPOIL%1
- Spoiler%1
+ Spoiler%1
-
-
RUD2
- Směrovka2
+ Směrovka2
-
Really clear existing mixes on CH6?
- Opravdu vymazat současné mixy v kanálu CH6?
+ Opravdu vymazat současné mixy v kanálu CH6?
-
Really clear existing mixes on CH5?
- Opravdu vymazat současné mixy v kanálu CH5?
+ Opravdu vymazat současné mixy v kanálu CH5?
-
Not enough free points in eeprom to store the curve.
- Není dostatek volných pozic v eeprom pro uložení křivky.
+ Není dostatek volných pozic v eeprom pro uložení křivky.
ModelsListWidget
-
+
&Edit
&Upravit
-
+
&Restore from backup
&Obnovit ze zálohy
-
+
&Model Wizard
&Průvodce nastavením modelu
-
+
&Delete
&Odstranit
-
+
Delete
-
+
&Copy
&Kopírovat
-
+
Ctrl+C
-
+
&Cut
&Vyjmout
-
+
Ctrl+X
-
+
&Paste
&Vložit
-
+
Ctrl+V
-
+
D&uplicate
&Duplikovat
-
+
Ctrl+U
-
+
&Use as default
&Použít jako výchozí
-
+
P&rint model
Vy&tisknout model
-
+
Alt+R
-
+
&Simulate model
&Simulovat model
-
+
Alt+S
-
+
General Settings
Obecná nastavení
-
+
Delete Selected Models?
Odstranit vybrané modely?
-
-
+
+
Cannot delete default model.
Nelze odstranit výchozí model.
-
+
Cannot cut default model.
Nelze přesunout výchozí model.
-
+
Do you want to overwrite TX general settings?
Chcete přepsat obecná nastavení rádia?
-
+
You are pasting on an not empty model, are you sure?
Vkládáte do modelu který není prázdný, jste si jist?
-
+
No free slot available, cannot duplicate
Není už volný slot, nelze duplikovat
+
+ Module
+
+
+ Form
+
+
+
+
+ Failsafe Mode
+ Režim Failsafe
+
+
+
+ Start
+ První kanál
+
+
+
+ PPM delay
+ PPM zpoždění
+
+
+
+ usec
+ us
+
+
+
+ Negative
+ Negativní
+
+
+
+ Positive
+ Pozitivní
+
+
+
+ RX Number
+ Číslo přijímače
+
+
+
+ Master
+ Učitel
+
+
+
+ Slave
+ Žák
+
+
+
+ Polarity
+ Polarita
+
+
+
+ Trainer Mode
+ Mód trenér
+
+
+
+ mSec
+ ms
+
+
+
+ PPM Frame Length
+ Délka PPM rámce
+
+
+
+ Label
+
+
+
+
+
+ ch
+
+
+
+
+ Channels
+ Počet kanálů
+
+
+
+ Hold
+ Držet hodnotu
+
+
+
+ Custom
+ Vlastní
+
+
+
+ No Pulses
+ Žádné pulzy
+
+
+
+ Failsafe Positions
+
+
+
+
+ Protocol
+ Protokol
+
+
+
+ ModulePanel
+
+
+ Trainer Output
+
+
+
+
+ Internal Radio System
+
+
+
+
+ External Radio Module
+
+
+
QObject
-
-
+
+
Rud
Směrovka
-
-
+
+
Ele
Výškovka
-
-
+
+
Thr
Plyn
-
-
+
+
Ail
Křidélka
-
-
-
+
+
+
P1
Potenciometr 1
-
-
-
+
+
+
P2
Potenciometr 2
-
-
-
+
+
+
P3
Potenciometr 3
-
-
+
+
S1
-
-
+
+
S2
-
-
+
+
LS
-
-
+
+
RS
-
+
TrmR
Trim směrovky
-
+
TrmE
Trim výškovky
-
+
TrmT
Trim plynu
-
+
TrmA
Trim křidélek
-
+
+
REa
Otočný enkodér :a
-
+
+
REb
Otočný enkodér :b
-
- SA
-
-
-
-
- SB
-
-
-
-
- SC
-
-
-
-
- SD
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- SG
-
-
-
-
- SH
-
-
-
-
+
Batt
Bat
-
+
A1
Telem. vstup A1
-
+
A2
Telem. vstup A2
-
+
Alt
Výška
-
+
Rpm
Otáčky
-
+
Fuel
Palivo
-
+
T1
-
+
Tx
-
+
Rx
-
+
SWR
VSR
-
+
RSSI
-
+
T2
-
+
Speed
Rychlost
-
+
Dist
Vzdálenost
-
+
GPS Alt
Výška GPS
-
+
Cell
Článek
-
+
Cels
Články
-
+
Vfas
-
+
Curr
Proud
-
+
Cnsp
-
+
Powr
Výkon
-
+
AccX
-
+
AccY
-
+
AccZ
-
+
HDG
-
+
VSpd
-
+
A1-
-
+
A2-
-
+
Alt-
-
+
Alt+
-
+
Rpm+
-
+
T1+
-
+
T2+
-
+
Spd+
-
+
Dst+
-
+
Cur+
-
+
ACC
-
+
Time
-
+
Pwr+
-
+
+
+ LS1
+
+
+
+
+
+ LS2
+
+
+
+
+
+ LS3
+
+
+
+
+
+ LS4
+
+
+
+
+
+ LS5
+
+
+
+
+
+ LS6
+
+
+
+
+
+ LS7
+
+
+
+
+
+ LS8
+
+
+
+
+
+ LS9
+
+
+
+
+
+ LSA
+
+
+
+
+
+ LSB
+
+
+
+
+
+ LSC
+
+
+
+
+
+ LSD
+
+
+
+
+
+ LSE
+
+
+
+
+
+ LSF
+
+
+
+
+
+ LSG
+
+
+
+
+
+ LSH
+
+
+
+
+
+ LSI
+
+
+
+
+
+ LSJ
+
+
+
+
+
+ LSK
+
+
+
+
+
+ LSL
+
+
+
+
+
+ LSM
+
+
+
+
+
+ LSN
+
+
+
+
+
+ LSO
+
+
+
+
+
+ LSP
+
+
+
+
+
+ LSQ
+
+
+
+
+
+ LSR
+
+
+
+
+
+ LSS
+
+
+
+
+
+ LST
+
+
+
+
+
+ LSU
+
+
+
+
+
+ LSV
+
+
+
+
+
+ LSW
+
+
+
+
+ Input %1
+
+
+
+
MAX
-
-
+
+ S11
+
+
+
+
+ S12
+
+
+
+
+ S13
+
+
+
+
+ S14
+
+
+
+
+ S15
+
+
+
+
+ S16
+
+
+
+
+ S21
+
+
+
+
+ S22
+
+
+
+
+ S23
+
+
+
+
+ S24
+
+
+
+
+ S25
+
+
+
+
+ S26
+
+
+
CS1
- VS1
+ VS1
-
-
CS2
- VS2
+ VS2
-
-
CS3
- VS3
+ VS3
-
-
CS4
- VS4
+ VS4
-
-
CS5
- VS5
+ VS5
-
-
CS6
- VS6
+ VS6
-
-
CS7
- VS7
+ VS7
-
-
CS8
- VS8
+ VS8
-
-
CS9
- VS9
+ VS9
-
-
CSA
- VSA
+ VSA
-
-
CSB
- VSB
+ VSB
-
-
CSC
- VSC
+ VSC
-
-
CSD
- VSD
+ VSD
-
-
CSE
- VSE
+ VSE
-
-
CSF
- VSF
+ VSF
-
-
CSG
- VSG
+ VSG
-
-
CSH
- VSH
+ VSH
-
-
CSI
- VSI
+ VSI
-
-
CSJ
- VSJ
+ VSJ
-
-
CSK
- VSK
+ VSK
-
-
CSL
- VSL
+ VSL
-
-
CSM
- VSM
+ VSM
-
-
CSN
- VSN
+ VSN
-
-
CSO
- VSO
+ VSO
-
-
CSP
- VSP
+ VSP
-
-
CSQ
- VSQ
+ VSQ
-
-
CSR
- VSR
+ VSR
-
-
CSS
- VSS
+ VSS
-
-
CST
- VST
+ VST
-
-
CSU
- VSU
+ VSU
-
-
CSV
- VSV
+ VSV
-
-
CSW
- VSW
+ VSW
-
+
ONE
*
-
+
!ONE
! *
-
+
TRNs
-
+
TRNl
-
+
REAs
-
+
REAl
-
3POS
- Přepínač 3POS
+ Přepínač 3POS
-
+
CYC%1
-
+
PPM%1
-
+
CH%1%2
-
+
X%1
-
-
-
-
+
+
+
+
----
-
-
-
-
+
+
THR
THR
-
-
RUD
- RUD
+ RUD
-
-
ELE
- ELE
+ ELE
-
ID0
- ID0
+ ID0
-
ID1
- ID1
+ ID1
-
ID2
- ID2
+ ID2
-
-
AIL
- AIL
+ AIL
-
-
GEA
- GEA
+ GEA
-
-
TRN
- TRN
+ TRN
CS%1
VS%1
-
-
+
+
ON
ZAPNUTO
@@ -6343,18 +6527,43 @@ Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
mZAPNUTO
-
-
+
+
OFF
VYPNUTO
-
+
+ Diff(%1)
+
+
+
+
+ Expo(%1)
+
+
+
+
+ Function(%1)
+
+
+
+
+ Curve(%1)
+
+
+
+
+ !Curve(%1)
+
+
+
+
th9x
-
+
er9x
@@ -6379,192 +6588,197 @@ Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
open9x pro 9X zákl. desku
-
-
+
+
Support for frsky telemetry mod
Podpora frsky telemetrie tj. zobrazení telemetrických dat na displeji rádia
(je potřeba upravit HW, bez této úpravy nebudou fungovat dva přepínače!
a pochopitelně nebudou zobrazena žádná telem. data.)
-
-
+
+
Support for jeti telemetry mod
Podpora telemetrie JETI
-
-
+
+
Support for receiving ardupilot data
telemetrie - podpora pro příjem ardupilot dat
-
-
+
+
Support for receiving NMEA data
telemetrie - podpora pro příjem NMEA dat
-
+
Support for telemetry easy board
Podpora pro desku TelemetrEZ
-
-
+
+
Support for MAVLINK devices
Podpora pro zařízení s MAVLINK
-
+
Rotary Encoder use in menus navigation
Použít Rotary Encoder pro navigaci v menu
-
+
Possibility to enable FAI MODE at field
Možnost povolit FAI MODE v menu rádia.
FAI je soutěžní mód (www.fai.org), zablokuje vario, zobrazení telemetrie a funkce hlasového hlášení.
-
+
FAI MODE always enabled
FAI MODE vždy aktivní (nelze vypnout v menu rádia)
FAI je soutěžní mód (www.fai.org), zablokuje vario, zobrazení telemetrie a funkce hlasového hlášení.
-
+
openTx for 9X board
openTx pro 9X zákl. desku
-
-
-
-
-
+
+
+
+
+
Enable heli menu and cyclic mix support
Funkce pro heli, nastavení typu mechaniky
-
-
-
-
-
-
+
+
+
+
+
+
Enable TEMPLATES menu
Přidá menu s jednoduchými
šablonami modelu
-
-
-
-
+
+
+
+
No splash screen
Bez úvodního loga
Firmware nebude obsahovat žádné logo, ani podporu pro něj.
Toto se hodí pokud je potřeba ušetřit místo v paměti FLASH pro jiné funkce
-
-
-
-
-
-
+
+
+
+
+
+
No flight modes
Firmware nebude obsahovat podporu Letových Režimů
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set source by moving some of them
V menu nastavení modelu automaticky nastavíte Zdroj jeho pohybem
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Use alternative SQT5 font
Použít alternativní znakovou sadu písma (jiný font)
-
+
EEprom write progress bar
Progresbar zobrazující zápis do EEPROM
(tj. ukládání nastavení)
-
-
+
+
No Winged Shadow How High support
Bez podpory - Winged Shadow How High
-
-
+
+
No vario support
Bez podpory varia
-
-
+
+
No GPS support
Bez podpory GPS
-
-
+
+
No gauges in the custom telemetry screen
Bez grafických ukazatelů hodnoty na obrazovkách telemetrie
-
+
+ Allow compensating for offset errors in FrSky FAS current sensors
+
+
+
+
openTx for 9XR
openTx pro 9XR zákl desku
-
+
openTx for 9XR with M128 chip
openTx pro 9XR zákl desku s M128
-
+
Use FrSky Taranis sticks in a 9X/9XR
Použití pák z Taranis (hardware) v rádiu 9X/9XR
-
-
+
+
Disable HELI menu and cyclic mix support
Odstranit funkce pro heli a nastavení typu mechaniky
-
-
+
+
Disable TEMPLATES menu
Odstranit menu s jednoduchými
šablonami modelu
-
-
+
+
Disable Global variables
Odstranit Globální proměnné
-
+
openTx for FrSky Taranis Rev4a
openTx pro FrSky Taranis Rev4a
@@ -6573,20 +6787,20 @@ Toto se hodí pokud je potřeba ušetřit místo v paměti FLASH pro jiné funkc
Bez letových režimů
-
-
-
-
-
-
+
+
+
+
+
+
Disable curves menus
Bez uživatelsky definovatelných křivek
-
-
-
-
+
+
+
+
Support for radio modified with regular speaker
Vylepšený zvukový výstup,
funkční i s origo pípákem,
@@ -6594,44 +6808,44 @@ ale doporučuje se provést
instalaci reproduktoru
-
-
-
-
-
+
+
+
+
+
Used if you have modified your radio with voice mode
Hlasový výstup pro telemetrii,
nutno zastavět hlasový modul
-
-
-
-
+
+
+
+
Used if you have modified your radio with haptic mode
Výstrahy pomocí vibračního motoru
(je třeba osadit)
-
-
-
-
-
-
+
+
+
+
+
+
Battery graph
Grafické znázornění stavu baterie
-
-
-
-
+
+
+
+
Enable the throttle trace in Statistics
Přidat Stopu Plynu (Throttle-trace) v panelu STATISTIKA
-
+
openTx for M128 / 9X board
openTx pro 9X zákl. desku s M128
@@ -6644,70 +6858,70 @@ nutno zastavět hlasový modul
openTx pro 9XR zákl desku s M128
-
+
openTx for Gruvin9x board / 9X
openTx pro Gruvin9x zákl desku / 9X
-
+
Support of FrSky PXX protocol
Podpora pro Frsky PXX protokol
-
+
openTx for Sky9x board / 9X
openTx pro Sky9x zákl. desku / 9X
-
+
openTx for FrSky Taranis
openTx pro FrSky Taranis
-
-
-
-
-
+
+
+
+
+
Support for DSM2 modules
Podpora DSM2 modulů
-
+
Your radio probably uses a wrong firmware,
eeprom size is 4096 but only the first 2048 are used
Vaše rádio pravděpodobně nepoužívá správnou verzi firmware,
velikost eeprom je 4096B, ale pouze prvních 2048B je použito.
-
-
-
-
-
-
+
+
+
+
+
+
PPM center adjustment in limits
Možnost nastavovat střed serva šířkou pulzu
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
PPM values displayed in us
hodnoty PPM budou zobrazeny v us (mikrosekundy)
-
-
-
-
-
-
+
+
+
+
+
+
Symetrical Limits
Symetrické limity
Přidá možnost volby mezi
@@ -6718,11 +6932,11 @@ Přidá možnost volby mezi
nastavené limity tedy nemusí být rovny hodnotě -100% a 100%, ale budou pouze maximem výchylky)
-
-
-
-
-
+
+
+
+
+
Pots use in menus navigation
Moznost zadávat hodnoty
a pohybovat se v menu
@@ -6733,29 +6947,29 @@ pomocí potenciometrů
Podpora přídavné desky TelemetrEZ
-
-
+
+
SmartieParts 2.2 Backlight support
Podpora pro modul SmartieParts 2.2
(programátor/podsvícení)
Není určeno pro starší verze Smartie Parts
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set switch by moving some of them
Výběr spínače v mixu atd.
se provádí jeho sepnutím
-
-
-
-
+
+
+
+
Enable resetting values by pressing up and down at the same time
Rychlé nastavení hodnoty současným stiskem dvou tlačítek.
(+) a (-) invertuje hodnotu
@@ -6764,22 +6978,22 @@ se provádí jeho sepnutím
(UP) a (DN) vastaví výchozí hodnotu
-
-
-
-
-
-
+
+
+
+
+
+
No graphical check boxes and sliders
Nahrazeni posuvníku a zatržítek (checkboxu) textem
-
-
-
-
-
-
+
+
+
+
+
+
Don't use bold font for highlighting active items
Vypnout zvýraznění aktivních mixů/spínačů tučným písmem.
Pokud není tato volby vybrána,
@@ -6792,20 +7006,20 @@ zobrazeny normálním písmem
Nezobrazovat Stopu Plynu (Throttle-trace) v panelu STATISTIKA
-
-
-
-
+
+
+
+
EEprom write Progress bar
Progresbar zobrazující zápis do EEPROM
(tj. ukládání nastavení)
-
-
-
-
-
+
+
+
+
+
Imperial units
Imerialní jednotky pro telemetrii
(stopy, palce, míle atd.)
@@ -6815,7 +7029,7 @@ zobrazeny normálním písmem
open9x pro 9XR zákl desku
-
+
Bluetooth interface
@@ -6824,12 +7038,12 @@ zobrazeny normálním písmem
open9x pro x9da zákl. desku
-
-
-
-
-
-
+
+
+
+
+
+
Global variables
Aktivuje Globální Proměnné
Jsou to proměnné, které lze použít pro konfiguraci místo některých pevných číselných hodnot.
@@ -6846,12 +7060,12 @@ Nastavení hodnoty se provádí přímo v seznamu proměnných, nebo pomocí Fun
open9x pro gruvin9x zákl. desku
-
+
Support for SD memory card
Podpora paměťové karty SD
-
+
Support for DSM2 modules using ppm instead of true serial
Podpora DSM2 modulů s použitím PPM místo sériového protokolu
@@ -6864,201 +7078,139 @@ Nastavení hodnoty se provádí přímo v seznamu proměnných, nebo pomocí Fun
open9x pro ersky9x desku
-
+
Enable HELI menu and cyclic mix support
Funkce pro heli, nastavení typu mechaniky
-
+
ersky9x
-
er9x doesn't have Rotary Encoders
- v er9x nelze použít rotační enkodéry
+ v er9x nelze použít rotační enkodéry
-
er9x doesn't have trims as source
- v er9x nelze použít trim jako vstup
+ v er9x nelze použít trim jako vstup
-
er9x doesn't have negative gvars as weight
- v er9x nelze použít negativní GP jako hodnotu váhy
+ v er9x nelze použít negativní GP jako hodnotu váhy
-
er9x doesn't have negative gvars as offset
- v er9x nelze použít negativní GP jako hodnotu ofsetu
+ v er9x nelze použít negativní GP jako hodnotu ofsetu
-
-
-
er9x doesn't have swappable trims
- v er9x nelze přehodit trimy
+ v er9x nelze přehodit trimy
-
-
-
er9x on this board doesn't have Rotary Encoders
- v er9x na této desce nelze použít rotační enkodéry
+ v er9x na této desce nelze použít rotační enkodéry
-
er9x does not support Custom Switch function %1
- er9x nepodporuje ve VS funkci %1
+ er9x nepodporuje ve VS funkci %1
-
-
-
er9x does not support this range for A1/A2
- er9x nepodporuje tento rozsah pro A1/A2
+ er9x nepodporuje tento rozsah pro A1/A2
-
-
-
er9x does not support this telemetry units
- er9x nepodporuje tyto telemetrické jednotky
+ er9x nepodporuje tyto telemetrické jednotky
-
-
Er9x doesn't accept this protocol
- Er9x nepodporuje tento protokol
+ Er9x nepodporuje tento protokol
-
-
Er9x doesn't support custom curves as curve%1, curve as been exported as fixed point
Er9x doesn't support custom curves as curve%1, curve as been imported as fixed point
- Er9x nepodporuje křivky s vlastními body jako křivka k%1, tato křivka byla exportována jako křivka s pevnými body
+ Er9x nepodporuje křivky s vlastními body jako křivka k%1, tato křivka byla exportována jako křivka s pevnými body
-
-
Er9x doesn't support curve with %1 point as curve%2
- Er9x nepodporuje křivku s %1 body jako má křivka k%2
+ Er9x nepodporuje křivku s %1 body jako má křivka k%2
-
-
ersky9x doesn't have Rotary Encoders
- v ersky9x nelze použít rotační enkodéry
+ v ersky9x nelze použít rotační enkodéry
-
-
ersky9x doesn't have trims as source
- v ersky9x nelze použít trim jako vstup
+ v ersky9x nelze použít trim jako vstup
-
-
ersky9x does not support Custom Switch function %1
- ersky9x nepodporuje ve VS funkci %1
+ ersky9x nepodporuje ve VS funkci %1
-
-
Ersky9x doesn't accept this protocol
- Ersky9x nepodporuje tento protokol
+ Ersky9x nepodporuje tento protokol
-
-
-
-
ErSky9x doesn't support custom curves as curve%1, curve as been exported as fixed point
ErSky9x doesn't support custom curves as curve%1, curve as been imported as fixed point
- ErSky9x nepodporuje křivky s vlastními body jako křivka k%1, tato křivka byla exportována jako křivka s pevnými body
+ ErSky9x nepodporuje křivky s vlastními body jako křivka k%1, tato křivka byla exportována jako křivka s pevnými body
-
-
-
-
ErSky9x doesn't support curve with %1 point as curve%2
- ErSky9x nepodporuje křivku s %1 body jako má křivka k%2
+ ErSky9x nepodporuje křivku s %1 body jako má křivka k%2
-
-
-
-
-
+
+
+
+
Warning
Varování
-
-
+
EEPROM saved with these warnings:
EEPROM uložena s těmito varováními:
-
-
-
-
Flight modes settings on expos not exported
Phases settings on expos not exported
- Nastavení letových režimů v expech nebylo exportováno
+ Nastavení letových režimů v expech nebylo exportováno
-
-
-
-
-
-
-
-
Open9x on this board doesn't have Rotary Encoders
- v Open9x na této desce nelze použít rotační enkodéry
+ v Open9x na této desce nelze použít rotační enkodéry
-
gruvin9x doesn't have trims as source
- v gruvin9x nelze použít trim jako vstup
+ v gruvin9x nelze použít trim jako vstup
-
gruvin9x doesn't have swappable trims
- v gruvin9x nelze přehodit trimy
+ v gruvin9x nelze přehodit trimy
-
gruvin9x on this board doesn't have Rotary Encoders
- v gruvin9x na této desce nelze použít rotační enkodéry
+ v gruvin9x na této desce nelze použít rotační enkodéry
-
gruvin9x does not support Custom Switch function %1
- gruvin9x nepodporuje ve VS funkci %1
+ gruvin9x nepodporuje ve VS funkci %1
-
gruvin9x only accepts %1 expos
- v gruvin9x lze použít jen %1 exp
+ v gruvin9x lze použít jen %1 exp
-
-
gruvin9x doesn't support custom curves as curve%1, curve as been exported as fixed point
gruvin9x doesn't support custom curves as curve%1, curve as been imported as fixed point
- gruvin9x nepodporuje křivky s vlastními body jako křivka k%1, tato křivka byla exportována jako křivka s pevnými body
+ gruvin9x nepodporuje křivky s vlastními body jako křivka k%1, tato křivka byla exportována jako křivka s pevnými body
-
-
gruvin9x doesn't support curve with %1 point as curve%2
- gruvin9x nepodporuje křivku s %1 body jako má křivka k%2
+ gruvin9x nepodporuje křivku s %1 body jako má křivka k%2
@@ -7068,447 +7220,478 @@ Nastavení hodnoty se provádí přímo v seznamu proměnných, nebo pomocí Fun
FM%1
-
+
+ Input%1
+
+
+
+
English
-
+
French
-
+
Italian
-
+
German
-
+
Czech
-
+
Slovak
-
+
Spanish
-
+
Portuguese
-
+
Swedish
-
- CH
-
-
-
-
+
No
Žádný
-
+
RotEnc A
Otočný enkodér :A
-
+
Rot Enc B
Otočný enkodér :B
-
+
Rot Enc C
Otočný enkodér :C
-
+
Rot Enc D
Otočný enkodér :D
-
+
Rot Enc E
Otočný enkodér :E
-
-
+
+
No repeat
-
+
%1 sec
-
+
Safety %1
Zabezpečení(zámek) %1
-
+
Trainer
Trenér
-
+
Trainer RUD
Trenér - směrovka
-
+
Trainer ELE
Trenér - výškovka
-
+
Trainer THR
Trenér - plyn
-
+
Trainer AIL
Trenér - křidélka
-
+
Instant Trim
-
+
Play Sound
Přehrát zvuk
-
+
Play Haptic
Vibrovat
-
+
Reset
-
+
Vario
-
+
Play Both
Přehrát pár
-
+
Play Value
Přehrát hodnotu
-
+
Start Logs
Začít logovat
-
+
Volume
Hlasitost
-
+
Backlight
Podsvětlení
-
+
+ Adjust GV%1
+
+
+
-
+
+
<font color=red><b>Inconsistent parameter</b></font>
-
+
+ Rotary Encoder
+
+
+
+
!Flight mode %1
!Letový režim %1
-
+
Flight mode %1
Letový režim %1
-
+
Yellow
Žlutá
-
+
Orange
Oranžová
-
+
Red
Červená
-
+
Winged Shadow How High
-
+
Winged Shadow How High (not supported)
Winged Shadow How High (nepodporován)
-
+
FrSky Sensor Hub
FrSky Senzor Hub
-
+
+
None
Žádný
-
+
Imperial
Imperiální
-
+
Metric
Metrické
-
+
Extra Fine
Extra jemný
-
+
Fine
Jemný
-
+
Medium
Střední
-
+
Coarse
Hrubý
-
+
Exponential
Exponenciální
-
+
Count Up
Přičítat
-
+
Count Down
Odečítat
-
+
%1:%2,
-
+
: %1 Channels, %2usec Delay
: %1 Kanálů, %2us pauza
-
+
+ Flight modes(%1)
+
+
+
+
+ Flight mode(%1)
+
+
+
+
Rudder
Směrovka
-
+
Elevator
Výškovka
-
+
Throttle
Plyn
-
+
Aileron
Křidélka
-
+
Play Track
Hrát stopu
-
-
+
+
---
-
+
Rud Trim
Trim směrovky
-
+
Ele Trim
Trim výškovky
-
+
Thr Trim
Trim plynu
-
+
Ail Trim
Trim křidélek
-
+
Rot Enc
-
+
+ Polish
+
+
+
+
+ CH%1
+
+
+
+
Background Music
Hudba na pozadí
-
+
Background Music Pause
Hudba na pozadí -pozastavit
-
Adjust GV1
- Nastav GP1
+ Nastav GP1
-
Adjust GV2
- Nastav GP2
+ Nastav GP2
-
Adjust GV3
- Nastav GP3
+ Nastav GP3
-
Adjust GV4
- Nastav GP4
+ Nastav GP4
-
Adjust GV5
- Nastav GP5
+ Nastav GP5
-
+
Delay %1 sec
Zpoždění %1sec
-
+
Duration %1 sec
Trvání %1 sec
-
-
-
+
+
+
Timer1
-
-
-
+
+
+
Timer2
-
-
+
+
All
Vše
-
-
+
+
Telemetry
Telemetrie
-
+
Value
Hodnota
-
+
Decr:
-
+
Incr:
-
+
+ Played once, not during startup
+
+
+
+
%1s
-
+
Value
Hodnota
-
+
Source
Zdroj
-
+
GVAR
Proměnná
-
+
Increment
Upravit
@@ -7521,118 +7704,96 @@ Nastavení hodnoty se provádí přímo v seznamu proměnných, nebo pomocí Fun
Fáze %1
-
Diff
- Dif
+ Dif
-
- Expo
-
-
-
-
+
Own trim
Vlastní trim
-
+
Flight mode %1 trim
Flight phase %1 trim
Trim režimu LR%1
-
+
Own value
Vlastní hodnota
-
+
Flight mode %1 value
Flight phase %1 value
Hodnota režimu LR%1
-
+
Keys
Klávesy
-
+
Sticks
Páky
-
+
Keys + Sticks
Klávesy i páky
-
+
+
-GV%1
-GP%1
-
(-GV%1)
- (-GP%1)
+ (-GP%1)
-
-
+
+
+
GV%1
GP%1
-
Curve
- Křivka
+ Křivka
-
-
-
+
+
+
Simulator for this firmware is not yet available
Simulátor pro tuto verzi firmware zatím není dostupný
-
-
-
Open9x doesn't allow Curve%1 in expos
- v Open9x nelze použít Křivku k%1 v expech
+ v Open9x nelze použít Křivku k%1 v expech
-
-
+
+
Simultaneous usage of expo and curves is no longer supported
Současné použití expa a křivek již není podporováno
-
-
-
-
-
-
-
Flight modes settings on mixers not exported
- Nastevení Letových režimů v mixech není exportováno
+ Nastevení Letových režimů v mixech není exportováno
-
-
Flight mode settings on mixers not exported
Phases settings on mixers not exported
- Nastavení letových režimů v mixech nebylo exportováno
+ Nastavení letových režimů v mixech nebylo exportováno
-
-
-
-
This version of open9x does not support Custom Switch function %1
- Tato verze Open9x nepodporuje ve VS funkci %1
+ Tato verze Open9x nepodporuje ve VS funkci %1
Open9x on gruvin9x board doesn't accept this function
@@ -7643,25 +7804,25 @@ Nastavení hodnoty se provádí přímo v seznamu proměnných, nebo pomocí Fun
Open9x nepodporuje tuto funkci na desce 9X/9XR
-
+
openTx only accepts %1 points in all curves
openTx oumožňuje pouze %1 bodů ve všech křivkách dohromady
-
-
-
+
+
+
OpenTX on this board doesn't accept this function
OpenTX nepodporuje tuto funkci na této zákl. desce
-
-
+
+
OpenTX doesn't accept this protocol
OpenTX nepodporuje tento protokol
-
+
OpenTX doesn't allow this number of channels
V OpenTX nelze použít tento počet kanálů
@@ -7670,26 +7831,8 @@ Nastavení hodnoty se provádí přímo v seznamu proměnných, nebo pomocí Fun
Open9x nepodporuje tuto funkci na této zákl. desce
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Open9x doesn't accept this protocol
- Open9x nepodporuje tento protokol
+ Open9x nepodporuje tento protokol
Open9x doesn't allow this number of channels
@@ -7700,67 +7843,39 @@ Nastavení hodnoty se provádí přímo v seznamu proměnných, nebo pomocí Fun
V Open9x nelze použít tento počet kanálů pro PPM2
-
-
-
-
-
-
open9x only accepts %1 points in all curves
- Open9x podporuje pouze %1 bodů ve všech křivkách
+ Open9x podporuje pouze %1 bodů ve všech křivkách
-
+
Simultaneous usage of expo and curves is no longer supported in open9x
Současné použití expa a křivek již není v Open9x podporováno
-
-
open9x on this board doesn't have Rotary Encoders
- v Open9x na této desce nelze použít rotační enkodéry
+ v Open9x na této desce nelze použít rotační enkodéry
-
-
-
-
-
-
-
-
-
-
-
-
-
open9x only accepts %1 expos
- v Open9x lze použít jen %1 exp
+ v Open9x lze použít jen %1 exp
-
th9x does not support Custom Switch function %1
- th9x nepodporuje ve VS funkci %1
+ th9x nepodporuje ve VS funkci %1
-
+
th9x on this board doesn't have Rotary Encoders
v th9x na této desce nelze použít rotační enkodéry
-
-
-
th9x doesn't support custom curves as curve%1, curve as been exported as fixed point
th9x doesn't support custom curves as curve%1, curve as been imported as fixed point
- th9x nepodporuje křivky s vlastními body jako křivka k%1, tato křivka byla exportována jako křivka s pevnými body
+ th9x nepodporuje křivky s vlastními body jako křivka k%1, tato křivka byla exportována jako křivka s pevnými body
-
-
-
th9x doesn't support curve with %1 point as curve%2
- th9x nepodporuje křivku s %1 body jako má křivka k%2
+ th9x nepodporuje křivku s %1 body jako má křivka k%2
Warning!
@@ -7783,25 +7898,20 @@ Pořadí telemetrických kanálů bylo změněno, prosím zkontrolujte nastvení
V konfiguraci DR/Expo byly provedeny změny, zkontrolujte nastavení než poletíte!
-
(GV%1)
- (GP%1)
+ (GP%1)
Flight Phase 0 (Default)
Fáze FP0 (Výchozí)
-
-
Flight Mode 0 (Default)
- Letový Režim 0 (Výchozí)
+ Letový Režim 0 (Výchozí)
-
-
FM %1
- LR %1
+ LR %1
Warning!
@@ -7833,6 +7943,591 @@ The OpenTX/Companion Team.
+
+ Setup
+
+
+ Form
+
+
+
+
+ Model Name
+ Název modelu
+
+
+
+ Timer2
+
+
+
+
+ Timer1
+
+
+
+
+ Throttle Source
+ Stopa plynu (pro spínání stopek)
+
+
+
+ Switch startup Warning
+ Kontrola výchozí polohy spínačů
+
+
+
+ Center beep
+ Zvuk ve středové poloze
+
+
+
+ Trim Increment
+ Krok trimu
+
+
+
+ ON
+ ZAPNUTO
+
+
+
+ OFF
+
+
+
+
+ Check
+ Kontrola
+
+
+
+ Model Image
+ Obrázek modelu
+
+
+
+ Exponential
+ Exponenciální
+
+
+
+ Extra Fine
+ Extra jemný
+
+
+
+ Fine
+ Jemný
+
+
+
+ Medium
+ Střední
+
+
+
+ Coarse
+ Hrubý
+
+
+
+ Extended Limits
+ Rozšířené limity (125%)
+
+
+
+ Extended Trims
+ Rozšířený rozsah trimů
+
+
+
+ Throttle Trim
+ Trim plynu
+
+
+
+ Throttle Warning
+
+
+
+
+ Reverse throttle operation.
+If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
+
+
+ Obrácení funkce plynu.
+Pokud je zaškrtnuto,funkce plynu bude opačná. Poloha vypnuto bude nahoře.
+Funkce trimu bude opačná, stejně tak i varování polohy páky plynu.
+
+
+
+
+
+ Reverse Throttle
+
+
+
+
+ Telemetry
+
+
+ Form
+
+
+
+
+
+
+
+ A1
+ Telem. vstup A1
+
+
+
+
+
+
+ A2
+ Telem. vstup A2
+
+
+
+ RSSI
+
+
+
+
+ Alarm 1
+
+
+
+
+
+ ----
+
+
+
+
+
+ Yellow
+ Žlutá
+
+
+
+
+ Orange
+ Oranžová
+
+
+
+
+ Red
+ Červená
+
+
+
+ Alarm 2
+
+
+
+
+ Serial Protocol
+ Sériový protokol
+
+
+
+ Volt source
+ Snímač napětí
+
+
+
+ Metric
+ Metrické
+
+
+
+ Imperial
+ Imperiální
+
+
+
+ Current source
+ Snímač proudu
+
+
+
+ Protocol
+ Protokol
+
+
+
+ NONE
+ Žádný
+
+
+
+
+ FAS
+
+
+
+
+ None
+ Žádný
+
+
+
+ FrSky Sensor Hub
+ FrSky Senzor Hub
+
+
+
+ CEL
+ Článek
+
+
+
+ 2
+ CH2
+
+
+
+ 3
+ CH3
+
+
+
+ 4
+ CH4
+
+
+
+ Units
+ Jednotky
+
+
+
+ Blades
+ Počet listů vrtule
+
+
+
+ Altimetry / Vario
+
+
+
+
+ Alti
+
+
+
+
+ Alti+
+
+
+
+
+ Vario
+
+
+
+
+ Sink Max
+ Klesání Max
+
+
+
+ Off
+
+
+
+
+ Climb Max
+ Stoupání Max
+
+
+
+ Sink Min
+ Klesání Min
+
+
+
+ Climb Min
+ Stoupání Min
+
+
+
+ Vario source
+ Vario senzor
+
+
+
+ Vario limits
+ Rozsah varia
+
+
+
+ Use GPS as altitude source
+ Použít GPS jako senzor výšky
+
+
+
+ Display altitude in toolbar
+ Zobrazit výšku v nástrojové liště
+
+
+
+ Various
+
+
+
+
+ mAh count
+
+
+
+
+ FAS Offset
+
+
+
+
+ Persistent mAh
+
+
+
+
+ TelemetryAnalog
+
+
+ Form
+
+
+
+
+ Unit
+ Jednotky
+
+
+
+ Max Value
+ Maximim
+
+
+
+ Alarm 1
+
+
+
+
+
+ ----
+
+
+
+
+
+ Yellow
+ Žlutá
+
+
+
+
+ Orange
+ Oranžová
+
+
+
+
+ Red
+ Červená
+
+
+
+
+ <
+
+
+
+
+
+ >
+
+
+
+
+ Alarm 2
+
+
+
+
+ Min Value
+ Minimum
+
+
+
+ Volts (V)
+ Volty (V)
+
+
+
+ Amps (A)
+ Ampéry (A)
+
+
+
+ Speed (m/s or ft/s)
+ Rychlost (m/s nebo ft/s)
+
+
+
+ Raw (-)
+ Jednotky (-)
+
+
+
+ Speed (km/h or miles/h)
+ Rychlost (km/h nebo míle/h)
+
+
+
+ Meters (m or ft)
+ Vzdálenost (m nebo ft)
+
+
+
+ Temp (°)
+ Teplota (°)
+
+
+
+ Fuel (%)
+ Palivo (%)
+
+
+
+ mAmps (mA)
+ MiliAmpéry (mA)
+
+
+
+ Range
+ Rozsah
+
+
+
+ TelemetryCustomScreen
+
+
+ Form
+
+
+
+
+ Custom Screen Type
+ Typ panelu
+
+
+
+ Nums
+ Hodnoty
+
+
+
+ Bars
+ Ukazatele
+
+
+
+ Min
+
+
+
+
+ Source
+ Zdroj
+
+
+
+ Gauge
+ Ukazatel
+
+
+
+ Max
+
+
+
+
+ TelemetryPanel
+
+
+ Telemetry screen %1
+
+
+
+
+ Winged Shadow How High
+
+
+
+
+ Winged Shadow How High (not supported)
+ Winged Shadow How High (nepodporován)
+
+
+
+ Timer
+
+
+ Form
+
+
+
+
+ mm:ss
+
+
+
+
+ Countdown
+
+
+
+
+ MinuteBeep
+ Minuta
+
+
+
+ Persistent
+ Ukládání
+
+
+
+ (00:00:00)
+
+
+
+
+ TimerPanel
+
+
+ None
+ Žádný
+
+
+
+ Beeps
+
+
+
+
+ Countdown
+
+
+
avrOutputDialog
@@ -8170,40 +8865,40 @@ m2560 pro V4 desky
sériový port sam-ba
-
+
DFU-UTIL Configuration
Konfigurace DFU-UTIL
-
+
SAM-BA Configuration
Konfigurace SAM-BA
-
+
AVRDUDE Configuration
Konfigurace AVRDUDE
-
-
-
+
+
+
Select Location
Procházet umístění
-
-
+
+
Companion
-
+
<b><u>WARNING!</u></b><br>This will reset the fuses of %1 to the factory settings.<br>Writing fuses can mess up your radio.<br>Do this only if you are sure they are wrong!<br>Are you sure you want to continue?
<b><u>POZOR!</u></b><br>Toto nastaví pojistky %1 do továrního nastavení.<br>Zápis pojistek může poškodit vaše rádio.<br>Proveďte pouze pokud jste si jist že jsou nastaveny špatně!<br>Jste si opravdu jist, že chcete pokračovat?
-
+
<b><u>WARNING!</u></b><br>Normally CPU type is automatically selected according to the chosen firmware.<br>If you change the CPU type the resulting eeprom could be inconsistent.
<b><u>VAROVÁNÍ!</u></b><br>Běžně je typ CPU vybrán podle typu zvoleného firmware.<br>Pokud změníte typ CPU, výsledná eeprom nemusí být platná.
@@ -8217,7 +8912,7 @@ m2560 pro V4 desky
-
+
Write to TX
Zapsat do rádia
@@ -8295,7 +8990,7 @@ m2560 pro V4 desky
-
+
Browse for file
Procházet ...
@@ -8342,7 +9037,7 @@ m2560 pro V4 desky
Zapsat do rádia
-
+
Write firmware to TX
Zapsat firmware do rádia
@@ -8359,12 +9054,12 @@ m2560 pro V4 desky
Zapsat %1 do rádia
-
+
Current profile
Současný profil
-
+
Open
Otevřít
@@ -8373,48 +9068,48 @@ m2560 pro V4 desky
Vyberte soubor pro zápis do paměti EEPROM
-
-
-
-
-
-
+
+
+
+
+
+
Warning
Varování
-
+
%1 is not a known firmware
%1 není známý firmware
-
+
Burn anyway !
Přesto vypálit !
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Error
Chyba
-
+
Unable to find file %1!
Nemohu nalézt soubor %1!
-
-
-
+
+
+
Error opening file %1:
%2.
Chyba při otevírání souboru %1:
@@ -8425,72 +9120,72 @@ m2560 pro V4 desky
Neplatný binární soubor EEPROM %1, Přesto pokračovat ?
-
+
Write Models and Settings to TX
Zapsat modely a nastavení do rádia
-
+
Write Models and Settings in %1 to TX
Zapsat modely a nastavení v %1 do rádia
-
+
Choose file to load Models and Settings from
Vyberte soubor s daty modelů a nastavení
-
-
-
+
+
+
Invalid binary Models and Settings File %1, Proceed anyway ?
Neplatný soubor s binárními daty modelů a nastavení %1, Přesto pokračovat ?
-
+
Error reading file %1:
%2.
Chyba při otevírání souboru %1:
%2.
-
+
Open Image to load
Otevřít soubor s logem
-
+
Images (%1)
obrázky (%1)
-
-
+
+
Cannot load %1.
Nemohu načíst %1.
-
+
Cannot save customized firmware
Nelze uložit upravený firmware
-
+
Custom image not found
Vlastní obrázek nebyl nalezen
-
+
No firmware selected
nebyl vybrán firmware
-
+
Wrong radio calibration data in profile, Settings not patched
Profil neobsahuje platná kalibrační data, nastavení nebyla upravena
-
+
Wrong radio setting data in profile, Settings not patched
Profil neobsahuje platná data nastavení rádia, nastavení nebyla upravena
@@ -8503,15 +9198,15 @@ m2560 pro V4 desky
Špatná HW data v profilu, nebala zaměněna v EEPROM
-
-
+
+
Cannot write file %1:
%2.
Nelze zapsat soubor %1:
%2.
-
+
Error writing file %1:
%2.
Chyba při zápisuí souboru %1:
@@ -8742,14 +9437,14 @@ m2560 pro V4 desky
-
+
-
-
-
-
-
-
+
+
+
+
+
+
Switch
Spínač
@@ -8805,10 +9500,10 @@ m2560 pro V4 desky
-
-
-
-
+
+
+
+
Offset
Ofset
@@ -8816,8 +9511,8 @@ m2560 pro V4 desky
-
-
+
+
Min
@@ -8825,8 +9520,8 @@ m2560 pro V4 desky
-
-
+
+
Max
@@ -8842,8 +9537,8 @@ m2560 pro V4 desky
-
-
+
+
CH
@@ -8877,68 +9572,50 @@ m2560 pro V4 desky
-
+
Weight
Váha
-
-
-
- Expo
-
-
Phase
Fáze
-
-
-
-
-
-
+
+
Curve
Křivka
-
+
Mixers
Mixy
-
-
+
+
noTrim
Žádný trim
-
-
- FMTrim
-
-
-
-
-
Diff
- Dif
+ Dif
-
-
+
+
Delay(u%1:d%2)
Zpoždění(u%1:d%2)
-
-
+
+
Slow(u%1:d%2)
Zpomalení(u%1:d%2)
-
-
+
+
Warn
Varování
@@ -8953,66 +9630,63 @@ m2560 pro V4 desky
Model bez jména
-
+
-
-
+
+
DISABLED
ZAKÁZÁN
-
+
Curves
Křivky
-
+
5 Points Curves
Pěti-bodové křivky
-
-
-
-
+
+
+
+
pt %1
bod %1
-
+
9 Points Curves
Devíti-bodové křivky
-
Custom Switches
- Virtuální spínače
+ Virtuální spínače
-
-
CS
- VS
+ VS
Function Switches
Funkce
-
-
+
+
Function
Funkce
-
-
+
+
Param
Parametr
-
-
+
+
Enable
Povoleno
@@ -9021,71 +9695,71 @@ m2560 pro V4 desky
FS
-
+
Telemetry Settings
Nastavení telemetrie
-
-
+
+
Analog
-
-
+
+
Unit
Jednotky
-
-
+
+
Scale
Rozsah
-
-
-
-
+
+
+
+
A%1
-
-
+
+
Alarm 1
-
-
+
+
Alarm 2
-
-
-
-
+
+
+
+
Type
Typ
-
-
-
-
+
+
+
+
Condition
Podmínka
-
-
-
-
-
-
+
+
+
+
+
+
Value
Hodnota
@@ -9098,29 +9772,28 @@ m2560 pro V4 desky
Název režimu
-
+
-
-
+
+
Flight modes
Letové režimy
-
+
-
-
+
+
Flight mode
Letový režim
-
Custom Functions
- Funkce
+ Funkce
-
-
+
+
Repeat
Opakování
@@ -9129,52 +9802,68 @@ m2560 pro V4 desky
Fce
-
+
Safety Switches
Bezpečnostní spínače
-
-
+
+
RSSI Alarm
-
-
+
+
Telemetry Bars
Telemetrické ukazatele
-
-
+
+
Bar Number
Číslo ukazatele
-
-
+
+
Source
Zdroj
-
-
+
+
Custom Telemetry View
Vlastní zobrazení telemetrie
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignment
+
+
+
+
CF
FN
-
+
Print Document
Vytisknout dokument
-
+
Select PDF output file
Vyberte cílový PDF soubor
@@ -9187,24 +9876,22 @@ m2560 pro V4 desky
-
+
People who have contributed to this project
Lidé kteří přispěli tomuto projektu
-
+
Coders
Programátoři
-
- Honors go to Rafal Tomczak (RadioClone) and Thomas Husterer (th9x)
-of course. Also to Erez Raviv (er9x) and the fantastic eePe program
-which was the staring point for OpenTX Companion.
+
+ Honors go to Rafal Tomczak (RadioClone), Thomas Husterer (th9x) and Erez Raviv (er9x and eePe)
-
+
Companion Release Notes
@@ -9217,12 +9904,12 @@ Thomasi Husteterovi (th9x) a také Erazovi Ravivovi(er9x) a jeho fantastickému
na jehož základech companion9x vznikl.
-
+
Thank you all !!!
Děkujeme vám všem !!!
-
+
Contributors
Přispěvatelé
@@ -9231,7 +9918,7 @@ na jehož základech companion9x vznikl.
Poznámky k vydání Companion9x
-
+
OpenTX Release Notes
Poznámky k vydání OpenTX
@@ -9283,20 +9970,20 @@ p, li { white-space: pre-wrap; }
-
+
Save Firmware
Save To Hex
Uložit firmware
-
-
-
+
+
+
Select an original firmware file
Vyberte soubor s firmwarem
-
+
Open
Otevřít
@@ -9305,69 +9992,69 @@ p, li { white-space: pre-wrap; }
soubory HEX (*.hex);;
-
+
Select an image to customize your splash <br />or save actual firmware splash
Vyberte obrázek kterým chcete upravit vaše úvodní logo, <br />nebo vložte aktuální logo do firmwaru
-
-
-
-
+
+
+
+
Error
Chyba
-
+
Could not find bitmap to replace in file
Nemohu nalézt pozici loga k nahrazení v souboru.
Obsahuje firmware podporu loga?
-
+
Open Image to load
Otevřít soubor s logem
-
+
Images (%1)
obrázky (%1)
-
-
+
+
Cannot load %1.
Nemohu načíst %1.
-
-
+
+
Save your custimized firmware
Uložte upravený firmware
-
-
+
+
Write to file
Uložit do souboru
-
+
Error reading file %1
Chyba při otevírání souboru %1
-
+
Firmware correctly saved.
Firmware bylo v pořádku uloženo.
-
+
Firmware not saved.
Firmware nebylo uloženo.
-
+
PNG images (*.png);;
obrázky PNG (*.png);;
@@ -9791,17 +10478,17 @@ Tlačítkem Zrušit přerušíte kalibraci
%2.
-
+
Select your log file
Vyberte soubor s logy
-
+
Available fields
Dostupná pole
-
+
The selected logfile contains %1 invalid lines out of %2 total lines
Zvolený soubor logu obsahuje %1neplatných řádků z celkových %2
@@ -9809,7 +10496,7 @@ Tlačítkem Zrušit přerušíte kalibraci
mdiChild
-
+
Simulate Tx
Simulace Rádia
@@ -10259,191 +10946,196 @@ Tlačítkem Zrušit přerušíte kalibraci
Předvolby
-
+
Check for selected Fw updates
Aktualizace vybraného firmware
-
+
Ask use of wizard for new models
Zeptat se na použití průvodce pro nový model
-
+
Invert Pixels
Invertovat
-
-
+
+
...
-
+
Remember switches in simulator
Pamatovat si přepínače v simulátoru
-
+
Enable
Povolit
-
+
Calibrate
Kalibrovat
-
-
-
-
+
+
+
+
Open Folder
Vybrat složku
-
+
FwInfo
-
+
Check for updates
Zkontrolovat aktualizace
-
+
Open Image
Načíst obrázek
-
+
Language
Jazyk
-
-
+
+
Download
Stáhnout
-
+
Set language of voice.
May be different from firmware language
Vyberte jazykovou verzi hlasu tts(voice).
Může být jiná než verze firmwaru
-
+
Voice
Hlas tts
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
CheckBox
-
+
Ask for flashing after Download
Po stažení firmwaru se zeptat, zda ho hned zapsat do rádia
-
+
Export Profile
Exportovat profil
-
+
Import Profile
Importovat profil
-
+
Profile Name
Název profilu
-
+
Automatically add version number to the filename after download
Přidat číslo verze do názvu souboru staženého firmwaru
-
+
Save Profile
Uložit profil
-
+
+ Show Splash At Start
+
+
+
+
Simu BackLight
BackLight Color
Barva podsvětlení Simu
-
+
Blue
Modrá
-
+
Green
Zelená
-
+
Red
Červená
-
+
Orange
Oranžová
-
+
Yellow
Žlutá
@@ -10452,22 +11144,21 @@ Může být jiná než verze firmwaru
Kontrolovat aktualizace vybraného firmwaru
-
+
Check for updates on startup
Aktualizace při spuštění
-
Language (requires restart)
- Jazyk companion (vyžaduje restart)
+ Jazyk companion (vyžaduje restart)
-
+
Custom TX splash screen
Vlastní úvodní logo
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -10477,27 +11168,26 @@ Toto je použito šablonami k určení
který kanál patří ke kterému výstupu.
-
+
Firmware
-
+
Default Stick Mode
Výchozí mód vysílačky
-
+
Default Channel Order
Výchozí pořadí kanálů
-
Show Splash Screen
- Zobrazit úvodní logo
+ Zobrazit úvodní logo
-
+
Personal splash library
Vlastní knihovna s logy
@@ -10506,7 +11196,7 @@ který kanál patří ke kterému výstupu.
Pamatovat polohu přepínačů
-
+
Mode selection:
Mode 1:
@@ -10547,77 +11237,81 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
Mode 1 (Směr.Výšk.Plyn.Křid)
-
+
Mode 2 (RUD THR ELE AIL)
Mode 2 (Směr.Plyn.Výšk.Křid)
-
+
Mode 3 (AIL ELE THR RUD)
Mode 3 (Křid.Výšk.Plyn.Směr)
-
+
Mode 4 (AIL THR ELE RUD)
Mode 4 (Křid.Plyn.Výšk.Směr)
-
+ Normal
+ Normální
+
+
+
Joystick
-
+
Include companion splashes
Zahrnout i výchozí loga
-
+
Only user defined splashes
Jen vlastní loga
-
+
Splash library behaviour
Chování knihovny s logy
-
+
Automatic Backup Folder
Složka pro automatické zálohy
-
+
SD Structure path
Cesta k obsahu SD karty
-
+
Processor ID
ID procesoru
-
+
Recent History Size
Počet položek nedávné historie
-
+
Find Executable
-
+
Google Earth Executable
-
+
Profile slot
Slot profilu
@@ -10626,7 +11320,7 @@ Mode 4:
Složka pro zálohy EEprom
-
+
auto backup before write
zálohovat před zápisem
@@ -10635,17 +11329,17 @@ Mode 4:
Složka zvukových dat
-
+
Simulator capture folder
Složka pro snímky obrazovky Simu
-
+
Use clipboard only
Kopírovat pouze do schránky
-
+
Last downloaded release: %1
Naposledy stažené vydání: %1
@@ -10658,43 +11352,43 @@ Mode 4:
Companion9x nemůže stáhnout zvolený firmware.
-
+
The selected firmware has never been downloaded by Companion.
-
+
The selected firmware cannot be downloaded by Companion.
-
+
Image stored in settings
Logo nastavené v předvolbách
-
-
+
+
No joysticks found
Joystick nenalezen
-
+
Select your Models and Settings backup folder
Zvolte složku pro automatické zálohy modelů a nastavení
-
+
Select Google Earth executable
-
+
Select the folder replicating your SD structure
Vyberte složku která představuje obsah SD karty rádia
-
+
Profile name is empty, profile slot %1 will be deleted.<br>Are you sure ?
Název profilu je prázdný, slot %1 bude smazán.<br>Jste si jist ?
@@ -10761,7 +11455,7 @@ zatim ve zkušební verzi
Podpora DSM2 modulů s použitím PPM místo sériového protokolu
-
+
Select your library folder
Support for SD memory card
Vyberte složkus s logy
@@ -10840,7 +11534,7 @@ nutno zastavět hlasový modul
Bez uživatelsky definovatelných křivek
-
+
Select your snapshot folder
Vyberte složku pro snímky obrazovky simulátoru
@@ -10849,14 +11543,14 @@ nutno zastavět hlasový modul
Vyber složku pro zálohování eeprom
-
-
+
+
Error
Chyba
-
-
+
+
Cannot load %1.
Nemohu načíst %1.
@@ -10869,27 +11563,27 @@ nutno zastavět hlasový modul
Název profilu je prázdný, slot %1 bude odstraněn.<br>Souhlasíte ?
-
+
Export profile As
Exportovat profil jako
-
+
Profile slot is not empty, profile slot %1 will we overwritten.<br>Are you sure ?
Slot profilu není prázdný, slot %1 bude přepsán.<br>Jste si jist ?
-
+
Open Profile to import
Zvolte profil k importu
-
+
Open Image to load
Otevřít soubor
-
+
Images (%1)
obrázky (%1)
@@ -11014,9 +11708,9 @@ nutno zastavět hlasový modul
-
-
-
+
+
+
Name
Název
@@ -11053,7 +11747,7 @@ nutno zastavět hlasový modul
-
+
Enabled
Povoleno
@@ -11106,13 +11800,29 @@ nutno zastavět hlasový modul
-
-
-
-
+
+
+
+
Switch
Spínač
+
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignments
+
+
Phase name
Název
@@ -11146,79 +11856,61 @@ nutno zastavět hlasový modul
Weight
Váha
-
-
-
-
-
- Expo
-
-
Phase
Fáze
-
-
-
-
-
-
-
+
+
+
Curve
Křivka
-
+
Mixers
Mixy
-
-
-
-
-
+
+
+
+
+
CH
-
+
noTrim
Žádný trim
-
- FMTrim
-
-
-
-
-
-
-
-
+
+
+
+
+
Offset
Ofset
-
Diff
- Dif
+ Dif
-
+
Delay(u%1:d%2)
Zpoždění(u%1:d%2)
-
+
Slow(u%1:d%2)
Zpomalení(u%1:d%2)
-
+
Warn
Varování
@@ -11227,85 +11919,78 @@ nutno zastavět hlasový modul
Fáze
-
-
+
+
DISABLED
ZAKÁZÁN
-
+
Limits
Limity
-
-
-
-
+
+
+
+
Min
-
-
-
-
+
+
+
+
Max
-
-
-
+
+
+
Invert
Invertovat
-
-
-
+
+
+
INV
-
-
-
+
+
+
NOR
---
-
+
Curves
Křivky
-
5 Points Curves
- Pěti-bodové křivky
+ Pěti-bodové křivky
-
-
-
+
pt %1
bod %1
-
9 Points Curves
- Devíti-bodové křivky
+ Devíti-bodové křivky
-
Custom Switches
- Virtuální spínače
+ Virtuální spínače
-
-
CS
- VS
+ VS
Delay %1 sec
@@ -11316,46 +12001,45 @@ nutno zastavět hlasový modul
Trvání %1 sec
-
+
Global Variables
Globální proměnné
-
+
GV
GP
-
+
Safety Switches
Bezpečnostní spínače
-
-
-
-
-
+
+
+
+
+
Value
Hodnota
-
Function Switches
- Funkce
+ Funkce
-
+
Function
Funkce
-
+
Parameter
Parametr
-
+
Repeat
Opakování
@@ -11364,101 +12048,101 @@ nutno zastavět hlasový modul
FS
-
+
Telemetry Settings
Nastavení telemetrie
-
-
+
+
Alarm 1
-
-
+
+
Alarm 2
-
+
Analog
-
+
Unit
Jednotky
-
+
Scale
Rozsah
-
-
-
-
+
+
+
+
Type
Typ
-
-
-
-
+
+
+
+
Condition
Podmínka
-
+
A%1
-
+
RSSI Alarm
-
+
Frsky serial protocol
Sériový protokol Frsky
-
+
System of units
Systém jednotek
-
+
Propeller blades
Počet listů vrtule
-
+
Telemetry Bars
Telemetrické ukazatele
-
+
Bar Number
Číslo ukazatele
-
+
Source
Zdroj
-
+
ODF files (*.odt);;PDF Files(*.pdf);;HTML-Files (*.htm *.html);;All Files (*)
soubor ODF (*.odt);;soubor PDF (*.pdf);;soubor HTML (*.htm *.html);;Všechny (*)
-
-
+
+
Custom Telemetry View
Vlastní zobrazení telemetrie
@@ -11468,29 +12152,28 @@ nutno zastavět hlasový modul
Název režimu
-
-
+
+
Flight modes
Letové režimy
-
-
+
+
Flight mode
Letový režim
-
CF
- FN
+ FN
-
+
Print Document
Vytisknout dokument
-
+
Select PDF output file
Vyberte cílový PDF soubor
@@ -11510,7 +12193,7 @@ nutno zastavět hlasový modul
-
+
Right Double Click to Reset
Dvojité kliknutí pravým tlačítkem myši nastaví na střed
@@ -11536,33 +12219,33 @@ nutno zastavět hlasový modul
-
+
Hold X
Držet X
-
+
Fix X
Fixovat X
-
+
Fix Y
Fixovat Y
-
+
Hold Y
Držet Y
-
-
+
+
TextLabel
@@ -11582,39 +12265,39 @@ nutno zastavět hlasový modul
-
+
ID1
-
+
ID2
-
+
P1
Potenciometr1
-
-
-
+
+
+
0 %
-
+
P2
Potenciometr2
-
+
P3
Potenciometr3
-
+
9x Simulator
9x Simulátor
@@ -11625,153 +12308,283 @@ nutno zastavět hlasový modul
- CS1
- VS1
+ LS1
+
- CS2
- VS2
+ LS2
+
- CS3
- VS3
+ LS3
+
- CS4
- VS4
+ LS4
+
- CS5
- VS5
+ LS5
+
- CS6
- VS6
+ LS6
+
- CS7
- VS7
+ LS7
+
- CS8
- VS8
+ LS8
+
- CS9
- VS9
+ LS9
+
- CSA
- VSA
+ LSA
+
- CSB
- VSB
+ LSB
+
- CSC
- VSC
+ LSC
+
- CSD
- VSD
+ LSD
+
- CSE
- VSE
+ LSE
+
- CSF
- VSF
+ LSF
+
- CSG
- VSG
+ LSG
+
- CSH
- VSH
+ LSH
+
+ LSI
+
+
+
+
+ LSJ
+
+
+
+
+ LSK
+
+
+
+
+ LSL
+
+
+
+
+ LSM
+
+
+
+
+ LSN
+
+
+
+
+ LSO
+
+
+
+
+ LSP
+
+
+
+
+ LSQ
+
+
+
+
+ LSR
+
+
+
+
+ LSS
+
+
+
+
+ LST
+
+
+
+
+ LSU
+
+
+
+
+ LSV
+
+
+
+
+ LSW
+
+
+
+ CS1
+ VS1
+
+
+ CS2
+ VS2
+
+
+ CS3
+ VS3
+
+
+ CS4
+ VS4
+
+
+ CS5
+ VS5
+
+
+ CS6
+ VS6
+
+
+ CS7
+ VS7
+
+
+ CS8
+ VS8
+
+
+ CS9
+ VS9
+
+
+ CSA
+ VSA
+
+
+ CSB
+ VSB
+
+
+ CSC
+ VSC
+
+
+ CSD
+ VSD
+
+
+ CSE
+ VSE
+
+
+ CSF
+ VSF
+
+
+ CSG
+ VSG
+
+
+ CSH
+ VSH
+
+
CSI
- VSI
+ VSI
-
CSJ
- VSJ
+ VSJ
-
CSL
- VSL
+ VSL
-
CSM
- VSM
+ VSM
-
CSN
- VSN
+ VSN
-
CSO
- VSO
+ VSO
-
CSP
- VSP
+ VSP
-
CSQ
- VSQ
+ VSQ
-
CSR
- VSR
+ VSR
-
CSS
- VSS
+ VSS
-
CST
- VST
+ VST
-
CSU
- VSU
+ VSU
-
CSV
- VSV
+ VSV
SW1
@@ -11798,7 +12611,7 @@ nutno zastavět hlasový modul
VS6
-
+
BEEP
Zvuk
@@ -11855,10 +12668,9 @@ nutno zastavět hlasový modul
VSJ
-
CSK
SWK
- VSK
+ VSK
SWL
@@ -11905,108 +12717,107 @@ nutno zastavět hlasový modul
VSV
-
CSW
SWW
- VSW
+ VSW
-
+
CH1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-100.1
-
+
CH9
-
+
CH2
-
+
CH10
-
+
CH3
-
+
CH11
-
+
CH4
-
+
CH12
-
+
CH5
-
+
CH13
-
+
CH6
-
+
CH14
-
+
CH7
-
+
CH15
-
+
CH8
-
+
CH16
@@ -12054,33 +12865,33 @@ nutno zastavět hlasový modul
splashLibrary
-
+
...
-
+
Splash Library - page %1 of %2
Knihovna s logy - strana %1 z %2
-
+
Warning
Varování
-
+
Invalid image in library %1
Neplatné logo v knihovně %1
-
+
Information
-
+
No valid image found in library, check your settings
Nebylo nalezenožádné použitelné logo v knihovně, zkontrolujte nastavení
@@ -12339,10 +13150,10 @@ nutno zastavět hlasový modul
-
-
-
-
+
+
+
+
@@ -12383,12 +13194,12 @@ nutno zastavět hlasový modul
-
+
CH12
-
+
CH5
@@ -12429,163 +13240,291 @@ nutno zastavět hlasový modul
- CSK
- VSK
+ LSK
+
- CSC
- VSC
+ LSC
+
- CSD
- VSD
+ LSD
+
- CS7
- VS7
+ LS7
+
- CSL
- VSL
+ LSL
+
- CSB
- VSB
+ LSB
+
- CS1
- VS1
+ LS1
+
- CSH
- VSH
+ LSH
+
- CSG
- VSG
+ LSG
+
- CSE
- VSE
+ LSE
+
- CSF
- VSF
+ LSF
+
- CS8
- VS8
+ LS8
+
- CS9
- VS9
+ LS9
+
- CSA
- VSA
+ LSA
+
- CSM
- VSM
+ LSM
+
- CSJ
- VSJ
+ LSJ
+
- CSI
- VSI
+ LSI
+
- CS4
- VS4
+ LS4
+
- CS5
- VS5
+ LS5
+
- CS2
- VS2
+ LS2
+
- CS3
- VS3
+ LS3
+
- CS6
- VS6
+ LS6
+
- CSN
- VSN
+ LSN
+
- CSO
- VSO
+ LSO
+
- CSP
- VSP
+ LSP
+
- CSQ
- VSQ
+ LSQ
+
- CSR
- VSR
+ LSR
+
- CSS
- VSS
+ LSS
+
- CST
- VST
+ LST
+
- CSU
- VSU
+ LSU
+
- CSV
- VSV
+ LSV
+
+ LSW
+
+
+
+ CSK
+ VSK
+
+
+ CSC
+ VSC
+
+
+ CSD
+ VSD
+
+
+ CS7
+ VS7
+
+
+ CSL
+ VSL
+
+
+ CSB
+ VSB
+
+
+ CS1
+ VS1
+
+
+ CSH
+ VSH
+
+
+ CSG
+ VSG
+
+
+ CSE
+ VSE
+
+
+ CSF
+ VSF
+
+
+ CS8
+ VS8
+
+
+ CS9
+ VS9
+
+
+ CSA
+ VSA
+
+
+ CSM
+ VSM
+
+
+ CSJ
+ VSJ
+
+
+ CSI
+ VSI
+
+
+ CS4
+ VS4
+
+
+ CS5
+ VS5
+
+
+ CS2
+ VS2
+
+
+ CS3
+ VS3
+
+
+ CS6
+ VS6
+
+
+ CSN
+ VSN
+
+
+ CSO
+ VSO
+
+
+ CSP
+ VSP
+
+
+ CSQ
+ VSQ
+
+
+ CSR
+ VSR
+
+
+ CSS
+ VSS
+
+
+ CST
+ VST
+
+
+ CSU
+ VSU
+
+
+ CSV
+ VSV
+
+
CSW
- VSW
+ VSW
SWN
@@ -12644,12 +13583,12 @@ nutno zastavět hlasový modul
Nelze otevřít joystick, není povolený
-
+
Firmware %1 error: %2
Firmware %1 chyba: %2
-
+
- Flight mode: %1(%2)
- Letový režim: %1(%2)
@@ -12658,12 +13597,12 @@ nutno zastavět hlasový modul
- Fáze: %1(%2)
-
+
Simulating Tx (%1)
Simulace Tx (%1)
-
+
Simulating
Simulace
diff --git a/companion/src/translations/companion_de.ts b/companion/src/translations/companion_de.ts
index fd62aa4cd..c35c25d69 100644
--- a/companion/src/translations/companion_de.ts
+++ b/companion/src/translations/companion_de.ts
@@ -1,6 +1,375 @@
+
+ Channels
+
+
+ Name
+ Name
+
+
+
+ Offset
+ Offset
+
+
+
+ Min
+ Min
+
+
+
+ Max
+ Max
+
+
+
+ Invert
+ Invertieren
+
+
+
+ Center
+
+
+
+
+ Sym
+
+
+
+
+ Channel %1
+
+
+
+
+ ---
+ ---
+
+
+
+ INV
+ INV
+
+
+
+ CurveGroup
+
+
+ Diff
+ Diff
+
+
+
+ Expo
+ Expo
+
+
+
+ Func
+
+
+
+
+ Curve
+ Kurve
+
+
+
+ Curves
+
+
+ Form
+
+
+
+
+ Standard
+
+
+
+
+ Custom
+
+
+
+
+ Lines
+
+
+
+
+ Smooth
+
+
+
+
+ Curve type
+
+
+
+
+ Curve name
+
+
+
+
+ Curve %1
+ Kurve %1
+
+
+
+ %1 points
+
+
+
+
+ Are you sure you want to reset curve %1 ?
+
+
+
+
+ Editing curve %1
+ Kurve %1 bearbeiten
+
+
+
+ Not enough free points in EEPROM to store the curve.
+
+
+
+
+ CustomFunctionsPanel
+
+
+ Switch
+ Schalter
+
+
+
+ Action
+
+
+
+
+ Parameters
+
+
+
+
+ Enable
+ Aktivieren
+
+
+
+ ON
+
+
+
+
+ Error
+ Fehler
+
+
+
+ Unable to find sound file %1!
+
+
+
+
+ &Delete
+ &Löschen
+
+
+
+ Delete
+ Löschen
+
+
+
+ &Copy
+ &Kopieren
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ &Ausschneiden
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+
+
+
+
+ CustomSwitchesPanel
+
+
+ Condition
+ Zustand
+
+
+
+ V1
+ V1
+
+
+
+ V2
+ V2
+
+
+
+ AND
+
+
+
+
+ Duration
+
+
+
+
+ Delay
+ Verzögerung
+
+
+
+
+ LS%1
+
+
+
+
+ &Delete
+ &Löschen
+
+
+
+ Delete
+ Löschen
+
+
+
+ &Copy
+ &Kopieren
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ &Ausschneiden
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+
+
+
+
+ Dialog
+
+
+ Dialog
+ Dialog
+
+
+
+ Curve type
+
+
+
+
+ Coefficient
+
+
+
+
+ Both
+ Beide
+
+
+
+ x>0
+ x>0
+
+
+
+ x<0
+ x<0
+
+
+
+ Y at X=0
+
+
+
+
+ Side
+
+
+
+
+ Y at X=-100
+
+
+
+
+ Y at X=100
+
+
+
+
+ Linear
+
+
+
+
+ Single Expo
+
+
+
+
+ Symmetrical f(x)=-f(-x)
+
+
+
+
+ Symmetrical f(x)=f(-x)
+
+
+
ExpoDialog
@@ -8,9 +377,8 @@
Dialog
-
Expo
- Expo
+ Expo
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
@@ -25,14 +393,13 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Expo value</span></p></body></html>
-
+
Weight
Weg
-
Name
- Name
+ Name
The value of the weight
@@ -44,124 +411,320 @@ p, li { white-space: pre-wrap; }
Phase
-
-
-
+
+
GV
-
-
Phase used by the expo.
- Zugewiesene Phase für Weg/Expo.
+ Zugewiesene Phase für Weg/Expo.
-
+
+ The source for the mixer
+ Die Mischerquelle
+
+
+
+ Input name
+
+
+
+
+ Phase used by the input.
+
+
+
+
Flight modes
Flugphasen
-
+
0
0
-
+
1
1
-
+
2
2
-
+
3
3
-
+
4
4
-
+
5
5
-
+
6
6
-
+
7
7
-
+
8
8
-
+
Switch
Schalter
-
+
+ Switch used by the input.
+If blank then the input is considered to be "ON" all the time.
+
+
+
+
+ The curve used by the input
+
+
+
+
+ Source
+ Quelle
+
+
+
+ Line name
+
+
+
Switch used by the expo.
If blank then the expo is considered to be "ON" all the time.
- Benützter Schalter für Weg/Expo.
+ Benützter Schalter für Weg/Expo.
Bei keiner Eingabe ist Expo generell eingeschaltet.
-
Curve/Exponential
- kurve/Exponential
+ kurve/Exponential
-
+
Stick Side
Knüppel Seite
-
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Delay ans Slow</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These values control the speed and delay of the output of the mix. </p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Delay is not zero the actuation of the mix will be delayed by the specified amount of seconds.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Slow is not zero then the speed of the mix will be set by the value specified -> the value states the number of seconds it takes to transit from -100 to 100.</p></body></html>
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Verzögerung</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Diese Einstellung beeinflußt die Geschwindigkeit und Verzögerung des Mischerausganges.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Wenn Verzögerung ungleich 0 ist wird die Betätigung der Mischerfunktion für die eingegebene Anzahl Sekunden verzögert</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Wenn Langsam ungleich 0 ist wird die Geschwindigkeit des Mischers durch den eingegebenen Wert beeinflußt. Der Wert legt die
+Anzahl Sekunden fest, welche der Mischer für einen Durchgang von -100 bis +100 benötigen soll.</p></body></html>
+
+
+
+ Scale
+ Skala
+
+
+
+ Include Trim
+ Trimmung einschliessen
+
+
+
+ No
+ Nein
+
+
+
+ Yes
+ Ja
+
+
+
Curve
Kurve
-
The curve used by the expo
- Angewendete Kurve für Expo
+ Angewendete Kurve für Expo
Mode
Modus
-
+
NEG
NEG
-
+
POS
POS
-
+
ALL
BEIDE
-
DEST -> %1
Meaning not all clear
- Ziel -> %1
+ Ziel -> %1
+
+
+
+ Edit %1
+
+
+
+
+ Rud
+ Rud
+
+
+
+ Ele
+ Ele
+
+
+
+ Thr
+ Thr
+
+
+
+ Ail
+ Ail
+
+
+
+ FlightMode
+
+
+ Form
+
+
+
+
+ Fade In
+ Fade In
+
+
+
+ Fade Out
+ Fade Out
+
+
+
+ Name
+ Name
+
+
+
+ Switch
+ Schalter
+
+
+
+ trim1
+ Trimmung1
+
+
+
+ trim2
+ Trimmung2
+
+
+
+ trim4
+ Trimmung4
+
+
+
+ trim3
+ Trimmung3
+
+
+
+ Rud
+ Rud
+
+
+
+ Ele
+ Ele
+
+
+
+ Thr
+ Thr
+
+
+
+ Ail
+ Ail
+
+
+
+ Rotary Encoder %1
+
+
+
+
+ GVAR%1
+
+
+
+
+ FlightModes
+
+
+ Flight Mode %1
+
+
+
+
+ (%1)
+
+
+
+
+ (default)
+
@@ -184,13 +747,13 @@ Dieses sind für alle Modelle im gleichen EEPROM gültig.
Einstellungen
-
+
Contrast
Kontrast
-
-
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -201,12 +764,12 @@ p, li { white-space: pre-wrap; }
Die Werte können sein
-
+
Sound Mode
Sound Modus
-
+
Beeper
Piepser
@@ -219,7 +782,7 @@ Die Werte können sein
PcmWav
-
+
Speaker Pitch (spkr only)
Lautstärke (nur PiSpkr)
@@ -228,12 +791,12 @@ Die Werte können sein
Haptik Stärke (nur PiSpkr)
-
+
Battery Warning
Batteriewarnung
-
+
Battery warning voltage.
This is the threashhold where the battery warning sounds.
@@ -244,12 +807,12 @@ Dies ist die Warnschwelle bei der die Batteriewarnung piepst
Mögliche Werte von 5V..10V
-
+
Battery Calibration
Kalibrierung Batteriespannung
-
+
Battery calibration:
This value will be added to the measured battery voltage. Use this value to calibrate the meter with an external meter.
Kalibrierung Batteriespannung:
@@ -260,7 +823,7 @@ Dieser Wert wird zur gemessenen Batteriespannung addiert. Dieser Wert wird zur K
Schalter Hintergrundbeleuchtung
-
+
This is the switch selectrion for turning on the backlight (if installed).
@@ -273,39 +836,39 @@ Dieser Wert wird zur gemessenen Batteriespannung addiert. Dieser Wert wird zur K
Automatische Hintergrundbeleuchtung EIN/AUS nach
-
+
If this value is not 0, any keypress will turn on the backlight and turn it off after the specified number of seconds.
Wenn dieser Wert ungleich 0 ist, wird die Hintergrundbeleuchtung nach irgendeinem Tastendruck eingeschaltet
und nach einer eingestellten Zeit in Sekunden ausgeschaltet.
-
-
+
+
sec
sek
-
+
Inactivity Timer
Inaktivitätstimer
-
+
If not zero will sound beeps if the transmitter has been left without inputs for the specified number of minutes.
Falls ungleich 0 ertönt ein Piepston wenn der Sender für eine bestimmte Anzahl Minuten nicht bedient wurde.
-
+
min
Min
-
+
Timer Beeps
Piepston Timer
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -314,22 +877,22 @@ p, li { white-space: pre-wrap; }
Einzelton jede volle Minute
-
+
Every Minute
Jede Minute
-
+
Beeps at 30, 15, 10, and down from5 seconds
Piepston bei 30, 15, 10 und 5 Sekunden
-
+
Count Down to Zero
Countdown bis 0
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -338,47 +901,43 @@ p, li { white-space: pre-wrap; }
Blinken der Hintergrundbeleuchtung nach Timerablauf
-
+
Flash on beep
Blinken während Piepsen
-
Reverse Throttle Operation
- Gasminimum vorne
+ Gasminimum vorne
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Gasminimum vorne.
+ Gasminimum vorne.
Wenn dieses angewählt wurde ist der Knüppelweg für Gas reversiert. Leerlaufstellung ist vorne, die Trimmung sowie die Knüppelstellungswarnung ist ebenfalls umgedreht.
-
+
Show Splash Screen on Startup
Zeige Startbildschirm während Start
-
-
+
+
Show splash screen on startup
Zeige Startbildschirm während Start
-
Throttle Startup Warning
- Warnung Gasknüppelstellung
+ Warnung Gasknüppelstellung
-
-
-
-
-
-
+
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -399,37 +958,36 @@ Warnung stummer Betrieb - Wird angezeigt, wenn der Piepser ausgeschaltet ist
-
Switch Startup Warning
- Warnung Schalterstellung beim Einschalten
+ Warnung Schalterstellung beim Einschalten
-
+
Memory Startup Warning
Warnung Speicherplatz beim Einschalten
-
+
Alarm Warning
Warnung Alarm
-
+
Pot Scrolling Enable
PotScroll einschalten
-
+
Bandgap Measuring Enable
Bandgap Messung aktivieren
-
+
Channel Order (For Templates)
Kanalanordnung
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -438,12 +996,12 @@ This is used by the templated to determine which channel goes to what number out
Damit werden die Kanäle den Ausgängen zugeordnet.
-
+
Stick Mode
Knüppelmodus
-
+
Mode selection:
Mode 1:
@@ -484,40 +1042,42 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
Mode 1 (RUD ELE THR AIL)
-
+
Mode 2 (RUD THR ELE AIL)
Mode 2 (RUD THR ELE AIL)
-
+
Mode 3 (AIL ELE THR RUD)
Mode 3 (AIL ELE THR RUD)
-
+
Mode 4 (AIL THR ELE RUD)
Mode 4 (AIL THR ELE RUD)
-
+
Beeper Mode
Modus Piepser
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
Beeper volume
0 - Quiet. No beeps at all.
@@ -534,81 +1094,78 @@ Mode 4:
4 - Sehr laut.
-
-
+
+
Quiet
Stumm
-
-
+
+
No Keys
Kein Tastaturpieps
-
-
+
+
Normal
Normal
-
-
+
+
Long
Lange
-
+
Input Filter
Filter Eingang
-
+
Single
Einfach
-
+
Oversample
Oversample
-
+
Filter
Filter
-
+
Owner Name
Besitzer
-
+
-
-
-
+
+
Off
Aus
-
Switches Up
- Schalter oben
+ Schalter oben
-
Switches Down
- Schalter unten
+ Schalter unten
-
+
Trainer
Trainer
-
-
+
+
PPM 1
PPM 1
@@ -621,60 +1178,60 @@ Mode 4:
:=
+
-
-
-
+
+
chn1
chn1
+
-
-
-
+
+
chn2
chn2
+
-
-
-
+
+
chn3
chn3
+
-
-
-
+
+
chn4
chn4
-
+
Mode
Modus
-
+
Telemetry NO DATA Alarm
Telemetrie Alarm aktivieren
-
+
Show Owner Name on Splash
Zeige Besitzernamen in Startbildschirm
-
+
Only Alarms
nur Alarme
-
-
+
+
All
Alles
@@ -683,86 +1240,86 @@ Mode 4:
HG Licht bei Knüppelbewegung
-
+
THR
THR
-
+
RUD
RUD
-
+
ELE
ELE
-
+
AIL
leave it as abreviation?
AIL
-
+
GEA
GEA
-
+
ID0
ID0
-
+
ID1
ID1
-
+
ID2
ID2
-
+
Beeper Length
Piepser Länge
-
-
+
+
X-Short
X-kurz
-
-
+
+
Short
Kurz
-
-
+
+
X-Long
X-lang
-
+
Haptic Mode
Haptik Modus
-
+
Alarms Only
nur Alarme
-
+
Haptic Length
-
+
GPS Coordinates
@@ -777,122 +1334,122 @@ Mode 4:
-
+
Speaker
-
+
BeeperVoice
-
+
SpeakerVoice
-
+
hh° (N/S) mm' ss''.dd
-
+
NMEA
-
+
Timeshift from UTC
-
+
LCD Display Type
-
+
Standard
-
+
Optrex
-
+
Speaker Volume
-
+
Haptic Strength
-
+
BackLight Brightness
Helligkeit der Hintergrundbeleuchtung
-
+
RotEnc Navigation
-
+
BackLight Auto OFF after
Automatische Hintergrundbeleuchtung AUS nach
-
+
BackLight Switch
Schalter Hintergrundbeleuchtung
-
+
BackLight On Stick Move
HG Licht bei Knüppelbewegung
-
+
BackLight Invert
Hintergrundbeleuchtung invertieren
-
+
Country Code
-
+
Europe
-
+
Japan
-
+
America
Amerika
-
+
FrSky Internal Alarm
-
+
StickScroll
-
+
PPMSim
@@ -902,47 +1459,47 @@ Mode 4:
-
+
CrossTrim
-
+
Beep volume
Piepser lautstärke
-
+
Wav volume
-
+
Vario volume
Vario Lautstärke
-
+
Background volume
Hintergrundlautstärke
-
+
Measurement Units
-
+
Metric
Metrisch
-
+
Imperial
Imperial
-
+
FAI Mode
@@ -952,206 +1509,228 @@ Mode 4:
-
+
4800 Baud
-
+
9600 Baud
-
+
14400 Baud
-
+
19200 Baud
-
+
38400 Baud
-
+
57600 Baud
-
+
76800 Baud
-
+
115200 Baud
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen. This function cannot be disabled by the radio.
-
+
Readonly Unlock
-
+
SC
-
+
SE
-
+
SA
-
+
SF
-
+
SH
-
+
SD
-
+
SB
-
+
SG
-
+
Input
Eingang
-
+
Weight
Weg
-
+
Switch
Schalter
+
-
-
-
+
+
+= (Sum)
+= (add)
+
-
-
-
+
+
:= (Replace)
:= (ersetzen)
-
-
+
+
PPM 2
PPM 2
-
-
+
+
PPM 3
PPM 3
-
-
+
+
PPM 4
PPM 4
-
+
Telemetry
Telemetrie
-
+
RSSI Alarm 1
RSSI Alarm 1
-
-
+
+
----
----
-
-
+
+
Yellow
gelb
-
-
+
+
Orange
orange
-
-
+
+
Red
Rot
-
+
RSSI Alarm 2
RSSI Alarm 2
-
+
NO DATA Alarm
KEINE DATEN Alarm
-
+
Calibration
Kalibrierung
-
+
POT 4
POT 4
-
+
Current
-
-
+
+
+ Pot (normal)
+
+
+
+
+
+ Multipos Switch
+
+
+
+
+ S1 Type
+
+
+
+
+ S2 Type
+
+
+
+
+
Mid value
Mid Value
@@ -1169,54 +1748,54 @@ Mode 4:
Positiv
-
+
STICK 1
KNÜPPEL 1
-
+
STICK 2
KNÜPPEL 2
-
+
STICK 3
KNÜPPEL 3
-
-
+
+
Negative span
-
-
+
+
Positive span
-
+
STICK 4
KNÜPPEL 4
-
+
POT 1
POT 1
-
+
POT 2
POT 2
-
+
POT 3
POT 3
-
+
Battery
Akku
@@ -1249,7 +1828,7 @@ Mode 4:
ANALOG 7
-
+
v
v
@@ -1258,44 +1837,254 @@ Mode 4:
PPM In
-
+
PPM Multiplier
PPM Multiplikator
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen.
This function cannot be disabled by the radio.
Are you sure ?
-
-
+
+
Warning
Warnung
-
+
Wrong data in profile, radio calibration was not retrieved
-
+
Wrong data in profile, hw related parameters were not retrieved
-
+
Do you want to store calibration in %1 profile<br>overwriting existing calibration?
-
+
Calibration and HW parameters saved.
+
+ Heli
+
+
+ Form
+
+
+
+
+ Invert Elevator
+ Höhenruder invertieren
+
+
+
+ Invert Aileron
+ Querruder invertieren
+
+
+
+ Invert Collective
+ Collective Pitch invertieren
+
+
+
+ Invert
+ Invertieren
+
+
+
+ Off
+ Aus
+
+
+
+ 120
+ 120
+
+
+
+ 120X
+ 120X
+
+
+
+ 140
+ 140
+
+
+
+ 90
+ 90
+
+
+
+ Collective
+ Collective
+
+
+
+ Swash Type
+ Taumelscheibe
+
+
+
+ Swash Ring
+ Ring Taumelscheibe
+
+
+
+ InputsPanel
+
+
+
+ Move Up
+ Nach oben
+
+
+
+
+ Ctrl+Up
+ Ctrl+Up
+
+
+
+
+ Move Down
+ Nach unten
+
+
+
+
+ Ctrl+Down
+ Ctrl+Down
+
+
+
+ Clear All Settings
+
+
+
+
+ Source(%1)
+
+
+
+
+ No Trim
+
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ Not enough available inputs!
+
+
+
+
+ Delete Selected Inputs?
+
+
+
+
+ &Add
+ &Addieren
+
+
+
+ Ctrl+A
+ Ctrl+a
+
+
+
+ &Edit
+
+
+
+
+ Enter
+ Eingabe
+
+
+
+ &Delete
+ &Löschen
+
+
+
+ Delete
+ Löschen
+
+
+
+ &Copy
+ &Kopieren
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ &Ausschneiden
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+
+
+
+
+ Du&plicate
+ D&uplizieren
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Inputs?
+
+
+
+
+ Really clear all the inputs?
+
+
+
MainWindow
@@ -1303,10 +2092,10 @@ Are you sure ?
eePe EEPROM Editor
-
-
-
-
+
+
+
+
File loaded
Datei geladen
@@ -1319,11 +2108,11 @@ Are you sure ?
Eine neue Version des ER9X ist vorhanden. Möchtest Du diese herunterladen ?
-
-
-
-
-
+
+
+
+
+
Save As
Speichern unter
@@ -1332,17 +2121,17 @@ Are you sure ?
EEPROM hex Datei (*.hex);;EEPROM bin Datei (*.bin)
-
-
+
+
No updates available at this time.
Kein Update vorhanden.
-
-
-
-
-
+
+
+
+
+
Unable to check for updates.
Kann nicht auf Updates überprüfen.
@@ -1355,30 +2144,35 @@ Are you sure ?
Eine neue Version von ER9x(%2) ist vorhanden(r%1)<br>Möchtest Du diese herunterladen ?
-
+
Executable (*.exe)
Anwendung (*.exe)
-
+
+ A new release of Companion is available please check the OpenTX website!
+
+
+
+
Would you like to launch the installer?
Möchtest Du das Installationsprogramm starten ?
-
-
+
+
Compilation server requires registration, please check OpenTX web site
-
+
A new version of %1 firmware is available (current %2 - newer %3).
Do you want to download it now ?
Eine neue Version der %1-Firmware ist verfügbar (aktuell %2 - neueste %3)..
Möchten Sie sie jetzt herunterladen?
-
+
Open
Öffnen
@@ -1387,8 +2181,8 @@ Möchten Sie sie jetzt herunterladen?
EEPROM Dateien (*.bin *.hex);;BIN Dateien (*.bin);;HEX Dateien (*.hex)
-
-
+
+
File saved
Datei gespeichert
@@ -1429,7 +2223,7 @@ Möchten Sie sie jetzt herunterladen?
Lese Flash und speichere in Datei
-
+
Copyright
Copyright
@@ -1439,78 +2233,74 @@ Möchten Sie sie jetzt herunterladen?
Wenn Du dieses Programm und/oder die Firmware nützlich findest dann unterstütze uns durch
-
donating
- spenden
+ spenden
About eePe
Über eePe
-
-
-
+
+
&%1 %2
&%1 %2
-
%1 %2
- %1 %2
+ %1 %2
-
+
&New
&Neu
-
+
Create a new file
Neue Datei erstellen
-
+
&Open...
Datei ö&ffnen...
-
+
Open an existing file
Öffne eine bestehende Datei
-
+
&Save
Datei &speichern
-
+
Save the document to disk
Speichere das Dokument auf Festplatte
-
+
Save &As...
Speichern &unter...
-
+
Save the document under a new name
Speichere das Dokument unter einem neuen Namen
-
&Preferences...
- &Einstellungen...
+ &Einstellungen...
-
+
Edit general preferences
Bearbeite generelle Einstellungen
-
+
&Check for updates...
&Überprüfe auf Updates...
@@ -1519,7 +2309,7 @@ Möchten Sie sie jetzt herunterladen?
Überprüfe auf eine neue Version von eePe/er9x
-
+
Display previous warning again at startup ?
@@ -1529,102 +2319,97 @@ Möchten Sie sie jetzt herunterladen?
Eine neue Version von companion9x ist verfügbar (version %1)<br>Möchten Sie sie herunterladen?
-
+
New release available
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Fehler
-
-
-
-
-
+
+
+
+
+
Error opening file %1:
%2.
Fehler beim Öffnen der Datei %1:
%2.
-
+
Compilation server termporary failure, try later
-
+
Display previous message again at startup ?
-
-
-
+
+
+
Companion - Models and Settings Editor - %1 - profile %2
-
-
-
-
+
+
+
+
Companion - Models and Settings Editor - %1
-
+
A new version of Companion is available (version %1)<br>Would you like to download it?
-
- A new release of Companion is available please check the repository
-
-
-
-
+
Firmware does not longer fit in the Tx, due to selected firmware options
-
+
Compilation server temporary failure, try later
-
-
+
+
Compilation server too busy, try later
-
-
+
+
Unknown server failure, try later
-
+
Firmware does not fit in the Tx, due to selected firmware options
-
+
Firmware %1 does not seem to have ever been downloaded.
Version %2 is available.
Do you want to download it now ?
@@ -1633,68 +2418,95 @@ Version %2 ist verfügbar.
Möchten Sie sie jetzt herunterladen?
-
-
+
+
Yes
- Ja
+ Ja
-
-
+
+
No
- Nein
+ Nein
-
-
+
+
Release Notes
-
-
+
+
Do you want to download release %1 now ?
-
+
Release notes contain very important informations. Do you want to see them now ?
-
+
+ The selected language will be used the next time you start Companion.
+
+
+
+
+
+
+ OK
+
+
+
+
+ The new theme will be loaded the next time you start Companion.
+
+
+
+
+ The icon size will be used the next time you start Companion.
+
+
+
+
Firmware updates
-
+
Current firmware does not provide release notes informations.
-
+
Cannot write file %1:
%2.
Kann Datei %1:
%2 nicht schreiben.
-
-
-
-
-
+
+
+
+
+
Taranis radio not found
-
-
-
-
+
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
+
+
+ Configure transmitter start screen...
+
+
The file %1
has not been recognized as a valid EEPROM
@@ -1704,16 +2516,16 @@ wurde nicht als gültige EEPROM Datei erkannt.
Trotzdem brennen?
-
-
-
+
+
+
Backup is impossible
-
-
-
+
+
+
The backup dir set in preferences does not exist
@@ -1722,8 +2534,8 @@ Trotzdem brennen?
Sicherung EEPROM von Tx
-
-
+
+
Warning
Warnung
@@ -1732,7 +2544,7 @@ Trotzdem brennen?
Brenne Flash in den Tx
-
+
Conversion failed
Umwandlung gescheitert
@@ -1745,7 +2557,7 @@ Trotzdem brennen?
EEPROM in Tx zurückspeichern
-
+
Restore failed
Zurückspeicherung gescheitert
@@ -1762,7 +2574,7 @@ Trotzdem brennen?
Flashen des Tx nicht möglich, ursprüngliche EEProm Dateil ist verfügbar unter: %1
-
+
Backup failed
Sicherung fehlgeschlagen
@@ -1771,151 +2583,149 @@ Trotzdem brennen?
Sicherung des bestehenden EEEPROMs vom Tx gescheitert, Flash Prozess abgebrochen
-
+
Do you want to write the firmware to the transmitter now ?
-
-
-
-
+
+
+
+
Read Models and Settings From Tx
-
+
Write Models and settings from %1 to the Tx?
-
+
The file %1
has not been recognized as a valid Models and Settings file
Write anyway ?
-
-
-
-
-
-
+
+
+
+
+
+
Backup Models and Settings From Tx
-
+
Cannot check Models and Settings compatibility! Continue anyway?
-
+
The transmitter firmware belongs to another product family, check file and preferences!
-
+
The transmitter firmware is outdated, please upgrade!
-
+
Write Models and Settings To Tx
-
-
+
+
Write Firmware To Tx
-
+
Cannot convert Models and Settings for use with this firmware, original data will be used
-
+
Restore Models and Settings To Tx
-
+
Could not restore Models and Settings to TX. The models and settings data file can be found at: %1
-
+
Firmware write failed
-
+
Could not write firmware to to transmitter. The models and settings data file can be found at: %1
-
+
Cannot backup existing Models and Settings from TX. Firmware write process aborted
-
+
Save transmitter Models and Settings to File
-
+
Impossible to identify the radio on your system, please verify that the eeprom disk is connected.
-
+
Read Tx Firmware to File
-
Version %1 (revision %2), %3
- Version %1 (Revision %2), %3
+ Version %1 (Revision %2), %3
The companion9x project was originally forked from eePe
Das 'companion9x' Projekt ist ursprünglich aus eePe entstanden.
-
If you've found this program useful, please support by
- Wenn Sie diese Programm hilfreich finden, bitte unterstützen Sie
+ Wenn Sie diese Programm hilfreich finden, bitte unterstützen Sie
About companion9x
Über companion9x
-
+
&loadBackup...
-
+
Load backup from file
-
+
Lo&gs
-
+
Ctrl+G
-
+
Open log file
@@ -1924,7 +2734,7 @@ Write anyway ?
Überprüfe auf neue Version von companion9x/er9x
-
+
Contributors &List...
&Mitwirkende...
@@ -1933,178 +2743,392 @@ Write anyway ?
Zeige die Liste der Mitwirkenden von 'companion9x'
-
+
ChangeLog...
-
- The Companion project was originally forked from eePe
+
+ OpenTX Home Page: <a href='%1'>%1</a>
-
+
+ The OpenTX Companion project was originally forked from <a href='%2'>eePe</a>
+
+
+
+
+ If you've found this program useful, please support by <a href='%1'>donating</a>
+
+
+
+
+ Version %1, %3
+
+
+
+
About Companion
-
+
+ &General Preferences...
+
+
+
+
Check for new version of Companion
-
+
Show Companion contributors list
-
+
Show Companion changelog
-
+
Firmware ChangeLog...
-
+
Show firmware changelog
-
+
Compare...
-
+
Compare models
-
Customize your &TX...
- Passe Deinen &TX an...
+ Passe Deinen &TX an...
-
+
Customize the splash screen of your TX
Persönliche Anpassung des Tx Startbildschirmes
-
+
E&xit
Be&enden
-
+
Exit the application
Beendet die Anwendung
-
+
Cu&t
&Ausschneiden
-
+
Cut the current selection's contents to the clipboard
Scheidet die momentane Auwahl aus und kopiert den Inhalt in den Zwischenspeicher
-
+
&Copy
&Kopieren
-
+
Copy the current selection's contents to the clipboard
Kopiert die momentane Auswahl in den Zwischenspeicher
-
+
&Paste
&Einfügen
-
+
Paste the clipboard's contents into the current selection
Fügt den Inhalt des Zwischenspeichers in die momentane Auswahl ein
-
+
&Write Models and Settings To Tx
-
+
Write Models and Settings to transmitter
-
+
&Read Models and Settings From Tx
-
+
Read Models and Settings from transmitter
-
+
Write Firmware
-
+
Write firmware to transmitter
-
+
Write Models and Settings from file to Tx
-
+
Write Models and Settings from file to transmitter
-
+
Save transmitter Models and Settings to file
-
+
Save the Models and Settings from the transmitter to a file
-
+
Read Firmware
-
+
Read firmware from transmitter
-
+
+ &Configure connection software...
+
+
+
+
Configure software for reading from and writing to the transmitter
-
-
+
+ Classic
+
+
+
+
+ The multicolor classical Companion icon theme
+
+
+
+
+ A monochrome black icon theme
+
+
+
+
+ A monochrome white icon theme
+
+
+
+
+ A monochrome blue icon theme
+
+
+
+
+ Small
+
+
+
+
+ Use small toolbar icons
+
+
+
+
+ Use normal size toolbar icons
+
+
+
+
+ Normal
+ Normal
+
+
+
+ Use big toolbar icons
+
+
+
+
+ Big
+
+
+
+
+ Use huge toolbar icons
+
+
+
+
+ Huge
+
+
+
+
+ System default language
+
+
+
+
+ Use system default language in menus
+
+
+
+
+ Czech
+
+
+
+
+ Use Czech in menus
+
+
+
+
+ German
+ Deutch
+
+
+
+ Use German in menus
+
+
+
+
+ English
+
+
+
+
+ Use English in menus
+
+
+
+
+ French
+
+
+
+
+ Use French in menus
+
+
+
+
+ Italian
+
+
+
+
+ Use Italian in menus
+
+
+
+
+ Hebrew
+
+
+
+
+ Use Hebrew in menus
+
+
+
+
+ Polish
+
+
+
+
+ Use Polish in menus
+
+
+
+
+ Portuguese
+
+
+
+
+ Use Portuguese in menus
+
+
+
+
+ Swedish
+
+
+
+
+ Use Swedish in menus
+
+
+
+
+ Russian
+
+
+
+
+ Use Russian in menus
+
+
+
+
+ Set Icon Theme
+
+
+
+
+ Set Icon Size
+
+
+
+
+ &Settings
+
+
+
+
+
Invalid Models and Settings File %1
-
+
Invalid binary Models and Settings File %1
@@ -2113,7 +3137,7 @@ Write anyway ?
&Schreibe EEPROM in den Sender
-
+
Ctrl+Alt+W
Ctrl+Alt+W
@@ -2126,7 +3150,7 @@ Write anyway ?
&Lese EEPROM vom Sender
-
+
Ctrl+Alt+R
Ctrl+Alt+R
@@ -2167,152 +3191,144 @@ Write anyway ?
Lese Flash Speicher und schreibe in den Sender
-
&Configure...
- &Einstellungen...
+ &Einstellungen...
Configure burning software
Einstellungen Brennsoftware
-
+
&List programmers
&Programmiergeräte
-
+
List available programmers
Programmiergeräte
-
+
&Fuses...
&Fuses...
-
+
Show fuses dialog
Zeige Fuses Einstellungen
-
+
&Simulate
&Simulation
-
+
Alt+S
Alt+S
-
+
Simulate selected model.
Simuliert das ausgewählte Modell.
-
+
&Print
&Drucken
-
+
Ctrl+P
Ctrl+P
-
+
Print current model.
Drucke momentane Modelleinstellungen.
-
Cl&ose
- &Schliessen
+ &Schliessen
-
Close the active window
- Schliesst das aktuelle Fenster
+ Schliesst das aktuelle Fenster
-
Close &All
- Schliesse &Alles
+ Schliesse &Alles
-
Close all the windows
- Schliesst alle Fenster
+ Schliesst alle Fenster
-
&Tile
- &Anordnen
+ &Anordnen
-
Tile the windows
- Nebeneinander Ordnen von Fenstern
+ Nebeneinander Ordnen von Fenstern
-
&Cascade
- &Kaskadieren
+ &Kaskadieren
-
Cascade the windows
- Kaskadiere die Fenster
+ Kaskadiere die Fenster
-
Ne&xt
- Nä&chstes
+ Nä&chstes
-
Move the focus to the next window
- Nächstes Fenster aufrufen
+ Nächstes Fenster aufrufen
-
Pre&vious
- Vor&hergehendes
+ Vor&hergehendes
-
Move the focus to the previous window
- Vorhergehendes Fenster aufrufen
+ Vorhergehendes Fenster aufrufen
-
+
&About
&Über
-
+
Show the application's About box
Zeige das Infofenster
-
-
+
+
Recent Files
Letzte Dateien
-
+
+ Set Menu Language
+
+
+
+
&Read/Write
-
+
Write
-
+
Unable to find file %1!
Kann die Datei %1 nicht finden !
@@ -2321,7 +3337,7 @@ Write anyway ?
Ungültige EEPROM Datei %1
-
+
Error reading file %1:
%2.
Fehler beim Lesen der Datei %1:
@@ -2340,37 +3356,35 @@ Write anyway ?
Zeige die er9x/eePe Mitwirkende
-
Switch layout Left/Right
- Schalte Layout um Rechts/Links
+ Schalte Layout um Rechts/Links
-
-
+
+
Firmware Profiles
-
+
&File
&Datei
-
Switch layout direction
- Schalte Programmlayout um
+ Schalte Programmlayout um
companion9x - EEPROM Editor
companion9x - EEPROM Editor
-
+
Checking for updates
Überprüfe auf Updates
-
+
Ignore this version (r%1)?
Diese Version ignorieren (%1)?
@@ -2379,7 +3393,7 @@ Write anyway ?
Eine neue Version von eePe ist vorhanden /r%1)<br>Möchtest Du diese herunterladen ?
-
+
&Edit
&Bearbeiten
@@ -2388,22 +3402,21 @@ Write anyway ?
B&rennen
-
&Window
- &Fenster
+ &Fenster
-
+
&Help
&Hilfe
-
+
File
Datei
-
+
Edit
Bearbeiten
@@ -2412,12 +3425,12 @@ Write anyway ?
Brennen
-
+
Help
Hilfe
-
+
Ready
Fertig
@@ -2433,25 +3446,25 @@ Write anyway ?
Gewähltes Modell löschen ?
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Fehler
@@ -2464,7 +3477,7 @@ Write anyway ?
Kann das Modell nicht anlegen !
-
+
Editing model %1:
Modell %1 bearbeiten :
@@ -2478,8 +3491,8 @@ Write anyway ?
Dokument%1.hex
-
-
+
+
Unable to find file %1!
Kann die Datei %1 nicht finden !
@@ -2494,8 +3507,8 @@ Write anyway ?
Fehler beim Lesen der Datei %1 !
-
-
+
+
Error reading file %1:
%2.
Fehler beim Lesen der Datei %1:
@@ -2515,20 +3528,20 @@ File wrong size - %1
Dateigröße falsch - %1
-
-
-
-
+
+
+
+
Error opening file %1:
%2.
Fehler beim Öffnen der Datei %1:
%2.
-
-
-
-
+
+
+
+
Save As
Speichern unter
@@ -2537,10 +3550,10 @@ Dateigröße falsch - %1
EEPROM hex Datei (*.hex);;EEPROM bin Datei (*.bin)
-
-
-
-
+
+
+
+
Cannot write file %1:
%2.
Kann Datei %1:
@@ -2555,8 +3568,8 @@ Dateigröße falsch - %1
%1
-
-
+
+
Error writing file %1:
%2.
Fehler beim Schreiben der Datei %1:
@@ -2578,97 +3591,97 @@ Möchtest Du die Änderungen speichern ?
Freie Bytes
-
+
Do you want to use model wizard?
-
-
-
+
+
+
Companion
-
+
Ask this question again ?
-
-
+
+
Invalid EEPROM File %1
Ungültige EEPROM Datei %1
-
+
Invalid binary EEPROM File %1
Ungültige EEPROM Programmdatei %1
-
+
Backup is impossible
-
+
The backup dir set in preferences does not exist
-
-
-
+
+
+
Taranis radio not found
-
-
-
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
-
-
-
+
+
+
Backup EEPROM From Tx
Sicherung EEPROM von Tx
-
+
Cannot check eeprom compatibility! Continue anyway?
-
-
+
+
Warning
Warnung
-
+
Firmware in radio is of a different family of eeprom written, check file and preferences!
-
+
Firmware in flash is outdated, please upgrade!
-
+
Write EEPROM To Tx
-
+
Open
Öffnen
-
+
Invalid binary backup File %1
@@ -2677,7 +3690,7 @@ Möchtest Du die Änderungen speichern ?
companion9x
-
+
%1 has been modified.
Do you want to save your changes?
%1 wurde verändert.
@@ -2689,7 +3702,7 @@ Wollen Sie Ihre Änderungen sichern?
Brenne %1 in den Sender ?
-
+
Cannot write temporary file!
Kann temporäre Datei nicht schreiben!
@@ -2757,25 +3770,25 @@ Wollen Sie Ihre Änderungen sichern?
MixerDialog
-
+
Dialog
Dialog
-
+
Source
Quelle
-
-
-
-
+
+
+
+
The source for the mixer
Die Mischerquelle
-
+
Weight
Gewichtung
@@ -2784,10 +3797,7 @@ Wollen Sie Ihre Änderungen sichern?
Der Mischerwert wird mit diesem Wert multipliziert und durch 100 dividiert.
-
-
-
-
+
Offset
Offset
@@ -2800,7 +3810,7 @@ p, li { white-space: pre-wrap; }
Dieser Wert wird zum Eingang addiert
-
+
Include Trim
Trimmung einschliessen
@@ -2810,70 +3820,60 @@ p, li { white-space: pre-wrap; }
Wenn angewählt wird die Trimmung zur Quelle addiert (falls vorhanden)
-
+
Curve
Kurve
-
+
The curve used by the mix
Die Mischerkurve
-
+
Switch
Schalter
-
- Fix Offset
-
-
-
-
-
-
+
+
+
GV
-
+
Switch used by the mix.
If blank then the mix is considered to be "ON" all the time.
Mischerschalter.
Wenn leer ist der Mischer immer aktiv.
-
+
Yes
Ja
-
+
No
Nein
-
+
Warning
Warnung
-
+
Name
Name
-
-
- Curve/Differential
-
-
Phases
Phasen
-
+
Mixer warning.
Setting this value will cause a beep to be emmitted when this value is active.
Not clear what that means...
@@ -2881,32 +3881,32 @@ Setting this value will cause a beep to be emmitted when this value is active.
Wenn diese Einstellung angewählt wird, piepst es wenn dieser Wert aktiv ist.
-
+
OFF
AUS
-
+
1 Beep
1 Piepston
-
+
2 Beep
2 Piepstöne
-
+
3 Beep
3 Piepstöne
-
+
Multiplex
MULTIPLEX
-
+
Multiplexer
This determines how mixer values are added.
@@ -2923,72 +3923,72 @@ Diese Einstellung bestimmt wie die Mischerwerte behandelt werden.
"R" bedeutet der Wert des aktuellen Mischers ersetzt den vorhergehenden Mischer. Wenn der Schalter aus ist wird der Wert ignoriert.
-
+
ADD
ADDIEREN
-
+
MULTIPLY
MULTIPLIZIEREN
-
+
REPLACE
ERSETZEN
-
+
Flight modes
Flugphasen
-
+
Include DR/Expo
-
+
0
0
-
+
1
1
-
+
2
2
-
+
3
3
-
+
4
4
-
+
5
5
-
+
6
6
-
+
7
7
-
+
8
8
@@ -2997,34 +3997,33 @@ Diese Einstellung bestimmt wie die Mischerwerte behandelt werden.
Phase
-
Enable FM Trim
- FPh Trimmung einschl
+ FPh Trimmung einschl
Differential
Differential
-
+
Delay
Verzögerung
-
+
Slow
Langsam
-
+
Up
Nach oben
-
-
-
-
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -3050,51 +4049,225 @@ p, li { white-space: pre-wrap; }
Anzahl Sekunden fest, welche der Mischer für einen Durchgang von -100 bis +100 benötigen soll.</p></body></html>
-
+
Down
Nach unten
-
+
DEST -> X%1
-
+
DEST -> CH%1%2
DEST -> CH%1%2
-
-
FM Trim Value
- FPh Trim Wert
+ FPh Trim Wert
-
+
Rud
Rud
-
+
Ele
Ele
-
+
Thr
Thr
-
+
Ail
Ail
+
+ MixesPanel
+
+
+
+ Move Up
+ Nach oben
+
+
+
+
+ Ctrl+Up
+ Ctrl+Up
+
+
+
+
+ Move Down
+ Nach unten
+
+
+
+
+ Ctrl+Down
+ Ctrl+Down
+
+
+
+ Clear Mixes
+ Mischer löschen
+
+
+
+
+
+ X%1
+
+
+
+
+
+
+ CH%1%2
+ CH%1%2
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ No Trim
+
+
+
+
+ No DR/Expo
+
+
+
+
+ Offset(%1)
+
+
+
+
+ Delay(u%1:d%2)
+ Verzögerung(u%1:d%2)
+
+
+
+ Slow(u%1:d%2)
+ Langsam/u%1:d%2)
+
+
+
+ Warn(%1)
+ Warnung(%1)
+
+
+
+ Not enough available mixers!
+ Nicht genügend Mischer verfügbar!
+
+
+
+ Delete Selected Mixes?
+ Lösche ausgewählte Mischer?
+
+
+
+ &Add
+ &Addieren
+
+
+
+ Ctrl+A
+ Ctrl+a
+
+
+
+ &Edit
+
+
+
+
+ Enter
+ Eingabe
+
+
+
+ &Delete
+ &Löschen
+
+
+
+ Delete
+ Löschen
+
+
+
+ &Copy
+ &Kopieren
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ &Ausschneiden
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+
+
+
+
+ Du&plicate
+ D&uplizieren
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Mixes?
+ Mischer löschen?
+
+
+
+ Really clear all the mixes?
+ Wirklich alle Mischer löschen ?
+
+
ModelEdit
-
+
Dialog
Dialog
@@ -3103,156 +4276,106 @@ Anzahl Sekunden fest, welche der Mischer für einen Durchgang von -100 bis +100
Trainer
-
Throttle2Trig
- Throttle2Trig
+ Throttle2Trig
-
-
-
PPM Frame Length
not accurate Translation
- PPM Frame Length
+ PPM Frame Length
-
-
-
mSec
- mSec
+ mSec
-
-
DSM Type
- DSM-Typ
+ DSM-Typ
-
-
LP4/LP5
- LP4/LP5
+ LP4/LP5
-
-
DSM2only
- nurDSM2
+ nurDSM2
-
-
DSM2/DSMX
- DSM2/DSMX
+ DSM2/DSMX
-
-
RX Number
- Rx Nummer
+ Rx Nummer
-
Throttle Source
Throttle Trace
- Gas Verfolgung
+ Gas Verfolgung
-
-
CH01
- CH01
+ CH01
-
-
CH02
- CH02
+ CH02
-
-
CH03
- CH03
+ CH03
-
-
CH04
- CH04
+ CH04
-
-
CH05
- CH05
+ CH05
-
-
CH06
- CH06
+ CH06
-
-
CH07
- CH07
+ CH07
-
-
CH08
- CH08
+ CH08
-
-
CH09
- CH09
+ CH09
-
-
CH10
- CH10
+ CH10
-
-
CH11
- CH11
+ CH11
-
-
CH12
- CH12
+ CH12
-
-
CH13
- CH13
+ CH13
-
-
CH14
- CH14
+ CH14
-
-
CH15
- CH15
+ CH15
-
-
CH16
- CH16
+ CH16
Function switches
@@ -3323,239 +4446,36 @@ Anzahl Sekunden fest, welche der Mischer für einen Durchgang von -100 bis +100
FSchalter16
-
-
Param
- Parameter
+ Parameter
-
- Disable Throttle Warning
-
-
-
-
- Switch startup Warning
-
-
-
-
Instant Trim
- Instant Trim
+ Instant Trim
-
- REa
-
-
-
-
- REb
-
-
-
-
3POS
- 3POS
+ 3POS
-
-
- Check
-
-
-
-
-
-
- ON
-
-
-
-
-
OFF
- AUS
+ AUS
-
GEA
- GEA
+ GEA
-
ID0
- ID0
+ ID0
-
ID1
- ID1
+ ID1
-
ID2
- ID2
-
-
-
-
- TriggerB
-
-
-
-
- Model Voice
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR1
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR2
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR3
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR4
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR5
-
-
-
-
-
-
-
-
-
-
-
-
- Rotary encoder B
-
-
-
-
-
-
-
-
-
-
-
-
- Rotary encoder A
-
-
-
-
-
- Sym
-
-
-
-
-
- Curve type
-
-
-
-
- 3 points
-
-
-
-
- 3 points custom
-
-
-
-
- 5 points
-
-
-
-
- 5 points custom
-
-
-
-
- 9 points
-
-
-
-
- 9 points custom
-
-
-
-
- 17 points
-
-
-
-
- 17 points custom
-
-
-
-
-
- Duration
-
+ ID2
CSwitchF
@@ -3574,10 +4494,8 @@ Anzahl Sekunden fest, welche der Mischer für einen Durchgang von -100 bis +100
CSchalterG
-
-
Delay
- Verzögerung
+ Verzögerung
CSwitchT
@@ -3643,52 +4561,6 @@ Anzahl Sekunden fest, welche der Mischer für einen Durchgang von -100 bis +100
CSwitchW
CSchalterW
-
-
- Custom Functions
-
-
-
-
- Alti+
-
-
-
-
- Vario
-
-
-
-
- Telemetry screen 1
-
-
-
-
-
-
- Custom Screen Type
-
-
-
-
-
-
- Nums
-
-
-
-
-
-
- Bars
-
-
-
-
- Telemetry screen 2
-
-
FSwitch17
FSchalter17
@@ -3754,877 +4626,178 @@ Anzahl Sekunden fest, welche der Mischer für einen Durchgang von -100 bis +100
FSchalter32
-
+
+ Heli
+
+
+
+
+ Inputs
+
+
+
+
+ Logical Switches
+
+
+
+
+ Switch Assignment
+
+
+
+
Telemetry
Telemetrie
-
-
-
-
A1
- A1
+ A1
-
-
Unit
- Einheit
+ Einheit
Volts (v)
Volt(v)
-
-
Raw (-)
- Roh(-)
+ Roh(-)
-
-
Max Value
- Maximal
+ Maximal
-
- ModelSetup
-
-
-
-
- SB
-
-
-
-
- SD
-
-
-
-
- SA
-
-
-
-
- SC
-
-
-
-
- SG
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- RS
-
-
-
-
Reverse Throttle Operation
- Gasminimum vorne
+ Gasminimum vorne
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Gasminimum vorne.
+ Gasminimum vorne.
Wenn dieses angewählt wurde ist der Knüppelweg für Gas reversiert. Leerlaufstellung ist vorne, die Trimmung sowie die Knüppelstellungswarnung ist ebenfalls umgedreht.
-
- Master
-
-
-
-
- Slave
-
-
-
-
- Trainer Mode
-
-
-
-
- Master/Trainer Port
-
-
-
-
-
-
- Start
-
-
-
-
-
- Polarity
-
-
-
-
- RF Module 1
-
-
-
-
- RF Module 2
-
-
-
-
-
- Persistent
-
-
-
-
-
- (00:00:00)
-
-
-
-
-
- MinuteBeep
-
-
-
-
-
- CountDownBeep
-
-
-
-
- Model Image
-
-
-
-
- Failsafe
-
-
-
-
- External module
-
-
-
-
-
- Failsafe Mode
-
-
-
-
-
- Hold
-
-
-
-
-
- Custom
-
-
-
-
-
- No Pulses
-
-
-
-
- Internal Module
-
-
-
-
+
Flight Modes
-
- Flight Mode 0 (Default)
-
-
-
-
-
-
-
-
-
-
-
-
- Flight Mode Name
-
-
-
-
- GVAR6
-
-
-
-
- GVAR7
-
-
-
-
- FM 1
-
-
-
-
- FM 2
-
-
-
-
- FM 3
-
-
-
-
- FM 4
-
-
-
-
- FM 5
-
-
-
-
- FM 6
-
-
-
-
- FM 7
-
-
-
-
- FM 8
-
-
-
-
- Sticks
-
-
-
-
- Show channels names in mixes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
---
- ---
+ ---
-
-
- Center
-
-
-
-
- Curve name
-
-
-
-
- Curve Creator
-
-
-
-
- Y at X=100
-
-
-
-
- Both
-
-
-
-
- x>0
-
-
-
-
- x<0
-
-
-
-
- Linear
-
-
-
-
- Single Expo
-
-
-
-
- Symmetrical f(x)=-f(-x)
-
-
-
-
- Symmetrical f(x)=f(-x)
-
-
-
-
- Apply
-
-
-
-
- Side
-
-
-
-
- Y at X=-100
-
-
-
-
- Y at X=0
-
-
-
-
- Coefficient
-
-
-
-
- CS9
-
-
-
-
- CSF
-
-
-
-
- CSD
-
-
-
-
-
- AND
-
-
-
-
- CS6
-
-
-
-
- CS1
-
-
-
-
- CS8
-
-
-
-
- CS7
-
-
-
-
- CSA
-
-
-
-
- CSB
-
-
-
-
- CSC
-
-
-
-
- CS5
-
-
-
-
- CS3
-
-
-
-
- CS2
-
-
-
-
- CSE
-
-
-
-
- CSG
-
-
-
-
- CS4
-
-
-
-
- CST
-
-
-
-
- CSM
-
-
-
-
- CSP
-
-
-
-
- CSH
-
-
-
-
- CSO
-
-
-
-
- CSN
-
-
-
-
- CSQ
-
-
-
-
- CSR
-
-
-
-
- CSS
-
-
-
-
- CSL
-
-
-
-
- CSK
-
-
-
-
- CSJ
-
-
-
-
- CSI
-
-
-
-
- CSU
-
-
-
-
- CSV
-
-
-
-
- CSW
-
-
-
-
-
Enable
- aktivieren
+ aktivieren
-
- Volt source
-
-
-
-
- Current source
-
-
-
-
- NONE
-
-
-
-
-
- FAS
-
-
-
-
- CEL
-
-
-
-
- Altimetry / Vario
-
-
-
-
- Alti
-
-
-
-
- Sink Max
- Sunk Max
-
-
-
-
- Climb Max
- Raise Max
-
-
-
-
- Sink Min
- Sunk Min
-
-
-
-
- Climb Min
- Raise Min
-
-
-
-
- Vario source
-
-
-
-
- Vario limits
-
-
-
-
- Use GPS as altitude source
-
-
-
-
- Display altitude in toolbar
-
-
-
-
-
Alarm 1
- Alarm 1
+ Alarm 1
-
-
-
-
-
-
----
- ----
+ ----
-
-
-
-
-
-
Yellow
- Gelb
+ Gelb
-
-
-
-
-
-
Orange
- orange
+ orange
-
-
-
-
-
-
Red
- Rot
+ Rot
-
-
-
-
<
- <
+ <
-
-
-
-
>
- >
+ >
-
-
-
Alarm 2
- Alarm 2
+ Alarm 2
-
-
Min Value
- Minimal
+ Minimal
-
-
-
-
A2
- A2
+ A2
-
RSSI
- RSSI
+ RSSI
-
Alarm 1
- Alarm 1
+ Alarm 1
-
Serial Protocol
- Serielles Protokoll
+ Serielles Protokoll
-
Units
- Einheiten
+ Einheiten
-
None
- Nichts
+ Nichts
-
FrSky Sensor Hub
- FrSky Sensor Hub
+ FrSky Sensor Hub
-
Metric
- Metrisch
+ Metrisch
-
Imperial
- Imperial
+ Imperial
-
2
- 2
+ 2
-
3
- 3
+ 3
-
4
- 4
+ 4
-
Blades
- Rotorblätter
-
-
-
-
- Volts (V)
-
-
-
-
-
- Amps (A)
-
-
-
-
-
- Speed (m/s or ft/s)
-
-
-
-
-
- Speed (km/h or miles/h)
-
-
-
-
-
- Meters (m or ft)
-
-
-
-
-
- Temp (°)
-
-
-
-
-
- Fuel (%)
-
-
-
-
-
- mAmps (mA)
-
+ Rotorblätter
Telemetry Gauges
Telemetrie Balkenanzeigen
-
-
-
Source
- Quelle
+ Quelle
-
-
-
Gauge
- Balken
+ Balken
-
-
-
Gauge 1
- Balken 1
+ Balken 1
TX Alarm
@@ -4635,50 +4808,34 @@ Wenn dieses angewählt wurde ist der Knüppelweg für Gas reversiert. Leerlaufst
RX Alarm
-
-
-
Gauge 2
- Balken 2
+ Balken 2
-
-
-
Gauge 3
- Balken 3
+ Balken 3
-
-
-
Gauge 4
- Balken 4
+ Balken 4
-
- Telemetry screen 3
-
-
-
-
Templates
- Vorlagen
+ Vorlagen
-
+
Simulate
Simulation
-
+
Setup
Konfiguration
-
Model Name
- Modell Name
+ Modell Name
Timer Mode
@@ -4689,263 +4846,173 @@ Wenn dieses angewählt wurde ist der Knüppelweg für Gas reversiert. Leerlaufst
Richtung Stoppuhr
-
-
Count Down
- Herunterzählen
+ Herunterzählen
-
-
Count Up
- Hinaufzählen
+ Hinaufzählen
Timer Value
Einstellung Stoppuhr
-
-
mm:ss
- mm:ss
+ mm:ss
-
Trim Increment
- Trimmer Inkrement
+ Trimmer Inkrement
-
Exponential
- Exponential
+ Exponential
-
Extra Fine
- Sehr fein
+ Sehr fein
-
Fine
- Fein
+ Fein
-
Medium
- Mittel
+ Mittel
-
Coarse
- Grob
+ Grob
-
Throttle Trim
- Trimmung Gas
+ Trimmung Gas
-
Throttle Expo
- Expo Gas
+ Expo Gas
instaTrim Switch
instaTrim Schalter
-
Center beep
- Zentrierpiepston
+ Zentrierpiepston
-
-
-
-
-
-
-
-
-
RUD
- RUD
+ RUD
-
-
-
-
-
-
-
-
-
-
-
-
ELE
- ELE
+ ELE
-
-
-
-
-
THR
- THR
+ THR
-
-
-
-
-
-
-
-
-
-
AIL
- AIL
+ AIL
-
P1
- P1
+ P1
-
P2
- P2
+ P2
-
P3
- P3
+ P3
-
Pulse Shift (polarity)
- Puls Shift (Polarität)
+ Puls Shift (Polarität)
-
-
-
Positive
- Positiv
+ Positiv
-
-
-
Negative
- Negativ
+ Negativ
-
-
-
Protocol
- Protokoll
+ Protokoll
-
-
-
+
Channels
Kanäle
-
-
-
-
-
-
ch
- ch
+ ch
ppm Delay
ppm Verzögerung
-
-
-
usec
- usec
+ usec
-
Extended Limits
- Erweiterte Grenzen
+ Erweiterte Grenzen
-
-
Heli Setup
- Hubschrauber Setup
+ Hubschrauber Setup
-
Swash Type
- Taumelscheibe
+ Taumelscheibe
-
-
Off
- Aus
+ Aus
-
120
- 120
+ 120
-
120X
- 120X
+ 120X
-
140
- 140
+ 140
-
90
- 90
+ 90
-
Collective
- Collective
+ Collective
-
Swash Ring
- Ring Taumelscheibe
+ Ring Taumelscheibe
-
Invert Elevator
- Höhenruder invertieren
+ Höhenruder invertieren
-
Invert Aileron
- Querruder invertieren
+ Querruder invertieren
-
Invert Collective
- Collective Pitch invertieren
+ Collective Pitch invertieren
Expo/Dr
@@ -5008,130 +5075,70 @@ Right
Höhenruder
-
+
Mixes
Mischer
-
Limits
- Grenzen
+ Grenzen
NOR
NOR
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
INV
- INV
+ INV
-
-
-
Channel
- Kanal
+ Kanal
-
-
-
Offset
- Offset
+ Offset
-
-
-
-
-
Min
- Min
+ Min
-
-
-
-
-
Max
- Max
+ Max
-
-
-
Invert
- Invertieren
+ Invertieren
-
+
Curves
Kurven
-
Curve 1
- Kurve 1
+ Kurve 1
-
Curve 2
- Kurve 2
+ Kurve 2
-
Timer1
- Stoppuhr1
+ Stoppuhr1
-
Timer2
- Stoppuhr2
+ Stoppuhr2
-
-
-
PPM delay
- PPM delay
+ PPM delay
-
Extended Trims
- Erweiterte Trimmung
+ Erweiterte Trimmung
Phases
@@ -5146,82 +5153,28 @@ Right
Phasen Name
-
-
-
-
-
-
-
-
-
Fade In
- Fade In
+ Fade In
-
-
-
-
-
-
-
-
-
Fade Out
- Fade Out
+ Fade Out
-
-
-
-
-
-
-
-
-
trim2
- Trimmung2
+ Trimmung2
-
-
-
-
-
-
-
-
-
trim1
- Trimmung1
+ Trimmung1
-
-
-
-
-
-
-
-
-
trim4
- Trimmung4
+ Trimmung4
-
-
-
-
-
-
-
-
-
trim3
- Trimmung3
+ Trimmung3
Flight Phase 1
@@ -5245,80 +5198,65 @@ Right
Expos/DR
-
Curve 3
- Kurve 3
+ Kurve 3
-
Curve 4
- Kurve 4
+ Kurve 4
-
Curve 5
- Kurve 5
+ Kurve 5
-
Curve 6
- Kurve 6
+ Kurve 6
-
Curve 7
- Kurve 7
+ Kurve 7
-
Curve 8
- Kurve 8
+ Kurve 8
-
Curve 9
- Kurve 9
+ Kurve 9
-
Curve 10
- Kurve 10
+ Kurve 10
-
Curve 11
- Kurve 11
+ Kurve 11
-
Curve 12
- Kurve 12
+ Kurve 12
-
Curve 13
- Kurve 13
+ Kurve 13
-
Curve 14
- Kurve 14
+ Kurve 14
-
Curve 15
- Kurve 15
+ Kurve 15
-
Curve 16
- Kurve 16
+ Kurve 16
-
Clear All Curves
Clear All Mixes
- Alle Kurven löschen
+ Alle Kurven löschen
Switches
@@ -5349,29 +5287,20 @@ Right
CSchalter6
-
-
-
-
Function
- Funktion
+ Funktion
-
Custom switches
- Freie Schalter
+ Freie Schalter
-
-
V1
- V1
+ V1
-
-
V2
- V2
+ V2
CSwitch7
@@ -5401,31 +5330,16 @@ Right
CSchalterC
-
Safety Switches
- Sicherheitsschalter
+ Sicherheitsschalter
-
-
-
-
-
-
-
-
-
-
-
-
-
Switch
- Schalter
+ Schalter
-
Value
- Wert
+ Wert
Trims
@@ -5448,11 +5362,8 @@ Right
KNÜPPEL 3
-
-
-
CH%1%2
- CH%1%2
+ CH%1%2
Switch(
@@ -5471,528 +5382,213 @@ Right
Kurve(%1)
-
Delay(u%1:d%2)
- Verzögerung(u%1:d%2)
+ Verzögerung(u%1:d%2)
-
Slow(u%1:d%2)
- Langsam/u%1:d%2)
+ Langsam/u%1:d%2)
-
Warn(%1)
- Warnung(%1)
+ Warnung(%1)
Curve %1
Kurve %1
-
-
Expo
- Expo
+ Expo
Phase
Phase
-
-
Curve
- Kurve
+ Kurve
noTrim
keinTrim
-
FMTrim
- FPh Trimmung
+ FPh Trimmung
-
Diff
- Diff
+ Diff
-
- CF%1
-
-
-
-
Error
- Fehler
+ Fehler
-
- Unable to find sound file %1!
-
-
-
-
Winged Shadow How High
- Winged Shadow How High
+ Winged Shadow How High
-
Winged Shadow How High (not supported)
- Winged Shadow How High (nicht unterstützt)
+ Winged Shadow How High (nicht unterstützt)
-
-
Range
- Bereich
+ Bereich
-
- Simple 4-CH
-
-
-
-
- T-Cut
-
-
-
-
- Sticky T-Cut
-
-
-
-
- V-Tail
-
-
-
-
- Elevon\Delta
-
-
-
-
- Heli Setup with gyro gain control
-
-
-
-
- Gyro gain control
-
-
-
-
- Heli Setup (Futaba's channel assignment style)
-
-
-
-
- Heli Setup with gyro gain control (Futaba's channel assignment style)
-
-
-
-
- Gyro gain control (Futaba's channel assignment style)
-
-
-
-
- Servo Test
-
-
-
-
- MultiCopter
-
-
-
-
- Use Model Config Wizard
-
-
-
-
Not enough available mixers!
- Nicht genügend Mischer verfügbar!
+ Nicht genügend Mischer verfügbar!
-
Not enough available expos!
- Nicht genügend Expos verfügbar!
+ Nicht genügend Expos verfügbar!
-
Delete Selected Mixes?
- Lösche ausgewählte Mischer?
+ Lösche ausgewählte Mischer?
-
-
&Add
- &Addieren
+ &Addieren
-
-
Ctrl+A
- Ctrl+a
+ Ctrl+a
-
-
&Edit
- &Editieren
+ &Editieren
-
-
Enter
- Eingabe
+ Eingabe
-
-
-
-
&Delete
- &Löschen
+ &Löschen
-
-
-
-
Delete
- Löschen
+ Löschen
-
-
-
-
&Copy
- &Kopieren
+ &Kopieren
-
-
-
-
Ctrl+C
- Ctrl+c
+ Ctrl+c
-
-
-
-
&Cut
- &Ausschneiden
+ &Ausschneiden
-
-
-
-
Ctrl+X
- Ctrl+x
+ Ctrl+x
-
-
-
-
&Paste
- &Einfügen
+ &Einfügen
-
-
-
-
Ctrl+V
- Ctrl+v
+ Ctrl+v
-
-
Du&plicate
- D&uplizieren
+ D&uplizieren
-
- Are you sure you want to delete curve %1 ?
-
-
-
-
-
-
-
- AIL2
-
-
-
-
-
-
-
- ELE2
-
-
-
-
-
-
-
-
-
- FLAPS
-
-
-
-
-
-
-
-
-
- FLAP%1
-
-
-
-
-
-
-
- PITCH
-
-
-
-
-
-
-
-
-
-
-
- GYRO
-
-
-
-
-
- SPOIL
-
-
-
-
-
- SPOIL%1
-
-
-
-
-
- RUD2
-
-
-
-
- Really clear existing mixes on CH6?
-
-
-
-
- Really clear existing mixes on CH5?
-
-
-
-
- Not enough free points in eeprom to store the curve.
-
-
-
-
-
-
-
Move Up
- Nach oben
+ Nach oben
-
-
-
-
Ctrl+Up
- Ctrl+Up
+ Ctrl+Up
-
-
-
-
Move Down
- Nach unten
+ Nach unten
-
-
-
-
Ctrl+Down
- Ctrl+Down
+ Ctrl+Down
-
Clear Expo Settings
- Expo Werte löschen
+ Expo Werte löschen
-
Clear Mixes
- Mischer löschen
+ Mischer löschen
-
- S1
-
-
-
-
- S2
-
-
-
-
- LS
-
-
-
-
Rud
- Rud
+ Rud
-
Ele
- Ele
+ Ele
-
Thr
- Thr
+ Thr
-
Ail
- Ail
+ Ail
-
Weight
Weight(+%1%)
- Weg
+ Weg
-
-
Flight modes
- Flugphasen
+ Flugphasen
-
-
- Flight mode
-
-
-
-
-
- DISABLED
-
-
-
-
-
-
- X%1
-
-
-
-
- No Trim
-
-
-
-
- No DR/Expo
-
-
-
-
-
-
-
- CH %1
-
-
-
-
Editing curve %1
- Kurve %1 bearbeiten
+ Kurve %1 bearbeiten
-
Delete Selected Expos?
- Ausgewählte Expos löschen?
+ Ausgewählte Expos löschen?
-
Apply Template?
- Vorlage anwenden ?
+ Vorlage anwenden ?
-
Apply template "%1"?
- Vorlage anwenden "%1"?
+ Vorlage anwenden "%1"?
-
Clear Expos?
- Expo löschen?
+ Expo löschen?
-
Really clear all the expos?
- Wirklich alle Expos löschen?
+ Wirklich alle Expos löschen?
-
-
-
Clear Mixes?
- Mischer löschen?
+ Mischer löschen?
-
Really clear all the mixes?
- Wirklich alle Mischer löschen ?
+ Wirklich alle Mischer löschen ?
-
+
Clear Curves?
Kurven löschen ?
-
+
Really clear all the curves?
Wirklich alle Kurven löschen ?
@@ -6001,142 +5597,272 @@ Right
D&uplizieren
-
-
Ctrl+U
- Ctrl+u
+ Ctrl+u
ModelsListWidget
-
+
&Edit
&Editieren
-
+
&Restore from backup
-
+
&Model Wizard
-
+
&Delete
&Löschen
-
+
Delete
Löschen
-
+
&Copy
&Kopieren
-
+
Ctrl+C
Ctrl+C
-
+
&Cut
&Ausschneiden
-
+
Ctrl+X
Ctrl+X
-
+
&Paste
Ein&fügen
-
+
Ctrl+V
Ctrl+V
-
+
D&uplicate
D&uplizieren
-
+
Ctrl+U
Ctrl+U
-
+
&Use as default
setze &Standard
-
+
P&rint model
Modell &drucken
-
+
Alt+R
Alt+R
-
+
Alt+S
Alt+S
-
+
&Simulate model
&Simulation
-
+
General Settings
Generelle Einstellungen
-
+
Delete Selected Models?
Gewähltes Modell löschen ?
-
-
+
+
Cannot delete default model.
-
+
Cannot cut default model.
-
+
Do you want to overwrite TX general settings?
Wollen Sie die allg. TX Einstellungen überschreiben?
-
+
You are pasting on an not empty model, are you sure?
You are pasting on an not empty model, are you sure ?
Sie kopieren in ein nicht leeres Modell, fortfahren?
-
+
No free slot available, cannot duplicate
+
+ Module
+
+
+ Form
+
+
+
+
+ Failsafe Mode
+
+
+
+
+ Start
+
+
+
+
+ PPM delay
+ PPM delay
+
+
+
+ usec
+ usec
+
+
+
+ Negative
+ Negativ
+
+
+
+ Positive
+ Positiv
+
+
+
+ RX Number
+ Rx Nummer
+
+
+
+ Master
+
+
+
+
+ Slave
+
+
+
+
+ Polarity
+
+
+
+
+ Trainer Mode
+
+
+
+
+ mSec
+ mSec
+
+
+
+ PPM Frame Length
+ PPM Frame Length
+
+
+
+ Label
+
+
+
+
+
+ ch
+ ch
+
+
+
+ Channels
+ Kanäle
+
+
+
+ Hold
+
+
+
+
+ Custom
+
+
+
+
+ No Pulses
+
+
+
+
+ Failsafe Positions
+
+
+
+
+ Protocol
+ Protokoll
+
+
+
+ ModulePanel
+
+
+ Trainer Output
+
+
+
+
+ Internal Radio System
+
+
+
+
+ External Radio Module
+
+
+
QObject
@@ -6151,67 +5877,77 @@ Right
-
+
+ Polish
+
+
+
+
+ CH%1
+ CH%1
+
+
+
No
Nein
-
+
RotEnc A
-
+
Rot Enc B
-
+
Rot Enc C
-
+
Rot Enc D
-
+
Rot Enc E
-
+
Safety %1
-
+
Trainer
Trainer
-
+
Trainer RUD
Trainer RUD
-
+
Trainer ELE
Trainer ELE
-
+
Trainer THR
Trainer THR
-
+
Trainer AIL
Trainer AIL
-
+
Instant Trim
Instant Trim
@@ -6220,7 +5956,7 @@ Right
Trims2Offsets
-
+
Play Sound
Audio abspielen
@@ -6230,388 +5966,391 @@ Right
Play Somo
-
+
Start Logs
Start Log
-
+
Play Haptic
-
-
+
+ Input%1
+
+
+
+
+
---
---
-
+
Rud Trim
-
+
Ele Trim
-
+
Thr Trim
-
+
Ail Trim
-
+
Rot Enc
-
+
English
-
+
French
-
+
Italian
-
+
German
-
+ Deutch
-
+
Czech
-
+
Slovak
-
+
Spanish
-
+
Portuguese
-
+
Swedish
-
CH
- CH
+ CH
-
-
+
+
No repeat
-
+
%1 sec
-
+
Reset
-
+
Vario
-
+
Play Track
-
+
Play Both
-
+
Play Value
-
+
Volume
-
+
Backlight
-
+
Background Music
-
+
Background Music Pause
-
- Adjust GV1
-
-
-
-
- Adjust GV2
-
-
-
-
- Adjust GV3
-
-
-
-
- Adjust GV4
-
-
-
-
- Adjust GV5
-
-
-
-
+
Delay %1 sec
-
+
Duration %1 sec
-
-
+
+
<font color=red><b>Inconsistent parameter</b></font>
-
-
+
+
All
Alles
-
-
+
+
Telemetry
Telemetrie
-
+
Value
-
+
Decr:
-
+
Incr:
-
+
+ Played once, not during startup
+
+
+
+
%1s
%1s
-
- Value
- Wert
+
+ Adjust GV%1
+
-
- Source
- Quelle
-
-
-
- GVAR
+
+ Rotary Encoder
+ Value
+ Wert
+
+
+
+ Source
+ Quelle
+
+
+
+ GVAR
+
+
+
+
Increment
-
+
!Flight mode %1
-
+
Flight mode %1
-
+
Flight mode %1 trim
-
+
Flight mode %1 value
-
+
Yellow
-
+
Orange
orange
-
+
Red
-
+
Winged Shadow How High
Winged Shadow How High
-
+
Winged Shadow How High (not supported)
Winged Shadow How High (nicht unterstützt)
-
+
FrSky Sensor Hub
FrSky Sensor Hub
-
+
+
None
-
+
Imperial
Imperial
-
+
Metric
Metrisch
-
+
Extra Fine
Sehr fein
-
+
Fine
Fein
-
+
Medium
Mittel
-
+
Coarse
-
+
Exponential
Exponential
-
+
Count Up
Hinaufzählen
-
+
Count Down
Herunterzählen
-
+
%1:%2,
%1:%2,
-
+
: %1 Channels, %2usec Delay
: %1 Kanäle, %2usec Verzögerung {1 ?} {2u?}
-
+
+ Flight modes(%1)
+
+
+
+
+ Flight mode(%1)
+
+
+
+
Rudder
Seitenruder
-
+
Elevator
Höhenruder
-
+
Throttle
Gas
-
+
Aileron
Querruder
-
Diff
- Diff
+ Diff
-
Expo
- Expo
+ Expo
-
+
Own trim
@@ -6620,1040 +6359,1080 @@ Right
FPHase %1 Trimmung
-
+
Own value
-
+
Keys
-
+
Sticks
-
+
Keys + Sticks
-
+
+
-GV%1
-
- (-GV%1)
-
-
-
-
-
+
+
+
GV%1
-
- (GV%1)
-
-
-
-
-
-
-
+
+
+
+
----
----
-
-
RUD
- RUD
+ RUD
-
-
ELE
- ELE
+ ELE
-
-
-
-
+
+
THR
THR
-
-
AIL
- AIL
+ AIL
-
-
-
+
+
+
P1
P1
-
-
-
+
+
+
P2
P2
-
-
-
+
+
+
P3
P3
-
- SA
-
-
-
-
- SB
-
-
-
-
- SC
-
-
-
-
- SD
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- SG
-
-
-
-
- SH
-
-
-
-
+
Batt
-
+
SWR
-
+
RSSI
RSSI
-
+
Pwr+
-
+
+
+ LS1
+
+
+
+
+
+ LS2
+
+
+
+
+
+ LS3
+
+
+
+
+
+ LS4
+
+
+
+
+
+ LS5
+
+
+
+
+
+ LS6
+
+
+
+
+
+ LS7
+
+
+
+
+
+ LS8
+
+
+
+
+
+ LS9
+
+
+
+
+
+ LSA
+
+
+
+
+
+ LSB
+
+
+
+
+
+ LSC
+
+
+
+
+
+ LSD
+
+
+
+
+
+ LSE
+
+
+
+
+
+ LSF
+
+
+
+
+
+ LSG
+
+
+
+
+
+ LSH
+
+
+
+
+
+ LSI
+
+
+
+
+
+ LSJ
+
+
+
+
+
+ LSK
+
+
+
+
+
+ LSL
+
+
+
+
+
+ LSM
+
+
+
+
+
+ LSN
+
+
+
+
+
+ LSO
+
+
+
+
+
+ LSP
+
+
+
+
+
+ LSQ
+
+
+
+
+
+ LSR
+
+
+
+
+
+ LSS
+
+
+
+
+
+ LST
+
+
+
+
+
+ LSU
+
+
+
+
+
+ LSV
+
+
+
+
+
+ LSW
+
+
+
+
+ Input %1
+
+
+
+
MAX
MAX
-
-
+
+ S11
+
+
+
+
+ S12
+
+
+
+
+ S13
+
+
+
+
+ S14
+
+
+
+
+ S15
+
+
+
+
+ S16
+
+
+
+
+ S21
+
+
+
+
+ S22
+
+
+
+
+ S23
+
+
+
+
+ S24
+
+
+
+
+ S25
+
+
+
+
+ S26
+
+
+
+
+ Diff(%1)
+
+
+
+
+ Expo(%1)
+
+
+
+
+ Function(%1)
+
+
+
+
+ Curve(%1)
+
+
+
+
+ !Curve(%1)
+
+
+
+
+
Rud
Rud
-
-
+
+
Ele
Ele
-
-
+
+
Thr
Thr
-
-
+
+
Ail
unsure
Ail
-
+
TrmR
-
+
TrmE
-
+
TrmT
-
+
TrmA
-
-
+
+
S1
-
-
+
+
S2
-
-
+
+
LS
-
-
+
+
RS
-
+
+
REa
-
+
+
REb
-
+
Alt
-
+
Rpm
-
+
Fuel
-
+
Tx
-
+
Rx
-
+
Speed
-
+
Dist
-
+
GPS Alt
-
+
Cell
-
+
Cels
-
+
Vfas
-
+
Curr
-
+
Cnsp
-
+
Powr
-
+
AccX
-
+
AccY
-
+
AccZ
-
+
HDG
-
+
VSpd
-
+
A1-
A1-
-
+
A2-
A2-
-
+
Alt-
-
+
Alt+
-
+
Rpm+
-
+
T1+
T1+
-
+
T2+
T2+
-
+
Spd+
-
+
Dst+
-
+
Cur+
-
+
ACC
-
+
Time
-
-
- CS1
-
-
-
-
-
- CS2
-
-
-
-
-
- CS3
-
-
-
-
-
- CS4
-
-
-
-
-
- CS5
-
-
-
-
-
- CS6
-
-
-
-
-
- CS7
-
-
-
-
-
- CS8
-
-
-
-
-
- CS9
-
-
-
-
-
- CSA
-
-
-
-
-
- CSB
-
-
-
-
-
- CSC
-
-
-
-
-
- CSD
-
-
-
-
-
- CSE
-
-
-
-
-
- CSF
-
-
-
-
-
- CSG
-
-
-
-
-
- CSH
-
-
-
-
-
- CSI
-
-
-
-
-
- CSJ
-
-
-
-
-
- CSK
-
-
-
-
-
- CSL
-
-
-
-
-
- CSM
-
-
-
-
-
- CSN
-
-
-
-
-
- CSO
-
-
-
-
-
- CSP
-
-
-
-
-
- CSQ
-
-
-
-
-
- CSR
-
-
-
-
-
- CSS
-
-
-
-
-
- CST
-
-
-
-
-
- CSU
-
-
-
-
-
- CSV
-
-
-
-
-
- CSW
-
-
-
-
+
ONE
-
+
!ONE
-
+
TRNs
-
+
TRNl
-
+
REAs
-
+
REAl
-
3POS
- 3POS
+ 3POS
-
+
X%1
-
-
+
+
Support for frsky telemetry mod
-
-
+
+
Support for jeti telemetry mod
-
-
+
+
Support for receiving ardupilot data
-
-
+
+
Support for receiving NMEA data
-
+
Support for telemetry easy board
-
-
+
+
Support for MAVLINK devices
-
+
Rotary Encoder use in menus navigation
-
+
Possibility to enable FAI MODE at field
-
+
FAI MODE always enabled
-
+
openTx for 9X board
-
-
-
-
-
+
+
+
+
+
Enable heli menu and cyclic mix support
-
-
-
-
-
-
+
+
+
+
+
+
Enable TEMPLATES menu
-
-
-
-
+
+
+
+
No splash screen
-
-
-
-
-
-
+
+
+
+
+
+
Disable curves menus
-
-
-
-
+
+
+
+
Support for radio modified with regular speaker
-
-
-
-
-
+
+
+
+
+
Used if you have modified your radio with voice mode
-
-
-
-
+
+
+
+
Used if you have modified your radio with haptic mode
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Use alternative SQT5 font
-
-
-
-
+
+
+
+
Enable the throttle trace in Statistics
-
+
EEprom write progress bar
-
-
+
+
No Winged Shadow How High support
-
-
+
+
No vario support
-
-
+
+
No GPS support
-
-
+
+
No gauges in the custom telemetry screen
-
+
+ Allow compensating for offset errors in FrSky FAS current sensors
+
+
+
+
openTx for M128 / 9X board
-
+
openTx for 9XR
-
+
openTx for 9XR with M128 chip
-
+
openTx for Gruvin9x board / 9X
-
+
Support of FrSky PXX protocol
-
+
Use FrSky Taranis sticks in a 9X/9XR
-
+
openTx for FrSky Taranis
-
-
+
+
Disable HELI menu and cyclic mix support
-
-
+
+
Disable TEMPLATES menu
-
-
+
+
Disable Global variables
-
+
openTx for FrSky Taranis Rev4a
-
-
-
-
-
+
+
+
+
+
Support for DSM2 modules
-
-
-
-
-
-
+
+
+
+
+
+
PPM center adjustment in limits
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
PPM values displayed in us
-
-
-
-
-
-
+
+
+
+
+
+
Symetrical Limits
-
-
-
-
-
+
+
+
+
+
Pots use in menus navigation
-
+
Your radio probably uses a wrong firmware,
eeprom size is 4096 but only the first 2048 are used
-
-
-
-
-
-
+
+
+
+
+
+
No flight modes
-
-
+
+
SmartieParts 2.2 Backlight support
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set source by moving some of them
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set switch by moving some of them
-
-
-
-
+
+
+
+
Enable resetting values by pressing up and down at the same time
-
-
-
-
-
-
+
+
+
+
+
+
No graphical check boxes and sliders
-
-
-
-
-
-
+
+
+
+
+
+
Battery graph
-
-
-
-
-
-
+
+
+
+
+
+
Don't use bold font for highlighting active items
-
-
-
-
+
+
+
+
EEprom write Progress bar
-
-
-
-
-
+
+
+
+
+
Imperial units
-
+
Bluetooth interface
-
-
-
-
-
-
+
+
+
+
+
+
Global variables
-
+
Support for SD memory card
-
+
Support for DSM2 modules using ppm instead of true serial
-
+
openTx for Sky9x board / 9X
-
+
Enable HELI menu and cyclic mix support
-
+
ersky9x
@@ -7766,26 +7545,26 @@ Right
CH16
-
-
-
+
+
+
Timer1
Stoppuhr1
-
-
-
+
+
+
Timer2
Stoppuhr2
-
+
A1
A1
-
+
A2
A2
@@ -7802,12 +7581,12 @@ Right
FUEL
-
+
T1
T1
-
+
T2
T2
@@ -7820,175 +7599,44 @@ Right
Zelle
-
Curve
- Kurve
+ Kurve
-
-
-
-
- Flight modes settings on expos not exported
- Phases settings on expos not exported
-
-
-
-
-
-
-
-
-
-
-
- Open9x on this board doesn't have Rotary Encoders
-
-
-
-
- gruvin9x doesn't have trims as source
-
-
-
-
- gruvin9x doesn't have swappable trims
-
-
-
-
- gruvin9x on this board doesn't have Rotary Encoders
-
-
-
-
- gruvin9x does not support Custom Switch function %1
-
-
-
-
gruvin9x only accepts %1 expos
- gruxin9x akzeptiert nur %1 Expos
+ gruxin9x akzeptiert nur %1 Expos
-
-
- gruvin9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
- gruvin9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
Open9x doesn't allow Curve%1 in expos
- Open9x akzeptiert nicht %1 Kurven in Expos
+ Open9x akzeptiert nicht %1 Kurven in Expos
-
-
+
+
Simultaneous usage of expo and curves is no longer supported
-
-
-
-
-
-
-
- Flight modes settings on mixers not exported
-
-
-
-
-
- Flight mode settings on mixers not exported
- Phases settings on mixers not exported
-
-
-
-
-
-
-
- This version of open9x does not support Custom Switch function %1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Open9x doesn't accept this protocol
- Open9x akzeptiert dieses protokoll nicht
+ Open9x akzeptiert dieses protokoll nicht
-
-
-
-
-
-
- open9x only accepts %1 points in all curves
-
-
-
-
+
Simultaneous usage of expo and curves is no longer supported in open9x
-
-
- open9x on this board doesn't have Rotary Encoders
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
open9x only accepts %1 expos
Gruvin9x firmware only accepts %1 expos
- open9x akzeptiert nur %1 Expos
+ open9x akzeptiert nur %1 Expos
-
+
th9x
th9x
-
+
er9x
er9x
@@ -8021,61 +7669,54 @@ Right
gruvin9x Entwickler Version für Standard Board
-
+
CYC%1
-
+
PPM%1
-
+
CH%1%2
CH%1
CH%1%2
-
ID0
- ID0
+ ID0
-
ID1
- ID1
+ ID1
-
ID2
- ID2
+ ID2
-
-
GEA
- GEA
+ GEA
-
-
TRN
- TRN
+ TRN
SW%1
SW%1
-
-
+
+
ON
-
-
+
+
OFF
AUS
@@ -8084,194 +7725,54 @@ Right
gruvin9x Entwickler Version für v4 Board
-
- er9x doesn't have Rotary Encoders
-
-
-
-
- er9x doesn't have trims as source
-
-
-
-
- er9x doesn't have negative gvars as weight
-
-
-
-
- er9x doesn't have negative gvars as offset
-
-
-
-
-
-
- er9x doesn't have swappable trims
-
-
-
-
-
-
- er9x on this board doesn't have Rotary Encoders
-
-
-
-
- er9x does not support Custom Switch function %1
-
-
-
-
-
-
- er9x does not support this range for A1/A2
-
-
-
-
-
-
- er9x does not support this telemetry units
-
-
-
-
-
Er9x doesn't accept this protocol
- Er9x akzeptiert dieses Protokoll nicht
+ Er9x akzeptiert dieses Protokoll nicht
-
-
- Er9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
- Er9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
-
-
+
+
+
+
Warning
Warnung
-
-
+
EEPROM saved with these warnings:
EEPROM gespeichert mit diesen Warnungen:
-
-
- ersky9x doesn't have Rotary Encoders
-
-
-
-
-
- ersky9x doesn't have trims as source
-
-
-
-
-
- ersky9x does not support Custom Switch function %1
-
-
-
-
-
- Ersky9x doesn't accept this protocol
-
-
-
-
-
-
-
- ErSky9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
-
-
- ErSky9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
+
+
+
Simulator for this firmware is not yet available
-
- th9x does not support Custom Switch function %1
-
-
-
-
+
th9x on this board doesn't have Rotary Encoders
-
-
-
- th9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
-
- th9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
- Flight Mode 0 (Default)
-
-
-
-
-
- FM %1
-
-
-
-
+
openTx only accepts %1 points in all curves
-
-
-
+
+
+
OpenTX on this board doesn't accept this function
-
-
+
+
OpenTX doesn't accept this protocol
-
+
OpenTX doesn't allow this number of channels
@@ -8285,6 +7786,588 @@ The OpenTX/Companion Team.
+
+ Setup
+
+
+ Form
+
+
+
+
+ Model Name
+ Modell Name
+
+
+
+ Timer2
+ Stoppuhr2
+
+
+
+ Timer1
+ Stoppuhr1
+
+
+
+ Throttle Source
+ Gas Verfolgung
+
+
+
+ Switch startup Warning
+
+
+
+
+ Center beep
+ Zentrierpiepston
+
+
+
+ Trim Increment
+
+
+
+
+ ON
+
+
+
+
+ OFF
+ AUS
+
+
+
+ Check
+
+
+
+
+ Model Image
+
+
+
+
+ Exponential
+ Exponential
+
+
+
+ Extra Fine
+ Sehr fein
+
+
+
+ Fine
+ Fein
+
+
+
+ Medium
+ Mittel
+
+
+
+ Coarse
+
+
+
+
+ Extended Limits
+ Erweiterte Grenzen
+
+
+
+ Extended Trims
+ Erweiterte Trimmung
+
+
+
+ Throttle Trim
+
+
+
+
+ Throttle Warning
+
+
+
+
+ Reverse throttle operation.
+If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
+
+
+ Gasminimum vorne.
+Wenn dieses angewählt wurde ist der Knüppelweg für Gas reversiert. Leerlaufstellung ist vorne, die Trimmung sowie die Knüppelstellungswarnung ist ebenfalls umgedreht.
+
+
+
+ Reverse Throttle
+
+
+
+
+ Telemetry
+
+
+ Form
+
+
+
+
+
+
+
+ A1
+ A1
+
+
+
+
+
+
+ A2
+ A2
+
+
+
+ RSSI
+ RSSI
+
+
+
+ Alarm 1
+ Alarm 1
+
+
+
+
+ ----
+ ----
+
+
+
+
+ Yellow
+
+
+
+
+
+ Orange
+ orange
+
+
+
+
+ Red
+
+
+
+
+ Alarm 2
+ Alarm 2
+
+
+
+ Serial Protocol
+ Serielles Protokoll
+
+
+
+ Volt source
+
+
+
+
+ Metric
+ Metrisch
+
+
+
+ Imperial
+ Imperial
+
+
+
+ Current source
+
+
+
+
+ Protocol
+ Protokoll
+
+
+
+ NONE
+
+
+
+
+
+ FAS
+
+
+
+
+ None
+
+
+
+
+ FrSky Sensor Hub
+ FrSky Sensor Hub
+
+
+
+ CEL
+
+
+
+
+ 2
+ 2
+
+
+
+ 3
+ 3
+
+
+
+ 4
+ 4
+
+
+
+ Units
+ Einheiten
+
+
+
+ Blades
+ Rotorblätter
+
+
+
+ Altimetry / Vario
+
+
+
+
+ Alti
+
+
+
+
+ Alti+
+
+
+
+
+ Vario
+
+
+
+
+ Sink Max
+
+
+
+
+ Off
+ Aus
+
+
+
+ Climb Max
+
+
+
+
+ Sink Min
+
+
+
+
+ Climb Min
+
+
+
+
+ Vario source
+
+
+
+
+ Vario limits
+
+
+
+
+ Use GPS as altitude source
+
+
+
+
+ Display altitude in toolbar
+
+
+
+
+ Various
+
+
+
+
+ mAh count
+
+
+
+
+ FAS Offset
+
+
+
+
+ Persistent mAh
+
+
+
+
+ TelemetryAnalog
+
+
+ Form
+
+
+
+
+ Unit
+ Einheit
+
+
+
+ Max Value
+ Maximal
+
+
+
+ Alarm 1
+ Alarm 1
+
+
+
+
+ ----
+ ----
+
+
+
+
+ Yellow
+
+
+
+
+
+ Orange
+ orange
+
+
+
+
+ Red
+
+
+
+
+
+ <
+ <
+
+
+
+
+ >
+ >
+
+
+
+ Alarm 2
+ Alarm 2
+
+
+
+ Min Value
+ Minimal
+
+
+
+ Volts (V)
+
+
+
+
+ Amps (A)
+
+
+
+
+ Speed (m/s or ft/s)
+
+
+
+
+ Raw (-)
+ Roh(-)
+
+
+
+ Speed (km/h or miles/h)
+
+
+
+
+ Meters (m or ft)
+
+
+
+
+ Temp (°)
+
+
+
+
+ Fuel (%)
+
+
+
+
+ mAmps (mA)
+
+
+
+
+ Range
+ Bereich
+
+
+
+ TelemetryCustomScreen
+
+
+ Form
+
+
+
+
+ Custom Screen Type
+
+
+
+
+ Nums
+
+
+
+
+ Bars
+
+
+
+
+ Min
+ Min
+
+
+
+ Source
+ Quelle
+
+
+
+ Gauge
+ Balken
+
+
+
+ Max
+ Max
+
+
+
+ TelemetryPanel
+
+
+ Telemetry screen %1
+
+
+
+
+ Winged Shadow How High
+ Winged Shadow How High
+
+
+
+ Winged Shadow How High (not supported)
+ Winged Shadow How High (nicht unterstützt)
+
+
+
+ Timer
+
+
+ Form
+
+
+
+
+ mm:ss
+ mm:ss
+
+
+
+ Countdown
+
+
+
+
+ MinuteBeep
+
+
+
+
+ Persistent
+
+
+
+
+ (00:00:00)
+
+
+
+
+ TimerPanel
+
+
+ None
+
+
+
+
+ Beeps
+
+
+
+
+ Countdown
+
+
+
avrOutputDialog
@@ -8484,7 +8567,7 @@ Do you want some help ?
burnConfigDialog
-
+
AVRDUDE Configuration
Einstellung AVRDUDE
@@ -8645,25 +8728,25 @@ Bitte nutze dies nur wenn Du weißt was Du machst. Es gibt keine Plausibilitäts
-
+
DFU-UTIL Configuration
-
+
SAM-BA Configuration
-
-
-
+
+
+
Select Location
Wähle Speicherort
-
-
+
+
Companion
@@ -8672,12 +8755,12 @@ Bitte nutze dies nur wenn Du weißt was Du machst. Es gibt keine Plausibilitäts
companion9x
-
+
<b><u>WARNING!</u></b><br>This will reset the fuses of %1 to the factory settings.<br>Writing fuses can mess up your radio.<br>Do this only if you are sure they are wrong!<br>Are you sure you want to continue?
-
+
<b><u>WARNING!</u></b><br>Normally CPU type is automatically selected according to the chosen firmware.<br>If you change the CPU type the resulting eeprom could be inconsistent.
@@ -8818,7 +8901,7 @@ m2560 fürRadios mit v4.1 Boards
-
+
Write to TX
@@ -8829,7 +8912,7 @@ m2560 fürRadios mit v4.1 Boards
-
+
Browse for file
@@ -8857,7 +8940,7 @@ m2560 fürRadios mit v4.1 Boards
In Sender brennen
-
+
Write firmware to TX
Schreibe Firmware in den Sender
@@ -8866,7 +8949,7 @@ m2560 fürRadios mit v4.1 Boards
Schreibe Modelle in den Sender
-
+
Open
Öffnen
@@ -8875,51 +8958,51 @@ m2560 fürRadios mit v4.1 Boards
iHEX (*.hex);;BIN Files (*.bin)
-
-
-
-
-
-
+
+
+
+
+
+
Warning
Warnung
-
+
%1 is not a known firmware
%1 ist keine bekannte Firmware
-
+
Burn anyway !
Trotzdem brennen!
-
+
Open Image to load
Öffne Bilddatei
-
+
Images (%1)
Bilder (%1)
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Error
Fehler
-
+
Current profile
@@ -8928,14 +9011,14 @@ m2560 fürRadios mit v4.1 Boards
Wähle Datei zum Schreiben in den EEPROM Speicher
-
+
Unable to find file %1!
Kann die Datei %1 nicht finden !
-
-
-
+
+
+
Error opening file %1:
%2.
Fehler beim Öffnen der Datei %1:
@@ -8946,7 +9029,7 @@ m2560 fürRadios mit v4.1 Boards
Ungültige EEPROM Datei %1
-
+
Error reading file %1:
%2.
Fehler beim Lesen der Datei %1:
@@ -8957,68 +9040,68 @@ m2560 fürRadios mit v4.1 Boards
Ungültige EEPROM Programmdatei %1
-
+
Write Models and Settings to TX
-
+
Write Models and Settings in %1 to TX
-
+
Choose file to load Models and Settings from
-
-
-
+
+
+
Invalid binary Models and Settings File %1, Proceed anyway ?
-
-
+
+
Cannot load %1.
Kann %1 nicht laden.
-
+
Cannot save customized firmware
Kann benutzerspezifische Firmware nicht speichern
-
+
Custom image not found
Benutzerbild nicht gefunden
-
+
No firmware selected
Keine Firmware ausgewählt
-
+
Wrong radio calibration data in profile, Settings not patched
-
+
Wrong radio setting data in profile, Settings not patched
-
-
+
+
Cannot write file %1:
%2.
Kann Datei %1:
%2 nicht schreiben.
-
+
Error writing file %1:
%2.
Fehler beim Schreiben der Datei %1:
@@ -9240,14 +9323,14 @@ m2560 fürRadios mit v4.1 Boards
-
+
-
-
-
-
-
-
+
+
+
+
+
+
Switch
Schalter
@@ -9292,10 +9375,10 @@ m2560 fürRadios mit v4.1 Boards
-
-
-
-
+
+
+
+
Offset
Offset
@@ -9303,8 +9386,8 @@ m2560 fürRadios mit v4.1 Boards
-
-
+
+
Min
Min
@@ -9312,8 +9395,8 @@ m2560 fürRadios mit v4.1 Boards
-
-
+
+
Max
Max
@@ -9329,8 +9412,8 @@ m2560 fürRadios mit v4.1 Boards
-
-
+
+
CH
CH
@@ -9364,18 +9447,32 @@ m2560 fürRadios mit v4.1 Boards
-
+
Weight
-
-
- Expo
- Expo
+
+ Logical Switches
+
-
+
+
+ LS
+
+
+
+
+ Switch Assignment
+
+
+
+ Expo
+ Expo
+
+
+
CF
@@ -9384,97 +9481,82 @@ m2560 fürRadios mit v4.1 Boards
Phasen
-
+
-
-
+
+
DISABLED
-
-
-
-
-
-
+
+
Curve
Kurve
-
+
Mixers
Mischer
-
-
+
+
noTrim
keinTrim
-
-
FMTrim
- FPh Trimmung
+ FPh Trimmung
-
-
Diff
- Diff
+ Diff
-
-
+
+
Delay(u%1:d%2)
Verzögerung(u%1:d%2)
-
-
+
+
Slow(u%1:d%2)
Langsam/u%1:d%2)
-
-
+
+
Warn
Warnung
-
+
Curves
Kurven
-
+
5 Points Curves
5 Punkte Kurve
-
-
-
-
+
+
+
+
pt %1
pt %1
-
+
9 Points Curves
9 Punkte Kurve
-
Custom Switches
- Freie Schalter
-
-
-
-
- CS
-
+ Freie Schalter
SW
@@ -9485,20 +9567,20 @@ m2560 fürRadios mit v4.1 Boards
Freie Schalter
-
-
+
+
Function
Funktion
-
-
+
+
Param
Parameter
-
-
+
+
Enable
aktivieren
@@ -9507,71 +9589,71 @@ m2560 fürRadios mit v4.1 Boards
FSch
-
+
Telemetry Settings
Telemetrie Einstellungen
-
-
+
+
Analog
Analog
-
-
+
+
Unit
Einheit
-
-
+
+
Scale
Skala
-
-
-
-
+
+
+
+
A%1
A%1
-
-
+
+
Alarm 1
Alarm 1
-
-
+
+
Alarm 2
Alarm 2
-
-
-
-
+
+
+
+
Type
Typ
-
-
-
-
+
+
+
+
Condition
Zustand
-
-
-
-
-
-
+
+
+
+
+
+
Value
Wert
@@ -9603,64 +9685,59 @@ m2560 fürRadios mit v4.1 Boards
-
+
-
-
+
+
Flight modes
Flugphasen
-
+
-
-
+
+
Flight mode
+
- Custom Functions
-
-
-
-
-
Repeat
-
+
Safety Switches
Sicherheitsschalter
-
-
+
+
RSSI Alarm
-
-
+
+
Telemetry Bars
Telemetrie Balken
-
-
+
+
Bar Number
Balkennummer
-
-
+
+
Source
Quelle
-
-
+
+
Custom Telemetry View
@@ -9669,12 +9746,12 @@ m2560 fürRadios mit v4.1 Boards
: %1 Kanäle, %2usec Verzögerung {1 ?} {2u?}
-
+
Print Document
Drucke Dokument
-
+
Select PDF output file
PDF Output Datei wählen
@@ -9687,24 +9764,17 @@ m2560 fürRadios mit v4.1 Boards
Dialog
-
+
People who have contributed to this project
Personen, die in diesem Projekt mitgewirkt haben
-
+
Coders
Programmierer
-
- Honors go to Rafal Tomczak (RadioClone) and Thomas Husterer (th9x)
-of course. Also to Erez Raviv (er9x) and the fantastic eePe program
-which was the staring point for OpenTX Companion.
-
-
-
-
+
Companion Release Notes
@@ -9717,17 +9787,22 @@ Husterer (th9x) und auch Erez Raviv (er9x) und sein fantastisches
eePe, worauf companion9x basiert.
-
+
+ Honors go to Rafal Tomczak (RadioClone), Thomas Husterer (th9x) and Erez Raviv (er9x and eePe)
+
+
+
+
Thank you all !!!
Besten Dank an alle!
-
+
Contributors
Mitwirkende
-
+
OpenTX Release Notes
@@ -9770,7 +9845,7 @@ Husterer (th9x) und auch Erez Raviv (er9x) und sein fantastisches
...
-
+
Save Firmware
Save To Hex
in HexFormat sichern
@@ -9789,14 +9864,14 @@ p, li { white-space: pre-wrap; }
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html>
-
-
-
+
+
+
Select an original firmware file
Bitte eine original Firmware Datei auswählen
-
+
Open
Öffnen
@@ -9805,68 +9880,68 @@ p, li { white-space: pre-wrap; }
HEX files (*.hex);;
-
+
Select an image to customize your splash <br />or save actual firmware splash
Bitte Bild zum Bearbeiten des Startbildschirms auswählen<br />oder aktueller Startbildschirm sichern
-
-
-
-
+
+
+
+
Error
Fehler
-
+
Could not find bitmap to replace in file
Konnte zu ersetzendes Bitmap in der Datei nicht finden
-
+
Open Image to load
Bilddatei öffnen
-
+
Images (%1)
Bilder (%1)
-
-
+
+
Cannot load %1.
Kann %1 nicht laden.
-
-
+
+
Save your custimized firmware
die angepasste Firmware sichern
-
-
+
+
Write to file
Datei sichern
-
+
Error reading file %1
Fehler beim Lesen der Datei %1
-
+
Firmware correctly saved.
Firmware erfolgreich gespeichert.
-
+
Firmware not saved.
Firmware nicht gespeichert.
-
+
PNG images (*.png);;
PNG images (*.png);;
@@ -10373,17 +10448,17 @@ Wähle "abbrechen", um die Kalibration abzubrechen
%2 nicht schreiben.
-
+
Select your log file
-
+
Available fields
-
+
The selected logfile contains %1 invalid lines out of %2 total lines
@@ -10391,7 +10466,7 @@ Wähle "abbrechen", um die Kalibration abzubrechen
mdiChild
-
+
Simulate Tx
Tx Simulation
@@ -10841,9 +10916,8 @@ Wähle "abbrechen", um die Kalibration abzubrechen
Einstellungen
-
Language (requires restart)
- Sprache (Benötigt Neustart)
+ Sprache (Benötigt Neustart)
er9x
@@ -10854,9 +10928,8 @@ Wähle "abbrechen", um die Kalibration abzubrechen
eePe
-
Show Splash Screen
- Startbild anzeigen
+ Startbild anzeigen
Version to download
@@ -10875,23 +10948,23 @@ Wähle "abbrechen", um die Kalibration abzubrechen
er9x - Ardupilot
-
+
Recent History Size
Anzahl zuletzt geöffnete Dateien
-
-
+
+
Download
Download
-
+
Default Channel Order
Standardeinstellung Kanalzuordnung
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -10900,12 +10973,12 @@ This is used by the templated to determine which channel goes to what number out
Hier wird die Zuordnung der Kanäle zum Ausgang festgelegt.
-
+
Default Stick Mode
Standard Knüppelmodus
-
+
Mode selection:
Mode 1:
@@ -10950,284 +11023,293 @@ Mode 4:
Prüfe ausgewählte Fw Updates
-
+
Mode 1 (RUD ELE THR AIL)
Mode 1 (RUD ELE THR AIL)
-
+
Mode 2 (RUD THR ELE AIL)
Mode 2 (RUD THR ELE AIL)
-
+
Mode 3 (AIL ELE THR RUD)
Mode 3 (AIL ELE THR RUD)
-
+
Mode 4 (AIL THR ELE RUD)
Mode 4 (AIL THR ELE RUD)
-
+
Automatic Backup Folder
-
+
Automatically add version number to the filename after download
-
+
Voice
-
+
Set language of voice.
May be different from firmware language
-
+
Firmware
Firmware
-
+ Normal
+ Normal
+
+
+
Check for updates on startup
Überprüfe auf Aktualisierung beim Start
-
-
+
+
...
...
-
+
Splash library behaviour
Verhalten Startbild Bibliothek
-
+
Include companion splashes
'companion' Startbilder einschliessen
-
+
Only user defined splashes
Nur Benutzer Startbilder
-
+
Custom TX splash screen
Benutzer Startbild
-
+
Personal splash library
Benutzer Startbild Bibliothek
-
+
Joystick
Joystick
-
-
-
-
+
+
+
+
Open Folder
Verzeichnis öffnen
-
+
SD Structure path
-
+
Processor ID
-
+
Simulator capture folder
-
+
Use clipboard only
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
CheckBox
CheckBox
-
+
Check for updates
Prüfe für Updates
-
+
Language
-
+
Profile Name
-
+
Export Profile
-
+
Save Profile
-
+
Import Profile
-
+
Simu BackLight
-
+
Check for selected Fw updates
-
+
Ask use of wizard for new models
-
+
+ Show Splash At Start
+
+
+
+
Remember switches in simulator
-
+
Blue
Blu
blau
-
+
Green
grün
-
+
Red
rot
-
+
Orange
orange
-
+
Yellow
gelb
-
+
Profile slot
-
+
auto backup before write
-
+
Find Executable
-
+
Google Earth Executable
-
+
Ask for flashing after Download
-
+
Enable
aktivieren
-
+
Calibrate
kalibrieren
-
+
Open Image
Bild öffnen
-
+
Invert Pixels
Pixel invertieren
@@ -11236,12 +11318,12 @@ May be different from firmware language
HG Beleuchtung
-
+
FwInfo
FwInfo
-
+
Last downloaded release: %1
Letzte geladene Version: %1
@@ -11254,48 +11336,48 @@ May be different from firmware language
Die gewählte Firmware kann von companio9x nicht geladen werden.
-
+
Image stored in settings
Gewähltes Bild in Einstellungen
-
-
+
+
No joysticks found
kein Joystick gefunden
-
+
Select your Models and Settings backup folder
-
+
Select Google Earth executable
-
+
Select the folder replicating your SD structure
-
+
Profile name is empty, profile slot %1 will be deleted.<br>Are you sure ?
-
+
Export profile As
-
+
Profile slot is not empty, profile slot %1 will we overwritten.<br>Are you sure ?
-
+
Open Profile to import
@@ -11304,44 +11386,44 @@ May be different from firmware language
Bitte Bibliothek Verzeichnis wählen
-
+
Open Image to load
Bilddatei öffnen
-
+
Images (%1)
Bilder (%1)
-
-
+
+
Error
Fehler
-
+
The selected firmware has never been downloaded by Companion.
-
+
The selected firmware cannot be downloaded by Companion.
-
+
Select your library folder
-
+
Select your snapshot folder
-
-
+
+
Cannot load %1.
Kann %1 nicht laden.
@@ -11399,9 +11481,9 @@ May be different from firmware language
-
-
-
+
+
+
Name
Name
@@ -11532,7 +11614,7 @@ May be different from firmware language
-
+
Enabled
Aktiv
@@ -11648,12 +11730,12 @@ May be different from firmware language
Kurve(%1)
-
+
Delay(u%1:d%2)
Verzögerung(u%1:d%2)
-
+
Slow(u%1:d%2)
Langsam/u%1:d%2)
@@ -11678,9 +11760,7 @@ May be different from firmware language
5-Punkt-Kurven
-
-
-
+
pt %1
pt %1
@@ -11697,16 +11777,16 @@ May be different from firmware language
Spezifische Schalter
-
+
Source
Quelle
-
-
-
-
-
+
+
+
+
+
Offset
Offset
@@ -11738,35 +11818,29 @@ May be different from firmware language
-
-
+
+
Flight modes
Flugphasen
-
-
+
+
Flight mode
-
-
- CS
-
-
-
-
+
Global Variables
-
+
GV
-
+
Function
Funktion
@@ -11780,10 +11854,10 @@ May be different from firmware language
-
-
-
-
+
+
+
+
Switch
Schalter
@@ -11816,12 +11890,8 @@ May be different from firmware language
Weg
-
-
-
-
Expo
- Expo
+ Expo
Phases
@@ -11832,148 +11902,138 @@ May be different from firmware language
FPhase
-
-
+
+
DISABLED
-
-
-
-
-
-
-
+
+
+
Curve
Kurve
-
+
Mixers
Mischer
-
-
-
-
-
+
+
+
+
+
CH
CH
-
+
noTrim
keinTrim
-
FMTrim
- FPh Trimmung
+ FPh Trimmung
-
Diff
- Diff
+ Diff
-
+
Warn
Warnung
-
+
Limits
Grenzen
-
-
-
-
+
+
+
+
Min
Min
-
-
-
-
+
+
+
+
Max
Max
-
-
-
+
+
+
Invert
Invertieren
-
-
-
+
+
+
INV
INV
-
-
-
+
+
+
NOR
NOR
-
+
Curves
Kurven
-
5 Points Curves
- 5 Punkte Kurve
+ 5 Punkte Kurve
-
9 Points Curves
- 9 Punkte Kurve
+ 9 Punkte Kurve
-
Custom Switches
- Freie Schalter
+ Freie Schalter
SW
FSch
-
+
Safety Switches
Sicherheitsschalter
-
-
-
-
-
+
+
+
+
+
Value
Wert
-
Function Switches
- Freie Schalter
+ Freie Schalter
-
+
Parameter
-
+
Repeat
@@ -11982,96 +12042,112 @@ May be different from firmware language
FSch
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignments
+
+
+
+
Telemetry Settings
Telemetrie Einstellungen
-
-
+
+
Alarm 1
Alarm 1
-
-
+
+
Alarm 2
Alarm 2
-
+
Analog
Analog
-
+
Unit
Einheit
-
+
Scale
Skala
-
-
-
-
+
+
+
+
Type
Typ
-
-
-
-
+
+
+
+
Condition
Zustand
-
+
A%1
A%1
-
+
RSSI Alarm
-
+
Frsky serial protocol
Frsky serielles Protokoll
-
+
System of units
Maßeinheit
-
+
Propeller blades
Propeller Blätter
-
+
Telemetry Bars
Telemetrie Balken
-
+
Bar Number
Balkennummer
-
+
ODF files (*.odt);;PDF Files(*.pdf);;HTML-Files (*.htm *.html);;All Files (*)
-
-
+
+
Custom Telemetry View
@@ -12081,17 +12157,12 @@ May be different from firmware language
-
- CF
-
-
-
-
+
Print Document
Drucke Dokument
-
+
Select PDF output file
PDF Output Datei wählen
@@ -12104,17 +12175,17 @@ May be different from firmware language
Companion9x Simulator
-
+
P1
P1
-
+
P2
P2
-
+
P3
P3
@@ -12140,33 +12211,33 @@ May be different from firmware language
-
+
Hold X
Halte X
-
+
Fix X
Fixiere X
-
+
Fix Y
Fixiere Y
-
+
Hold Y
Halte Y
-
-
+
+
TextLabel
Textlabel
@@ -12186,12 +12257,12 @@ May be different from firmware language
ID0
-
+
ID1
ID1
-
+
ID2
ID2
@@ -12208,7 +12279,7 @@ May be different from firmware language
SW3
-
+
BEEP
Piepston
@@ -12220,19 +12291,19 @@ May be different from firmware language
-
+
Right Double Click to Reset
Zurücksetzen mit rechtem Doppelklick
-
-
-
+
+
+
0 %
-
+
9x Simulator
9x Simulator
@@ -12276,270 +12347,268 @@ May be different from firmware language
SW12
SW12
-
-
- CSK
- SWK
-
-
-
-
- CS1
-
-
Companion Simulator
+
+
+ LS1
+
+
- CS2
+ LS2
- CS3
+ LS3
- CS4
+ LS4
- CS5
+ LS5
- CS6
+ LS6
- CS7
+ LS7
- CS8
+ LS8
- CS9
+ LS9
- CSA
+ LSA
- CSB
+ LSB
- CSC
+ LSC
- CSD
+ LSD
- CSE
+ LSE
- CSF
+ LSF
- CSG
+ LSG
- CSH
+ LSH
- CSI
+ LSI
-
- CSJ
+
+ LSJ
-
- CSL
+
+ LSK
-
- CSM
+
+ LSL
-
- CSN
+
+ LSM
-
- CSO
+
+ LSN
-
- CSP
+
+ LSO
-
- CSQ
+
+ LSP
-
- CSR
+
+ LSQ
-
- CSS
+
+ LSR
-
- CST
+
+ LSS
-
- CSU
+
+ LST
-
- CSV
+
+ LSU
-
- CSW
- SWW
+
+ LSV
-
+
+ LSW
+
+
+
+
CH1
CH1
-
+
CH9
CH9
-
+
CH2
CH2
-
+
CH10
CH10
-
+
CH3
CH3
-
+
CH11
CH11
-
+
CH4
CH4
-
+
CH12
CH12
-
+
CH5
CH5
-
+
CH13
CH13
-
+
CH6
CH6
-
+
CH14
CH14
-
+
CH7
CH7
-
+
CH15
CH15
-
+
CH8
CH8
-
+
CH16
CH16
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-100.1
-100.1
@@ -12587,33 +12656,33 @@ May be different from firmware language
splashLibrary
-
+
...
...
-
+
Splash Library - page %1 of %2
Startbild Bibliothek - Seite %1 von %2
-
+
Warning
Warnung
-
+
Invalid image in library %1
ungültige Bilddatei in Bibliothek %1
-
+
Information
Information
-
+
No valid image found in library, check your settings
keine gültige Bilddatei gefunden in Bibliothek, bitte Einstellungen prüfen
@@ -12730,12 +12799,6 @@ May be different from firmware language
Outputs
Ausgaben
-
-
- CSK
- SWK
-
-
SW1
SW1
@@ -12834,10 +12897,10 @@ May be different from firmware language
-
-
-
-
+
+
+
+
@@ -12878,12 +12941,12 @@ May be different from firmware language
CH4
-
+
CH12
CH12
-
+
CH5
CH5
@@ -12922,160 +12985,164 @@ May be different from firmware language
CH16
CH16
+
+
+ LSK
+
+
- CSC
+ LSC
- CSD
+ LSD
- CS7
+ LS7
- CSL
+ LSL
- CSB
+ LSB
- CS1
+ LS1
- CSH
+ LSH
- CSG
+ LSG
- CSE
+ LSE
- CSF
+ LSF
- CS8
+ LS8
- CS9
+ LS9
- CSA
+ LSA
- CSM
+ LSM
- CSJ
+ LSJ
- CSI
+ LSI
- CS4
+ LS4
- CS5
+ LS5
- CS2
+ LS2
- CS3
+ LS3
- CS6
+ LS6
- CSN
+ LSN
- CSO
+ LSO
- CSP
+ LSP
- CSQ
+ LSQ
- CSR
+ LSR
- CSS
+ LSS
- CST
+ LST
- CSU
+ LSU
- CSV
+ LSV
- CSW
- SWW
+ LSW
@@ -13095,12 +13162,12 @@ May be different from firmware language
Kann joystick nicht öffnen, joystick ausgeschaltet
-
+
Firmware %1 error: %2
Firmware %1 Fehler: %2
-
+
- Flight mode: %1(%2)
@@ -13109,12 +13176,12 @@ May be different from firmware language
- Phase: %1(%2)
-
+
Simulating Tx (%1)
Simuliere Tx (%1)
-
+
Simulating
Simuliere
diff --git a/companion/src/translations/companion_fr.ts b/companion/src/translations/companion_fr.ts
index d62d3e8c8..125d6fbf2 100644
--- a/companion/src/translations/companion_fr.ts
+++ b/companion/src/translations/companion_fr.ts
@@ -2,153 +2,715 @@
- ExpoDialog
+ Channels
-
- Expo
- Expo
+
+ Name
+ Nom
-
+
+ Offset
+
+
+
+
+ Min
+ Min
+
+
+
+ Max
+ Max
+
+
+
+ Invert
+ Inversion
+
+
+
+ Center
+ Centre
+
+
+
+ Sym
+ Sym
+
+
+
+ Channel %1
+
+
+
+
+ ---
+ ---
+
+
+
+ INV
+ Inversion
+
+
+
+ CurveGroup
+
+
+ Diff
+ Diff
+
+
+
+ Expo
+ Expo
+
+
+
+ Func
+
+
+
+
+ Curve
+ Courbe
+
+
+
+ Curves
+
+
+ Form
+
+
+
+
+ Standard
+
+
+
+
+ Custom
+ Prédéfini
+
+
+
+ Lines
+
+
+
+
+ Smooth
+
+
+
+
+ Curve type
+ Type de courbe
+
+
+
+ Curve name
+ Nom de la courbe
+
+
+
+ Curve %1
+
+
+
+
+ %1 points
+
+
+
+
+ Are you sure you want to reset curve %1 ?
+
+
+
+
+ Editing curve %1
+ Édition de la courbe %1
+
+
+
+ Not enough free points in EEPROM to store the curve.
+
+
+
+
+ CustomFunctionsPanel
+
+
+ Switch
+ Interrupteur
+
+
+
+ Action
+
+
+
+
+ Parameters
+
+
+
+
+ Enable
+ Actif
+
+
+
+ ON
+
+
+
+
+ Error
+ Erreur
+
+
+
+ Unable to find sound file %1!
+ Impossible de trouver le fichier %1!
+
+
+
+ &Delete
+ &Supprimer
+
+
+
+ Delete
+ Supprimer
+
+
+
+ &Copy
+ &Copier
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+ C&ouper
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ CustomSwitchesPanel
+
+
+ Condition
+ Condition
+
+
+
+ V1
+ V1
+
+
+
+ V2
+ V2
+
+
+
+ AND
+ ET
+
+
+
+ Duration
+ Durée
+
+
+
+ Delay
+ Délai
+
+
+
+
+ LS%1
+
+
+
+
+ &Delete
+ &Supprimer
+
+
+
+ Delete
+ Supprimer
+
+
+
+ &Copy
+ &Copier
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+ C&ouper
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ Dialog
+
+
+ Dialog
+ Dialogue
+
+
+
+ Curve type
+ Type de courbe
+
+
+
+ Coefficient
+
+
+
+
+ Both
+ Les 2
+
+
+
+ x>0
+
+
+
+
+ x<0
+
+
+
+
+ Y at X=0
+ Y pour X=0
+
+
+
+ Side
+ Direction
+
+
+
+ Y at X=-100
+ Y pour X=-100
+
+
+
+ Y at X=100
+ Y pour X=100
+
+
+
+ Linear
+ Linéaire
+
+
+
+ Single Expo
+ Expo simple
+
+
+
+ Symmetrical f(x)=-f(-x)
+ Symétrique f(x)=-f(-x)
+
+
+
+ Symmetrical f(x)=f(-x)
+ Symétrique f(x)=f(-x)
+
+
+
+ ExpoDialog
+
+ Expo
+ Expo
+
+
+
Weight
Ratio
-
Name
- Nom
+ Nom
-
-
Phase used by the expo.
- Phase utilisée par l'expo.
+ Phase utilisée par l'expo.
-
+
0
0
-
+
Flight modes
Phases de vol
-
-
-
+
+ The source for the mixer
+ La voie maître pour le mixage
+
+
+
+ Input name
+
+
+
+
+
GV
VG
-
+
+ Phase used by the input.
+
+
+
+
1
1
-
+
2
2
-
+
3
3
-
+
4
4
-
+
5
5
-
+
6
6
-
+
7
7
-
+
8
8
-
+
Switch
Interrupteur
-
+
+ Switch used by the input.
+If blank then the input is considered to be "ON" all the time.
+
+
+
+
+ The curve used by the input
+
+
+
+
+ Source
+
+
+
+
+ Line name
+
+
+
Switch used by the expo.
If blank then the expo is considered to be "ON" all the time.
- Interrupteur utilisé par l'expo.
+ Interrupteur utilisé par l'expo.
Expo actif par défaut si non renseigné.
-
Curve/Exponential
- Courbe/Exponentiel
+ Courbe/Exponentiel
-
+
Stick Side
Direction
-
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Delay ans Slow</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These values control the speed and delay of the output of the mix. </p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Delay is not zero the actuation of the mix will be delayed by the specified amount of seconds.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Slow is not zero then the speed of the mix will be set by the value specified -> the value states the number of seconds it takes to transit from -100 to 100.</p></body></html>
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Délai et Ralenti</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ces valeurs contrôlent la vitesse et le délai à l'entrée du mixage.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Si Délai est différent de 0, le départ du mixage sera décalé du nombre de secondes spécifié.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Si Ralentissement est différent de 0, la vitesse du mixage sera la valeur spécifiée -> La valeur représente le nombre de secondes nécessaires à la course -100/100.</p></body></html>
+
+
+
+ Scale
+ Echelle
+
+
+
+ Include Trim
+ Inclure Trim
+
+
+
+ No
+ Non
+
+
+
+ Yes
+ Oui
+
+
+
Curve
Courbe
-
The curve used by the expo
- Courbe utilisée par l'expo
+ Courbe utilisée par l'expo
-
+
NEG
Négatif
-
+
POS
Positif
-
+
ALL
Partout
-
DEST -> %1
- Destination -> %1
+ Destination -> %1
+
+
+
+ Edit %1
+
+
+
+
+ Rud
+ Dir
+
+
+
+ Ele
+ Prf
+
+
+
+ Thr
+ Gaz
+
+
+
+ Ail
+ Ail
+
+
+
+ FlightMode
+
+
+ Form
+
+
+
+
+ Fade In
+ Fondu en entrée
+
+
+
+ Fade Out
+ Fondu en sortie
+
+
+
+ Name
+ Nom
+
+
+
+ Switch
+ Interrupteur
+
+
+
+ trim1
+
+
+
+
+ trim2
+
+
+
+
+ trim4
+
+
+
+
+ trim3
+
+
+
+
+ Rud
+ Dir
+
+
+
+ Ele
+ Prf
+
+
+
+ Thr
+ Gaz
+
+
+
+ Ail
+ Ail
+
+
+
+ Rotary Encoder %1
+
+
+
+
+ GVAR%1
+
+
+
+
+ FlightModes
+
+
+ Flight Mode %1
+
+
+
+
+ (%1)
+
+
+
+
+ (default)
+
GeneralEdit
-
+
v
-
+
min
-
-
+
+
sec
@@ -158,8 +720,8 @@ Expo actif par défaut si non renseigné.
Configuration
-
-
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -174,22 +736,22 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Plage de valeurs: 20...45</span></p></body></html>
-
+
Input Filter
Conversion
-
+
Inactivity Timer
Alerte d'inactivité
-
+
Every Minute
Toutes les minutes
-
+
If not zero will sound beeps if the transmitter has been left without inputs for the specified number of minutes.
Si différent de 0, émission d'un bip sonore régulier si aucune action n'a été effectuée sur l'émetteur depuis le temps spécifié (en minutes).
Réinitialisation en agissant sur n'importe lequel des manches / touches de navigation.
@@ -200,18 +762,17 @@ Réinitialisation en agissant sur n'importe lequel des manches / touches de
Paramètres généraux
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Inversion des gaz.
+ Inversion des gaz.
Si cette option est cochée, la voie des gaz est inversée: le ralenti est 'manche en haut'. Le trim et l'alerte des gaz sont inversés également.
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -220,47 +781,49 @@ p, li { white-space: pre-wrap; }
Le rétroéclairage clignote en synchro avec les bips du chrono
-
+
Memory Startup Warning
Alerte mémoire
-
+
Beeps at 30, 15, 10, and down from5 seconds
Bip à 30, 15, 10, 5 puis toutes les secondes
-
+
This is the switch selectrion for turning on the backlight (if installed).
Interrupteur déclenchant le rétroéclairage' (si installé).
-
+
Timer Beeps
Bips du chrono
-
+
Mode 2 (RUD THR ELE AIL)
Mode 2 (DIR GAZ PROF AIL)
-
+
Filter
Filtre (si 'jitter' - Latence +30msec)
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
Beeper volume
0 - Quiet. No beeps at all.
@@ -277,32 +840,31 @@ Long : bips plus longs.
Extra long : bips extra longs.
-
Throttle Startup Warning
- Alerte gaz
+ Alerte gaz
-
+
Single
Simple conversion (1024 bits)
-
+
Battery Warning
Alerte batterie
-
+
Contrast
Contraste
-
+
Mode 4 (AIL THR ELE RUD)
Mode 4 (AIL GAZ PROF DIR)
-
+
Mode selection:
Mode 1:
@@ -343,14 +905,13 @@ Manche Droit: Profondeur, Direction
-
+
Mode 3 (AIL ELE THR RUD)
Mode 3 (AIL PROF GAZ DIR)
-
Reverse Throttle Operation
- Inversion des gaz
+ Inversion des gaz
@@ -360,17 +921,17 @@ These will be relevant for all models in the same EEPROM.
Communs à tous les modèles d'une même EEPROM.
-
+
Flash on beep
Clignotement avec les bips
-
+
Oversample
Suréchantillonnage (2048 bits)
-
+
Battery warning voltage.
This is the threashhold where the battery warning sounds.
@@ -381,17 +942,17 @@ Seuil auquel se déclenche l'alarme de batterie.
Plage de valeurs: 5v...10v
-
+
Calibration
Étalonnage
-
+
Stick Mode
Mode
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -399,34 +960,34 @@ This is used by the templated to determine which channel goes to what number out
Indique l'affectation voie / numéro d'entrée pour les présélections (=Templates).
-
+
Battery Calibration
Étalonnage batterie
-
+
Count Down to Zero
Compte à rebours
-
+
If this value is not 0, any keypress will turn on the backlight and turn it off after the specified number of seconds.
Si cette valeur est différente de 0, l'appui sur une touche de navigation déclenche le rétroéclairage qui s'éteint après la durée spécifiée (en secondes).
-
+
Beeper Mode
Réglage des bips
-
+
Battery calibration:
This value will be added to the measured battery voltage. Use this value to calibrate the meter with an external meter.
Étalonnage batterie:
Cette valeur est ajoutée à la tension mesurée.Mesurer la tension réelle' à l'aide d'un multimètre pour déterminer l'écart à appliquer.
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -439,12 +1000,11 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Emet un bip à chaque minute écoulée</span></p></body></html>
-
-
-
-
-
-
+
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -469,263 +1029,259 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Alerte mode silencieux - Avertissement si les bips sont désactivés</p></body></html>
-
+
Mode 1 (RUD ELE THR AIL)
Mode 1 (DIR PROF GAZ AIL)
-
+
Channel Order (For Templates)
Ordre des voies par défaut
-
Switch Startup Warning
- Alerte interrupteurs
+ Alerte interrupteurs
-
+
Show Splash Screen on Startup
Afficher l'écran de démarrage
-
-
+
+
Show splash screen on startup
Affiche l'écran d'accueil au démarrage
-
+
Alarm Warning
Alerte mode silencieux
-
-
+
+
Quiet
Mode silencieux
-
-
+
+
No Keys
Touches silencieuses
-
-
+
+
Normal
Normal
-
-
+
+
Long
Long
-
+
PPM Multiplier
Coeff. multiplicateur PPM
-
+
Owner Name
Nom du propriétaire
-
+
-
-
-
+
+
Off
Aucun
-
Switches Up
- Inters vers le haut
+ Inters vers le haut
-
Switches Down
- Inters vers le bas
+ Inters vers le bas
-
+
Trainer
Ecolage
-
-
+
+
PPM 1
PPM 1
+
-
-
-
+
+
chn1
Can. 1
+
-
-
-
+
+
chn2
Can. 2
+
-
-
-
+
+
chn3
Can. 3
+
-
-
-
+
+
chn4
Can. 4
-
+
Mode
Mode
-
+
Sound Mode
Mode Son
-
+
Beeper
Bipeur
-
+
Speaker Pitch (spkr only)
Tonalité (HP uniquement)
-
+
Pot Scrolling Enable
Navigation avec les pots
-
+
Bandgap Measuring Enable
Mesure Bandgap
-
+
Show Owner Name on Splash
Nom sur l'écran de démarrage
-
+
Telemetry NO DATA Alarm
Alarme Pas de télémesure
-
+
Only Alarms
Seulement les alarmes
-
-
+
+
All
Tous
-
+
THR
THR
-
+
RUD
RUD
-
+
ELE
ELE
-
+
AIL
AIL
-
+
GEA
-
+
ID0
-
+
ID1
-
+
ID2
-
+
Beeper Length
Durée des bips
-
-
+
+
X-Short
X-court
-
-
+
+
Short
Court
-
-
+
+
X-Long
X-long
-
+
Haptic Mode
Mode du vibreur
-
+
Alarms Only
Seulement les Alarmes
-
+
Haptic Length
Durée vibreur
-
+
GPS Coordinates
Coordonnées GPS
@@ -740,137 +1296,137 @@ p, li { white-space: pre-wrap; }
Lire étalonnage et réglages hw du profil
-
+
Speaker
Haut-parleur
-
+
BeeperVoice
Bipeur/Voix
-
+
SpeakerVoice
Haut-parleur/Voix
-
+
hh° (N/S) mm' ss''.dd
-
+
NMEA
-
+
Timeshift from UTC
Décalage horaire (UTC)
-
+
LCD Display Type
Type de LCD
-
+
Standard
-
+
Optrex
-
+
Speaker Volume
Volume haut-parleur
-
+
Haptic Strength
Puissance vibreur
-
+
BackLight Brightness
Luminosité rétroéclairage
-
+
RotEnc Navigation
Navigation avec encodeur
-
+
BackLight Auto OFF after
Durée rétroéclairage
-
+
BackLight Switch
Inter rétroéclairage
-
+
BackLight On Stick Move
Rétroéclairage par sticks
-
+
BackLight Invert
Inversion du rétroéclairage
-
+
Country Code
-
+
Europe
-
+
Japan
-
+
America
-
+
Metric
Métrique
-
+
Imperial
Impérial
-
+
Measurement Units
Unités
-
+
FrSky Internal Alarm
Alarmes FrSky internes
-
+
StickScroll
Défilement par manches
-
+
PPMSim
PPMSim
@@ -880,37 +1436,37 @@ p, li { white-space: pre-wrap; }
Langue audio
-
+
CrossTrim
Trims croisés
-
+
Beep volume
Volume des bips
-
+
Wav volume
Volume des fichiers audio
-
+
Vario volume
Volume du variomètre
-
+
Background volume
Volume de la musique d'ambiance
-
+
FAI Mode
Mode FAI
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen. This function cannot be disabled by the radio.
Lorsque le mode FAI est activé, le variomètre ainsi que l'écran et la lecture des valeurs de télémesure sont désactivés. Ce mode ne peut pas être désactivé sur la radio.
@@ -920,289 +1476,521 @@ p, li { white-space: pre-wrap; }
Baudrate Mavlink
-
+
4800 Baud
-
+
9600 Baud
-
+
14400 Baud
-
+
19200 Baud
-
+
38400 Baud
-
+
57600 Baud
-
+
76800 Baud
-
+
115200 Baud
-
+
Readonly Unlock
Débloquage lecture seule
-
+
SC
-
+
SE
-
+
SA
-
+
SF
-
+
SH
-
+
SD
-
+
SB
-
+
SG
-
+
Input
Entrée
-
+
Weight
Ratio
-
+
Switch
Interrupteur
+
-
-
-
+
+
+= (Sum)
+= (Additionne)
+
-
-
-
+
+
:= (Replace)
:= (Remplace)
-
-
+
+
PPM 2
PPM 2
-
-
+
+
PPM 3
PPM 3
-
-
+
+
PPM 4
PPM 4
-
+
Telemetry
Télémesure
-
+
RSSI Alarm 1
Alarme RSSI 1
-
-
+
+
----
----
-
-
+
+
Yellow
Jaune
-
-
+
+
Orange
Orange
-
-
+
+
Red
Rouge
-
+
RSSI Alarm 2
Alarme RSSI 2
-
+
NO DATA Alarm
Alarme Pas de télémesure
-
+
POT 4
POT 4
-
-
+
+
Negative span
Amplitude nég.
-
-
+
+
Mid value
Centre
-
-
+
+
Positive span
Amplitude pos.
-
+
STICK 1
MANCHE 1
-
+
STICK 2
MANCHE 2
-
+
Current
Courant
-
+
+
+ Pot (normal)
+
+
+
+
+
+ Multipos Switch
+
+
+
+
+ S1 Type
+
+
+
+
+ S2 Type
+
+
+
+
STICK 3
MANCHE 3
-
+
STICK 4
MANCHE 4
-
+
POT 1
POT 1
-
+
POT 2
POT 2
-
+
POT 3
POT 3
-
+
Battery
Batterie
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen.
This function cannot be disabled by the radio.
Are you sure ?
Lorsque le mode FAI est activé, le variomètre ainsi que l'écran et la lecture des valeurs de télémesure sont désactivés.\nCe mode ne peut pas être désactivé sur la radio.\nEtes-vous sûr?
-
-
+
+
Warning
Avertissement
-
+
Wrong data in profile, radio calibration was not retrieved
Données du profil erronnées, l'étalonnage n'a pas été lu
-
+
Wrong data in profile, hw related parameters were not retrieved
Données du profil erronnées, les paramètres hw n'ont pas été lus
-
+
Do you want to store calibration in %1 profile<br>overwriting existing calibration?
Voulez-vous stocker l'étalonnage dans le profil %1<br> et écraser l'étalonnage existant?
-
+
Calibration and HW parameters saved.
Etalonnage et paramètres hw enregistrés avec succès.
+
+ Heli
+
+
+ Form
+
+
+
+
+ Invert Elevator
+ Profondeur
+
+
+
+ Invert Aileron
+ Aileron
+
+
+
+ Invert Collective
+ Pas collectif
+
+
+
+ Invert
+ Inversion
+
+
+
+ Off
+ Aucun
+
+
+
+ 120
+ 120
+
+
+
+ 120X
+ 120X
+
+
+
+ 140
+ 140
+
+
+
+ 90
+ 90
+
+
+
+ Collective
+ Source du pas collectif
+
+
+
+ Swash Type
+ Type de plateau cyclique
+
+
+
+ Swash Ring
+ Limite cyclique
+
+
+
+ InputsPanel
+
+
+
+ Move Up
+ Monter
+
+
+
+
+ Ctrl+Up
+ Ctrl+Haut
+
+
+
+
+ Move Down
+ Descendre
+
+
+
+
+ Ctrl+Down
+ Ctrl+Bas
+
+
+
+ Clear All Settings
+
+
+
+
+ Source(%1)
+
+
+
+
+ No Trim
+ Pas de Trim
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ Not enough available inputs!
+
+
+
+
+ Delete Selected Inputs?
+
+
+
+
+ &Add
+ &Ajouter
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ &Edit
+
+
+
+
+ Enter
+ Entrée
+
+
+
+ &Delete
+ &Supprimer
+
+
+
+ Delete
+ Supprimer
+
+
+
+ &Copy
+ &Copier
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+ C&ouper
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ Du&plicate
+ Du&pliquer
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Inputs?
+
+
+
+
+ Really clear all the inputs?
+
+
+
MainWindow
-
+
&New
&Nouveau
@@ -1211,17 +1999,17 @@ Are you sure ?
Flasher
-
+
Cu&t
C&ouper
-
+
Edit
Edition
-
+
File
Fichier
@@ -1230,12 +2018,12 @@ Are you sure ?
companion9x - Éditeur d'EEPROM - Firmware %1
-
+
Display previous warning again at startup ?
Afficher les alertes précédentes lors du prochain démarrage ?
-
+
New release available
Nouvelle version disponible
@@ -1244,28 +2032,28 @@ Are you sure ?
Une nouvelle version de companion9x est disponible, veuillez vérifier dans l'espace de téléchargement
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Erreur
-
-
-
-
-
+
+
+
+
+
Error opening file %1:
%2.
Erreur à l'ouverture du fichier %1:
@@ -1276,7 +2064,7 @@ Are you sure ?
Ce firmware est trop gros, trop d'options choisies
-
+
Compilation server termporary failure, try later
Erreur temporaire du serveur de compilation
@@ -1285,7 +2073,7 @@ Are you sure ?
companion9x - Editeur d'EEPROM - firmware %1 - profil %2
-
+
Display previous message again at startup ?
Afficher les alertes précédentes lors du prochain démarrage ?
@@ -1294,13 +2082,13 @@ Are you sure ?
Les options sélectionnées prennent trop de place par rapport à la taille de flash disponible
-
+
Compilation server temporary failure, try later
Erreur temporaire du serveur de compilation
-
-
+
+
Compilation server too busy, try later
Serveur de compilation trop occupé
@@ -1309,8 +2097,8 @@ Are you sure ?
Le serveur de compilation nécessite d'être enregistré, veuillez vous référer au site web d'openTx
-
-
+
+
Unknown server failure, try later
Erreur inconnue du serveur de compilation
@@ -1319,70 +2107,70 @@ Are you sure ?
Voulez-vous flasher ce firmware maintenant ?
-
-
+
+
Yes
Oui
-
-
+
+
No
Non
-
-
+
+
Release Notes
Release Notes
-
-
+
+
Do you want to download release %1 now ?
Voulez-vous télécharger la release %1 ?
-
+
Release notes contain very important informations. Do you want to see them now ?
Les notes de version contiennent des informations très importantes. Voulez-vous les voir maintenant?
-
+
Open
Ouvrir
-
+
Firmware updates
Mises à jour de firmware
-
+
Current firmware does not provide release notes informations.
Le firmware actuel ne contient pas de notes de version.
-
+
Cannot write file %1:
%2.
Ecriture fichier %1 impossible:
%2.
-
-
-
-
-
+
+
+
+
+
Taranis radio not found
Radio Taranis non détectée
-
-
-
-
+
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
Impossible de trouver la radio, vérifiez qu'elle est bien sous tension et connectée.
@@ -1393,16 +2181,16 @@ Burn anyway ?
Le fichier %1 n'est pas reconnu comme une EEPROM valide. Confirmer le transfert ?
-
-
-
+
+
+
Backup is impossible
Sauvegarde impossible
-
-
-
+
+
+
The backup dir set in preferences does not exist
Le dossier de sauvegarde configuré dans les préférences n'existe pas
@@ -1415,8 +2203,8 @@ Burn anyway ?
Impossible de vérifier la compatibilité de l'EEPROM! Continuer quand même?
-
-
+
+
Warning
Avertissement
@@ -1437,7 +2225,7 @@ Burn anyway ?
Flasher l'émetteur
-
+
Conversion failed
La conversion a échoué
@@ -1450,7 +2238,7 @@ Burn anyway ?
Restaurer l'EEPROM vers l'émetteur
-
+
Restore failed
Erreur lors de la restauration
@@ -1467,7 +2255,7 @@ Burn anyway ?
Impossible de flasher l'émetteur, l'EEPROM d'origine se trouve dans : %1
-
+
Backup failed
Erreur lors de la sauvegarde
@@ -1476,37 +2264,32 @@ Burn anyway ?
Impossible de sauvegarder l'EEPROM. Flashage annulé
-
- %1 %2
-
-
-
-
+
&loadBackup...
c&harger sauvegarde...
-
+
Load backup from file
Charger une sauvegarde à partir du fichier
-
+
Lo&gs
-
+
Ctrl+G
-
+
Open log file
Ouvrir fichier de log
-
+
ChangeLog...
Historique des changements...
@@ -1515,47 +2298,247 @@ Burn anyway ?
Historique des changements de companion9x
-
+
Firmware ChangeLog...
Historique des changements du firmware...
-
+
Show firmware changelog
Montrer l'historique des changements du firmware
-
+
Compare...
Comparer...
-
+
Compare models
Comparer les modèles
-
+
+ Configure transmitter start screen...
+
+
+
+
+ &Configure connection software...
+
+
+
+
Configure software for reading from and writing to the transmitter
Configure le programme pour communiquer correctement avec la radio
-
+
Show fuses dialog
Afficher les réglages des fusibles
+
+
+ Classic
+
+
+
+
+ The multicolor classical Companion icon theme
+
+
+
+
+ A monochrome black icon theme
+
+
+
+
+ A monochrome white icon theme
+
+
+
+
+ A monochrome blue icon theme
+
+
+
+
+ Small
+
+
+
+
+ Use small toolbar icons
+
+
+
+
+ Use normal size toolbar icons
+
+
+
+
+ Normal
+ Normal
+
+
+
+ Use big toolbar icons
+
+
+
+
+ Big
+
+
+
+
+ Use huge toolbar icons
+
+
+ Huge
+
+
+
+
+ System default language
+
+
+
+
+ Use system default language in menus
+
+
+
+
+ Czech
+ Tchèque
+
+
+
+ Use Czech in menus
+
+
+
+
+ German
+ Allemand
+
+
+
+ Use German in menus
+
+
+
+
+ English
+ Anglais
+
+
+
+ Use English in menus
+
+
+
+
+ French
+ Français
+
+
+
+ Use French in menus
+
+
+
+
+ Italian
+ Italien
+
+
+
+ Use Italian in menus
+
+
+
+
+ Hebrew
+
+
+
+
+ Use Hebrew in menus
+
+
+
+
+ Polish
+
+
+
+
+ Use Polish in menus
+
+
+
+
+ Portuguese
+ Portugais
+
+
+
+ Use Portuguese in menus
+
+
+
+
+ Swedish
+ Suédois
+
+
+
+ Use Swedish in menus
+
+
+
+
+ Russian
+
+
+
+
+ Use Russian in menus
+
+
+
+
+ Set Icon Theme
+
+
+
+
+ Set Icon Size
+
+
+
+
+ &Settings
+
+
+
+
&Read/Write
&Lire/Ecrire
-
+
Write
Ecrire
-
+
Unable to find file %1!
Fichier %1 introuvable!
@@ -1564,7 +2547,7 @@ Burn anyway ?
Fichier EEPROM %1 invalide
-
+
Error reading file %1:
%2.
Fichier %1 corrompu:
@@ -1583,119 +2566,137 @@ Burn anyway ?
Fl&asher
-
+
&Copy
&Copier
-
+
&Edit
Éditio&n
-
+
&File
&Fichier
-
+
&Help
&Aide
-
+
&Save
&Enregistrer
-
&Tile
- &Mosaïque
+ &Mosaïque
-
+
E&xit
&Quitter
-
+
Alt+S
-
+
&Simulate
&Simulation
-
-
-
+
+
+
Companion - Models and Settings Editor - %1 - profile %2
-
-
-
-
+
+
+
+
Companion - Models and Settings Editor - %1
-
+
A new version of Companion is available (version %1)<br>Would you like to download it?
-
- A new release of Companion is available please check the repository
-
-
-
-
+
Firmware does not longer fit in the Tx, due to selected firmware options
Le firmware sélectionné est trop gros pour la mémoire de la radio, veuillez sélectionner moins d'options
-
-
+
+
Compilation server requires registration, please check OpenTX web site
-
+
Firmware does not fit in the Tx, due to selected firmware options
Le firmware sélectionné est trop gros pour la mémoire de la radio, veuillez sélectionner moins d'options
-
+
Write Models and settings from %1 to the Tx?
Ecrire les réglages et modèles de %1 dans la radio?
-
+
+ OpenTX Home Page: <a href='%1'>%1</a>
+
+
+
+
+ The OpenTX Companion project was originally forked from <a href='%2'>eePe</a>
+
+
+
+
+ If you've found this program useful, please support by <a href='%1'>donating</a>
+
+
+
+
+ Version %1, %3
+
+
+
+
+ &General Preferences...
+
+
+
+
Show Companion contributors list
-
+
Show Companion changelog
-
Ne&xt
- Sui&vante
+ Sui&vante
-
-
+
+
Firmware Profiles
Profils de firmware
-
+
Ready
Prêt
@@ -1704,73 +2705,74 @@ Burn anyway ?
Enregistrer la mémoire Flash sous
-
+
Show the application's About box
Afficher la fenêtre "A propos" de l'application
-
-
-
+
+
&%1 %2
-
+
&About
&À Propos
-
+
+ A new release of Companion is available please check the OpenTX website!
+
+
+
+
&Paste
Co&ller
-
+
&Print
Im&primer
-
+
Save &As...
Enregistrer &Sous...
-
Cascade the windows
- Disposer les fenêtres en cascade
+ Disposer les fenêtres en cascade
Read Flash memory
Lire la mémoire Flash
-
+
Paste the clipboard's contents into the current selection
Coller le contenu du presse-papier à l'emplacement sélectionné
-
+
Open an existing file
Ouvrir un fichier existant
-
&Configure...
- &Configurer la communication...
+ &Configurer la communication...
-
Cl&ose
- &Fermer
+ &Fermer
-
+
Ctrl+P
-
+
Print current model.
Imprimer les données du modèle sélectionné.
@@ -1779,65 +2781,59 @@ Burn anyway ?
Charger l'EEPROM de l'émetteur
-
Close all the windows
- Fermer toutes les fenêtres
+ Fermer toutes les fenêtres
Write flash memory to transmitter
Écrire dans la mémoire Flash de l'émetteur
-
donating
- don
+ don
-
+
&Open...
&Ouvrir...
-
+
Create a new file
Créer un nouveau fichier
-
Close the active window
- Fermer la fenêtre active
+ Fermer la fenêtre active
-
-
-
-
+
+
+
+
File loaded
Fichier chargé
-
-
+
+
File saved
Fichier sauvegardé
-
Switch layout direction
- Inverser l'interface
+ Inverser l'interface
-
Move the focus to the previous window
- Activer la fenêtre précedente
+ Activer la fenêtre précedente
-
Pre&vious
- P&récédente
+ P&récédente
-
+
Exit the application
Quitter l'application
@@ -1846,80 +2842,74 @@ Burn anyway ?
Écrire la mémoire Flash
-
+
List available programmers
Lister les programmateurs supportés
-
+
Save the document to disk
Enregistrer sur le disque
-
Close &All
- Fermer To&ut
+ Fermer To&ut
-
&Cascade
- &Cascade
+ &Cascade
-
+
Simulate selected model.
Simuler le modèle sélectionné
-
Tile the windows
- Disposer les fenêtres en mosaïque
+ Disposer les fenêtres en mosaïque
Read flash memory to transmitter
Lire la mémoire Flash de l'émetteur
-
+
Save the document under a new name
Enregistrer sous un nom différent
-
&Window
- Fe&nêtre
+ Fe&nêtre
-
+
Edit general preferences
Définir les préférences générales
-
&Preferences...
- &Préférences...
+ &Préférences...
About companion9x
À propos de companion9x
-
+
&Fuses...
&Fusibles...
-
+
Copy the current selection's contents to the clipboard
Copier la sélection dans le presse-papier
-
Move the focus to the next window
- Activer la fenêtre suivante
+ Activer la fenêtre suivante
-
+
&List programmers
&Programmateurs supportés
@@ -1928,17 +2918,17 @@ Burn anyway ?
Transférer l'EEPROM vers l'émetteur
-
+
Cut the current selection's contents to the clipboard
Couper la sélection et la copier dans le presse-papier
-
+
Ctrl+Alt+R
-
+
Ctrl+Alt+W
@@ -1959,21 +2949,19 @@ Burn anyway ?
Enregistrer l'EEPROM de l'émetteur dans un fichier
-
Version %1 (revision %2), %3
- Version %1 (révision %2), %3
+ Version %1 (révision %2), %3
The companion9x project was originally forked from eePe
Le projet companion9x a été créé à partir de eePe
-
Customize your &TX...
- &Personnaliser votre émetteur...
+ &Personnaliser votre émetteur...
-
+
Customize the splash screen of your TX
Personnaliser l'écran de démarrage de votre émetteur
@@ -1994,41 +2982,41 @@ Burn anyway ?
Enregistrer l'EEPROM de l'émetteur dans un fichier
-
-
-
-
-
+
+
+
+
+
Save As
Enregistrer Sous
-
+
Executable (*.exe)
Exécutable (*.exe)
-
-
+
+
No updates available at this time.
Aucune mise à jour disponible.
-
-
-
-
-
+
+
+
+
+
Unable to check for updates.
Impossible de rechercher des mises à jour.
-
+
Would you like to launch the installer?
Voulez-vous lancer l'installation ?
-
+
A new version of %1 firmware is available (current %2 - newer %3).
Do you want to download it now ?
Une nouvelle version du firmware %1 est disponible (courante %2 - nouvelle %3).
@@ -2039,7 +3027,7 @@ Voulez vous la télécharger maintenant ?
Transférer %1 dans la mémoire EEPROM de l'émetteur ?
-
+
&Check for updates...
Re&chercher des mises à jour...
@@ -2048,27 +3036,26 @@ Voulez vous la télécharger maintenant ?
Vérifier l'existence d'une nouvelle version de companion9x et du firmware sélectionné
-
+
Copyright
Copyright
-
Switch layout Left/Right
- Inverser l'interface gauche/droite
+ Inverser l'interface gauche/droite
-
+
Ignore this version (r%1)?
Ignorer cette version (r%1)?
-
+
Help
Aide
-
+
Checking for updates
Recherche de mises à jour
@@ -2085,12 +3072,12 @@ Voulez vous la télécharger maintenant ?
Une nouvelle version de companion9x est disponible (r%1)<br>Voulez-vous la télécharger ?
-
+
Do you want to write the firmware to the transmitter now ?
Voulez-vous vraiment flasher le firmware de la radio?
-
+
Firmware %1 does not seem to have ever been downloaded.
Version %2 is available.
Do you want to download it now ?
@@ -2099,15 +3086,37 @@ La version %2 est disponible.
Voulez-vous la télécharger maintenant ?
-
-
-
-
+
+ The selected language will be used the next time you start Companion.
+
+
+
+
+
+
+ OK
+
+
+
+
+ The new theme will be loaded the next time you start Companion.
+
+
+
+
+ The icon size will be used the next time you start Companion.
+
+
+
+
+
+
+
Read Models and Settings From Tx
Lire les réglages et modèles depuis la radio
-
+
The file %1
has not been recognized as a valid Models and Settings file
Write anyway ?
@@ -2116,108 +3125,102 @@ n'a pas été reconnu comme un fichier de réglage et modèles valide.
Ecrire quand même?
-
-
-
-
-
-
+
+
+
+
+
+
Backup Models and Settings From Tx
Sauvegarder les réglages et modèles depuis la radio
-
+
Cannot check Models and Settings compatibility! Continue anyway?
Impossible de vérifier la compatibilité des réglages et modèles. Continuer quand même?
-
+
The transmitter firmware belongs to another product family, check file and preferences!
Le firmware sélectionné est destiné à un différent type de radio, veuillez vérifier le fichier et les préférences!
-
+
The transmitter firmware is outdated, please upgrade!
Le firmware de la radio est obsolète, veuillez mettre à jour!
-
+
Write Models and Settings To Tx
Ecrire les réglages et modèles dans la radio
-
-
+
+
Write Firmware To Tx
Flasher le firmware de la radio
-
+
Cannot convert Models and Settings for use with this firmware, original data will be used
Impossible de convertir les réglages et modèles pour ce firmware, les données originales vont être utilisées
-
+
Restore Models and Settings To Tx
Restaurer une sauvegarde de réglages et modèles
-
+
Could not restore Models and Settings to TX. The models and settings data file can be found at: %1
Impossible de restaurerles réglages et modèles. Une copie du fichier est placée ici: %1
-
+
Firmware write failed
L'écriture du firmware a échoué.
-
+
Could not write firmware to to transmitter. The models and settings data file can be found at: %1
Impossible de flasher le firmware. Une copie du fichier de réglages et modèles est placée ici: %1
-
+
Cannot backup existing Models and Settings from TX. Firmware write process aborted
Impossible de sauvegarder les réglages et modèles de la radio. Le flashage est abandonné.
-
+
Save transmitter Models and Settings to File
Sauvegarder les réglages et modèles depuis la radio dans un fichier
-
+
Impossible to identify the radio on your system, please verify that the eeprom disk is connected.
Impossible de trouver la radio, veuillez vérifier que la radio est sous tension sur la page d'accueil et connectée.
-
+
Read Tx Firmware to File
Sauvegarder le firmware de la radio dans un fichier
-
- The Companion project was originally forked from eePe
-
-
-
-
If you've found this program useful, please support by
- Si vous trouvez ce programme utile, merci d'apporter votre soutien en effectuant un
+ Si vous trouvez ce programme utile, merci d'apporter votre soutien en effectuant un
-
+
About Companion
-
+
Check for new version of Companion
-
+
Contributors &List...
&Liste des contributeurs...
@@ -2226,62 +3229,62 @@ Ecrire quand même?
Lister les contributeurs de companion9x
-
+
&Write Models and Settings To Tx
&Transférer les réglages et modèles à la radio
-
+
Write Models and Settings to transmitter
Transférer les réglages et modèles à la radio
-
+
&Read Models and Settings From Tx
&Lire les réglages et modèles depuis la radio
-
+
Read Models and Settings from transmitter
Lire les réglages et modèles depuis la radio
-
+
Write Firmware
Flasher le firmware
-
+
Write firmware to transmitter
Flasher le firmware de la radio
-
+
Write Models and Settings from file to Tx
Restaurer les réglages et modèles depuis un fichier
-
+
Write Models and Settings from file to transmitter
Restaurer les réglages et modèles depuis un fichier
-
+
Save transmitter Models and Settings to file
Sauvegarder les réglages et modèles dans un fichier
-
+
Save the Models and Settings from the transmitter to a file
Sauvegarder les réglages et modèles dans un fichier
-
+
Read Firmware
Lire le firmware de la radio
-
+
Read firmware from transmitter
Lire le firmware de la radio
@@ -2294,19 +3297,24 @@ Ecrire quand même?
Configure le programme pour communiquer correctement avec la radio
-
-
+
+
Recent Files
Derniers documents utilisés
-
-
+
+ Set Menu Language
+
+
+
+
+
Invalid Models and Settings File %1
Fichier de réglages et modèles invalide: %1
-
+
Invalid binary Models and Settings File %1
Fichier binaire de réglages et modèles invalide: %1
@@ -2314,83 +3322,83 @@ Ecrire quand même?
MdiChild
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Erreur
-
-
-
-
+
+
+
+
Cannot write file %1:
%2.
Ecriture fichier %1 impossible:
%2.
-
-
+
+
Unable to find file %1!
Fichier %1 introuvable!
-
-
-
-
+
+
+
+
Save As
Enregister Sous
-
+
Cannot write temporary file!
Ecriture de fichier temporaire impossible!
-
+
Editing model %1:
Édition du modèle %1 :
-
-
+
+
Error writing file %1:
%2.
Erreur d'écriture fichier %1:
%2.
-
-
+
+
Error reading file %1:
%2.
Fichier %1 corrompu:
%2.
-
-
-
-
+
+
+
+
Error opening file %1:
%2.
Erreur à l'ouverture du fichier %1:
@@ -2402,102 +3410,102 @@ Ecrire quand même?
octets libres
-
+
Do you want to use model wizard?
Voulez-vous utiliser l'assistant de configuration de modèle ?
-
-
-
+
+
+
Companion
-
+
Ask this question again ?
Poser la question à nouveau ?
-
-
+
+
Invalid EEPROM File %1
Fichier EEPROM %1 invalide
-
+
Invalid binary EEPROM File %1
Fichier binaire %1 invalide
-
+
Backup is impossible
Impossible de sauvegarder
-
+
The backup dir set in preferences does not exist
Le dossier de sauvegarde configuré dans les préférences n'existe pas
-
-
-
+
+
+
Taranis radio not found
Radio Taranis non détectée
-
-
-
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
Impossible de trouver la radio, vérifiez qu'elle est bien sous tension et connectée.
-
-
-
+
+
+
Backup EEPROM From Tx
Sauvegarder l'EEPROM de l'émetteur
-
+
Cannot check eeprom compatibility! Continue anyway?
Impossible de vérifier la compatibilité de l'EEPROM! Continuer quand même?
-
-
+
+
Warning
Avertissement
-
+
Firmware in radio is of a different family of eeprom written, check file and preferences!
Le firmware de la radio n'est pas compatible avec la version de l'EEPROM à flasher, vérifier le fichier et les préférences!
-
+
Firmware in flash is outdated, please upgrade!
Le firmware de la radio est dépassé, veuillez mettre à jour!
-
+
Write EEPROM To Tx
Transférer l'EEPROM vers l'émetteur
-
+
Open
Ouvrir
-
+
Invalid binary backup File %1
Fichier de sauvegarde %1 invalide
-
+
%1 has been modified.
Do you want to save your changes?
%1 a été modifié.
@@ -2507,52 +3515,50 @@ Enregistrer les changements ?
MixerDialog
-
+
Up
Haut
-
+
ADD
Ajouter
-
Fix Offset
- Décalage sur la sortie
+ Décalage sur la sortie
-
+
OFF
-
Enable FM Trim
- Trims de phases de vol
+ Trims de phases de vol
-
+
Down
Bas
-
+
Slow
Ralenti
-
+
Delay
Délai
-
+
Curve
Courbe
-
+
Multiplexer
This determines how mixer values are added.
@@ -2569,127 +3575,123 @@ Spécifie comment les valeurs de mixage sont interprétées.
"R": la valeur remplace les valeurs précédentes. Si l'inter est sur OFF, la valeur est ignorée .
-
+
The curve used by the mix
Courbe utilisée par le mixage
-
-
-
+
+
+
GV
VG
-
+
Yes
Oui
-
+
No
Non
-
Curve/Differential
- Courbe/Différentiel
+ Courbe/Différentiel
-
+
Mixer warning.
Setting this value will cause a beep to be emmitted when this value is active.
Alerte de mixage.
Si activée, signale par des bips que le mixage est actif.
-
+
1 Beep
1 Bip
-
+
2 Beep
2 Bips
-
+
3 Beep
3 Bips
-
+
Multiplex
Multiplexage
-
+
Dialog
Dialogue
-
-
-
-
+
Offset
Décalage
-
+
Source
Maître
-
+
Switch
Interrupteur
-
+
Weight
Ratio
-
+
REPLACE
Remplacer
-
-
-
-
+
+
+
+
The source for the mixer
La voie maître pour le mixage
-
+
MULTIPLY
Multiplier
-
+
Switch used by the mix.
If blank then the mix is considered to be "ON" all the time.
Interrupteur utilisé par le mixage.
Mixage actif par défaut si non-renseigné.
-
+
Warning
Avertissement
-
+
Name
Nom
-
-
-
-
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -2714,2063 +3716,1397 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Si Ralentissement est différent de 0, la vitesse du mixage sera la valeur spécifiée -> La valeur représente le nombre de secondes nécessaires à la course -100/100.</p></body></html>
-
+
DEST -> X%1
-
+
DEST -> CH%1%2
-
-
FM Trim Value
- Trim de phase de vol
+ Trim de phase de vol
-
+
Rud
Dir
-
+
Ele
Prf
-
+
Thr
Gaz
-
+
Ail
Ale
Ail
-
+
Include Trim
Inclure Trim
-
+
Flight modes
Phases de vol
-
+
Include DR/Expo
Inclure DR/Expo
-
+
0
0
-
+
1
1
-
+
2
2
-
+
3
3
-
+
4
4
-
+
5
5
-
+
6
6
-
+
7
7
-
+
8
8
+
+ MixesPanel
+
+
+
+ Move Up
+ Monter
+
+
+
+
+ Ctrl+Up
+ Ctrl+Haut
+
+
+
+
+ Move Down
+ Descendre
+
+
+
+
+ Ctrl+Down
+ Ctrl+Bas
+
+
+
+ Clear Mixes
+ Effacer les mixages
+
+
+
+
+
+ X%1
+
+
+
+
+
+
+ CH%1%2
+ VOIE%1%2
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ No Trim
+ Pas de Trim
+
+
+
+ No DR/Expo
+ Pas d'expo/DR
+
+
+
+ Offset(%1)
+
+
+
+
+ Delay(u%1:d%2)
+ Délai(u%1:d%2)
+
+
+
+ Slow(u%1:d%2)
+ Ralentissement(u%1:d%2)
+
+
+
+ Warn(%1)
+ Alerte(%1)
+
+
+
+ Not enough available mixers!
+ Plus de mixages disponibles !
+
+
+
+ Delete Selected Mixes?
+ Supprimer mixages sélectionnés ?
+
+
+
+ &Add
+ &Ajouter
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ &Edit
+
+
+
+
+ Enter
+ Entrée
+
+
+
+ &Delete
+ &Supprimer
+
+
+
+ Delete
+ Supprimer
+
+
+
+ &Copy
+ &Copier
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+ C&ouper
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ Du&plicate
+ Du&pliquer
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Mixes?
+ Effacer les mixages ?
+
+
+
+ Really clear all the mixes?
+ Êtes-vous sûr de vraiment vouloir effacer tous les mixages ?
+
+
ModelEdit
-
- P1
-
-
-
-
- P2
-
-
-
-
- P3
-
-
-
-
-
-
-
-
-
- ch
-
-
-
-
-
-
-
-
-
-
-
-
-
AIL
- AIL
+ AIL
-
-
-
-
-
-
-
-
-
-
-
-
ELE
- PROF
+ PROF
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- INV
-
-
-
-
-
-
-
-
- Max
-
-
-
-
-
-
-
-
- Min
-
-
-
-
-
-
-
-
-
-
-
-
RUD
- DIR
+ DIR
-
-
-
-
-
THR
- GAZ
+ GAZ
-
-
&Add
- &Ajouter
+ &Ajouter
-
-
-
-
&Cut
- C&ouper
+ C&ouper
-
Fine
- Fin
+ Fin
-
-
-
- usec
-
-
-
-
-
-
-
&Copy
- &Copier
+ &Copier
-
-
&Edit
- &Edition
+ &Edition
-
+
Simulate
Simulation
-
-
Enter
- Entrée
+ Entrée
-
+
+ Heli
+
+
+
+
+ Inputs
+
+
+
+
Mixes
Mixages
-
+
+ Logical Switches
+
+
+
+
+ Switch Assignment
+
+
+
+
Setup
Configuration
-
-
- mm:ss
-
-
-
-
Trim Increment
- Incrément trims
+ Incrément trims
-
Slow(u%1:d%2)
- Ralentissement(u%1:d%2)
+ Ralentissement(u%1:d%2)
-
-
-
-
&Paste
- &Coller
+ &Coller
-
Delay(u%1:d%2)
- Délai(u%1:d%2)
+ Délai(u%1:d%2)
-
Coarse
- Grossier
+ Grossier
-
-
-
-
Delete
- Supprimer
+ Supprimer
-
+
Curves
Courbes
-
+
Dialog
Dialogue
-
-
-
Invert
- Inversion
+ Inversion
-
Exponential
- Exponentiel
+ Exponentiel
-
Limits
- Débattements
+ Débattements
-
Medium
- Moyen
+ Moyen
-
-
-
Offset
- SubTrim
+ SubTrim
-
-
Count Down
- Décroissant
+ Décroissant
-
Pulse Shift (polarity)
- Modulation
+ Modulation
-
-
-
- Positive
-
-
-
-
-
Count Up
- Croissant
+ Croissant
-
Extra Fine
- Extra fin
+ Extra fin
-
Throttle Trim
- Trim des gaz
+ Trim des gaz
-
Throttle Expo
- Expo des gaz
+ Expo des gaz
-
Warn(%1)
- Alerte(%1)
+ Alerte(%1)
-
-
-
Protocol
- Codage
+ Codage
-
-
-
Channel
- Voie
+ Voie
-
-
-
-
&Delete
- &Supprimer
+ &Supprimer
-
Curve 1
- Courbe 1
+ Courbe 1
-
Curve 2
- Courbe 2
+ Courbe 2
-
Curve 3
- Courbe 3
+ Courbe 3
-
Curve 4
- Courbe 4
+ Courbe 4
-
Curve 5
- Courbe 5
+ Courbe 5
-
Curve 6
- Courbe 6
+ Courbe 6
-
Curve 7
- Courbe 7
+ Courbe 7
-
Curve 8
- Courbe 8
+ Courbe 8
-
Curve 9
- Courbe 9
+ Courbe 9
-
Delete Selected Mixes?
- Supprimer mixages sélectionnés ?
+ Supprimer mixages sélectionnés ?
-
-
-
Negative
- Négative
+ Négative
-
Model Name
- Nom du modèle
+ Nom du modèle
-
Center beep
- Bip de centrage
+ Bip de centrage
-
-
-
-
Function
- Fonction
+ Fonction
-
Curve 10
- Courbe 10
+ Courbe 10
-
Curve 11
- Courbe 11
+ Courbe 11
-
Curve 12
- Courbe 12
+ Courbe 12
-
Curve 13
- Courbe 13
+ Courbe 13
-
Curve 14
- Courbe 14
+ Courbe 14
-
Curve 15
- Courbe 15
+ Courbe 15
-
Curve 16
- Courbe 16
+ Courbe 16
-
-
-
+
Channels
Voies
-
-
V1
- V1
+ V1
-
-
V2
- V2
+ V2
-
Extended Limits
- Débattements étendus
+ Débattements étendus
-
Safety Switches
- Inters de sécurité
+ Inters de sécurité
-
-
-
-
-
-
-
-
-
-
-
-
-
Switch
- Interrupteur
+ Interrupteur
-
Value
- Valeur
+ Valeur
-
-
Du&plicate
- Du&pliquer
+ Du&pliquer
-
-
-
-
Move Up
- Monter
+ Monter
-
-
-
-
Ctrl+Up
- Ctrl+Haut
+ Ctrl+Haut
-
-
-
-
Move Down
- Descendre
+ Descendre
-
-
-
-
Ctrl+Down
- Ctrl+Bas
+ Ctrl+Bas
-
Swash Type
- Type de plateau cyclique
+ Type de plateau cyclique
-
-
Off
- Aucun
+ Aucun
-
- 120
-
-
-
-
- 120X
-
-
-
-
- 140
-
-
-
-
- 90
-
-
-
-
Collective
- Source du pas collectif
+ Source du pas collectif
-
-
-
-
-
-
-
-
-
GVAR1
- Variable globale VG1
+ Variable globale VG1
-
-
-
-
-
-
-
-
-
Rotary encoder A
- Encodeur rotatif A
+ Encodeur rotatif A
-
-
-
-
-
-
-
-
-
GVAR2
- Variable globale VG2
+ Variable globale VG2
-
-
-
-
-
-
-
-
-
Rotary encoder B
- Encodeur rotatif B
+ Encodeur rotatif B
-
-
-
-
-
-
-
-
-
GVAR3
- Variable globale VG3
+ Variable globale VG3
-
-
-
-
-
-
-
-
-
GVAR4
- Variable globale VG4
+ Variable globale VG4
-
-
-
-
-
-
-
-
-
GVAR5
- Variable globale VG5
+ Variable globale VG5
-
-
Sym
- Sym
+ Sym
-
-
Curve type
- Type de courbe
+ Type de courbe
-
3 points
- 3 points
+ 3 points
-
3 points custom
- 3 points personnalisée
+ 3 points personnalisée
-
5 points
- 5 points
+ 5 points
-
5 points custom
- 5 points personnalisée
+ 5 points personnalisée
-
9 points
- 9 points
+ 9 points
-
9 points custom
- 9 points personnalisée
+ 9 points personnalisée
-
17 points
- 17 points
+ 17 points
-
17 points custom
- 17 points personnalisée
+ 17 points personnalisée
-
-
Duration
- Durée
+ Durée
-
-
AND
- ET
+ ET
-
-
Delay
- Délai
+ Délai
-
-
FAS
- FAS
+ FAS
-
CEL
- ELEM
+ ELEM
-
Alti
- Alti
+ Alti
-
Alti+
- Alti+
+ Alti+
-
Vario
- Vario
+ Vario
-
CS6
CSw1
- IP6
+ IP6
-
Telemetry screen 1
- Ecran de télémesure 1
+ Ecran de télémesure 1
-
-
-
Custom Screen Type
- Type d'écran personnalisé
+ Type d'écran personnalisé
-
-
-
Nums
- Valeurs
+ Valeurs
-
-
-
Bars
- Barres
+ Barres
-
Telemetry screen 2
- Ecran de télémesure 2
+ Ecran de télémesure 2
-
Telemetry screen 3
- Ecran de télémesure 3
+ Ecran de télémesure 3
-
-
Max Value
- Valeur Max
+ Valeur Max
-
-
Min Value
- Valeur Min
+ Valeur Min
-
- RSSI
-
-
-
-
Alarm 1
- Alarme 1
+ Alarme 1
-
Serial Protocol
- Protocole Série
+ Protocole Série
-
Units
- Unités
+ Unités
-
None
- Aucun
+ Aucun
-
FrSky Sensor Hub
- Sensor Hub FrSky
+ Sensor Hub FrSky
-
Metric
- Métrique
+ Métrique
-
Imperial
- Impérial
+ Impérial
-
- 2
-
-
-
-
-
Enable
- Actif
+ Actif
-
Sticks
- Manches
+ Manches
-
CS9
- IP9
+ IP9
-
CSF
- IPF
+ IPF
-
CSD
- IPD
+ IPD
-
CS1
- IP1
+ IP1
-
CS8
- IP8
+ IP8
-
CS7
- IP7
+ IP7
-
CSA
- IPA
+ IPA
-
CSB
- IPB
+ IPB
-
CSC
- IPC
+ IPC
-
CS5
- IP5
+ IP5
-
CS3
- IP3
+ IP3
-
CS2
- IP2
+ IP2
-
CSE
- IPE
+ IPE
-
CSG
- IPG
+ IPG
-
CS4
- IP4
+ IP4
-
CST
- IPT
+ IPT
-
CSM
- IPM
+ IPM
-
CSP
- IPQ
+ IPQ
-
CSH
- IPH
+ IPH
-
CSO
- IPO
+ IPO
-
CSN
- IPN
+ IPN
-
CSQ
- IPR
+ IPR
-
CSR
- IPS
+ IPS
-
CSS
- IPS
+ IPS
-
CSL
- IPL
+ IPL
-
CSK
- IPK
+ IPK
-
CSJ
- IPJ
+ IPJ
-
CSI
- IPI
+ IPI
-
CSU
- IPU
+ IPU
-
CSV
- IPV
+ IPV
-
CSW
- IPW
+ IPW
-
Volt source
- Source de mesure de tension
+ Source de mesure de tension
-
Current source
- Source de mesure de courant
+ Source de mesure de courant
-
NONE
- Aucune
+ Aucune
-
- 3
-
-
-
-
- 4
-
-
-
-
Blades
- Pales
+ Pales
-
Altimetry / Vario
- Altimètre / Vario
+ Altimètre / Vario
-
Sink Max
- Chute max
+ Chute max
-
Climb Max
- Montée max
+ Montée max
-
Sink Min
- Chute min
+ Chute min
-
Climb Min
- Montée min
+ Montée min
-
Vario source
- Source vario
+ Source vario
-
Vario limits
- Limites vario
+ Limites vario
-
Use GPS as altitude source
- Utiliser le GPS comme source d'altitude
+ Utiliser le GPS comme source d'altitude
-
Display altitude in toolbar
- Affichage de l'altitude dans la barre de notifs
+ Affichage de l'altitude dans la barre de notifs
-
-
Volts (V)
- Tension (V)
+ Tension (V)
-
-
Amps (A)
- Courant (A)
+ Courant (A)
-
-
Speed (m/s or ft/s)
- Vitesse (m/s ou ft/s)
+ Vitesse (m/s ou ft/s)
-
-
Speed (km/h or miles/h)
- Vitesse (km/h ou miles/h)
+ Vitesse (km/h ou miles/h)
-
-
Meters (m or ft)
- Distance (m ou ft)
+ Distance (m ou ft)
-
-
Temp (°)
- Temp (°)
+ Temp (°)
-
-
Fuel (%)
- Carburant (%)
+ Carburant (%)
-
-
mAmps (mA)
- Courant (mA)
+ Courant (mA)
-
-
-
Source
- Source
+ Source
-
-
-
Gauge
- Jauge
+ Jauge
-
-
-
Gauge 1
- Jauge 1
+ Jauge 1
-
-
-
Gauge 2
- Jauge 2
+ Jauge 2
-
-
-
Gauge 3
- Jauge 3
+ Jauge 3
-
-
-
Gauge 4
- Jauge 4
+ Jauge 4
-
Templates
- Gabarits
+ Gabarits
-
Apply Template?
- Appliquer le gabarit ?
+ Appliquer le gabarit ?
-
Apply template "%1"?
- Appliquer le gabarit "%1" ?
+ Appliquer le gabarit "%1" ?
-
-
-
Clear Mixes?
- Effacer les mixages ?
+ Effacer les mixages ?
-
Really clear all the mixes?
- Êtes-vous sûr de vraiment vouloir effacer tous les mixages ?
+ Êtes-vous sûr de vraiment vouloir effacer tous les mixages ?
-
+
Clear Curves?
Effacer les courbes ?
-
+
Really clear all the curves?
Êtes-vous sûr de vraiment vouloir effacer toutes les courbes ?
-
Swash Ring
- Limite cyclique
+ Limite cyclique
-
-
Heli Setup
- Hélicoptère
+ Hélicoptère
-
- RS
-
-
-
-
- SB
-
-
-
-
ModelSetup
- Configuration du modèle
+ Configuration du modèle
-
Model Image
- Image du modèle
+ Image du modèle
-
- SD
-
-
-
-
- SA
-
-
-
-
- SC
-
-
-
-
- SG
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
Reverse Throttle Operation
- Inversion des gaz
+ Inversion des gaz
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Inversion des gaz.
+ Inversion des gaz.
Si cette option est cochée, la voie des gaz est inversée: le ralenti est 'manche en haut'. Le trim et l'alerte des gaz sont inversés également.
-
Master
- Maître
+ Maître
-
Slave
- Elève
+ Elève
-
Trainer Mode
- Mode écolage
+ Mode écolage
-
Master/Trainer Port
- Prise écolage
+ Prise écolage
-
-
-
Start
- 1er canal
+ 1er canal
-
-
Polarity
- Polarité
+ Polarité
-
RF Module 1
- Module HF interne
+ Module HF interne
-
RF Module 2
- Module HF externe
+ Module HF externe
-
-
- (00:00:00)
-
-
-
-
Failsafe
- Failsafe
+ Failsafe
-
External module
- Module HF externe
+ Module HF externe
-
-
Failsafe Mode
- Mode Failsafe
+ Mode Failsafe
-
-
Hold
- Maintien
+ Maintien
-
-
Custom
- Prédéfini
+ Prédéfini
-
-
No Pulses
- Pas d'impulsions
+ Pas d'impulsions
-
Internal Module
- Module HF interne
+ Module HF interne
-
Invert Elevator
- Profondeur
+ Profondeur
-
Invert Aileron
- Aileron
+ Aileron
-
Invert Collective
- Pas collectif
+ Pas collectif
-
+
Flight Modes
Phases de vol
-
Flight Mode 0 (Default)
- Phase de vol 0 (par défaut)
+ Phase de vol 0 (par défaut)
-
-
-
-
-
-
-
-
-
Flight Mode Name
- Nom de la phase
+ Nom de la phase
-
GVAR6
- Variable globale VG6
+ Variable globale VG6
-
GVAR7
- Variable globale VG7
+ Variable globale VG7
-
FM 1
- PV 1
+ PV 1
-
FM 2
- PV 2
+ PV 2
-
FM 3
- PV 3
+ PV 3
-
FM 4
- PV 4
+ PV 4
-
FM 5
- PV 5
+ PV 5
-
FM 6
- PV 6
+ PV 6
-
FM 7
- PV 7
+ PV 7
-
FM 8
- PV 8
+ PV 8
-
Show channels names in mixes
- Montrer les noms des canaux dans les mixages
+ Montrer les noms des canaux dans les mixages
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
---
- ---
+ ---
-
-
Center
- Centre
+ Centre
-
Curve name
- Nom de la courbe
+ Nom de la courbe
-
Curve Creator
- Créateur de courbes
+ Créateur de courbes
-
Both
- Les 2
+ Les 2
-
- x>0
-
-
-
-
- x<0
-
-
-
-
Linear
- Linéaire
+ Linéaire
-
Single Expo
- Expo simple
+ Expo simple
-
Symmetrical f(x)=-f(-x)
Simmetrycal f(x)=-f(-x)
- Symétrique f(x)=-f(-x)
+ Symétrique f(x)=-f(-x)
-
Symmetrical f(x)=f(-x)
Simmetrycal f(x)=f(-x)
- Symétrique f(x)=f(-x)
+ Symétrique f(x)=f(-x)
-
Apply
- Appliquer
+ Appliquer
-
Side
- Direction
+ Direction
-
Y at X=-100
- Y pour X=-100
+ Y pour X=-100
-
Y at X=0
- Y pour X=0
+ Y pour X=0
-
Y at X=100
- Y pour X=100
+ Y pour X=100
-
- Coefficient
-
-
-
-
Clear All Curves
- Effacer toutes les courbes
+ Effacer toutes les courbes
-
Timer1
- Chrono 1
+ Chrono 1
-
Timer2
- Chrono2
+ Chrono2
-
-
-
PPM delay
- Délai PPM
+ Délai PPM
-
Extended Trims
- Trims étendus
+ Trims étendus
-
- Throttle2Trig
-
-
-
-
-
-
PPM Frame Length
- Longueur de trame PPM
+ Longueur de trame PPM
-
-
-
mSec
- ms
+ ms
-
-
-
-
-
-
-
-
-
Fade In
- Fondu en entrée
+ Fondu en entrée
-
-
-
-
-
-
-
-
-
Fade Out
- Fondu en sortie
+ Fondu en sortie
-
-
-
-
-
-
-
-
-
- trim2
-
-
-
-
-
-
-
-
-
-
-
-
- trim1
-
-
-
-
-
DSM Type
- Type DSM
+ Type DSM
-
-
- LP4/LP5
-
-
-
-
-
DSM2only
- DSM2seul
+ DSM2seul
-
-
- DSM2/DSMX
-
-
-
-
-
RX Number
- Numéro de récepteur
+ Numéro de récepteur
-
Disable Throttle Warning
- Désactiver alerte gaz
+ Désactiver alerte gaz
-
Switch startup Warning
- Alerte interrupteurs
+ Alerte interrupteurs
-
Instant Trim
- Trims instantanés
+ Trims instantanés
-
Throttle Source
Throttle Trace
- Source de Gaz
+ Source de Gaz
-
-
Persistent
- Persistant
+ Persistant
-
-
MinuteBeep
- Bip chaque minute
+ Bip chaque minute
-
-
CountDownBeep
- Compte à rebours final
+ Compte à rebours final
-
-
CH01
- VOIE01
+ VOIE01
-
-
CH02
- VOIE02
+ VOIE02
-
-
CH03
- VOIE03
+ VOIE03
-
-
CH04
- VOIE04
+ VOIE04
-
-
CH05
- VOIE05
+ VOIE05
-
-
CH06
- VOIE06
+ VOIE06
-
-
CH07
- VOIE07
+ VOIE07
-
-
CH08
- VOIE08
+ VOIE08
-
-
CH09
- VOIE09
+ VOIE09
-
-
CH10
- VOIE10
+ VOIE10
-
-
CH11
- VOIE11
+ VOIE11
-
-
CH12
- VOIE12
+ VOIE12
-
-
CH13
- VOIE13
+ VOIE13
-
-
CH14
- VOIE14
+ VOIE14
-
-
CH15
- VOIE15
+ VOIE15
-
-
CH16
- VOIE16
+ VOIE16
-
- REa
-
-
-
-
- REb
-
-
-
-
- 3POS
-
-
-
-
-
Check
- Vérif.
+ Vérif.
-
-
-
- ON
-
-
-
-
-
- OFF
-
-
-
-
- GEA
-
-
-
-
- ID0
-
-
-
-
- ID1
-
-
-
-
- ID2
-
-
-
-
-
TriggerB
- 2e condition
+ 2e condition
-
Model Voice
- Fichier son
-
-
-
-
-
-
-
-
-
-
-
- trim4
-
-
-
-
-
-
-
-
-
-
-
-
- trim3
-
+ Fichier son
Expos/DR
@@ -4778,34 +5114,26 @@ Si cette option est cochée, la voie des gaz est inversée: le ralenti est &apo
Expos / Doubles débattements
-
Custom switches
- Inters personnalisés
+ Inters personnalisés
-
Custom Functions
Function switches
- Fonctions personnalisées
+ Fonctions personnalisées
-
-
Param
- Paramètre
+ Paramètre
-
+
Telemetry
Télémesure
-
-
-
-
A1
- A1
+ A1
Sunk Max
@@ -4824,609 +5152,558 @@ Si cette option est cochée, la voie des gaz est inversée: le ralenti est &apo
Montée min
-
-
Unit
- Unité
+ Unité
-
-
Raw (-)
- Chiffres bruts (-)
+ Chiffres bruts (-)
-
-
Alarm 1
- Alarme 1
+ Alarme 1
-
-
-
-
-
-
----
- ----
+ ----
-
-
-
-
-
-
Yellow
- Jaune
+ Jaune
-
-
-
-
-
-
Orange
- Orange
+ Orange
-
-
-
-
-
-
Red
- Rouge
+ Rouge
-
-
-
-
<
- <
+ <
-
-
-
-
>
- >
+ >
-
-
-
Alarm 2
- Alarme 2
+ Alarme 2
-
-
-
-
A2
- A2
+ A2
-
Editing curve %1
- Édition de la courbe %1
+ Édition de la courbe %1
-
Delete Selected Expos?
- Supprimer les expos sélectionnés ?
+ Supprimer les expos sélectionnés ?
-
Clear Expos?
- Effacer les expos ?
+ Effacer les expos ?
-
Really clear all the expos?
- Êtes-vous sûr de vraiment vouloir effacer toutes les données d'expos ?
+ Êtes-vous sûr de vraiment vouloir effacer toutes les données d'expos ?
-
Weight
Weight(+%1%)
- Ratio
+ Ratio
-
Clear Expo Settings
- Effacer les données d'expos
+ Effacer les données d'expos
-
Clear Mixes
- Effacer les mixages
+ Effacer les mixages
-
-
Expo
- Expo
+ Expo
-
-
Curve
- Courbe
+ Courbe
-
-
-
CH%1%2
- VOIE%1%2
+ VOIE%1%2
-
No Trim
- Pas de Trim
+ Pas de Trim
-
No DR/Expo
- Pas d'expo/DR
+ Pas d'expo/DR
-
FMTrim
- Trims des phases de vol
+ Trims des phases de vol
-
Diff
- Diff
+ Diff
-
CF%1
- FS%1
+ FS%1
-
Error
- Erreur
+ Erreur
-
Unable to find sound file %1!
- Impossible de trouver le fichier %1!
+ Impossible de trouver le fichier %1!
-
- Winged Shadow How High
-
-
-
-
Winged Shadow How High (not supported)
- Winged Shadow How High (non supporté)
+ Winged Shadow How High (non supporté)
-
-
Range
- Plage
+ Plage
-
Simple 4-CH
- 4 Canaux simple
+ 4 Canaux simple
-
T-Cut
- Coupure de gaz
+ Coupure de gaz
-
Sticky T-Cut
- Coupure de gaz avec maintien (nécessite la remise à 0 du manche pour déverrouiller)
+ Coupure de gaz avec maintien (nécessite la remise à 0 du manche pour déverrouiller)
-
V-Tail
- Stabilisateur en V
+ Stabilisateur en V
-
Elevon\Delta
- Elevon, aile delta
+ Elevon, aile delta
-
Heli Setup with gyro gain control
- Hélicoptère avec contrôle du gain du gyro
+ Hélicoptère avec contrôle du gain du gyro
-
Gyro gain control
- Contrôle du gain du gyro pour hélicoptères
+ Contrôle du gain du gyro pour hélicoptères
-
Heli Setup (Futaba's channel assignment style)
- Hélicoptère (assignation des canaux style Futaba)
+ Hélicoptère (assignation des canaux style Futaba)
-
Heli Setup with gyro gain control (Futaba's channel assignment style)
- Hélicoptère avec contrôle du gain du gyro (assignation des canaux style Futaba)
+ Hélicoptère avec contrôle du gain du gyro (assignation des canaux style Futaba)
-
Gyro gain control (Futaba's channel assignment style)
- Contrôle du gain du gyro pour hélicoptères (assignation des canaux style Futaba)
+ Contrôle du gain du gyro pour hélicoptères (assignation des canaux style Futaba)
-
Servo Test
- Test de servos (CH15)
+ Test de servos (CH15)
-
MultiCopter
- Multicoptère
+ Multicoptère
-
Use Model Config Wizard
- Utiliser l'assistant de configuration de modèle (BETA - POUR COMMENTAIRES!)
+ Utiliser l'assistant de configuration de modèle (BETA - POUR COMMENTAIRES!)
-
Not enough available mixers!
- Plus de mixages disponibles !
+ Plus de mixages disponibles !
-
Not enough available expos!
- Plus d'expos disponibles !
+ Plus d'expos disponibles !
-
-
Ctrl+A
- Ctrl+A
+ Ctrl+A
-
-
-
-
Ctrl+C
- Ctrl+C
+ Ctrl+C
-
-
-
-
Ctrl+X
- Ctrl+X
+ Ctrl+X
-
-
-
-
Ctrl+V
- Ctrl+V
+ Ctrl+V
-
-
Ctrl+U
- Ctlf+U
+ Ctlf+U
-
Are you sure you want to delete curve %1 ?
- Etes-vous sûr de vouloir effacer la courbe %1?
+ Etes-vous sûr de vouloir effacer la courbe %1?
-
-
-
-
AIL2
- AIL2
+ AIL2
-
-
-
-
-
-
FLAPS
- VOLETS
+ VOLETS
-
-
-
-
-
-
FLAP%1
- VOLET%1
+ VOLET%1
-
-
-
-
PITCH
- PAS
+ PAS
-
-
-
-
-
-
-
-
GYRO
- GYRO
+ GYRO
-
-
-
-
ELE2
- PROF2
+ PROF2
-
- S1
-
-
-
-
- S2
-
-
-
-
- LS
-
-
-
-
Rud
- Dir
+ Dir
-
Ele
- Prf
+ Prf
-
Thr
- Gaz
+ Gaz
-
Ail
- Ail
+ Ail
-
-
Flight modes
- Phases de vol
+ Phases de vol
-
-
Flight mode
- Phase de vol
+ Phase de vol
-
-
DISABLED
- DESACTIVE
+ DESACTIVE
-
-
-
- X%1
-
-
-
-
-
-
-
CH %1
- VOIE %1
+ VOIE %1
CFN%1
FP%1
-
-
SPOIL
- SPOIL
+ SPOIL
-
-
SPOIL%1
- SPOIL%1
+ SPOIL%1
-
-
RUD2
- DIR2
+ DIR2
-
Really clear existing mixes on CH6?
- Voulez-vous vraiment effacer tous les mixages du canal 6?
+ Voulez-vous vraiment effacer tous les mixages du canal 6?
-
Really clear existing mixes on CH5?
- Voulez-vous vraiment effacer tous les mixages du canal 5?
+ Voulez-vous vraiment effacer tous les mixages du canal 5?
-
Not enough free points in eeprom to store the curve.
Not enought points free in eeprom to store the curve.
- Pas assez de points libres dans l'eeprom pour enregistrer la courbe.
+ Pas assez de points libres dans l'eeprom pour enregistrer la courbe.
ModelsListWidget
-
+
&Edit
Éditio&n
-
+
&Restore from backup
&Restaurer à partir d'une sauvegarde
-
+
&Model Wizard
&Assistant de configuration
-
+
&Delete
&Supprimer
-
+
Delete
Supprimer
-
+
&Copy
&Copier
-
+
Ctrl+C
Ctrl+C
-
+
&Cut
C&ouper
-
+
Ctrl+X
Ctrl+X
-
+
&Paste
Co&ller
-
+
Ctrl+V
Ctrl+V
-
+
D&uplicate
D&upliquer
-
+
Ctrl+U
Ctrl+U
-
+
&Use as default
&Choisir comme modèle par défaut
-
+
P&rint model
Im&primer les données du modèle
-
+
Alt+S
Alt+S
-
+
&Simulate model
&Simuler le modèle sélectionné
-
+
General Settings
Paramètres généraux
-
+
Delete Selected Models?
Supprimer les modèles sélectionnés ?
-
-
+
+
Cannot delete default model.
Le modèle actif ne peut être supprimé.
-
+
Cannot cut default model.
Le modèle actif ne peut être coupé.
-
+
Do you want to overwrite TX general settings?
Voulez vous écraser les paramètres généraux de l'émetteur ?
-
+
You are pasting on an not empty model, are you sure?
You are pasting on an not empty model, are you sure ?
Vous allez écraser un modèle, êtes vous sûr ?
-
+
No free slot available, cannot duplicate
Pas d'emplacement libre, impossible de dupliquer
-
+
Alt+R
Alt+R
+
+ Module
+
+
+ Form
+
+
+
+
+ Failsafe Mode
+ Mode Failsafe
+
+
+
+ Start
+ 1er canal
+
+
+
+ PPM delay
+ Délai PPM
+
+
+
+ usec
+
+
+
+
+ Negative
+ Négative
+
+
+
+ Positive
+
+
+
+
+ RX Number
+ Numéro de récepteur
+
+
+
+ Master
+ Maître
+
+
+
+ Slave
+ Elève
+
+
+
+ Polarity
+ Polarité
+
+
+
+ Trainer Mode
+ Mode écolage
+
+
+
+ mSec
+ ms
+
+
+
+ PPM Frame Length
+ Longueur de trame PPM
+
+
+
+ Label
+
+
+
+
+
+ ch
+
+
+
+
+ Channels
+ Voies
+
+
+
+ Hold
+ Maintien
+
+
+
+ Custom
+ Prédéfini
+
+
+
+ No Pulses
+ Pas d'impulsions
+
+
+
+ Failsafe Positions
+
+
+
+
+ Protocol
+ Codage
+
+
+
+ ModulePanel
+
+
+ Trainer Output
+
+
+
+
+ Internal Radio System
+
+
+
+
+ External Radio Module
+
+
+
QObject
@@ -5437,1954 +5714,1991 @@ Si cette option est cochée, la voie des gaz est inversée: le ralenti est &apo
PV%1
-
+
+ Input%1
+
+
+
+
+ Polish
+
+
+
+
+ CH%1
+ VOIE%1
+
+
+
No
Non
-
+
RotEnc A
Enc Rot A
-
+
Rot Enc B
Enc Rot B
-
+
Rot Enc C
Enc Rot C
-
+
Rot Enc D
Enc Rot D
-
+
Rot Enc E
Enc Rot E
-
+
Safety %1
Sécurité %1
-
+
Trainer
Ecolage
-
+
Trainer RUD
Ecolage Direction
-
+
Trainer ELE
Ecolage Profondeur
-
+
Trainer THR
Ecolage Gaz
-
+
Trainer AIL
Ecolage Ailerons
-
+
Instant Trim
Trims instantanés
-
+
Play Sound
Jouer Son
-
+
Start Logs
Démarrer les Logs
-
+
Play Haptic
Vibreur
-
+
Reset
Remise à zéro
-
+
Vario
-
+
Volume
Volume
-
+
Play Value
Lire valeur
-
+
Backlight
Rétroéclairage
-
+
Play Track
Jouer fichier
-
-
+
+
---
---
-
+
Rud Trim
Trim Dir
-
+
Ele Trim
Trim Prf
-
+
Thr Trim
Trim Gaz
-
+
Ail Trim
Trim Ail
-
+
Rot Enc
Enc. rot.
-
+
English
Anglais
-
+
French
Français
-
+
Italian
Italien
-
+
German
Allemand
-
+
Czech
Tchèque
-
+
Slovak
Slovaque
-
+
Spanish
Espagnol
-
+
Portuguese
Portugais
-
+
Swedish
Suédois
-
CH
- VOIE
+ VOIE
-
-
+
+
No repeat
Pas de rép.
-
+
%1 sec
%1 sec
-
+
Play Both
Jouer les 2
-
+
Background Music
Musique de fond
-
+
Background Music Pause
Pause musique de fond
-
Adjust GV1
- Ajuster VG1
+ Ajuster VG1
-
Adjust GV2
- Ajuster VG2
+ Ajuster VG2
-
Adjust GV3
- Ajuster VG3
+ Ajuster VG3
-
Adjust GV4
- Ajuster VG4
+ Ajuster VG4
-
Adjust GV5
- Ajuster VG5
+ Ajuster VG5
-
+
Delay %1 sec
Délai %1 sec
-
+
Duration %1 sec
Durée %1 sec
-
-
+
+
<font color=red><b>Inconsistent parameter</b></font>
<font color=red><b>Paramètre inconsistant</b></font>
-
-
+
+
All
Tous
-
-
+
+
Telemetry
Télémesure
-
+
Value
Valeur
-
+
Decr:
Décr:
-
+
Incr:
Incr:
-
+
+ Played once, not during startup
+
+
+
+
%1s
%1s
-
+
Value
Valeur
-
+
Source
Source
-
+
GVAR
VG
-
+
Increment
Incrément
-
+
!Flight mode %1
!Phase de vol %1
-
+
Flight mode %1
Phase de vol %1
-
Diff
- Diff
+ Diff
-
Expo
- Expo
+ Expo
-
+
Own trim
Trim indépendant
-
+
Flight mode %1 trim
Flight phase %1 trim
Trim de la phase de vol %1
-
+
Own value
Valeur indépendante
-
+
Flight mode %1 value
Flight phase %1 value
Valeur de la phase de vol %1
-
+
Keys
Touches
-
+
Sticks
Manches
-
+
Keys + Sticks
Touches + manches
-
+
+
-GV%1
-VG%1
-
(-GV%1)
- (-VG%1)
+ (-VG%1)
-
+
+ Adjust GV%1
+
+
+
+
+ Rotary Encoder
+
+
+
+
Yellow
Jaune
-
+
Orange
Orange
-
+
Red
Rouge
-
+
Winged Shadow How High
Winged Shadow How High
-
+
Winged Shadow How High (not supported)
Winged Shadow How High (non supporté)
-
+
FrSky Sensor Hub
Sensor Hub FrSky
-
+
+
None
Aucun
-
+
Imperial
Impérial
-
+
Metric
Métrique
-
+
Extra Fine
Extra fin
-
+
Fine
Fin
-
+
Medium
Moyen
-
+
Coarse
Grossier
-
+
Exponential
Exponentiel
-
+
Count Up
Croissant
-
+
Count Down
Décroissant
-
+
%1:%2,
%1:%2,
-
+
: %1 Channels, %2usec Delay
: %1 voies, délai de %2us
-
+
+ Flight modes(%1)
+
+
+
+
+ Flight mode(%1)
+
+
+
+
Rudder
Direction
-
+
Elevator
Profondeur
-
+
Throttle
Gaz
-
+
Aileron
Ailerons
-
-
+
+
+
GV%1
VG%1
-
-
-
-
+
+
+
+
----
----
-
-
- RUD
-
-
-
-
-
- ELE
-
-
-
-
-
-
-
+
+
THR
-
- SA
-
-
-
-
- SB
-
-
-
-
- SC
-
-
-
-
- SD
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- SG
-
-
-
-
- SH
-
-
-
-
+
Batt
-
+
SWR
SWR
-
+
RSSI
RSSI
-
+
Pwr+
Puis+
-
- ID0
-
-
-
-
- ID1
-
-
-
-
- ID2
-
-
-
-
-
- AIL
-
-
-
-
-
-
+
+
+
P1
P1
-
-
-
+
+
+
P2
P2
-
-
-
+
+
+
P3
P3
-
+
+
+ LS1
+
+
+
+
+
+ LS2
+
+
+
+
+
+ LS3
+
+
+
+
+
+ LS4
+
+
+
+
+
+ LS5
+
+
+
+
+
+ LS6
+
+
+
+
+
+ LS7
+
+
+
+
+
+ LS8
+
+
+
+
+
+ LS9
+
+
+
+
+
+ LSA
+
+
+
+
+
+ LSB
+
+
+
+
+
+ LSC
+
+
+
+
+
+ LSD
+
+
+
+
+
+ LSE
+
+
+
+
+
+ LSF
+
+
+
+
+
+ LSG
+
+
+
+
+
+ LSH
+
+
+
+
+
+ LSI
+
+
+
+
+
+ LSJ
+
+
+
+
+
+ LSK
+
+
+
+
+
+ LSL
+
+
+
+
+
+ LSM
+
+
+
+
+
+ LSN
+
+
+
+
+
+ LSO
+
+
+
+
+
+ LSP
+
+
+
+
+
+ LSQ
+
+
+
+
+
+ LSR
+
+
+
+
+
+ LSS
+
+
+
+
+
+ LST
+
+
+
+
+
+ LSU
+
+
+
+
+
+ LSV
+
+
+
+
+
+ LSW
+
+
+
+
+ Input %1
+
+
+
+
MAX
MAX
-
-
+
+ S11
+
+
+
+
+ S12
+
+
+
+
+ S13
+
+
+
+
+ S14
+
+
+
+
+ S15
+
+
+
+
+ S16
+
+
+
+
+ S21
+
+
+
+
+ S22
+
+
+
+
+ S23
+
+
+
+
+ S24
+
+
+
+
+ S25
+
+
+
+
+ S26
+
+
+
+
+ Diff(%1)
+
+
+
+
+ Expo(%1)
+
+
+
+
+ Function(%1)
+
+
+
+
+ Curve(%1)
+
+
+
+
+ !Curve(%1)
+
+
+
+
+
Rud
Dir
-
-
+
+
Ele
Prf
-
-
+
+
Thr
Gaz
-
-
+
+
Ail
Ail
-
+
TrmR
TrmD
-
+
TrmE
TrmP
-
+
TrmT
TrmG
-
+
TrmA
TrmA
-
-
+
+
S1
-
-
+
+
S2
-
-
+
+
LS
-
-
+
+
RS
-
+
+
REa
-
+
+
REb
-
+
Alt
-
+
Rpm
-
+
Fuel
Carb
-
+
Tx
-
+
Rx
Rx
-
+
Speed
Vitesse
-
+
Dist
-
+
GPS Alt
Alt GPS
-
+
Cell
Elem
-
+
Cels
Velm
-
+
Vfas
Vfas
-
+
Curr
Cour
-
+
Cnsp
Cnsm
-
+
Powr
Puis
-
+
AccX
-
+
AccY
-
+
AccZ
-
+
HDG
Cap
-
+
VSpd
VitV
-
+
A1-
-
+
A2-
-
+
Alt-
-
+
Alt+
-
+
Rpm+
-
+
T1+
-
+
T2+
-
+
Spd+
Vit+
-
+
Dst+
-
+
Cur+
-
+
ACC
-
+
Time
Temps
-
-
CS1
- IP1
+ IP1
-
-
CS2
- IP2
+ IP2
-
-
CS3
- IP3
+ IP3
-
-
CS4
- IP4
+ IP4
-
-
CS5
- IP5
+ IP5
-
-
CS6
- IP6
+ IP6
-
-
CS7
- IP7
+ IP7
-
-
CS8
- IP8
+ IP8
-
-
CS9
- IP9
+ IP9
-
-
CSA
- IPA
+ IPA
-
-
CSB
- IPB
+ IPB
-
-
CSC
- IPC
+ IPC
-
-
CSD
- IPD
+ IPD
-
-
CSE
- IPE
+ IPE
-
-
CSF
- IPF
+ IPF
-
-
CSG
- IPG
+ IPG
-
-
CSH
- IPH
+ IPH
-
-
CSI
- IPI
+ IPI
-
-
CSJ
- IPJ
+ IPJ
-
-
CSK
- IPK
+ IPK
-
-
CSL
- IPL
+ IPL
-
-
CSM
- IPM
+ IPM
-
-
CSN
- IPN
+ IPN
-
-
CSO
- IPO
+ IPO
-
-
CSP
- IPQ
+ IPQ
-
-
CSQ
- IPR
+ IPR
-
-
CSR
- IPS
+ IPS
-
-
CSS
- IPS
+ IPS
-
-
CST
- IPT
+ IPT
-
-
CSU
- IPU
+ IPU
-
-
CSV
- IPV
+ IPV
-
-
CSW
- IPW
+ IPW
-
+
ONE
UNE
-
+
!ONE
!UNE
-
+
TRNs
-
+
TRNl
-
+
REAs
-
+
REAl
-
- 3POS
-
-
-
-
+
CYC%1
-
+
PPM%1
-
+
CH%1%2
VOIE%1%2
-
+
X%1
-
-
- GEA
-
-
-
-
-
- TRN
-
-
-
-
-
+
+
ON
-
-
+
+
OFF
-
-
+
+
Support for frsky telemetry mod
Support de la télémétrie FrSky
-
-
+
+
Support for jeti telemetry mod
Support de la télémétrie JETI
-
-
+
+
Support for receiving ardupilot data
Support de la télémétrie ARDUPILOT
-
-
+
+
Support for receiving NMEA data
Support de la télémétrie NMEA
-
+
Support for telemetry easy board
Support de la carte TelemetrEZ
-
-
+
+
Support for MAVLINK devices
Support du protocole MAVLINK
-
+
Rotary Encoder use in menus navigation
Utiliser un encodeur rotatif pour la navigation
-
+
Possibility to enable FAI MODE at field
Possibilité d'activer le mode FAI sur le terrain
-
+
FAI MODE always enabled
Mode FAI toujours actif
-
+
openTx for 9X board
openTx pour carte d'origine 9X
-
-
-
-
-
+
+
+
+
+
Enable heli menu and cyclic mix support
Activer le menu hélico et les mixages CCPM
-
-
-
-
-
-
+
+
+
+
+
+
Enable TEMPLATES menu
Inclure les gabarits
-
-
-
-
+
+
+
+
No splash screen
Pas d'écran de démarrage
-
-
-
-
-
-
+
+
+
+
+
+
Disable curves menus
Désactiver le menu des courbes
-
-
-
-
+
+
+
+
Support for radio modified with regular speaker
Haut-parleur au lieu du buzzer d'origine
-
-
-
-
-
+
+
+
+
+
Used if you have modified your radio with voice mode
Support du module vocal
-
-
-
-
+
+
+
+
Used if you have modified your radio with haptic mode
Support du vibreur
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set source by moving some of them
Sélectionner les sources des mixeurs en bougeant le contrôle désiré
-
-
-
-
-
-
+
+
+
+
+
+
Battery graph
Graphique de batterie
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Use alternative SQT5 font
Utiliser la police alternative SQT5
-
-
-
-
+
+
+
+
Enable the throttle trace in Statistics
Activer l'historique du manche des gaz dans les statistiques
-
+
EEprom write progress bar
Barre de progression pour l'écriture de l'EEPROM
-
-
+
+
No Winged Shadow How High support
Supprimer le support du variomètre Winged Shadow How High
-
-
+
+
No vario support
Supprimer la fonction variomètre audio
-
-
+
+
No GPS support
Supprimer le support du GPS
-
-
+
+
No gauges in the custom telemetry screen
Supptimer l'affichage des valeurs de télémesure par barres
-
+
+ Allow compensating for offset errors in FrSky FAS current sensors
+
+
+
+
openTx for M128 / 9X board
openTx pour carte d'origine 9X avec M128
-
+
openTx for 9XR
openTx pour 9XR
-
+
openTx for 9XR with M128 chip
openTx pour 9XR avec M128
-
+
openTx for Gruvin9x board / 9X
openTx pour carte Gruvin9x
-
+
Support of FrSky PXX protocol
Support du protocole PXX FrSky
-
+
Use FrSky Taranis sticks in a 9X/9XR
Use FrSky's taranis like sticks
Manches de FrSky Taranis installés dans une 9X/9XR
-
-
+
+
Disable HELI menu and cyclic mix support
Supprimer le menu HELICO et les mixages cycliques
-
-
+
+
Disable TEMPLATES menu
Supprimer le menu des gabarits
-
-
+
+
Disable Global variables
Supprimer le support des variables globales
-
+
openTx for FrSky Taranis Rev4a
openTx pour FrSky Taranis REV4a
-
-
-
-
-
+
+
+
+
+
Support for DSM2 modules
Support du protocole DSM2
-
-
-
-
-
-
+
+
+
+
+
+
PPM center adjustment in limits
Centres PPM ajustables
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
PPM values displayed in us
Positions de canaux affichées en us
-
-
-
-
-
-
+
+
+
+
+
+
Symetrical Limits
Limites symétriques
-
-
-
-
-
+
+
+
+
+
Pots use in menus navigation
Support de la navigation dans les menus avec les POTS
-
+
Your radio probably uses a wrong firmware,
eeprom size is 4096 but only the first 2048 are used
Il semblerait que votre radio utilise le mauvais firmware. La taille de l'EEPROM est de 4096, mais seulement les 2048 premiers sont utilisés. Pensez à charger la version pour m128.
-
-
-
-
-
-
+
+
+
+
+
+
No flight modes
Pas de phases de vol
-
-
+
+
SmartieParts 2.2 Backlight support
Support du rétroéclairage pour la carte SmartieParts 2.2
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set switch by moving some of them
Sélection automatique des Switches dans les menus
-
-
-
-
+
+
+
+
Enable resetting values by pressing up and down at the same time
Permet la remise à zéro des valeurs en pressant haut-bas en même temps, valeur min avec gauche/bas, valeur max avec haut/droite
-
-
-
-
-
-
+
+
+
+
+
+
No graphical check boxes and sliders
Pas de cases à cocher et de curseurs graphiques
-
-
-
-
-
-
+
+
+
+
+
+
Don't use bold font for highlighting active items
Ne pas mettre les lignes actives en gras
-
-
-
-
+
+
+
+
EEprom write Progress bar
Barre de progression affichée lors des écritures EEPROM
-
-
-
-
-
+
+
+
+
+
Imperial units
Unités Impériales
-
+
openTx for Sky9x board / 9X
openTx pour 9x avec carte Sky9x
-
+
Bluetooth interface
Interface Bluetooth
-
+
openTx for FrSky Taranis
open9x for x9da board
openTx pour FrSky Taranis
-
-
-
-
-
-
+
+
+
+
+
+
Global variables
Variables globales
-
+
Support for SD memory card
Support de la carte SD
-
+
Support for DSM2 modules using ppm instead of true serial
Support pour les modules DSM2 par le signal PPM
-
+
Enable HELI menu and cyclic mix support
Activer le menu hélico et les mixages CCPM
-
+
ersky9x
-
-
-
+
+
+
Timer1
Chrono1
-
-
-
+
+
+
Timer2
Chrono 2
-
+
A1
A1
-
+
A2
A2
-
+
T1
-
+
T2
-
Curve
Courbe
- Courbe
+ Courbe
-
-
-
-
Flight modes settings on expos not exported
Phases settings on expos not exported
- Les réglages de phase des expos ne sont pas exportés
+ Les réglages de phase des expos ne sont pas exportés
-
-
-
-
-
-
-
-
Open9x on this board doesn't have Rotary Encoders
- Open9x ne supporte pas d'encodeurs rotatifs sur cette carte
+ Open9x ne supporte pas d'encodeurs rotatifs sur cette carte
-
gruvin9x doesn't have trims as source
- Les trims ne sont pas disponibles comme source dans gruvin9x
+ Les trims ne sont pas disponibles comme source dans gruvin9x
-
gruvin9x doesn't have swappable trims
- Les trims ne peuvent pas être changés dans gruvin9x
+ Les trims ne peuvent pas être changés dans gruvin9x
-
gruvin9x on this board doesn't have Rotary Encoders
- gruvin9x ne supporte pas d'encodeurs rotatifs sur cette carte
+ gruvin9x ne supporte pas d'encodeurs rotatifs sur cette carte
-
gruvin9x does not support Custom Switch function %1
- gruvin9x ne supporte pas la fonction %1 dans les inters personnalisés
+ gruvin9x ne supporte pas la fonction %1 dans les inters personnalisés
-
gruvin9x only accepts %1 expos
- gruvin9x accepte jusqu'à %1 expos uniquement
+ gruvin9x accepte jusqu'à %1 expos uniquement
-
-
gruvin9x doesn't support custom curves as curve%1, curve as been exported as fixed point
- gruvin9x ne supporte pas les courbes personnalisées, la courbe %1 a été exportée avec des points à abscisse fixe.
+ gruvin9x ne supporte pas les courbes personnalisées, la courbe %1 a été exportée avec des points à abscisse fixe.
-
-
gruvin9x doesn't support curve with %1 point as curve%2
- gruvin9x ne supporte pas les courbes à %1 points (courbe%2)
+ gruvin9x ne supporte pas les courbes à %1 points (courbe%2)
-
-
-
Open9x doesn't allow Curve%1 in expos
- Open9x d'accepte pas la Courbe%1 dans les DR/Expos
+ Open9x d'accepte pas la Courbe%1 dans les DR/Expos
-
-
+
+
Simultaneous usage of expo and curves is no longer supported
L'utilisation simultanée de l'expo et d'une courbe n'est plus possible
-
-
-
-
-
-
-
Flight modes settings on mixers not exported
- La sélection des phases de vol dans les mixeurs ne sera pas exportée.
+ La sélection des phases de vol dans les mixeurs ne sera pas exportée.
-
-
Flight mode settings on mixers not exported
Phases settings on mixers not exported
- La sélection des phases de vol dans les mixeurs ne sera pas exportée.
+ La sélection des phases de vol dans les mixeurs ne sera pas exportée.
-
-
-
-
This version of open9x does not support Custom Switch function %1
- Cette version d'open9x ne supporte pas la fonction %1 dans les inters personnalisés
+ Cette version d'open9x ne supporte pas la fonction %1 dans les inters personnalisés
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Open9x doesn't accept this protocol
- Open9x n'accepte pas ce protocole
+ Open9x n'accepte pas ce protocole
-
-
-
-
-
-
open9x only accepts %1 points in all curves
- open9x n'accepte que %1 points entre toutes les courbes
+ open9x n'accepte que %1 points entre toutes les courbes
-
+
Simultaneous usage of expo and curves is no longer supported in open9x
L'utilisation simultanée de l'expo et d'une courbe n'est plus possible dans open9x
-
-
open9x on this board doesn't have Rotary Encoders
- Open9x ne supporte pas d'encodeurs rotatifs sur cette carte
+ Open9x ne supporte pas d'encodeurs rotatifs sur cette carte
-
-
-
-
-
-
-
-
-
-
-
-
-
open9x only accepts %1 expos
Gruvin9x firmware only accepts %1 expos
- open9x accepte jusqu'à %1 expos
+ open9x accepte jusqu'à %1 expos
-
+
th9x
-
+
er9x
er9x
-
er9x doesn't have Rotary Encoders
- er9x ne supporte pas d'encodeurs rotatifs
+ er9x ne supporte pas d'encodeurs rotatifs
-
er9x doesn't have trims as source
- Les trims ne sont pas disponibles comme source dans er9x
+ Les trims ne sont pas disponibles comme source dans er9x
-
er9x doesn't have negative gvars as weight
- ER9X ne supporte pas les variables globales négatives comme ratio
+ ER9X ne supporte pas les variables globales négatives comme ratio
-
er9x doesn't have negative gvars as offset
- ER9X ne supporte pas les variables globales négatives comme décalage
+ ER9X ne supporte pas les variables globales négatives comme décalage
-
-
-
er9x doesn't have swappable trims
- Les trims ne peuvent pas être changés dans er9x
+ Les trims ne peuvent pas être changés dans er9x
-
-
-
er9x on this board doesn't have Rotary Encoders
- er9x ne supporte pas d'encodeurs rotatifs sur cette carte
+ er9x ne supporte pas d'encodeurs rotatifs sur cette carte
-
er9x does not support Custom Switch function %1
- er9x ne supporte pas la fonction %1 dans les inters personnalisés
+ er9x ne supporte pas la fonction %1 dans les inters personnalisés
-
-
-
er9x does not support this range for A1/A2
- er9x ne supporte pas cette plage pour A1/A2
+ er9x ne supporte pas cette plage pour A1/A2
-
-
-
er9x does not support this telemetry units
- er9x ne supporte pas ces unités
+ er9x ne supporte pas ces unités
-
-
Er9x doesn't accept this protocol
- Er9x ne supporte pas ce protocole
+ Er9x ne supporte pas ce protocole
-
-
Er9x doesn't support custom curves as curve%1, curve as been exported as fixed point
- er9x ne supporte pas les courbes personnalisées, la courbe %1 a été exportée avec des points à abscisse fixe.
+ er9x ne supporte pas les courbes personnalisées, la courbe %1 a été exportée avec des points à abscisse fixe.
-
-
Er9x doesn't support curve with %1 point as curve%2
- er9x ne supporte pas les courbes à %1 points (courbe%2)
+ er9x ne supporte pas les courbes à %1 points (courbe%2)
-
-
-
-
-
+
+
+
+
Warning
Avertissement
-
-
+
EEPROM saved with these warnings:
EEPROM enregistrée avec ces avertissements :
-
-
ersky9x doesn't have Rotary Encoders
- ersky9x ne supporte pas d'encodeurs rotatifs
+ ersky9x ne supporte pas d'encodeurs rotatifs
-
-
ersky9x doesn't have trims as source
- Les trims ne sont pas disponibles comme source dans ersky9x
+ Les trims ne sont pas disponibles comme source dans ersky9x
-
-
ersky9x does not support Custom Switch function %1
- ersky9x ne supporte pas la fonction %1 dans les inters personnalisés
+ ersky9x ne supporte pas la fonction %1 dans les inters personnalisés
-
-
Ersky9x doesn't accept this protocol
- Ersky9x ne supporte pas ce protocole
+ Ersky9x ne supporte pas ce protocole
-
-
-
-
ErSky9x doesn't support custom curves as curve%1, curve as been exported as fixed point
ErSky9x doesn't support custom curves as curve%1, curve as been imported as fixed point
- ersky9x ne supporte pas les courbes personnalisées, la courbe %1 a été exportée avec des points à abscisse fixe.
+ ersky9x ne supporte pas les courbes personnalisées, la courbe %1 a été exportée avec des points à abscisse fixe.
-
-
-
-
ErSky9x doesn't support curve with %1 point as curve%2
- ersky9x ne supporte pas les courbes à %1 points (courbe%2)
+ ersky9x ne supporte pas les courbes à %1 points (courbe%2)
-
-
-
+
+
+
Simulator for this firmware is not yet available
Le simulateur n'est pas encore disponible pour ce firmware
-
th9x does not support Custom Switch function %1
- th9x ne supporte pas la fonction %1 dans les inters personnalisés
+ th9x ne supporte pas la fonction %1 dans les inters personnalisés
-
+
th9x on this board doesn't have Rotary Encoders
th9x ne supporte pas d'encodeurs rotatifs sur cette carte
-
-
-
th9x doesn't support custom curves as curve%1, curve as been exported as fixed point
- th9x ne supporte pas les courbes personnalisées, la courbe %1 a été exportée avec des points à abscisse fixe.
+ th9x ne supporte pas les courbes personnalisées, la courbe %1 a été exportée avec des points à abscisse fixe.
-
-
-
th9x doesn't support curve with %1 point as curve%2
- th9x ne supporte pas les courbes à %1 points (courbe%2)
+ th9x ne supporte pas les courbes à %1 points (courbe%2)
-
(GV%1)
- (VG%1)
+ (VG%1)
-
-
Flight Mode 0 (Default)
- Phase de vol 0 (par défaut)
+ Phase de vol 0 (par défaut)
-
-
FM %1
- PV %1
+ PV %1
-
+
openTx only accepts %1 points in all curves
openTx ne supporte que %1 points répartis entre toutes les courbes
-
-
-
+
+
+
OpenTX on this board doesn't accept this function
openTx ne supporte pas cette fonction sur cette carte
-
-
+
+
OpenTX doesn't accept this protocol
openTx ne supporte pas ce protocole
-
+
OpenTX doesn't allow this number of channels
openTx ne supporte pas ce nombre de canaux
@@ -7416,6 +7730,590 @@ The OpenTX/Companion Team.
+
+ Setup
+
+
+ Form
+
+
+
+
+ Model Name
+ Nom du modèle
+
+
+
+ Timer2
+
+
+
+
+ Timer1
+ Chrono1
+
+
+
+ Throttle Source
+ Source de Gaz
+
+
+
+ Switch startup Warning
+ Alerte interrupteurs
+
+
+
+ Center beep
+ Bip de centrage
+
+
+
+ Trim Increment
+
+
+
+
+ ON
+
+
+
+
+ OFF
+
+
+
+
+ Check
+ Vérif.
+
+
+
+ Model Image
+ Image du modèle
+
+
+
+ Exponential
+ Exponentiel
+
+
+
+ Extra Fine
+ Extra fin
+
+
+
+ Fine
+ Fin
+
+
+
+ Medium
+ Moyen
+
+
+
+ Coarse
+ Grossier
+
+
+
+ Extended Limits
+ Débattements étendus
+
+
+
+ Extended Trims
+ Trims étendus
+
+
+
+ Throttle Trim
+
+
+
+
+ Throttle Warning
+
+
+
+
+ Reverse throttle operation.
+If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
+
+
+ Inversion des gaz.
+Si cette option est cochée, la voie des gaz est inversée: le ralenti est 'manche en haut'. Le trim et l'alerte des gaz sont inversés également.
+
+
+
+
+
+ Reverse Throttle
+
+
+
+
+ Telemetry
+
+
+ Form
+
+
+
+
+
+
+
+ A1
+ A1
+
+
+
+
+
+
+ A2
+ A2
+
+
+
+ RSSI
+ RSSI
+
+
+
+ Alarm 1
+ Alarme 1
+
+
+
+
+ ----
+ ----
+
+
+
+
+ Yellow
+ Jaune
+
+
+
+
+ Orange
+ Orange
+
+
+
+
+ Red
+ Rouge
+
+
+
+ Alarm 2
+ Alarme 2
+
+
+
+ Serial Protocol
+ Protocole Série
+
+
+
+ Volt source
+ Source de mesure de tension
+
+
+
+ Metric
+ Métrique
+
+
+
+ Imperial
+ Impérial
+
+
+
+ Current source
+ Source de mesure de courant
+
+
+
+ Protocol
+ Codage
+
+
+
+ NONE
+ Aucune
+
+
+
+
+ FAS
+ FAS
+
+
+
+ None
+ Aucun
+
+
+
+ FrSky Sensor Hub
+ Sensor Hub FrSky
+
+
+
+ CEL
+ ELEM
+
+
+
+ 2
+ 2
+
+
+
+ 3
+ 3
+
+
+
+ 4
+ 4
+
+
+
+ Units
+ Unités
+
+
+
+ Blades
+ Pales
+
+
+
+ Altimetry / Vario
+ Altimètre / Vario
+
+
+
+ Alti
+ Alti
+
+
+
+ Alti+
+ Alti+
+
+
+
+ Vario
+ Vario
+
+
+
+ Sink Max
+ Chute max
+
+
+
+ Off
+ Aucun
+
+
+
+ Climb Max
+ Montée max
+
+
+
+ Sink Min
+ Chute min
+
+
+
+ Climb Min
+ Montée min
+
+
+
+ Vario source
+ Source vario
+
+
+
+ Vario limits
+ Limites vario
+
+
+
+ Use GPS as altitude source
+ Utiliser le GPS comme source d'altitude
+
+
+
+ Display altitude in toolbar
+ Affichage de l'altitude dans la barre de notifs
+
+
+
+ Various
+
+
+
+
+ mAh count
+
+
+
+
+ FAS Offset
+
+
+
+
+ Persistent mAh
+
+
+
+
+ TelemetryAnalog
+
+
+ Form
+
+
+
+
+ Unit
+ Unité
+
+
+
+ Max Value
+ Valeur Max
+
+
+
+ Alarm 1
+ Alarme 1
+
+
+
+
+ ----
+ ----
+
+
+
+
+ Yellow
+ Jaune
+
+
+
+
+ Orange
+ Orange
+
+
+
+
+ Red
+ Rouge
+
+
+
+
+ <
+ <
+
+
+
+
+ >
+ >
+
+
+
+ Alarm 2
+ Alarme 2
+
+
+
+ Min Value
+ Valeur Min
+
+
+
+ Volts (V)
+ Tension (V)
+
+
+
+ Amps (A)
+ Courant (A)
+
+
+
+ Speed (m/s or ft/s)
+ Vitesse (m/s ou ft/s)
+
+
+
+ Raw (-)
+ Chiffres bruts (-)
+
+
+
+ Speed (km/h or miles/h)
+ Vitesse (km/h ou miles/h)
+
+
+
+ Meters (m or ft)
+ Distance (m ou ft)
+
+
+
+ Temp (°)
+ Temp (°)
+
+
+
+ Fuel (%)
+ Carburant (%)
+
+
+
+ mAmps (mA)
+ Courant (mA)
+
+
+
+ Range
+ Plage
+
+
+
+ TelemetryCustomScreen
+
+
+ Form
+
+
+
+
+ Custom Screen Type
+ Type d'écran personnalisé
+
+
+
+ Nums
+ Valeurs
+
+
+
+ Bars
+ Barres
+
+
+
+ Min
+ Min
+
+
+
+ Source
+
+
+
+
+ Gauge
+ Jauge
+
+
+
+ Max
+ Max
+
+
+
+ TelemetryPanel
+
+
+ Telemetry screen %1
+
+
+
+
+ Winged Shadow How High
+ Winged Shadow How High
+
+
+
+ Winged Shadow How High (not supported)
+ Winged Shadow How High (non supporté)
+
+
+
+ Timer
+
+
+ Form
+
+
+
+
+ mm:ss
+
+
+
+
+ Countdown
+
+
+
+
+ MinuteBeep
+ Bip chaque minute
+
+
+
+ Persistent
+ Persistant
+
+
+
+ (00:00:00)
+
+
+
+
+ TimerPanel
+
+
+ None
+ Aucun
+
+
+
+ Beeps
+
+
+
+
+ Countdown
+
+
+
avrOutputDialog
@@ -7663,35 +8561,35 @@ Consulter la documentation du programmateur utilisé et celle d'AVRDUDE pou
Parcourir...
-
+
DFU-UTIL Configuration
Configuration de DFU-UTIL
-
+
SAM-BA Configuration
Configuration de SAM-BA
-
-
-
+
+
+
Select Location
Choisir l'emplacement
-
-
+
+
Companion
-
+
<b><u>WARNING!</u></b><br>This will reset the fuses of %1 to the factory settings.<br>Writing fuses can mess up your radio.<br>Do this only if you are sure they are wrong!<br>Are you sure you want to continue?
<b><u>AVERTISSEMENT!</u></b><br>Ceci réinitialisera les fusibles %1 à leur valeur par défaut.<br>Modifier les fusibles peut entraîner le blocage de votre émetteur.<br>Ne l'effectuer que si vous êtes certain qu'ils sont incorrects!<br>Etes-vous sûr de vouloir continuer?
-
+
<b><u>WARNING!</u></b><br>Normally CPU type is automatically selected according to the chosen firmware.<br>If you change the CPU type the resulting eeprom could be inconsistent.
<b><u>ATTENTION!</u></b><br>Le type de processeur est normalement choisi automatiquement pour le firmware sélectionné.<br>Si vous le changez, l'EEPROM peut être corrompue lors du transfert.
@@ -7735,7 +8633,7 @@ A n'utiliser qu'en connaissance de cause: il n'y a pas de contrô
Paramètres complémentaires passés à chaque appel du programme
-
+
AVRDUDE Configuration
Configuration d'AVRDUDE
@@ -7832,7 +8730,7 @@ m2560 for v4.1 boards
-
+
Browse for file
Parcourir...
@@ -7878,7 +8776,7 @@ m2560 for v4.1 boards
-
+
Write to TX
Transférer
@@ -7915,7 +8813,7 @@ m2560 for v4.1 boards
Flasher l'émetteur
-
+
Write firmware to TX
Transférer le firmware vers l'émetteur
@@ -7924,27 +8822,27 @@ m2560 for v4.1 boards
Transférer les modèles vers l'émetteur
-
+
Open
Ouvrir
-
-
-
-
-
-
+
+
+
+
+
+
Warning
Avertissement
-
+
%1 is not a known firmware
%1 n'est pas un firmware connu
-
+
Burn anyway !
Confirmer le transfert !
@@ -7953,26 +8851,26 @@ m2560 for v4.1 boards
Fichier binaire EEPROM %1 invalide. Continuer quand même?
-
+
Open Image to load
Ouvrir l'image à charger
-
+
Images (%1)
Images (%1)
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Error
Erreur
@@ -7985,7 +8883,7 @@ m2560 for v4.1 boards
Ecrire %1 dans la radio
-
+
Current profile
Profil courant
@@ -7994,76 +8892,76 @@ m2560 for v4.1 boards
Choisir le fichier EEPROM à transmettre à l'émetteur
-
+
Write Models and Settings to TX
Transférer les modèles et réglages à la radio
-
+
Write Models and Settings in %1 to TX
Transférer les modèles et réglages %1 à la radio
-
+
Choose file to load Models and Settings from
Chemin des fichers deréglages et modèles par défaut
-
+
Unable to find file %1!
Fichier %1 introuvable!
-
-
-
+
+
+
Error opening file %1:
%2.
Erreur à l'ouverture du fichier %1:
%2.
-
-
-
+
+
+
Invalid binary Models and Settings File %1, Proceed anyway ?
Fichier binaire de réglages et modèles %1 invalide, continuer quand même?
-
+
Error reading file %1:
%2.
Fichier %1 corrompu:
%2.
-
-
+
+
Cannot load %1.
Impossible de charger %1.
-
+
Cannot save customized firmware
Impossible d'enregistrer le firmware personnalisé
-
+
Custom image not found
Image personnalisée non trouvée
-
+
No firmware selected
Aucun firmware sélectionné
-
+
Wrong radio calibration data in profile, Settings not patched
Données de calibration incorrectes dans le profil, les réglages ne seront pas transférés
-
+
Wrong radio setting data in profile, Settings not patched
Données de configuration incorrectes dans le profil, les réglages ne seront pas transférés
@@ -8076,15 +8974,15 @@ m2560 for v4.1 boards
Paramètres hardware invalides, l'EEPROM n'a pas été patchée!
-
-
+
+
Cannot write file %1:
%2.
Ecriture fichier %1 impossible:
%2.
-
+
Error writing file %1:
%2.
Erreur d'écriture fichier %1:
@@ -8226,14 +9124,14 @@ m2560 for v4.1 boards
-
+
-
-
-
-
-
-
+
+
+
+
+
+
Switch
Interrupteur
@@ -8285,10 +9183,10 @@ m2560 for v4.1 boards
-
-
-
-
+
+
+
+
Offset
Décalage
@@ -8296,8 +9194,8 @@ m2560 for v4.1 boards
-
-
+
+
Min
Min
@@ -8305,8 +9203,8 @@ m2560 for v4.1 boards
-
-
+
+
Max
Max
@@ -8322,8 +9220,8 @@ m2560 for v4.1 boards
-
-
+
+
CH
VOIE
@@ -8357,64 +9255,54 @@ m2560 for v4.1 boards
-
+
Weight
Ratio
-
-
Expo
- Expo
+ Expo
-
-
-
-
-
-
+
+
Curve
Courbe
-
+
Mixers
Mixages
-
-
+
+
noTrim
Pas de trim
-
-
FMTrim
- Trims des phases de vol
+ Trims des phases de vol
-
-
Diff
- Diff
+ Diff
-
-
+
+
Delay(u%1:d%2)
Délai(u%1:d%2)
-
-
+
+
Slow(u%1:d%2)
Ralentissement(u%1:d%2)
-
-
+
+
Warn
Avertissement
@@ -8425,136 +9313,133 @@ m2560 for v4.1 boards
Sans titre
-
+
-
-
+
+
DISABLED
DESACTIVE
-
+
Curves
Courbes
-
+
5 Points Curves
Courbes à 5 points
-
-
-
-
+
+
+
+
pt %1
point %1
-
+
9 Points Curves
Courbes à 9 points
-
Custom Switches
- Inters personnalisés
+ Inters personnalisés
-
-
CS
- SW
+ SW
-
-
+
+
Function
Fonction
-
-
+
+
Param
Paramètre
-
-
+
+
Enable
Actif
-
+
CF
FS
-
+
Telemetry Settings
Paramètres de télémesure
-
-
+
+
Analog
Analogue
-
-
+
+
Unit
Unité
-
-
+
+
Scale
Echelle
-
-
-
-
+
+
+
+
A%1
A%1
-
-
+
+
Alarm 1
Alarme 1
-
-
+
+
Alarm 2
Alarme 2
-
-
-
-
+
+
+
+
Type
Type
-
-
-
-
+
+
+
+
Condition
Condition
-
-
-
-
-
-
+
+
+
+
+
+
Value
Valeur
@@ -8567,29 +9452,28 @@ m2560 for v4.1 boards
Nom del la phase de vol
-
+
-
-
+
+
Flight modes
Phases de vol
-
+
-
-
+
+
Flight mode
Phase de vol
-
Custom Functions
- Fonctions spéciales
+ Fonctions spéciales
-
-
+
+
Repeat
Répétition
@@ -8598,47 +9482,63 @@ m2560 for v4.1 boards
FSn
-
+
Safety Switches
Inters de sécurité
-
-
+
+
RSSI Alarm
Alarme RSSI
-
-
+
+
Telemetry Bars
Jauges de Télémétrie
-
-
+
+
Bar Number
Barre
-
-
+
+
Source
-
-
+
+
Custom Telemetry View
Vue Télémesure personnalisée
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignment
+
+
+
+
Print Document
Imprimer le Document
-
+
Select PDF output file
Choisir le fichier PDF de sortie
@@ -8651,24 +9551,22 @@ m2560 for v4.1 boards
Dialogue
-
+
People who have contributed to this project
Personnes qui ont contribué au projet
-
+
Coders
Développeurs
-
- Honors go to Rafal Tomczak (RadioClone) and Thomas Husterer (th9x)
-of course. Also to Erez Raviv (er9x) and the fantastic eePe program
-which was the staring point for OpenTX Companion.
+
+ Honors go to Rafal Tomczak (RadioClone), Thomas Husterer (th9x) and Erez Raviv (er9x and eePe)
-
+
Companion Release Notes
@@ -8680,12 +9578,12 @@ companion9x was forked out.
Egalement à Erez Raviv (er9x) et son fantastique programme eePe d'où est parti companion9x.
-
+
Thank you all !!!
Merci à tous !!!
-
+
Contributors
Contributeurs
@@ -8694,7 +9592,7 @@ Egalement à Erez Raviv (er9x) et son fantastique programme eePe d'où est
Notes de version de companion9x
-
+
OpenTX Release Notes
Notes de version d'openTx
@@ -8737,7 +9635,7 @@ Egalement à Erez Raviv (er9x) et son fantastique programme eePe d'où est
-
+
Save Firmware
Save To Hex
Sauvegarder le firmware
@@ -8752,80 +9650,80 @@ p, li { white-space: pre-wrap; }
-
-
-
+
+
+
Select an original firmware file
Choisissez un fichier de firmware
-
+
Open
Ouvrir
-
+
Select an image to customize your splash <br />or save actual firmware splash
Choisir une image pour personnaliser votre Splash <br/> ou enregistrer le Splash de votre firmware courant
-
-
-
-
+
+
+
+
Error
Erreur
-
+
Could not find bitmap to replace in file
Impossible de trouver l'image à remplacer dans le fichier
-
+
Open Image to load
Ouvrir l'image à charger
-
+
Images (%1)
Images (%1)
-
-
+
+
Cannot load %1.
Impossible de charger %1.
-
-
+
+
Save your custimized firmware
Enregistrer votre firmware personnalisé
-
-
+
+
Write to file
Ecrire vers le fichier
-
+
Error reading file %1
Fichier %1 corrompu! {1?}
-
+
Firmware correctly saved.
Firmware enregistré.
-
+
Firmware not saved.
Firmware non enregistré.
-
+
PNG images (*.png);;
Images PNG (*.png);;
@@ -9263,17 +10161,17 @@ Press cancel to abort joystick calibration
%2.
-
+
Select your log file
Sélectionnez votre fichier log
-
+
Available fields
Champs disponibles
-
+
The selected logfile contains %1 invalid lines out of %2 total lines
Le fichier de log sélectionné contient %1 lignes invalides sur %2
@@ -9281,7 +10179,7 @@ Press cancel to abort joystick calibration
mdiChild
-
+
Simulate Tx
Simulation de l'émetteur
@@ -9728,17 +10626,17 @@ Press cancel to abort joystick calibration
preferencesDialog
-
+
Mode 2 (RUD THR ELE AIL)
Mode 2 (DIR GAZ PROF AIL)
-
+
Mode 4 (AIL THR ELE RUD)
Mode 4 (AIL GAZ PROF DIR)
-
+
Mode selection:
Mode 1:
@@ -9779,144 +10677,144 @@ Manche Droit: Profondeur, Direction
-
+
Mode 3 (AIL ELE THR RUD)
Mode 3 (AIL PROF GAZ DIR)
-
+
Firmware
-
-
+
+
...
-
+
Enable
Actif
-
+
Calibrate
Calibrer
-
-
-
-
+
+
+
+
Open Folder
Ouvrir le répertoire
-
+
Set language of voice.
May be different from firmware language
Langue des voix.
Peut être différente de la langue du firmware
-
+
Export Profile
Exporter le profil
-
+
Import Profile
Importer le profil
-
+
Custom TX splash screen
Personnaliser l'écran d'accueil
-
+
Automatic Backup Folder
Dossier de sauvegardes automatiques
-
+
Automatically add version number to the filename after download
Ajouter le numéro de version au nom de fichier après téléchargement
-
+
SD Structure path
Chemin de la structure de la carte SD
-
+
Processor ID
ID du processeur
-
+
Simulator capture folder
Dossier de sauvegarde des captures d'écran
-
+
Use clipboard only
Utiliser le presse-papiers
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
CheckBox
-
+
Check for updates
Vérifier les mises à jour
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -9924,88 +10822,97 @@ This is used by the templated to determine which channel goes to what number out
Indique l'affectation voie / numéro de canal par défaut utilisée lors de la création d'un modèle.
-
+
Language
Langue
-
+
Voice
Voix
-
+
Profile Name
Nom du profil
-
+
Save Profile
Sauvegarder profil
-
+
Simu BackLight
Rétroéclairage simu
-
+
Check for selected Fw updates
Vérifier les mises à jour de firmwares au démarrage
-
+
Ask use of wizard for new models
Utiliser l'assistant de configuration de modèle
-
+
+ Show Splash At Start
+
+
+
+
Remember switches in simulator
Mémoriser les inters pour le simulateur
-
+
Blue
Blu
Bleu
-
+
Green
Vert
-
+
Red
Rouge
-
+
Orange
Orange
-
+
Yellow
Jaune
-
+
Personal splash library
Bibliothèque de splashs personnalisés
-
+
Profile slot
Numéro de profil
-
+ Normal
+ Normal
+
+
+
Find Executable
-
+
Google Earth Executable
@@ -10014,58 +10921,57 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Dossier de sauvegarde de l'EEPROM
-
+
auto backup before write
Sauvegarde automatique avant programmation
-
+
Ask for flashing after Download
Demander pour flasher après téléchargement
-
+
Splash library behaviour
Utilisation de la bibliothèque de Splashes
-
+
Include companion splashes
Inclure les écrans d'accueil de companion9x
-
+
Only user defined splashes
Seulement vos écrans d'accueil
-
+
Joystick
Joystick
-
+
Open Image
Charger une image
-
+
Invert Pixels
Inverser les couleurs
-
+
FwInfo
-
Language (requires restart)
Version française par Pascal Dugué / Octobre 2010.
- Langue (nécessite un redémarrage de companion9x)
+ Langue (nécessite un redémarrage de companion9x)
-
+
Default Channel Order
Ordre des voies par défaut
@@ -10075,38 +10981,37 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Préférences
-
+
Default Stick Mode
Mode par défaut
-
+
Mode 1 (RUD ELE THR AIL)
Mode 1 (DIR PROF GAZ AIL)
-
+
Check for updates on startup
Vérifier les mises à jour au démarrage
-
Show Splash Screen
- Afficher l'écran d'accueil au démarrage
+ Afficher l'écran d'accueil au démarrage
-
+
Recent History Size
Taille de l'historique des derniers documents utilisés
-
-
+
+
Download
Télécharger
-
+
Last downloaded release: %1
Dernière version téléchargée : %1
@@ -10119,84 +11024,84 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Le firmware sélectionné ne peut pas être téléchargé par companion9x.
-
+
Image stored in settings
Image enregistrée dans les paramètres
-
-
+
+
No joysticks found
Aucun joystick
-
+
Select your Models and Settings backup folder
Sélectionner le dossier dans lequel une sauvegarde des réglages et modèles sera placée automatiquement lors de chaque opération
-
+
Select Google Earth executable
-
+
Select the folder replicating your SD structure
Sélectionner un dossier contenant une copie des dossiers de la carte SD
-
+
Profile name is empty, profile slot %1 will be deleted.<br>Are you sure ?
Le nom du profil est vide, le profil %1 va être effacé.<br>Etes-vous sûr?
-
+
Export profile As
Exporter le profil sous
-
+
Profile slot is not empty, profile slot %1 will we overwritten.<br>Are you sure ?
L'emplacement %1 n'est pas vide, il va être écrasé. Continuer?
-
+
Open Profile to import
Ouvrir le profil à importer
-
+
Open Image to load
Ouvre l'image à charger
-
+
Images (%1)
Images (%1)
-
-
+
+
Error
Erreur
-
+
The selected firmware has never been downloaded by Companion.
-
+
The selected firmware cannot be downloaded by Companion.
-
+
Select your library folder
Sélectionner le dossier de bibliothèque
-
+
Select your snapshot folder
Sélectionner le dossier où stocker les captures d'écran
@@ -10205,8 +11110,8 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Sélectionner le dossier de sauvegarde d'EEPROM
-
-
+
+
Cannot load %1.
Impossible de charger %1.
@@ -10215,9 +11120,9 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
printDialog
-
-
-
+
+
+
Name
Nom
@@ -10232,9 +11137,7 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Imprimer
-
-
-
+
pt %1
point %1
@@ -10260,24 +11163,24 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Nom del la phase de vol
-
-
+
+
Flight modes
Phases de vol
-
-
+
+
Flight mode
Phase de vol
-
+
Slow(u%1:d%2)
Ralentissement(u%1:d%2)
-
+
Delay(u%1:d%2)
Délai(u%1:d%2)
@@ -10287,37 +11190,35 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Dialogue
-
-
-
-
-
+
+
+
+
+
Offset
Décalage
-
-
CS
- SW
+ SW
-
+
Global Variables
Variables globales
-
+
GV
VG
-
+
Scale
Echelle
-
+
Source
Source
@@ -10349,35 +11250,51 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
-
+
Enabled
Actif
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignments
+
+
+
+
Function
Fonction
-
+
Print Document
Imprimer le Document
-
-
-
-
+
+
+
+
Switch
Interrupteur
-
-
-
-
-
+
+
+
+
+
Value
Valeur
@@ -10467,153 +11384,138 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Ratio
-
-
-
-
Expo
- Expo
+ Expo
-
-
-
-
-
-
-
+
+
+
Curve
Courbe
-
+
Mixers
Mixages
-
-
-
-
-
+
+
+
+
+
CH
VOIE
-
+
noTrim
Pas de trim
-
FMTrim
- Trims des phases de vol
+ Trims des phases de vol
-
Diff
- Diff
+ Diff
-
+
Warn
Avertissement
-
-
+
+
DISABLED
DESACTIVE
-
+
Limits
Débattements
-
-
-
-
+
+
+
+
Min
Min
-
-
-
-
+
+
+
+
Max
Max
-
-
-
+
+
+
Invert
Inversion
-
-
-
+
+
+
INV
Inversion
-
-
-
+
+
+
NOR
Normal
-
+
Curves
Courbes
-
5 Points Curves
- Courbes à 5 points
+ Courbes à 5 points
-
9 Points Curves
- Courbes à 9 points
+ Courbes à 9 points
-
Custom Switches
- Inters personnalisés
+ Inters personnalisés
-
CF
- FS
+ FS
-
+
ODF files (*.odt);;PDF Files(*.pdf);;HTML-Files (*.htm *.html);;All Files (*)
Fichiers ODF (*.odt);; Fichiers PDF (*.pdf);;Fichiers HTML (*.htm *.html);;Tous les fichiers (*)
-
+
Safety Switches
Inters de sécurité
-
Function Switches
- Fonctions personnalisées
+ Fonctions personnalisées
-
+
Parameter
Paramètre
-
+
Repeat
Répétition
@@ -10622,91 +11524,91 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
FP
-
+
Telemetry Settings
Paramètres de télémesure
-
-
+
+
Alarm 1
Alarme 1
-
-
+
+
Alarm 2
Alarme 2
-
+
Analog
Analogue
-
+
Unit
Unité
-
-
-
-
+
+
+
+
Type
Type
-
-
-
-
+
+
+
+
Condition
Condition
-
+
A%1
A%1
-
+
RSSI Alarm
Alarme RSSI
-
+
Frsky serial protocol
Protocole Série FrSky
-
+
System of units
Unités
-
+
Propeller blades
Pales de l'hélice
-
+
Telemetry Bars
Jauges de Télémesure
-
+
Bar Number
Barre no
-
-
+
+
Custom Telemetry View
Vue Télémesure personnalisée
-
+
Select PDF output file
Choisir le fichier PDF de sortie
@@ -10714,17 +11616,17 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
simulatorDialog
-
+
P1
-
+
P2
-
+
P3
@@ -10734,59 +11636,57 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
-
CSK
SWK
- IPK
+ IPK
-
CSW
SWW
- IPW
+ IPW
-
+
CH1
-
+
CH2
-
+
CH3
-
+
CH4
-
+
CH5
-
+
CH6
-
+
CH7
-
+
CH8
-
+
CH9
@@ -10806,12 +11706,12 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
-
+
ID1
-
+
ID2
@@ -10829,7 +11729,7 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
-
+
Right Double Click to Reset
Double cliquer pour remettre à 0
@@ -10839,14 +11739,14 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
-
-
-
+
+
+
0 %
-
+
BEEP
BIP
@@ -10856,231 +11756,361 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
-
CS1
- IP1
+ IP1
-
CS2
- IP2
+ IP2
-
CS3
- IP3
+ IP3
-
CS4
- IP4
+ IP4
-
CS5
- IP5
+ IP5
-
CS6
- IP6
+ IP6
-
CS7
- IP7
+ IP7
-
CS8
- IP8
+ IP8
-
CS9
- IP9
+ IP9
-
CSA
- IPA
+ IPA
-
CSB
- IPB
+ IPB
-
CSC
- IPC
+ IPC
-
CSD
- IPD
+ IPD
-
CSE
- IPE
+ IPE
-
CSF
- IPF
+ IPF
-
CSG
- IPG
+ IPG
-
CSH
- IPH
+ IPH
-
CSI
- IPI
+ IPI
-
CSJ
- IPJ
+ IPJ
-
CSL
- IPL
+ IPL
-
CSM
- IPM
+ IPM
-
CSN
- IPN
+ IPN
-
CSO
- IPO
+ IPO
-
CSP
- IPQ
+ IPQ
-
CSQ
- IPR
+ IPR
-
CSR
- IPS
+ IPS
-
CSS
- IPS
+ IPS
-
CST
- IPT
+ IPT
-
CSU
- IPU
+ IPU
-
CSV
- IPV
+ IPV
-
+
CH10
-
+
CH11
-
+
CH12
-
+
CH13
-
+
CH14
-
+
CH15
-
+
CH16
-
+
Fix X
Verrou X
-
+
Fix Y
Verrou Y
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ LS1
+
+
+
+
+ LS2
+
+
+
+
+ LS3
+
+
+
+
+ LS4
+
+
+
+
+ LS5
+
+
+
+
+ LS6
+
+
+
+
+ LS7
+
+
+
+
+ LS8
+
+
+
+
+ LS9
+
+
+
+
+ LSA
+
+
+
+
+ LSB
+
+
+
+
+ LSC
+
+
+
+
+ LSD
+
+
+
+
+ LSE
+
+
+
+
+ LSF
+
+
+
+
+ LSG
+
+
+
+
+ LSH
+
+
+
+
+ LSI
+
+
+
+
+ LSJ
+
+
+
+
+ LSK
+
+
+
+
+ LSL
+
+
+
+
+ LSM
+
+
+
+
+ LSN
+
+
+
+
+ LSO
+
+
+
+
+ LSP
+
+
+
+
+ LSQ
+
+
+
+
+ LSR
+
+
+
+
+ LSS
+
+
+
+
+ LST
+
+
+
+
+ LSU
+
+
+
+
+ LSV
+
+
+
+
+ LSW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-100.1
-
+
Hold X
Retenir X
-
+
Hold Y
Retenir Y
@@ -11092,8 +12122,8 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
-
-
+
+
TextLabel
@@ -11102,7 +12132,7 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Simulateur companion9x
-
+
9x Simulator
Simulateur 9x
@@ -11147,33 +12177,33 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
splashLibrary
-
+
...
-
+
Splash Library - page %1 of %2
Bibliothèque de splash - page %1 sur %2
-
+
Warning
Avertissement
-
+
Invalid image in library %1
Image invalide dans la bibliothèque %1
-
+
Information
-
+
No valid image found in library, check your settings
Aucune image valide trouvée dans la bibliothèque, vérifiez vos paramètres
@@ -11303,10 +12333,9 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Sorties
-
CSK
SWK
- IPK
+ IPK
@@ -11330,10 +12359,10 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
-
-
-
-
+
+
+
+
@@ -11374,12 +12403,12 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
VOIE4
-
+
CH12
VOIE12
-
+
CH5
VOIE5
@@ -11418,161 +12447,290 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
CH16
VOIE16
+
+
+ LSK
+
+
- CSC
- IPC
+ LSC
+
- CSD
- IPD
+ LSD
+
- CS7
- IP7
+ LS7
+
- CSL
- IPL
+ LSL
+
- CSB
- IPB
+ LSB
+
- CS1
- IP1
+ LS1
+
- CSH
- IPH
+ LSH
+
- CSG
- IPG
+ LSG
+
- CSE
- IPE
+ LSE
+
- CSF
- IPF
+ LSF
+
- CS8
- IP8
+ LS8
+
- CS9
- IP9
+ LS9
+
- CSA
- IPA
+ LSA
+
- CSM
- IPM
+ LSM
+
- CSJ
- IPJ
+ LSJ
+
- CSI
- IPI
+ LSI
+
- CS4
- IP4
+ LS4
+
- CS5
- IP5
+ LS5
+
- CS2
- IP2
+ LS2
+
- CS3
- IP3
+ LS3
+
- CS6
- IP6
+ LS6
+
- CSN
- IPN
+ LSN
+
- CSO
- IPO
+ LSO
+
- CSP
- IPQ
+ LSP
+
- CSQ
- IPR
+ LSQ
+
- CSR
- IPS
+ LSR
+
- CSS
- IPS
+ LSS
+
- CST
- IPT
+ LST
+
- CSU
- IPU
+ LSU
+
- CSV
- IPV
+ LSV
+
+ LSW
+
+
+
+ CSC
+ IPC
+
+
+ CSD
+ IPD
+
+
+ CS7
+ IP7
+
+
+ CSL
+ IPL
+
+
+ CSB
+ IPB
+
+
+ CS1
+ IP1
+
+
+ CSH
+ IPH
+
+
+ CSG
+ IPG
+
+
+ CSE
+ IPE
+
+
+ CSF
+ IPF
+
+
+ CS8
+ IP8
+
+
+ CS9
+ IP9
+
+
+ CSA
+ IPA
+
+
+ CSM
+ IPM
+
+
+ CSJ
+ IPJ
+
+
+ CSI
+ IPI
+
+
+ CS4
+ IP4
+
+
+ CS5
+ IP5
+
+
+ CS2
+ IP2
+
+
+ CS3
+ IP3
+
+
+ CS6
+ IP6
+
+
+ CSN
+ IPN
+
+
+ CSO
+ IPO
+
+
+ CSP
+ IPQ
+
+
+ CSQ
+ IPR
+
+
+ CSR
+ IPS
+
+
+ CSS
+ IPS
+
+
+ CST
+ IPT
+
+
+ CSU
+ IPU
+
+
+ CSV
+ IPV
+
+
CSW
SWW
- IPW
+ IPW
@@ -11591,23 +12749,23 @@ Indique l'affectation voie / numéro de canal par défaut utilisée lors de
Impossible d'accéder au joystick. Joystick désactivé
-
+
Firmware %1 error: %2
Firmware %1 erreur : %2
-
+
- Flight mode: %1(%2)
- Phase: %1(%2)
- Phase : %1(%2)
-
+
Simulating Tx (%1)
Simulation de l'émetteur (%1)
-
+
Simulating
Simulation
diff --git a/companion/src/translations/companion_he.ts b/companion/src/translations/companion_he.ts
index ddfaa4e3d..2ba45086a 100644
--- a/companion/src/translations/companion_he.ts
+++ b/companion/src/translations/companion_he.ts
@@ -2,134 +2,657 @@
- ExpoDialog
+ Channels
-
- Expo
-
-
-
-
- Weight
-
-
-
-
+
Name
-
-
-
- GV
+
+ Offset
-
-
- Phase used by the expo.
+
+ Min
-
- Flight modes
+
+ Max
-
- 0
+
+ Invert
-
- 1
+
+ Center
-
- 2
+
+ Sym
-
- 3
+
+ Channel %1
-
- 4
+
+ ---
-
- 5
+
+ INV
+
+
+
+
+ CurveGroup
+
+
+ Diff
-
- 6
+
+ Expo
-
- 7
+
+ Func
-
- 8
+
+ Curve
+
+
+
+
+ Curves
+
+
+ Form
-
+
+ Standard
+
+
+
+
+ Custom
+
+
+
+
+ Lines
+
+
+
+
+ Smooth
+
+
+
+
+ Curve type
+
+
+
+
+ Curve name
+
+
+
+
+ Curve %1
+
+
+
+
+ %1 points
+
+
+
+
+ Are you sure you want to reset curve %1 ?
+
+
+
+
+ Editing curve %1
+
+
+
+
+ Not enough free points in EEPROM to store the curve.
+
+
+
+
+ CustomFunctionsPanel
+
+
Switch
-
- Switch used by the expo.
-If blank then the expo is considered to be "ON" all the time.
+
+ Action
-
- Curve/Exponential
+
+ Parameters
-
+
+ Enable
+
+
+
+
+ ON
+
+
+
+
+ Error
+
+
+
+
+ Unable to find sound file %1!
+
+
+
+
+ &Delete
+
+
+
+
+ Delete
+
+
+
+
+ &Copy
+
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+
+
+
+
+ CustomSwitchesPanel
+
+
+ Condition
+
+
+
+
+ V1
+
+
+
+
+ V2
+
+
+
+
+ AND
+
+
+
+
+ Duration
+
+
+
+
+ Delay
+
+
+
+
+
+ LS%1
+
+
+
+
+ &Delete
+
+
+
+
+ Delete
+
+
+
+
+ &Copy
+
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+
+
+
+
+ Dialog
+
+
+ Dialog
+
+
+
+
+ Curve type
+
+
+
+
+ Coefficient
+
+
+
+
+ Both
+
+
+
+
+ x>0
+
+
+
+
+ x<0
+
+
+
+
+ Y at X=0
+
+
+
+
+ Side
+
+
+
+
+ Y at X=-100
+
+
+
+
+ Y at X=100
+
+
+
+
+ Linear
+
+
+
+
+ Single Expo
+
+
+
+
+ Symmetrical f(x)=-f(-x)
+
+
+
+
+ Symmetrical f(x)=f(-x)
+
+
+
+
+ ExpoDialog
+
+
+ Weight
+
+
+
+
+
+ GV
+
+
+
+
+ The source for the mixer
+
+
+
+
+ Input name
+
+
+
+
+ Phase used by the input.
+
+
+
+
+ Flight modes
+
+
+
+
+ 0
+
+
+
+
+ 1
+
+
+
+
+ 2
+
+
+
+
+ 3
+
+
+
+
+ 4
+
+
+
+
+ 5
+
+
+
+
+ 6
+
+
+
+
+ 7
+
+
+
+
+ 8
+
+
+
+
+ Switch
+
+
+
+
+ Switch used by the input.
+If blank then the input is considered to be "ON" all the time.
+
+
+
+
+ The curve used by the input
+
+
+
+
+ Source
+
+
+
+
+ Line name
+
+
+
+
Stick Side
-
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Delay ans Slow</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These values control the speed and delay of the output of the mix. </p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Delay is not zero the actuation of the mix will be delayed by the specified amount of seconds.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Slow is not zero then the speed of the mix will be set by the value specified -> the value states the number of seconds it takes to transit from -100 to 100.</p></body></html>
+
+
+
+
+ Scale
+
+
+
+
+ Include Trim
+
+
+
+
+ No
+
+
+
+
+ Yes
+
+
+
+
Curve
-
- The curve used by the expo
-
-
-
-
+
NEG
-
+
POS
-
+
ALL
-
- DEST -> %1
+
+ Edit %1
+
+
+
+
+ Rud
+
+
+
+
+ Ele
+
+
+
+
+ Thr
+
+
+
+
+ Ail
+
+
+
+
+ FlightMode
+
+
+ Form
+
+
+
+
+ Fade In
+
+
+
+
+ Fade Out
+
+
+
+
+ Name
+
+
+
+
+ Switch
+
+
+
+
+ trim1
+
+
+
+
+ trim2
+
+
+
+
+ trim4
+
+
+
+
+ trim3
+
+
+
+
+ Rud
+
+
+
+
+ Ele
+
+
+
+
+ Thr
+
+
+
+
+ Ail
+
+
+
+
+ Rotary Encoder %1
+
+
+
+
+ GVAR%1
+
+
+
+
+ FlightModes
+
+
+ Flight Mode %1
+
+
+
+
+ (%1)
+
+
+
+
+ (default)
@@ -152,13 +675,13 @@ These will be relevant for all models in the same EEPROM.
-
+
Contrast
-
-
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -168,12 +691,12 @@ p, li { white-space: pre-wrap; }
-
+
Battery Warning
-
+
Battery warning voltage.
This is the threashhold where the battery warning sounds.
@@ -181,260 +704,236 @@ Acceptable values are 5v..10v
-
+
Battery Calibration
-
+
Battery calibration:
This value will be added to the measured battery voltage. Use this value to calibrate the meter with an external meter.
-
+
This is the switch selectrion for turning on the backlight (if installed).
-
+
If this value is not 0, any keypress will turn on the backlight and turn it off after the specified number of seconds.
-
-
+
+
sec
-
+
Inactivity Timer
-
+
If not zero will sound beeps if the transmitter has been left without inputs for the specified number of minutes.
-
+
min
-
- Reverse Throttle Operation
-
-
-
-
- Reverse throttle operation.
-If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
-
-
-
-
-
-
+
Owner Name
-
+
-
-
-
+
+
Off
-
- Switches Up
-
-
-
-
- Switches Down
-
-
-
-
+
Trainer
-
-
+
+
PPM 1
+
-
-
-
+
+
chn1
+
-
-
-
+
+
chn2
+
-
-
-
+
+
chn3
+
-
-
-
+
+
chn4
-
+
Mode
-
+
Telemetry NO DATA Alarm
-
+
Show Owner Name on Splash
-
+
Sound Mode
-
+
Beeper
-
+
Speaker Pitch (spkr only)
-
+
Only Alarms
-
-
+
+
All
-
+
Pot Scrolling Enable
-
+
Bandgap Measuring Enable
-
+
THR
-
+
RUD
-
+
ELE
-
+
AIL
-
+
GEA
-
+
ID0
-
+
ID1
-
+
ID2
-
+
Beeper Length
-
-
+
+
X-Short
-
-
+
+
Short
-
-
+
+
X-Long
-
+
Haptic Mode
-
+
Alarms Only
-
+
Haptic Length
-
+
GPS Coordinates
@@ -449,102 +948,102 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
-
+
Speaker
-
+
BeeperVoice
-
+
SpeakerVoice
-
+
hh° (N/S) mm' ss''.dd
-
+
NMEA
-
+
Timeshift from UTC
-
+
LCD Display Type
-
+
Standard
-
+
Optrex
-
+
Speaker Volume
-
+
Haptic Strength
-
+
BackLight Brightness
-
+
RotEnc Navigation
-
+
BackLight Auto OFF after
-
+
BackLight Switch
-
+
BackLight On Stick Move
-
+
Country Code
-
+
America
-
+
Japan
-
+
Europe
@@ -559,333 +1058,355 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
-
+
Measurement Units
-
+
Beep volume
-
+
Wav volume
-
+
Vario volume
-
+
Background volume
-
+
PPMSim
-
+
4800 Baud
-
+
9600 Baud
-
+
14400 Baud
-
+
19200 Baud
-
+
38400 Baud
-
+
57600 Baud
-
+
76800 Baud
-
+
115200 Baud
-
+
FrSky Internal Alarm
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen. This function cannot be disabled by the radio.
-
+
StickScroll
-
+
FAI Mode
-
+
Metric
-
+
Imperial
-
+
BackLight Invert
-
+
CrossTrim
-
+
Readonly Unlock
-
+
SC
-
+
SE
-
+
SA
-
+
SF
-
+
SH
-
+
SD
-
+
SB
-
+
SG
-
+
Input
-
+
Weight
-
+
Switch
+
-
-
-
+
+
+= (Sum)
+
-
-
-
+
+
:= (Replace)
-
-
+
+
PPM 2
-
-
+
+
PPM 3
-
-
+
+
PPM 4
-
+
Telemetry
-
+
RSSI Alarm 1
-
-
+
+
----
-
-
+
+
Yellow
-
-
+
+
Orange
-
-
+
+
Red
-
+
RSSI Alarm 2
-
+
NO DATA Alarm
-
+
POT 4
-
-
+
+
Negative span
-
-
+
+
Mid value
-
-
+
+
Positive span
-
+
STICK 1
-
+
STICK 2
-
+
Current
-
+
+
+ Pot (normal)
+
+
+
+
+
+ Multipos Switch
+
+
+
+
+ S1 Type
+
+
+
+
+ S2 Type
+
+
+
+
STICK 3
-
+
STICK 4
-
+
POT 1
-
+
POT 2
-
+
POT 3
-
+
Battery
-
+
PPM Multiplier
-
+
Timer Beeps
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -894,22 +1415,22 @@ p, li { white-space: pre-wrap; }
-
+
Every Minute
-
+
Beeps at 30, 15, 10, and down from5 seconds
-
+
Count Down to Zero
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -918,71 +1439,65 @@ p, li { white-space: pre-wrap; }
-
+
Flash on beep
-
+
Alarm Warning
-
-
+
+
Quiet
-
-
+
+
No Keys
-
-
+
+
Normal
-
-
+
+
Long
-
+
Input Filter
-
+
Single
-
+
Oversample
-
+
Filter
-
- Throttle Startup Warning
-
-
-
-
-
-
-
-
-
+
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -997,30 +1512,27 @@ p, li { white-space: pre-wrap; }
-
- Switch Startup Warning
-
-
-
-
+
Memory Startup Warning
-
+
Beeper Mode
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
Beeper volume
0 - Quiet. No beeps at all.
@@ -1031,24 +1543,24 @@ p, li { white-space: pre-wrap; }
-
+
Channel Order (For Templates)
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
-
+
Stick Mode
-
+
Mode selection:
Mode 1:
@@ -1071,974 +1583,1320 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
-
+
Mode 2 (RUD THR ELE AIL)
-
+
Mode 3 (AIL ELE THR RUD)
-
+
Mode 4 (AIL THR ELE RUD)
-
+
Show Splash Screen on Startup
-
-
+
+
Show splash screen on startup
-
+
Calibration
-
+
v
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen.
This function cannot be disabled by the radio.
Are you sure ?
-
-
+
+
Warning
-
+
Wrong data in profile, radio calibration was not retrieved
-
+
Wrong data in profile, hw related parameters were not retrieved
-
+
Do you want to store calibration in %1 profile<br>overwriting existing calibration?
-
+
Calibration and HW parameters saved.
+
+ Heli
+
+
+ Form
+
+
+
+
+ Invert Elevator
+
+
+
+
+ Invert Aileron
+
+
+
+
+ Invert Collective
+
+
+
+
+ Invert
+
+
+
+
+ Off
+
+
+
+
+ 120
+
+
+
+
+ 120X
+
+
+
+
+ 140
+
+
+
+
+ 90
+
+
+
+
+ Collective
+
+
+
+
+ Swash Type
+
+
+
+
+ Swash Ring
+
+
+
+
+ InputsPanel
+
+
+
+ Move Up
+
+
+
+
+
+ Ctrl+Up
+
+
+
+
+
+ Move Down
+
+
+
+
+
+ Ctrl+Down
+
+
+
+
+ Clear All Settings
+
+
+
+
+ Source(%1)
+
+
+
+
+ No Trim
+
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ Not enough available inputs!
+
+
+
+
+ Delete Selected Inputs?
+
+
+
+
+ &Add
+
+
+
+
+ Ctrl+A
+
+
+
+
+ &Edit
+
+
+
+
+ Enter
+
+
+
+
+ &Delete
+
+
+
+
+ Delete
+
+
+
+
+ &Copy
+
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+
+
+
+
+ Du&plicate
+
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Inputs?
+
+
+
+
+ Really clear all the inputs?
+
+
+
MainWindow
-
-
-
-
+
+
+
+
File loaded
-
-
-
-
-
+
+
+
+
+
Save As
-
-
+
+
No updates available at this time.
-
-
-
-
-
+
+
+
+
+
Unable to check for updates.
-
+
Checking for updates
-
+
Executable (*.exe)
-
+
Would you like to launch the installer?
-
+
Do you want to write the firmware to the transmitter now ?
-
+
Firmware %1 does not seem to have ever been downloaded.
Version %2 is available.
Do you want to download it now ?
-
+
Open
-
-
+
+
File saved
-
+
+ OpenTX Home Page: <a href='%1'>%1</a>
+
+
+
+
+ The OpenTX Companion project was originally forked from <a href='%2'>eePe</a>
+
+
+
+
+ If you've found this program useful, please support by <a href='%1'>donating</a>
+
+
+
+
+ Version %1, %3
+
+
+
+
Copyright
-
- donating
-
-
-
-
-
-
+
+
&%1 %2
-
- %1 %2
-
-
-
-
+
&New
-
+
Create a new file
-
+
&Open...
-
+
Open an existing file
-
+
&Save
-
+
Save the document to disk
-
+
Save &As...
-
+
Save the document under a new name
-
- &Preferences...
-
-
-
-
+
Edit general preferences
-
+
&Check for updates...
-
- If you've found this program useful, please support by
-
-
-
-
+
Display previous warning again at startup ?
-
+
New release available
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
-
-
-
-
-
+
+
+
+
+
Error opening file %1:
%2.
-
+
Compilation server termporary failure, try later
-
+
Display previous message again at startup ?
-
+
+ A new release of Companion is available please check the OpenTX website!
+
+
+
+
Firmware does not longer fit in the Tx, due to selected firmware options
-
+
Compilation server temporary failure, try later
-
-
+
+
Compilation server too busy, try later
-
-
+
+
Unknown server failure, try later
-
+
Firmware does not fit in the Tx, due to selected firmware options
-
-
+
+
Yes
-
-
+
+
No
-
-
+
+
Release Notes
-
-
+
+
Do you want to download release %1 now ?
-
+
A new version of %1 firmware is available (current %2 - newer %3).
Do you want to download it now ?
-
+
Ignore this version (r%1)?
-
+
Release notes contain very important informations. Do you want to see them now ?
-
+
Firmware updates
-
+
Current firmware does not provide release notes informations.
-
+
Cannot write file %1:
%2.
-
-
-
-
-
+
+
+
+
+
Taranis radio not found
-
-
-
-
+
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
-
+
Write Models and settings from %1 to the Tx?
-
-
-
+
+
+
Backup is impossible
-
-
-
+
+
+
The backup dir set in preferences does not exist
-
-
+
+
Warning
-
+
Conversion failed
-
+
Restore failed
-
+
Backup failed
-
- Version %1 (revision %2), %3
-
-
-
-
+
&loadBackup...
-
+
Load backup from file
-
+
Lo&gs
-
+
Ctrl+G
-
+
Open log file
-
+
Contributors &List...
-
+
ChangeLog...
-
+
Firmware ChangeLog...
-
+
Show firmware changelog
-
+
Compare...
-
+
Compare models
-
- Customize your &TX...
-
-
-
-
+
Customize the splash screen of your TX
-
+
E&xit
-
+
Exit the application
-
+
Cu&t
-
+
Cut the current selection's contents to the clipboard
-
+
&Copy
-
+
Copy the current selection's contents to the clipboard
-
+
&Paste
-
+
Paste the clipboard's contents into the current selection
-
+
Ctrl+Alt+W
-
+
Ctrl+Alt+R
-
- &Configure...
-
-
-
-
+
Configure software for reading from and writing to the transmitter
-
+
&List programmers
-
+
List available programmers
-
+
&Fuses...
-
+
Show fuses dialog
-
+
&Simulate
-
+
Alt+S
-
+
Simulate selected model.
-
+
&Print
-
+
Ctrl+P
-
+
Print current model.
-
- Cl&ose
-
-
-
-
- Close the active window
-
-
-
-
- Close &All
-
-
-
-
- Close all the windows
-
-
-
-
- &Tile
-
-
-
-
- Tile the windows
-
-
-
-
- &Cascade
-
-
-
-
- Cascade the windows
-
-
-
-
- Ne&xt
-
-
-
-
- Move the focus to the next window
-
-
-
-
- Pre&vious
-
-
-
-
- Move the focus to the previous window
-
-
-
-
+
&About
-
+
Show the application's About box
-
-
+
+
Recent Files
-
+
+ Set Menu Language
+
+
+
+
&Read/Write
-
+
Write
-
+
Unable to find file %1!
-
+
Error reading file %1:
%2.
-
- Switch layout Left/Right
-
-
-
-
+
&File
-
- Switch layout direction
-
-
-
-
-
-
+
+
+
Companion - Models and Settings Editor - %1 - profile %2
-
-
-
-
+
+
+
+
Companion - Models and Settings Editor - %1
-
+
A new version of Companion is available (version %1)<br>Would you like to download it?
-
- A new release of Companion is available please check the repository
-
-
-
-
-
+
+
Compilation server requires registration, please check OpenTX web site
-
-
-
-
+
+ The selected language will be used the next time you start Companion.
+
+
+
+
+
+
+ OK
+
+
+
+
+ The new theme will be loaded the next time you start Companion.
+
+
+
+
+ The icon size will be used the next time you start Companion.
+
+
+
+
+
+
+
Read Models and Settings From Tx
-
+
The file %1
has not been recognized as a valid Models and Settings file
Write anyway ?
-
-
-
-
-
-
+
+
+
+
+
+
Backup Models and Settings From Tx
-
+
Cannot check Models and Settings compatibility! Continue anyway?
-
+
The transmitter firmware belongs to another product family, check file and preferences!
-
+
The transmitter firmware is outdated, please upgrade!
-
+
Write Models and Settings To Tx
-
-
+
+
Write Firmware To Tx
-
+
Cannot convert Models and Settings for use with this firmware, original data will be used
-
+
Restore Models and Settings To Tx
-
+
Could not restore Models and Settings to TX. The models and settings data file can be found at: %1
-
+
Firmware write failed
-
+
Could not write firmware to to transmitter. The models and settings data file can be found at: %1
-
+
Cannot backup existing Models and Settings from TX. Firmware write process aborted
-
+
Save transmitter Models and Settings to File
-
+
Impossible to identify the radio on your system, please verify that the eeprom disk is connected.
-
+
Read Tx Firmware to File
-
- The Companion project was originally forked from eePe
-
-
-
-
+
About Companion
-
+
+ &General Preferences...
+
+
+
+
Check for new version of Companion
-
+
Show Companion contributors list
-
+
Show Companion changelog
-
+
+ Configure transmitter start screen...
+
+
+
+
&Write Models and Settings To Tx
-
+
Write Models and Settings to transmitter
-
+
&Read Models and Settings From Tx
-
+
Read Models and Settings from transmitter
-
+
Write Firmware
-
+
Write firmware to transmitter
-
+
Write Models and Settings from file to Tx
-
+
Write Models and Settings from file to transmitter
-
+
Save transmitter Models and Settings to file
-
+
Save the Models and Settings from the transmitter to a file
-
+
Read Firmware
-
+
Read firmware from transmitter
-
-
- Firmware Profiles
+
+ &Configure connection software...
+
+
+
+
+ Classic
+
+
+
+
+ The multicolor classical Companion icon theme
+
+
+
+
+ A monochrome black icon theme
+
+
+
+
+ A monochrome white icon theme
+
+
+
+
+ A monochrome blue icon theme
+
+
+
+
+ Small
+
+
+
+
+ Use small toolbar icons
+
+
+
+
+ Use normal size toolbar icons
+
+
+
+
+ Normal
- &Edit
+ Use big toolbar icons
-
-
- Invalid Models and Settings File %1
+
+ Big
-
- Invalid binary Models and Settings File %1
+
+ Use huge toolbar icons
-
- &Window
+
+ Huge
+
+
+
+
+ System default language
+
+
+
+
+ Use system default language in menus
+
+
+
+
+ Czech
+
+
+
+
+ Use Czech in menus
+
+
+
+
+ German
+
+
+
+
+ Use German in menus
+
+
+
+
+ English
+
+
+
+
+ Use English in menus
+
+
+
+
+ French
+
+
+
+
+ Use French in menus
+
+
+
+
+ Italian
- &Help
+ Use Italian in menus
+
+
+
+
+ Hebrew
+
+
+
+
+ Use Hebrew in menus
+
+
+
+
+ Polish
+
+
+
+
+ Use Polish in menus
+
+
+
+
+ Portuguese
+
+
+
+
+ Use Portuguese in menus
+
+
+
+
+ Swedish
+
+
+
+
+ Use Swedish in menus
+
+
+
+
+ Russian
+
+
+
+
+ Use Russian in menus
+
+
+
+
+
+ Firmware Profiles
+ Set Icon Theme
+
+
+
+
+ Set Icon Size
+
+
+
+
+ &Edit
+
+
+
+
+ &Settings
+
+
+
+
+
+ Invalid Models and Settings File %1
+
+
+
+
+ Invalid binary Models and Settings File %1
+
+
+
+
+ &Help
+
+
+
+
File
-
+
Edit
-
+
Help
-
+
Ready
@@ -2046,42 +2904,42 @@ Write anyway ?
MdiChild
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
-
+
Editing model %1:
-
-
+
+
Unable to find file %1!
-
-
+
+
Error reading file %1:
%2.
@@ -2092,141 +2950,141 @@ Write anyway ?
-
-
-
-
+
+
+
+
Error opening file %1:
%2.
-
-
+
+
Invalid EEPROM File %1
-
+
Invalid binary EEPROM File %1
-
-
-
-
+
+
+
+
Save As
-
-
-
-
+
+
+
+
Cannot write file %1:
%2.
-
+
Do you want to use model wizard?
-
-
-
+
+
+
Companion
-
+
Ask this question again ?
-
+
%1 has been modified.
Do you want to save your changes?
-
+
Backup is impossible
-
+
The backup dir set in preferences does not exist
-
-
-
+
+
+
Taranis radio not found
-
-
-
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
-
-
-
+
+
+
Backup EEPROM From Tx
-
+
Cannot check eeprom compatibility! Continue anyway?
-
-
+
+
Warning
-
+
Firmware in radio is of a different family of eeprom written, check file and preferences!
-
+
Firmware in flash is outdated, please upgrade!
-
+
Write EEPROM To Tx
-
+
Open
-
+
Invalid binary backup File %1
-
-
+
+
Error writing file %1:
%2.
-
+
Cannot write temporary file!
@@ -2234,134 +3092,121 @@ Do you want to save your changes?
MixerDialog
-
+
Dialog
-
+
Source
-
-
-
-
+
+
+
+
The source for the mixer
-
+
Weight
-
- Fix Offset
-
-
-
-
-
-
+
+
+
GV
-
+
Switch used by the mix.
If blank then the mix is considered to be "ON" all the time.
The value of the mixer is multiplied by this value and divided by 100.
-
-
-
-
+
Offset
-
+
Include Trim
-
+
Curve
-
+
The curve used by the mix
-
+
Switch
-
+
Yes
-
+
No
-
+
Warning
-
+
Name
-
- Curve/Differential
-
-
-
-
+
Mixer warning.
Setting this value will cause a beep to be emmitted when this value is active.
-
+
OFF
-
+
1 Beep
-
+
2 Beep
2 Beeo
-
+
3 Beep
-
+
Multiplex
-
+
Multiplexer
This determines how mixer values are added.
@@ -2372,100 +3217,95 @@ This determines how mixer values are added.
-
+
ADD
-
+
MULTIPLY
-
+
REPLACE
-
+
Flight modes
-
+
Include DR/Expo
-
+
0
-
+
1
-
+
2
-
+
3
-
+
4
-
+
5
-
+
6
-
+
7
-
+
8
-
- Enable FM Trim
-
-
-
-
+
Delay
-
+
Slow
-
+
Up
-
-
-
-
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -2480,2630 +3320,552 @@ p, li { white-space: pre-wrap; }
-
+
Down
-
+
DEST -> X%1
-
+
DEST -> CH%1%2
-
-
- FM Trim Value
-
-
-
-
+
Rud
-
+
Ele
-
+
Thr
-
+
Ail
+
+ MixesPanel
+
+
+
+ Move Up
+
+
+
+
+
+ Ctrl+Up
+
+
+
+
+
+ Move Down
+
+
+
+
+
+ Ctrl+Down
+
+
+
+
+ Clear Mixes
+
+
+
+
+
+
+ X%1
+
+
+
+
+
+
+ CH%1%2
+
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ No Trim
+
+
+
+
+ No DR/Expo
+
+
+
+
+ Offset(%1)
+
+
+
+
+ Delay(u%1:d%2)
+
+
+
+
+ Slow(u%1:d%2)
+
+
+
+
+ Warn(%1)
+
+
+
+
+ Not enough available mixers!
+
+
+
+
+ Delete Selected Mixes?
+
+
+
+
+ &Add
+
+
+
+
+ Ctrl+A
+
+
+
+
+ &Edit
+
+
+
+
+ Enter
+
+
+
+
+ &Delete
+
+
+
+
+ Delete
+
+
+
+
+ &Copy
+
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+
+
+
+
+ Ctrl+V
+
+
+
+
+ Du&plicate
+
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Mixes?
+
+
+
+
+ Really clear all the mixes?
+
+
+
ModelEdit
-
+
Dialog
-
+
Setup
-
- Model Name
+
+ Heli
-
-
- Count Down
+
+ Inputs
-
-
- Count Up
+
+ Logical Switches
-
-
- mm:ss
+
+ Switch Assignment
-
- Trim Increment
-
-
-
-
- Exponential
-
-
-
-
- Extra Fine
-
-
-
-
- Fine
-
-
-
-
- Medium
-
-
-
-
- Coarse
-
-
-
-
- Throttle Trim
-
-
-
-
- Throttle Expo
-
-
-
-
- Center beep
-
-
-
-
-
-
-
-
-
-
-
-
- RUD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ELE
-
-
-
-
-
-
-
-
- THR
-
-
-
-
-
-
-
-
-
-
-
-
-
- AIL
-
-
-
-
- P1
-
-
-
-
- P2
-
-
-
-
- P3
-
-
-
-
- Pulse Shift (polarity)
-
-
-
-
-
-
- Positive
-
-
-
-
-
-
- Negative
-
-
-
-
-
-
- Protocol
-
-
-
-
-
-
+
Channels
-
-
-
-
-
-
- ch
-
-
-
-
-
-
- usec
-
-
-
-
- Extended Limits
-
-
-
-
-
- Heli Setup
-
-
-
-
- Swash Type
-
-
-
-
-
- Off
-
-
-
-
- 120
-
-
-
-
- 120X
-
-
-
-
- 140
-
-
-
-
- 90
-
-
-
-
- Collective
-
-
-
-
- Swash Ring
-
-
-
-
- Invert Elevator
-
-
-
-
- Invert Aileron
-
-
-
-
- Invert Collective
-
-
-
-
+
Mixes
-
- Limits
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- INV
-
-
-
-
-
-
- Channel
-
-
-
-
-
-
- Offset
-
-
-
-
-
-
-
-
- Min
-
-
-
-
-
-
-
-
- Max
-
-
-
-
-
-
- Invert
-
-
-
-
+
Curves
-
- Curve 1
-
-
-
-
- Curve 2
-
-
-
-
- Timer1
-
-
-
-
- Timer2
-
-
-
-
-
-
- PPM delay
-
-
-
-
- Extended Trims
-
-
-
-
- Throttle2Trig
-
-
-
-
-
-
- PPM Frame Length
-
-
-
-
-
-
- mSec
-
-
-
-
-
-
-
-
-
-
-
-
- Fade In
-
-
-
-
-
-
-
-
-
-
-
-
- Fade Out
-
-
-
-
-
-
-
-
-
-
-
-
- trim2
-
-
-
-
-
-
-
-
-
-
-
-
- trim1
-
-
-
-
-
- DSM Type
-
-
-
-
-
- LP4/LP5
-
-
-
-
-
- DSM2only
-
-
-
-
-
- DSM2/DSMX
-
-
-
-
-
- RX Number
-
-
-
-
- Disable Throttle Warning
-
-
-
-
- Switch startup Warning
-
-
-
-
- Instant Trim
-
-
-
-
-
- CH01
-
-
-
-
-
- CH02
-
-
-
-
-
- CH03
-
-
-
-
-
- CH04
-
-
-
-
-
- CH05
-
-
-
-
-
- CH06
-
-
-
-
-
- CH07
-
-
-
-
-
- CH08
-
-
-
-
-
- CH09
-
-
-
-
-
- CH10
-
-
-
-
-
- CH11
-
-
-
-
-
- CH12
-
-
-
-
-
- CH13
-
-
-
-
-
- CH14
-
-
-
-
-
- CH15
-
-
-
-
-
- CH16
-
-
-
-
- REa
-
-
-
-
- REb
-
-
-
-
- 3POS
-
-
-
-
-
- Check
-
-
-
-
-
-
- ON
-
-
-
-
-
- OFF
-
-
-
-
- GEA
-
-
-
-
- ID0
-
-
-
-
- ID1
-
-
-
-
- ID2
-
-
-
-
-
- TriggerB
-
-
-
-
- Model Voice
-
-
-
-
-
-
-
-
-
-
-
-
- trim4
-
-
-
-
-
-
-
-
-
-
-
-
- trim3
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR1
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR2
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR3
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR4
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR5
-
-
-
-
-
-
-
-
-
-
-
-
- Rotary encoder B
-
-
-
-
-
-
-
-
-
-
-
-
- Rotary encoder A
-
-
-
-
-
- Sym
-
-
-
-
- Curve 3
-
-
-
-
- Curve 4
-
-
-
-
- Curve 5
-
-
-
-
- Curve 6
-
-
-
-
- Curve 7
-
-
-
-
- Curve 8
-
-
-
-
- Curve 9
-
-
-
-
- Curve 10
-
-
-
-
- Curve 11
-
-
-
-
- Curve 12
-
-
-
-
- Curve 13
-
-
-
-
- Curve 14
-
-
-
-
- Curve 15
-
-
-
-
- Curve 16
-
-
-
-
-
- Curve type
-
-
-
-
- 3 points
-
-
-
-
- 3 points custom
-
-
-
-
- 5 points
-
-
-
-
- 5 points custom
-
-
-
-
- 9 points
-
-
-
-
- 9 points custom
-
-
-
-
- 17 points
-
-
-
-
- 17 points custom
-
-
-
-
- Clear All Curves
- Clear All Mixes
-
-
-
-
-
- Duration
-
-
-
-
-
- Delay
-
-
-
-
-
- Param
-
-
-
-
+
Telemetry
-
- Volt source
-
-
-
-
- Current source
-
-
-
-
- NONE
-
-
-
-
-
-
-
- A1
-
-
-
-
-
- FAS
-
-
-
-
- CEL
-
-
-
-
-
- Unit
-
-
-
-
-
- Raw (-)
-
-
-
-
- Telemetry screen 1
-
-
-
-
-
-
- Custom Screen Type
-
-
-
-
-
-
- Nums
-
-
-
-
-
-
- Bars
-
-
-
-
- Telemetry screen 2
-
-
-
-
-
- Alarm 1
-
-
-
-
- ModelSetup
-
-
-
-
- Throttle Source
-
-
-
-
- SB
-
-
-
-
- SD
-
-
-
-
- SA
-
-
-
-
- SC
-
-
-
-
- SG
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- RS
-
-
-
-
- Reverse Throttle Operation
-
-
-
-
- Reverse throttle operation.
-If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
-
-
-
-
-
-
- Master
-
-
-
-
- Slave
-
-
-
-
- Trainer Mode
-
-
-
-
- Master/Trainer Port
-
-
-
-
-
-
- Start
-
-
-
-
-
- Polarity
-
-
-
-
- RF Module 1
-
-
-
-
- RF Module 2
-
-
-
-
-
- Persistent
-
-
-
-
-
- (00:00:00)
-
-
-
-
-
- MinuteBeep
-
-
-
-
-
- CountDownBeep
-
-
-
-
- Model Image
-
-
-
-
- Failsafe
-
-
-
-
- External module
-
-
-
-
-
- Failsafe Mode
-
-
-
-
-
- Hold
-
-
-
-
-
- Custom
-
-
-
-
-
- No Pulses
-
-
-
-
- Internal Module
-
-
-
-
+
Flight Modes
-
- Flight Mode 0 (Default)
-
-
-
-
-
-
-
-
-
-
-
-
- Flight Mode Name
-
-
-
-
- GVAR6
-
-
-
-
- GVAR7
-
-
-
-
- FM 1
-
-
-
-
- FM 2
-
-
-
-
- FM 3
-
-
-
-
- FM 4
-
-
-
-
- FM 5
-
-
-
-
- FM 6
-
-
-
-
- FM 7
-
-
-
-
- FM 8
-
-
-
-
- Sticks
-
-
-
-
- Show channels names in mixes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ---
-
-
-
-
-
- Center
-
-
-
-
- Curve name
-
-
-
-
- Curve Creator
-
-
-
-
- Y at X=100
-
-
-
-
- Both
-
-
-
-
- x>0
-
-
-
-
- x<0
-
-
-
-
- Linear
-
-
-
-
- Single Expo
-
-
-
-
- Symmetrical f(x)=-f(-x)
-
-
-
-
- Symmetrical f(x)=f(-x)
-
-
-
-
- Apply
-
-
-
-
- Side
-
-
-
-
- Y at X=-100
-
-
-
-
- Y at X=0
-
-
-
-
- Coefficient
-
-
-
-
- CS9
-
-
-
-
- CSF
-
-
-
-
- CSD
-
-
-
-
-
- AND
-
-
-
-
- CS6
-
-
-
-
- CS1
-
-
-
-
- CS8
-
-
-
-
- CS7
-
-
-
-
- CSA
-
-
-
-
- CSB
-
-
-
-
- CSC
-
-
-
-
- CS5
-
-
-
-
- CS3
-
-
-
-
- CS2
-
-
-
-
- CSE
-
-
-
-
- CSG
-
-
-
-
- CS4
-
-
-
-
- CST
-
-
-
-
- CSM
-
-
-
-
- CSP
-
-
-
-
- CSH
-
-
-
-
- CSO
-
-
-
-
- CSN
-
-
-
-
- CSQ
-
-
-
-
- CSR
-
-
-
-
- CSS
-
-
-
-
- CSL
-
-
-
-
- CSK
-
-
-
-
- CSJ
-
-
-
-
- CSI
-
-
-
-
- CSU
-
-
-
-
- CSV
-
-
-
-
- CSW
-
-
-
-
-
- Enable
-
-
-
-
- Altimetry / Vario
-
-
-
-
- Sink Max
-
-
-
-
- Climb Max
-
-
-
-
- Sink Min
-
-
-
-
- Climb Min
-
-
-
-
- Vario source
-
-
-
-
- Vario limits
-
-
-
-
- Use GPS as altitude source
-
-
-
-
- Display altitude in toolbar
-
-
-
-
-
-
-
-
-
- ----
-
-
-
-
-
-
-
-
-
- Yellow
-
-
-
-
-
-
-
-
-
- Orange
-
-
-
-
-
-
-
-
-
- Red
-
-
-
-
-
-
-
- <
-
-
-
-
-
-
-
- >
-
-
-
-
-
-
- Alarm 2
-
-
-
-
-
- Min Value
-
-
-
-
-
-
-
- A2
-
-
-
-
-
-
-
- Function
-
-
-
-
- Custom switches
-
-
-
-
-
- V1
-
-
-
-
-
- V2
-
-
-
-
- Safety Switches
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Switch
-
-
-
-
- Value
-
-
-
-
-
- Max Value
-
-
-
-
- RSSI
-
-
-
-
- Alarm 1
-
-
-
-
- Serial Protocol
-
-
-
-
- Units
-
-
-
-
- None
-
-
-
-
- FrSky Sensor Hub
-
-
-
-
- Metric
-
-
-
-
- Custom Functions
-
-
-
-
- Imperial
-
-
-
-
- 2
-
-
-
-
- 3
-
-
-
-
- 4
-
-
-
-
- Blades
-
-
-
-
- Alti
-
-
-
-
- Alti+
-
-
-
-
- Vario
-
-
-
-
-
- Volts (V)
-
-
-
-
-
- Amps (A)
-
-
-
-
-
- Speed (m/s or ft/s)
-
-
-
-
-
- Speed (km/h or miles/h)
-
-
-
-
-
- Meters (m or ft)
-
-
-
-
-
- Temp (°)
-
-
-
-
-
- Fuel (%)
-
-
-
-
-
- mAmps (mA)
-
-
-
-
-
-
- Source
-
-
-
-
-
-
- Gauge
-
-
-
-
-
-
- Gauge 1
-
-
-
-
-
-
- Gauge 2
-
-
-
-
-
-
- Gauge 3
-
-
-
-
-
-
- Gauge 4
-
-
-
-
- Telemetry screen 3
-
-
-
-
- Templates
-
-
-
-
+
Simulate
-
-
-
-
- Move Up
-
-
-
-
-
-
-
- Ctrl+Up
-
-
-
-
-
-
-
- Move Down
-
-
-
-
-
-
-
- Ctrl+Down
-
-
-
-
- Clear Expo Settings
-
-
-
-
- Clear Mixes
-
-
-
-
- S1
-
-
-
-
- S2
-
-
-
-
- LS
-
-
-
-
- Weight
- Weight(+%1%)
-
-
-
-
-
- Flight modes
-
-
-
-
-
- Flight mode
-
-
-
-
-
-
- CH%1%2
-
-
-
-
-
- Expo
-
-
-
-
- Rud
-
-
-
-
- Ele
-
-
-
-
- Thr
-
-
-
-
- Ail
-
-
-
-
-
- DISABLED
-
-
-
-
-
- Curve
-
-
-
-
-
-
- X%1
-
-
-
-
- No Trim
-
-
-
-
- No DR/Expo
-
-
-
-
- FMTrim
-
-
-
-
- Diff
-
-
-
-
- Delay(u%1:d%2)
-
-
-
-
- Slow(u%1:d%2)
-
-
-
-
- Warn(%1)
-
-
-
-
-
-
-
- CH %1
-
-
-
-
- CF%1
-
-
-
-
- Error
-
-
-
-
- Unable to find sound file %1!
-
-
-
-
- Winged Shadow How High
-
-
-
-
- Winged Shadow How High (not supported)
-
-
-
-
-
- Range
-
-
-
-
- Simple 4-CH
-
-
-
-
- T-Cut
-
-
-
-
- Sticky T-Cut
-
-
-
-
- V-Tail
-
-
-
-
- Elevon\Delta
-
-
-
-
- Heli Setup with gyro gain control
-
-
-
-
- Gyro gain control
-
-
-
-
- Heli Setup (Futaba's channel assignment style)
-
-
-
-
- Heli Setup with gyro gain control (Futaba's channel assignment style)
-
-
-
-
- Gyro gain control (Futaba's channel assignment style)
-
-
-
-
- Servo Test
-
-
-
-
- MultiCopter
-
-
-
-
- Use Model Config Wizard
-
-
-
-
- Editing curve %1
-
-
-
-
- Not enough available mixers!
-
-
-
-
- Not enough available expos!
-
-
-
-
- Delete Selected Mixes?
-
-
-
-
- Delete Selected Expos?
-
-
-
-
-
- &Add
-
-
-
-
-
- Ctrl+A
-
-
-
-
-
- &Edit
-
-
-
-
-
- Enter
-
-
-
-
-
-
-
- &Delete
-
-
-
-
-
-
-
- Delete
-
-
-
-
-
-
-
- &Copy
-
-
-
-
-
-
-
- Ctrl+C
-
-
-
-
-
-
-
- &Cut
-
-
-
-
-
-
-
- Ctrl+X
-
-
-
-
-
-
-
- &Paste
-
-
-
-
-
-
-
- Ctrl+V
-
-
-
-
-
- Du&plicate
-
-
-
-
-
- Ctrl+U
-
-
-
-
- Are you sure you want to delete curve %1 ?
-
-
-
-
- Apply Template?
-
-
-
-
- Apply template "%1"?
-
-
-
-
- Clear Expos?
-
-
-
-
- Really clear all the expos?
-
-
-
-
-
-
- Clear Mixes?
-
-
-
-
- Really clear all the mixes?
-
-
-
-
+
Clear Curves?
-
+
Really clear all the curves?
-
-
-
-
-
- AIL2
-
-
-
-
-
-
-
- ELE2
-
-
-
-
-
-
-
-
-
- FLAPS
-
-
-
-
-
-
-
-
-
- FLAP%1
-
-
-
-
-
-
-
- PITCH
-
-
-
-
-
-
-
-
-
-
-
- GYRO
-
-
-
-
-
- SPOIL
-
-
-
-
-
- SPOIL%1
-
-
-
-
-
- RUD2
-
-
-
-
- Really clear existing mixes on CH6?
-
-
-
-
- Really clear existing mixes on CH5?
-
-
-
-
- Not enough free points in eeprom to store the curve.
-
-
ModelsListWidget
-
+
&Edit
-
+
&Restore from backup
-
+
&Model Wizard
-
+
&Delete
-
+
Delete
-
+
&Copy
-
+
Ctrl+C
-
+
&Cut
-
+
Ctrl+X
-
+
&Paste
-
+
Ctrl+V
-
+
D&uplicate
-
+
Ctrl+U
-
+
&Use as default
-
+
P&rint model
-
+
Alt+R
-
+
Alt+S
-
+
&Simulate model
-
+
General Settings
-
+
Delete Selected Models?
-
-
+
+
Cannot delete default model.
-
+
Cannot cut default model.
-
+
Do you want to overwrite TX general settings?
-
+
You are pasting on an not empty model, are you sure?
You are pasting on an not empty model, are you sure ?
-
+
No free slot available, cannot duplicate
+
+ Module
+
+
+ Form
+
+
+
+
+ Failsafe Mode
+
+
+
+
+ Start
+
+
+
+
+ PPM delay
+
+
+
+
+ usec
+
+
+
+
+ Negative
+
+
+
+
+ Positive
+
+
+
+
+ RX Number
+
+
+
+
+ Master
+
+
+
+
+ Slave
+
+
+
+
+ Polarity
+
+
+
+
+ Trainer Mode
+
+
+
+
+ mSec
+
+
+
+
+ PPM Frame Length
+
+
+
+
+ Label
+
+
+
+
+
+ ch
+
+
+
+
+ Channels
+
+
+
+
+ Hold
+
+
+
+
+ Custom
+
+
+
+
+ No Pulses
+
+
+
+
+ Failsafe Positions
+
+
+
+
+ Protocol
+
+
+
+
+ ModulePanel
+
+
+ Trainer Output
+
+
+
+
+ Internal Radio System
+
+
+
+
+ External Radio Module
+
+
+
QObject
@@ -5114,1950 +3876,1652 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
-
+
+ Input%1
+
+
+
+
+ Polish
+
+
+
+
+ CH%1
+
+
+
+
No
-
+
RotEnc A
-
+
Rot Enc B
-
+
Rot Enc C
-
+
Rot Enc D
-
+
Rot Enc E
-
+
Safety %1
-
+
Trainer
-
+
Trainer RUD
-
+
Trainer ELE
-
+
Trainer THR
-
+
Trainer AIL
-
+
Instant Trim
-
+
Play Sound
-
+
Start Logs
-
+
Play Haptic
-
-
+
+
---
-
+
Rud Trim
-
+
Ele Trim
-
+
Thr Trim
-
+
Ail Trim
-
+
Rot Enc
-
+
English
-
+
French
-
+
Italian
-
+
German
-
+
Czech
-
+
Slovak
-
+
Spanish
-
+
Portuguese
-
+
Swedish
-
- CH
-
-
-
-
-
+
+
No repeat
-
+
%1 sec
-
+
Reset
-
+
Vario
-
+
Play Track
-
+
Play Both
-
+
Play Value
-
+
Volume
-
+
Backlight
-
+
Background Music
-
+
Background Music Pause
-
- Adjust GV1
-
-
-
-
- Adjust GV2
-
-
-
-
- Adjust GV3
-
-
-
-
- Adjust GV4
-
-
-
-
- Adjust GV5
-
-
-
-
+
Delay %1 sec
-
+
Duration %1 sec
-
-
+
+
<font color=red><b>Inconsistent parameter</b></font>
-
+
Value
-
+
Decr:
-
+
Incr:
-
+
+ Played once, not during startup
+
+
+
+
%1s
-
- Value
+
+ Adjust GV%1
-
- Source
-
-
-
-
- GVAR
+
+ Rotary Encoder
+ Value
+
+
+
+
+ Source
+
+
+
+
+ GVAR
+
+
+
+
Increment
-
+
!Flight mode %1
-
+
Flight mode %1
-
+
Flight mode %1 trim
-
+
Flight mode %1 value
-
+
Yellow
-
+
Orange
-
+
Red
-
+
Winged Shadow How High
-
+
Winged Shadow How High (not supported)
-
+
FrSky Sensor Hub
-
+
+
None
-
+
Imperial
-
+
Metric
-
+
Extra Fine
-
+
Fine
-
+
Medium
-
+
Coarse
-
+
Exponential
-
+
Count Up
-
+
Count Down
-
+
%1:%2,
-
+
: %1 Channels, %2usec Delay
-
+
+ Flight modes(%1)
+
+
+
+
+ Flight mode(%1)
+
+
+
+
Rudder
-
+
Elevator
-
+
Throttle
-
+
Aileron
-
-
-
+
+
+
Timer1
-
-
-
+
+
+
Timer2
-
-
+
+
All
-
-
+
+
Telemetry
-
- Diff
-
-
-
-
- Expo
-
-
-
-
+
Own trim
-
+
Own value
-
+
Keys
-
+
Sticks
-
+
Keys + Sticks
-
+
+
-GV%1
-
- (-GV%1)
-
-
-
-
- (GV%1)
-
-
-
-
-
-
-
+
+
+
+
----
-
-
-
+
+
+
P1
-
-
-
+
+
+
P2
-
-
-
+
+
+
P3
-
+
MAX
-
-
+
+
Rud
-
-
+
+
Ele
-
-
+
+
Thr
-
-
+
+
Ail
-
+
+
REa
-
+
+
REb
-
+
+
+ LS1
+
+
+
+
+
+ LS2
+
+
+
+
+
+ LS3
+
+
+
+
+
+ LS4
+
+
+
+
+
+ LS5
+
+
+
+
+
+ LS6
+
+
+
+
+
+ LS7
+
+
+
+
+
+ LS8
+
+
+
+
+
+ LS9
+
+
+
+
+
+ LSA
+
+
+
+
+
+ LSB
+
+
+
+
+
+ LSC
+
+
+
+
+
+ LSD
+
+
+
+
+
+ LSE
+
+
+
+
+
+ LSF
+
+
+
+
+
+ LSG
+
+
+
+
+
+ LSH
+
+
+
+
+
+ LSI
+
+
+
+
+
+ LSJ
+
+
+
+
+
+ LSK
+
+
+
+
+
+ LSL
+
+
+
+
+
+ LSM
+
+
+
+
+
+ LSN
+
+
+
+
+
+ LSO
+
+
+
+
+
+ LSP
+
+
+
+
+
+ LSQ
+
+
+
+
+
+ LSR
+
+
+
+
+
+ LSS
+
+
+
+
+
+ LST
+
+
+
+
+
+ LSU
+
+
+
+
+
+ LSV
+
+
+
+
+
+ LSW
+
+
+
+
+ Input %1
+
+
+
+
+ S11
+
+
+
+
+ S12
+
+
+
+
+ S13
+
+
+
+
+ S14
+
+
+
+
+ S15
+
+
+
+
+ S16
+
+
+
+
+ S21
+
+
+
+
+ S22
+
+
+
+
+ S23
+
+
+
+
+ S24
+
+
+
+
+ S25
+
+
+
+
+ S26
+
+
+
+
ONE
-
+
!ONE
-
+
TRNs
TX
-
+
+ Diff(%1)
+
+
+
+
+ Expo(%1)
+
+
+
+
+ Function(%1)
+
+
+
+
+ Curve(%1)
+
+
+
+
+ !Curve(%1)
+
+
+
+
Alt
-
+
Rpm
-
+
Fuel
-
+
Speed
-
+
Dist
-
+
GPS Alt
-
+
Cell
-
- 3POS
-
-
-
-
+
A1
-
+
A2
-
+
T1
-
+
T2
-
- Curve
-
-
-
-
-
-
-
- Flight modes settings on expos not exported
- Phases settings on expos not exported
-
-
-
-
-
-
-
-
-
-
-
- Open9x on this board doesn't have Rotary Encoders
-
-
-
-
- gruvin9x doesn't have trims as source
-
-
-
-
- gruvin9x doesn't have swappable trims
-
-
-
-
- gruvin9x on this board doesn't have Rotary Encoders
-
-
-
-
- gruvin9x does not support Custom Switch function %1
-
-
-
-
- gruvin9x only accepts %1 expos
-
-
-
-
-
- gruvin9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
- gruvin9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
- Open9x doesn't allow Curve%1 in expos
-
-
-
-
-
+
+
Simultaneous usage of expo and curves is no longer supported
-
-
-
-
-
-
-
- Flight modes settings on mixers not exported
-
-
-
-
-
- Flight mode settings on mixers not exported
- Phases settings on mixers not exported
-
-
-
-
-
-
-
- This version of open9x does not support Custom Switch function %1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Open9x doesn't accept this protocol
-
-
-
-
-
-
-
-
-
- open9x only accepts %1 points in all curves
-
-
-
-
+
Simultaneous usage of expo and curves is no longer supported in open9x
-
-
- open9x on this board doesn't have Rotary Encoders
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- open9x only accepts %1 expos
- Gruvin9x firmware only accepts %1 expos
-
-
-
-
+
th9x
-
+
er9x
-
+
TrmR
-
+
TrmE
-
+
TrmT
-
+
TrmA
-
-
+
+
S1
-
-
+
+
S2
-
-
+
+
LS
-
-
+
+
RS
-
- SA
-
-
-
-
- SB
-
-
-
-
- SC
-
-
-
-
- SD
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- SG
-
-
-
-
- SH
-
-
-
-
+
Batt
-
+
SWR
-
+
Tx
-
+
RSSI
-
+
Rx
-
+
Cels
-
+
Vfas
-
+
Curr
-
+
Cnsp
-
+
Powr
-
+
AccX
-
+
AccY
-
+
AccZ
-
+
HDG
-
+
VSpd
-
+
A1-
-
+
A2-
-
+
Alt-
-
+
Alt+
-
+
Rpm+
-
+
T1+
-
+
T2+
-
+
Spd+
-
+
Dst+
-
+
Cur+
-
+
ACC
-
+
Time
-
+
Pwr+
-
-
- CS1
-
-
-
-
-
- CS2
-
-
-
-
-
- CS3
-
-
-
-
-
- CS4
-
-
-
-
-
- CS5
-
-
-
-
-
- CS6
-
-
-
-
-
- CS7
-
-
-
-
-
- CS8
-
-
-
-
-
- CS9
-
-
-
-
-
- CSA
-
-
-
-
-
- CSB
-
-
-
-
-
- CSC
-
-
-
-
-
- CSD
-
-
-
-
-
- CSE
-
-
-
-
-
- CSF
-
-
-
-
-
- CSG
-
-
-
-
-
- CSH
-
-
-
-
-
- CSI
-
-
-
-
-
- CSJ
-
-
-
-
-
- CSK
-
-
-
-
-
- CSL
-
-
-
-
-
- CSM
-
-
-
-
-
- CSN
-
-
-
-
-
- CSO
-
-
-
-
-
- CSP
-
-
-
-
-
- CSQ
-
-
-
-
-
- CSR
-
-
-
-
-
- CSS
-
-
-
-
-
- CST
-
-
-
-
-
- CSU
-
-
-
-
-
- CSV
-
-
-
-
-
- CSW
-
-
-
-
+
CYC%1
-
+
PPM%1
-
+
CH%1%2
CH%1
-
+
X%1
-
+
TRNl
-
+
REAs
-
+
REAl
-
-
+
+
+
GV%1
-
-
-
-
+
+
THR
-
-
- RUD
-
-
-
-
-
- ELE
-
-
-
-
- ID0
-
-
-
-
- ID1
-
-
-
-
- ID2
-
-
-
-
-
- AIL
-
-
-
-
-
- GEA
-
-
-
-
-
- TRN
-
-
-
-
-
+
+
ON
-
-
+
+
OFF
-
-
+
+
Support for frsky telemetry mod
-
-
+
+
Support for jeti telemetry mod
-
-
+
+
Support for receiving ardupilot data
-
-
+
+
Support for receiving NMEA data
-
+
Support for telemetry easy board
-
-
+
+
Support for MAVLINK devices
-
+
Rotary Encoder use in menus navigation
-
+
Possibility to enable FAI MODE at field
-
+
FAI MODE always enabled
-
+
openTx for 9X board
-
-
-
-
-
+
+
+
+
+
Enable heli menu and cyclic mix support
-
-
-
-
-
-
+
+
+
+
+
+
Enable TEMPLATES menu
-
-
-
-
+
+
+
+
No splash screen
-
-
-
-
-
-
+
+
+
+
+
+
Disable curves menus
-
-
-
-
+
+
+
+
Support for radio modified with regular speaker
-
-
-
-
-
+
+
+
+
+
Used if you have modified your radio with voice mode
-
-
-
-
+
+
+
+
Used if you have modified your radio with haptic mode
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Use alternative SQT5 font
-
-
-
-
+
+
+
+
Enable the throttle trace in Statistics
-
+
EEprom write progress bar
-
-
+
+
No Winged Shadow How High support
-
-
+
+
No vario support
-
-
+
+
No GPS support
-
-
+
+
No gauges in the custom telemetry screen
-
+
+ Allow compensating for offset errors in FrSky FAS current sensors
+
+
+
+
openTx for M128 / 9X board
-
+
openTx for 9XR
-
+
openTx for 9XR with M128 chip
-
+
openTx for Gruvin9x board / 9X
-
+
Support of FrSky PXX protocol
-
+
Use FrSky Taranis sticks in a 9X/9XR
-
+
openTx for FrSky Taranis
-
-
+
+
Disable HELI menu and cyclic mix support
-
-
+
+
Disable TEMPLATES menu
-
-
+
+
Disable Global variables
-
+
openTx for FrSky Taranis Rev4a
-
-
-
-
-
+
+
+
+
+
Support for DSM2 modules
-
-
-
-
-
-
+
+
+
+
+
+
PPM center adjustment in limits
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
PPM values displayed in us
-
-
-
-
-
-
+
+
+
+
+
+
Symetrical Limits
-
-
-
-
-
+
+
+
+
+
Pots use in menus navigation
-
+
Your radio probably uses a wrong firmware,
eeprom size is 4096 but only the first 2048 are used
-
-
-
-
-
-
+
+
+
+
+
+
No flight modes
-
-
+
+
SmartieParts 2.2 Backlight support
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set source by moving some of them
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set switch by moving some of them
-
-
-
-
+
+
+
+
Enable resetting values by pressing up and down at the same time
-
-
-
-
-
-
+
+
+
+
+
+
No graphical check boxes and sliders
-
-
-
-
-
-
+
+
+
+
+
+
Battery graph
-
-
-
-
-
-
+
+
+
+
+
+
Don't use bold font for highlighting active items
-
-
-
-
+
+
+
+
EEprom write Progress bar
-
-
-
-
-
+
+
+
+
+
Imperial units
-
+
Bluetooth interface
-
-
-
-
-
-
+
+
+
+
+
+
Global variables
-
+
Support for SD memory card
-
+
Support for DSM2 modules using ppm instead of true serial
-
+
openTx for Sky9x board / 9X
-
+
Enable HELI menu and cyclic mix support
-
+
ersky9x
-
- er9x doesn't have Rotary Encoders
-
-
-
-
- er9x doesn't have trims as source
-
-
-
-
- er9x doesn't have negative gvars as weight
-
-
-
-
- er9x doesn't have negative gvars as offset
-
-
-
-
-
-
- er9x doesn't have swappable trims
-
-
-
-
-
-
- er9x on this board doesn't have Rotary Encoders
-
-
-
-
- er9x does not support Custom Switch function %1
-
-
-
-
-
-
- er9x does not support this range for A1/A2
-
-
-
-
-
-
- er9x does not support this telemetry units
-
-
-
-
-
- Er9x doesn't accept this protocol
-
-
-
-
-
- Er9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
- Er9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
-
-
+
+
+
+
Warning
-
-
+
EEPROM saved with these warnings:
-
-
- ersky9x doesn't have Rotary Encoders
-
-
-
-
-
- ersky9x doesn't have trims as source
-
-
-
-
-
- ersky9x does not support Custom Switch function %1
-
-
-
-
-
- Ersky9x doesn't accept this protocol
-
-
-
-
-
-
-
- ErSky9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
-
-
- ErSky9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
+
+
+
Simulator for this firmware is not yet available
-
- th9x does not support Custom Switch function %1
-
-
-
-
+
th9x on this board doesn't have Rotary Encoders
-
-
-
- th9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
-
- th9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
- Flight Mode 0 (Default)
-
-
-
-
-
- FM %1
-
-
-
-
+
openTx only accepts %1 points in all curves
-
-
-
+
+
+
OpenTX on this board doesn't accept this function
-
-
+
+
OpenTX doesn't accept this protocol
-
+
OpenTX doesn't allow this number of channels
@@ -7071,6 +5535,587 @@ The OpenTX/Companion Team.
+
+ Setup
+
+
+ Form
+
+
+
+
+ Model Name
+
+
+
+
+ Timer2
+
+
+
+
+ Timer1
+
+
+
+
+ Throttle Source
+
+
+
+
+ Switch startup Warning
+
+
+
+
+ Center beep
+
+
+
+
+ Trim Increment
+
+
+
+
+ ON
+
+
+
+
+ OFF
+
+
+
+
+ Check
+
+
+
+
+ Model Image
+
+
+
+
+ Exponential
+
+
+
+
+ Extra Fine
+
+
+
+
+ Fine
+
+
+
+
+ Medium
+
+
+
+
+ Coarse
+
+
+
+
+ Extended Limits
+
+
+
+
+ Extended Trims
+
+
+
+
+ Throttle Trim
+
+
+
+
+ Throttle Warning
+
+
+
+
+ Reverse throttle operation.
+If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
+
+
+
+
+
+
+ Reverse Throttle
+
+
+
+
+ Telemetry
+
+
+ Form
+
+
+
+
+
+
+
+ A1
+
+
+
+
+
+
+
+ A2
+
+
+
+
+ RSSI
+
+
+
+
+ Alarm 1
+
+
+
+
+
+ ----
+
+
+
+
+
+ Yellow
+
+
+
+
+
+ Orange
+
+
+
+
+
+ Red
+
+
+
+
+ Alarm 2
+
+
+
+
+ Serial Protocol
+
+
+
+
+ Volt source
+
+
+
+
+ Metric
+
+
+
+
+ Imperial
+
+
+
+
+ Current source
+
+
+
+
+ Protocol
+
+
+
+
+ NONE
+
+
+
+
+
+ FAS
+
+
+
+
+ None
+
+
+
+
+ FrSky Sensor Hub
+
+
+
+
+ CEL
+
+
+
+
+ 2
+
+
+
+
+ 3
+
+
+
+
+ 4
+
+
+
+
+ Units
+
+
+
+
+ Blades
+
+
+
+
+ Altimetry / Vario
+
+
+
+
+ Alti
+
+
+
+
+ Alti+
+
+
+
+
+ Vario
+
+
+
+
+ Sink Max
+
+
+
+
+ Off
+
+
+
+
+ Climb Max
+
+
+
+
+ Sink Min
+
+
+
+
+ Climb Min
+
+
+
+
+ Vario source
+
+
+
+
+ Vario limits
+
+
+
+
+ Use GPS as altitude source
+
+
+
+
+ Display altitude in toolbar
+
+
+
+
+ Various
+
+
+
+
+ mAh count
+
+
+
+
+ FAS Offset
+
+
+
+
+ Persistent mAh
+
+
+
+
+ TelemetryAnalog
+
+
+ Form
+
+
+
+
+ Unit
+
+
+
+
+ Max Value
+
+
+
+
+ Alarm 1
+
+
+
+
+
+ ----
+
+
+
+
+
+ Yellow
+
+
+
+
+
+ Orange
+
+
+
+
+
+ Red
+
+
+
+
+
+ <
+
+
+
+
+
+ >
+
+
+
+
+ Alarm 2
+
+
+
+
+ Min Value
+
+
+
+
+ Volts (V)
+
+
+
+
+ Amps (A)
+
+
+
+
+ Speed (m/s or ft/s)
+
+
+
+
+ Raw (-)
+
+
+
+
+ Speed (km/h or miles/h)
+
+
+
+
+ Meters (m or ft)
+
+
+
+
+ Temp (°)
+
+
+
+
+ Fuel (%)
+
+
+
+
+ mAmps (mA)
+
+
+
+
+ Range
+
+
+
+
+ TelemetryCustomScreen
+
+
+ Form
+
+
+
+
+ Custom Screen Type
+
+
+
+
+ Nums
+
+
+
+
+ Bars
+
+
+
+
+ Min
+
+
+
+
+ Source
+
+
+
+
+ Gauge
+
+
+
+
+ Max
+
+
+
+
+ TelemetryPanel
+
+
+ Telemetry screen %1
+
+
+
+
+ Winged Shadow How High
+
+
+
+
+ Winged Shadow How High (not supported)
+
+
+
+
+ Timer
+
+
+ Form
+
+
+
+
+ mm:ss
+
+
+
+
+ Countdown
+
+
+
+
+ MinuteBeep
+
+
+
+
+ Persistent
+
+
+
+
+ (00:00:00)
+
+
+
+
+ TimerPanel
+
+
+ None
+
+
+
+
+ Beeps
+
+
+
+
+ Countdown
+
+
+
avrOutputDialog
@@ -7368,40 +6413,40 @@ Please only use this if you know what you are doing. There are no error checks
-
+
DFU-UTIL Configuration
-
+
SAM-BA Configuration
-
+
AVRDUDE Configuration
-
-
-
+
+
+
Select Location
-
-
+
+
Companion
-
+
<b><u>WARNING!</u></b><br>This will reset the fuses of %1 to the factory settings.<br>Writing fuses can mess up your radio.<br>Do this only if you are sure they are wrong!<br>Are you sure you want to continue?
-
+
<b><u>WARNING!</u></b><br>Normally CPU type is automatically selected according to the chosen firmware.<br>If you change the CPU type the resulting eeprom could be inconsistent.
@@ -7459,7 +6504,7 @@ m2560 for v4.1 boards
-
+
Browse for file
@@ -7505,7 +6550,7 @@ m2560 for v4.1 boards
-
+
Write to TX
@@ -7530,146 +6575,146 @@ m2560 for v4.1 boards
-
+
Write firmware to TX
-
+
Current profile
-
+
Open
-
+
Write Models and Settings to TX
-
+
Write Models and Settings in %1 to TX
-
+
Choose file to load Models and Settings from
-
-
-
-
-
-
+
+
+
+
+
+
Warning
-
+
%1 is not a known firmware
-
+
Burn anyway !
-
+
Unable to find file %1!
-
-
-
+
+
+
Error opening file %1:
%2.
-
-
-
+
+
+
Invalid binary Models and Settings File %1, Proceed anyway ?
-
+
Error reading file %1:
%2.
-
+
Open Image to load
-
+
Images (%1)
-
+
Wrong radio calibration data in profile, Settings not patched
-
+
Wrong radio setting data in profile, Settings not patched
-
-
+
+
Cannot write file %1:
%2.
-
+
Error writing file %1:
%2.
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Error
-
-
+
+
Cannot load %1.
-
+
Cannot save customized firmware
-
+
Custom image not found
-
+
No firmware selected
@@ -7809,14 +6854,14 @@ m2560 for v4.1 boards
-
+
-
-
-
-
-
-
+
+
+
+
+
+
Switch
@@ -7853,10 +6898,10 @@ m2560 for v4.1 boards
-
-
-
-
+
+
+
+
Offset
@@ -7864,8 +6909,8 @@ m2560 for v4.1 boards
-
-
+
+
Min
@@ -7873,8 +6918,8 @@ m2560 for v4.1 boards
-
-
+
+
Max
@@ -7890,8 +6935,8 @@ m2560 for v4.1 boards
-
-
+
+
CH
@@ -7925,193 +6970,160 @@ m2560 for v4.1 boards
-
+
Weight
-
-
- Expo
-
-
-
-
+
-
-
+
+
DISABLED
-
-
-
-
-
-
+
+
Curve
-
+
Mixers
-
-
+
+
noTrim
-
-
- FMTrim
-
-
-
-
-
- Diff
-
-
-
-
-
+
+
Delay(u%1:d%2)
-
-
+
+
Slow(u%1:d%2)
-
-
+
+
Warn
-
+
Curves
-
+
5 Points Curves
-
-
-
-
+
+
+
+
pt %1
-
+
9 Points Curves
-
- Custom Switches
-
-
-
-
-
- CS
-
-
-
-
-
+
+
Function
-
-
+
+
Param
-
-
+
+
Enable
-
+
Telemetry Settings
-
-
+
+
Analog
-
-
+
+
Unit
-
-
+
+
Scale
-
-
-
-
+
+
+
+
A%1
-
-
+
+
Alarm 1
-
-
+
+
Alarm 2
-
-
-
-
+
+
+
+
Type
-
-
-
-
+
+
+
+
Condition
-
-
-
-
-
-
+
+
+
+
+
+
Value
@@ -8143,79 +7155,90 @@ m2560 for v4.1 boards
-
+
-
-
+
+
Flight modes
-
+
-
-
+
+
Flight mode
+
- Custom Functions
-
-
-
-
-
Repeat
-
+
CF
-
+
Safety Switches
-
-
+
+
RSSI Alarm
-
-
+
+
Telemetry Bars
-
-
+
+
Bar Number
-
-
+
+
Source
-
-
+
+
Custom Telemetry View
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignment
+
+
+
+
Print Document
-
+
Select PDF output file
@@ -8228,39 +7251,37 @@ m2560 for v4.1 boards
-
+
People who have contributed to this project
-
+
Coders
-
- Honors go to Rafal Tomczak (RadioClone) and Thomas Husterer (th9x)
-of course. Also to Erez Raviv (er9x) and the fantastic eePe program
-which was the staring point for OpenTX Companion.
-
-
-
-
+
Companion Release Notes
-
+
Thank you all !!!
-
+
+ Honors go to Rafal Tomczak (RadioClone), Thomas Husterer (th9x) and Erez Raviv (er9x and eePe)
+
+
+
+
Contributors
-
+
OpenTX Release Notes
@@ -8303,7 +7324,7 @@ which was the staring point for OpenTX Companion.
-
+
Save Firmware
Save To Hex
@@ -8318,80 +7339,80 @@ p, li { white-space: pre-wrap; }
-
-
-
+
+
+
Select an original firmware file
-
+
Open
-
+
Select an image to customize your splash <br />or save actual firmware splash
-
-
-
-
+
+
+
+
Error
-
+
Could not find bitmap to replace in file
-
+
Open Image to load
-
+
Images (%1)
-
-
+
+
Cannot load %1.
-
-
+
+
Save your custimized firmware
-
-
+
+
Write to file
-
+
Error reading file %1
-
+
Firmware correctly saved.
-
+
Firmware not saved.
-
+
PNG images (*.png);;
@@ -8792,17 +7813,17 @@ Press cancel to abort joystick calibration
-
+
Select your log file
-
+
Available fields
-
+
The selected logfile contains %1 invalid lines out of %2 total lines
@@ -8810,7 +7831,7 @@ Press cancel to abort joystick calibration
mdiChild
-
+
Simulate Tx
@@ -9260,70 +8281,60 @@ Press cancel to abort joystick calibration
-
- Language (requires restart)
-
-
-
-
+
SD Structure path
-
+
Processor ID
-
+
Simulator capture folder
-
+
Use clipboard only
-
+
Recent History Size
-
-
+
+
Download
-
+
Default Channel Order
-
+
Default Stick Mode
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
-
+
FwInfo
-
- Show Splash Screen
-
-
-
-
+
Mode selection:
Mode 1:
@@ -9346,357 +8357,362 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
-
+
Mode 2 (RUD THR ELE AIL)
-
+
Mode 3 (AIL ELE THR RUD)
-
+
Mode 4 (AIL THR ELE RUD)
-
+
Automatic Backup Folder
-
+
Automatically add version number to the filename after download
-
+
Voice
-
+
Set language of voice.
May be different from firmware language
-
+
Firmware
-
+
Find Executable
-
+
Google Earth Executable
-
+
Check for updates on startup
-
-
+
+
...
-
+
Splash library behaviour
-
+
Include companion splashes
-
+
Only user defined splashes
-
+
Custom TX splash screen
-
+
Personal splash library
-
+
Joystick
-
-
-
-
+
+
+
+
Open Folder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
CheckBox
-
+
Check for updates
-
+
Language
-
+
Profile Name
-
+
Export Profile
-
+
Save Profile
-
+
Import Profile
-
+
Blue
Blu
-
+
Simu BackLight
-
+
Check for selected Fw updates
-
+
Ask use of wizard for new models
-
+
+ Show Splash At Start
+
+
+
+
Remember switches in simulator
-
+
Green
-
+
Red
-
+
Orange
-
+
Yellow
-
+
Profile slot
-
+
auto backup before write
-
+
Ask for flashing after Download
-
+
Enable
-
+
Calibrate
-
+
Open Image
-
+
Invert Pixels
-
+
Last downloaded release: %1
-
+
Image stored in settings
-
-
+
+
No joysticks found
-
+
Select your Models and Settings backup folder
-
+
Select Google Earth executable
-
+
Select the folder replicating your SD structure
-
+
Profile name is empty, profile slot %1 will be deleted.<br>Are you sure ?
-
+
Export profile As
-
+
Profile slot is not empty, profile slot %1 will we overwritten.<br>Are you sure ?
-
+
Open Profile to import
-
+
Open Image to load
-
+
Images (%1)
-
-
+
+
Error
-
+
The selected firmware has never been downloaded by Companion.
-
+
The selected firmware cannot be downloaded by Companion.
-
+
Select your library folder
-
+
Select your snapshot folder
-
-
+
+
Cannot load %1.
@@ -9730,9 +8746,9 @@ May be different from firmware language
-
-
-
+
+
+
Name
@@ -9774,7 +8790,7 @@ May be different from firmware language
-
+
Enabled
@@ -9828,40 +8844,38 @@ May be different from firmware language
-
-
+
+
Flight modes
-
-
+
+
Flight mode
-
+
Delay(u%1:d%2)
-
+
Slow(u%1:d%2)
-
-
-
+
pt %1
-
-
-
-
+
+
+
+
Switch
@@ -9901,296 +8915,259 @@ May be different from firmware language
-
-
-
-
- Expo
-
-
-
-
-
+
+
DISABLED
-
-
-
-
-
-
-
+
+
+
Curve
-
+
Mixers
-
-
-
-
-
+
+
+
+
+
CH
-
+
noTrim
-
- FMTrim
-
-
-
-
-
-
-
-
+
+
+
+
+
Offset
-
- Diff
-
-
-
-
+
Warn
-
+
Limits
-
-
-
-
+
+
+
+
Min
-
-
-
-
+
+
+
+
Max
-
-
-
+
+
+
Invert
-
-
-
+
+
+
INV
-
-
-
+
+
+
NOR
-
+
Curves
-
- 5 Points Curves
-
-
-
-
- 9 Points Curves
-
-
-
-
- Custom Switches
-
-
-
-
-
- CS
-
-
-
-
+
Global Variables
-
+
GV
-
+
Safety Switches
-
-
-
-
-
+
+
+
+
+
Value
-
- Function Switches
-
-
-
-
+
Function
-
+
Parameter
-
+
ODF files (*.odt);;PDF Files(*.pdf);;HTML-Files (*.htm *.html);;All Files (*)
-
+
Telemetry Settings
-
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignments
+
+
+
+
+
Alarm 1
-
-
+
+
Alarm 2
-
+
Analog
-
+
Unit
-
+
Scale
-
-
-
-
+
+
+
+
Type
-
-
-
-
+
+
+
+
Condition
-
+
A%1
-
+
RSSI Alarm
-
+
Frsky serial protocol
-
+
System of units
-
+
Propeller blades
-
+
Telemetry Bars
-
+
Bar Number
-
+
Source
-
-
+
+
Custom Telemetry View
-
+
Repeat
-
- CF
-
-
-
-
+
Print Document
-
+
Select PDF output file
@@ -10198,17 +9175,17 @@ May be different from firmware language
simulatorDialog
-
+
P1
-
+
P2
-
+
P3
@@ -10234,33 +9211,33 @@ May be different from firmware language
-
+
Hold X
-
+
Fix X
-
+
Fix Y
-
+
Hold Y
-
-
+
+
TextLabel
@@ -10280,17 +9257,17 @@ May be different from firmware language
-
+
ID1
-
+
ID2
-
+
BEEP
@@ -10298,7 +9275,7 @@ May be different from firmware language
-
+
Right Double Click to Reset
@@ -10308,14 +9285,14 @@ May be different from firmware language
-
-
-
+
+
+
0 %
-
+
9x Simulator
@@ -10326,261 +9303,261 @@ May be different from firmware language
- CS1
+ LS1
- CS2
+ LS2
- CS3
+ LS3
- CS4
+ LS4
- CS5
+ LS5
- CS6
+ LS6
- CS7
+ LS7
- CS8
+ LS8
- CS9
+ LS9
- CSA
+ LSA
- CSB
+ LSB
- CSC
+ LSC
- CSD
+ LSD
- CSE
+ LSE
- CSF
+ LSF
- CSG
+ LSG
- CSH
+ LSH
- CSI
+ LSI
-
- CSJ
+
+ LSJ
-
- CSK
+
+ LSK
-
- CSL
+
+ LSL
-
- CSM
+
+ LSM
-
- CSN
+
+ LSN
-
- CSO
+
+ LSO
-
- CSP
+
+ LSP
-
- CSQ
+
+ LSQ
-
- CSR
+
+ LSR
-
- CSS
+
+ LSS
-
- CST
+
+ LST
-
- CSU
+
+ LSU
-
- CSV
+
+ LSV
-
- CSW
+
+ LSW
-
+
CH1
-
+
CH9
-
+
CH2
-
+
CH10
-
+
CH3
-
+
CH11
-
+
CH4
-
+
CH12
-
+
CH5
-
+
CH13
-
+
CH6
-
+
CH14
-
+
CH7
-
+
CH15
-
+
CH8
-
+
CH16
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-100.1
@@ -10624,33 +9601,33 @@ May be different from firmware language
splashLibrary
-
+
...
-
+
Splash Library - page %1 of %2
-
+
Warning
-
+
Invalid image in library %1
-
+
Information
-
+
No valid image found in library, check your settings
@@ -10797,10 +9774,10 @@ May be different from firmware language
-
-
-
-
+
+
+
+
@@ -10841,12 +9818,12 @@ May be different from firmware language
-
+
CH12
-
+
CH5
@@ -10887,162 +9864,162 @@ May be different from firmware language
- CSK
+ LSK
- CSC
+ LSC
- CSD
+ LSD
- CS7
+ LS7
- CSL
+ LSL
- CSB
+ LSB
- CS1
+ LS1
- CSH
+ LSH
- CSG
+ LSG
- CSE
+ LSE
- CSF
+ LSF
- CS8
+ LS8
- CS9
+ LS9
- CSA
+ LSA
- CSM
+ LSM
- CSJ
+ LSJ
- CSI
+ LSI
- CS4
+ LS4
- CS5
+ LS5
- CS2
+ LS2
- CS3
+ LS3
- CS6
+ LS6
- CSN
+ LSN
- CSO
+ LSO
- CSP
+ LSP
- CSQ
+ LSQ
- CSR
+ LSR
- CSS
+ LSS
- CST
+ LST
- CSU
+ LSU
- CSV
+ LSV
- CSW
+ LSW
@@ -11062,22 +10039,22 @@ May be different from firmware language
-
+
Firmware %1 error: %2
-
+
- Flight mode: %1(%2)
-
+
Simulating Tx (%1)
-
+
Simulating
diff --git a/companion/src/translations/companion_it.ts b/companion/src/translations/companion_it.ts
index d880d890b..ed6baeae4 100644
--- a/companion/src/translations/companion_it.ts
+++ b/companion/src/translations/companion_it.ts
@@ -2,136 +2,698 @@
- ExpoDialog
+ Channels
-
- Expo
- Esponenziale
+
+ Name
+ Nome
-
+
+ Offset
+
+
+
+
+ Min
+ Min
+
+
+
+ Max
+ Max
+
+
+
+ Invert
+
+
+
+
+ Center
+ Centro
+
+
+
+ Sym
+ Simm
+
+
+
+ Channel %1
+
+
+
+
+ ---
+ ---
+
+
+
+ INV
+ INV
+
+
+
+ CurveGroup
+
+
+ Diff
+ Diff
+
+
+
+ Expo
+
+
+
+
+ Func
+
+
+
+
+ Curve
+ Curva
+
+
+
+ Curves
+
+
+ Form
+
+
+
+
+ Standard
+
+
+
+
+ Custom
+ Personalizzato
+
+
+
+ Lines
+
+
+
+
+ Smooth
+
+
+
+
+ Curve type
+ Tipo curva
+
+
+
+ Curve name
+ Nome curva
+
+
+
+ Curve %1
+
+
+
+
+ %1 points
+
+
+
+
+ Are you sure you want to reset curve %1 ?
+
+
+
+
+ Editing curve %1
+ Modifica curva %1
+
+
+
+ Not enough free points in EEPROM to store the curve.
+
+
+
+
+ CustomFunctionsPanel
+
+
+ Switch
+
+
+
+
+ Action
+
+
+
+
+ Parameters
+
+
+
+
+ Enable
+ Abilita
+
+
+
+ ON
+ Acceso
+
+
+
+ Error
+ Errore
+
+
+
+ Unable to find sound file %1!
+ Impossibile trovare il file sonoro %1!
+
+
+
+ &Delete
+ &Elimina
+
+
+
+ Delete
+ Elimina
+
+
+
+ &Copy
+
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+ &Taglia
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Paste
+ &Incolla
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ CustomSwitchesPanel
+
+
+ Condition
+ Condizione
+
+
+
+ V1
+ V1
+
+
+
+ V2
+ V2
+
+
+
+ AND
+ AND
+
+
+
+ Duration
+ Durata
+
+
+
+ Delay
+ Ritardo
+
+
+
+
+ LS%1
+
+
+
+
+ &Delete
+ &Elimina
+
+
+
+ Delete
+ Elimina
+
+
+
+ &Copy
+
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+ &Taglia
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Paste
+ &Incolla
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ Dialog
+
+
+ Dialog
+
+
+
+
+ Curve type
+ Tipo curva
+
+
+
+ Coefficient
+ Coefficiente
+
+
+
+ Both
+ Entrambi
+
+
+
+ x>0
+
+
+
+
+ x<0
+
+
+
+
+ Y at X=0
+ Y a X=0
+
+
+
+ Side
+ Lato
+
+
+
+ Y at X=-100
+ Y a X=-100
+
+
+
+ Y at X=100
+ Y a X=100
+
+
+
+ Linear
+ Lineare
+
+
+
+ Single Expo
+ Esponenziale singola
+
+
+
+ Symmetrical f(x)=-f(-x)
+ Expo simmetrica f(x)=-f(-x)
+
+
+
+ Symmetrical f(x)=f(-x)
+ Expo simmetrica f(x)=f(-x)
+
+
+
+ ExpoDialog
+
+ Expo
+ Esponenziale
+
+
+
Weight
Peso
-
Name
- Nome
+ Nome
-
-
Phase used by the expo.
- Fase utilizzata per gli esponenziali.
+ Fase utilizzata per gli esponenziali.
-
+
0
0
-
+
Flight modes
Fasi di volo
-
-
-
+
+ The source for the mixer
+ Sorgente da miscelare
+
+
+
+ Input name
+
+
+
+
+
GV
VG
-
+
+ Phase used by the input.
+
+
+
+
1
1
-
+
2
2
-
+
3
3
-
+
4
4
-
+
5
5
-
+
6
6
-
+
7
7
-
+
8
8
-
+
Switch
Interruttore
-
+
+ The curve used by the input
+
+
+
+
+ Source
+ Sorgente
+
+
+
+ Line name
+
+
+
Switch used by the expo.
If blank then the expo is considered to be "ON" all the time.
- Interruttore utilizzato per attivare l'esponenziale.
+ Interruttore utilizzato per attivare l'esponenziale.
Se vuoto l'esponenziale è sempre attivo nella fase scelta (o in tutte).
-
Curve/Exponential
- Curva/Esponenziale
+ Curva/Esponenziale
-
The curve used by the expo
- Curva utilizzata dall'impostazione stick
+ Curva utilizzata dall'impostazione stick
-
+
Stick Side
Lato dello stick
-
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Delay ans Slow</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These values control the speed and delay of the output of the mix. </p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Delay is not zero the actuation of the mix will be delayed by the specified amount of seconds.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Slow is not zero then the speed of the mix will be set by the value specified -> the value states the number of seconds it takes to transit from -100 to 100.</p></body></html>
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Ritardi e Rallentamenti</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Questi valori controllano la velocità e il ritardo dell'uscita della miscelazione</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Se il ritardo non è zero l'applicazione del mix verrà ritardata del numero specificato di secondi.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Se il rallentamento non è zero allora la velocità verrà impostata al valore selezionato -> il valore indica il numero di secondi per passare da -100 a 100.</p></body></html>
+
+
+
+ Scale
+ Campo di misura
+
+
+
+ Include Trim
+ Include i Trim
+
+
+
+ No
+ No
+
+
+
+ Yes
+ Si
+
+
+
Curve
Curva
-
+
NEG
NEG
-
+
+ Switch used by the input.
+If blank then the input is considered to be "ON" all the time.
+
+
+
+
POS
POS
-
+
ALL
TUTTI
-
DEST -> %1
- DEST -> %1
+ DEST -> %1
+
+
+
+ Edit %1
+
+
+
+
+ Rud
+ Direzionale
+
+
+
+ Ele
+ Elevatore
+
+
+
+ Thr
+ Motore
+
+
+
+ Ail
+ Alettoni
+
+
+
+ FlightMode
+
+
+ Form
+
+
+
+
+ Fade In
+ Tempo transizione in ingresso
+
+
+
+ Fade Out
+ Tempo transizione in uscita
+
+
+
+ Name
+ Nome
+
+
+
+ Switch
+
+
+
+
+ trim1
+ trim1
+
+
+
+ trim2
+ trim2
+
+
+
+ trim4
+ trim4
+
+
+
+ trim3
+ trim3
+
+
+
+ Rud
+ Direzionale
+
+
+
+ Ele
+ Elevatore
+
+
+
+ Thr
+ Motore
+
+
+
+ Ail
+ Alettoni
+
+
+
+ Rotary Encoder %1
+
+
+
+
+ GVAR%1
+
+
+
+
+ FlightModes
+
+
+ Flight Mode %1
+
+
+
+
+ (%1)
+
+
+
+
+ (default)
+
@@ -154,13 +716,13 @@ Queste impostazioni sono comuni a tutti i modelli nella stessa EEPROM.Impostazioni
-
+
Contrast
Contrasto
-
-
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -175,27 +737,27 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">I valori possono andare da 20 a 45</span></p></body></html>
-
+
Sound Mode
Modalità audio
-
+
Beeper
Altoparlante standard
-
+
Speaker Pitch (spkr only)
Tonalità suono (modifica HW)
-
+
Battery Warning
Allarme batteria scarica
-
+
Battery warning voltage.
This is the threashhold where the battery warning sounds.
@@ -206,57 +768,57 @@ Al di sotto di questo valore verrà generato un seganle di allarme.
Valori accettabili da 5v a 10v
-
+
Battery Calibration
Calibrazione Batteria
-
+
Battery calibration:
This value will be added to the measured battery voltage. Use this value to calibrate the meter with an external meter.
Calibrazione batteria:
Questo vlore verrà sommato al voltaggio misurato. Impostate questo valore per calibrare la lettura utilizzando un multimetro.
-
+
This is the switch selectrion for turning on the backlight (if installed).
Questo è l'interruttore selezionato per l'accensione della retroilluminazione (se installata).
-
+
If this value is not 0, any keypress will turn on the backlight and turn it off after the specified number of seconds.
Se questo valore non è 0, ogni pressione di tasto provocherà l'accensione della luce e questa verrà spenta dopo il numero di secondi specificato.
-
-
+
+
sec
sec
-
+
Inactivity Timer
Temporizzatore di inattività
-
+
If not zero will sound beeps if the transmitter has been left without inputs for the specified number of minutes.
Se non è zero, verrà fatto suonare l'allarme se la radio non è utilizzata per il numero di minuti specificato.
-
+
min
min
-
+
Timer Beeps
Allarmi timer
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -269,22 +831,22 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Avviso singolo ogni minuto.</span></p></body></html>
-
+
Every Minute
ogni Minuto
-
+
Beeps at 30, 15, 10, and down from5 seconds
Avvisi a 30, 15, 10, e poi ogni secondo da 5 in giù
-
+
Count Down to Zero
Conto alla rovescia
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -297,49 +859,45 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Lampeggio della retroilluminazione durante gli avvisi del temporizzatori</span></p></body></html>
-
+
Flash on beep
Lampeggio durante il beep
-
Reverse Throttle Operation
- Stick motore invertito
+ Stick motore invertito
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Stick motore inverso.
+ Stick motore inverso.
Se l'opzione selezionata lo stick motore verrà rovesciato. Il minimo sarà in avanti, anche i trim verranno rovesciati e anche gli avvisi.
-
+
Show Splash Screen on Startup
Mostra schermata all'avvio
-
-
+
+
Show splash screen on startup
Mostra schermata all'avvio
-
Throttle Startup Warning
- Avviso motore all'avvio
+ Avviso motore all'avvio
-
-
-
-
-
-
+
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -364,37 +922,36 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Suoni disabilitati - avvisa se i suoni sono disabilitati (0)</p></body></html>
-
Switch Startup Warning
- Avviso interruttori all'avvio
+ Avviso interruttori all'avvio
-
+
Memory Startup Warning
Avviso memoria all'avvio
-
+
Alarm Warning
Avvisi sonori
-
+
Pot Scrolling Enable
Abilita scorrimento con POT
-
+
Bandgap Measuring Enable
Misurazione BandGap
-
+
Channel Order (For Templates)
Ordine uscita canali (Per modelli)
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -403,12 +960,12 @@ This is used by the templated to determine which channel goes to what number out
Utilizzato dai Modelli per stabilire quale uscita viene assegnata ai canali.
-
+
Stick Mode
Modo Stick
-
+
Mode selection:
Mode 1:
@@ -449,40 +1006,42 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
Modo 1 (DIR ELE MOT ALE)
-
+
Mode 2 (RUD THR ELE AIL)
Modo 2 (DIR MOTO ELE ALE)
-
+
Mode 3 (AIL ELE THR RUD)
Modo 3 (ALE ELE MOT DIR)
-
+
Mode 4 (AIL THR ELE RUD)
Modo 4 (ALE MOT ELE DIR)
-
+
Beeper Mode
Modalità suono beeper
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
Beeper volume
0 - Quiet. No beeps at all.
@@ -499,242 +1058,239 @@ Mode 4:
4 - Fortissimo.
-
-
+
+
Quiet
Silenzioso
-
-
+
+
No Keys
No Tasti
-
-
+
+
Normal
Normale
-
-
+
+
Long
Lungo
-
+
Input Filter
Filtro ingressi
-
+
Single
Singolo
-
+
Oversample
Sovracampionato
-
+
Filter
Filtro
-
+
Owner Name
Proprietario
-
+
-
-
-
+
+
Off
NO
-
Switches Up
- Interruttori Su
+ Interruttori Su
-
Switches Down
- Interruttori Giù
+ Interruttori Giù
-
+
Trainer
Maestro/Allievo
-
-
+
+
PPM 1
PPM 1
+
-
-
-
+
+
chn1
chn1
+
-
-
-
+
+
chn2
chn2
+
-
-
-
+
+
chn3
chn3
+
-
-
-
+
+
chn4
chn4
-
+
Mode
Modo
-
+
Show Owner Name on Splash
Mostra proprietario all'avvio
-
+
Telemetry NO DATA Alarm
Allame mancanza telemetria
-
+
THR
THR
-
+
RUD
RUD
-
+
ELE
ELE
-
+
AIL
AIL
-
+
GEA
GEA
-
+
ID0
ID0
-
+
ID1
ID1
-
+
ID2
ID2
-
+
Beeper Length
Lunghezza suono
-
-
+
+
X-Short
Extra Corto
-
-
+
+
Short
Corto
-
-
+
+
X-Long
Extra Lungo
-
+
Haptic Mode
Modalità vibrazione
-
+
Only Alarms
Solo allarmi
-
-
+
+
All
Tutti
-
+
Alarms Only
Solo allarmi
-
+
Timeshift from UTC
Differenza in ore da GMT
-
+
GPS Coordinates
Coordinate GPS
-
+
hh° (N/S) mm' ss''.dd
-
+
NMEA
-
+
Haptic Length
Lunghezza vibrazione
-
+
LCD Display Type
Tipo display LCD
@@ -749,122 +1305,122 @@ Mode 4:
Recupera calib. e settaggi HW dal profilo scelto
-
+
Speaker
Altoparlante
-
+
BeeperVoice
Buzzer e voce
-
+
SpeakerVoice
Altoparlante e Voce
-
+
Standard
-
+
Optrex
-
+
Speaker Volume
Volume altoparlante
-
+
Haptic Strength
Intensità vibrazione (mod. HW)
-
+
BackLight Brightness
Luminosità retroilluminazione
-
+
RotEnc Navigation
Navigazione con Encoder
-
+
BackLight Auto OFF after
Auto spegnimento luce dopo
-
+
StickScroll
Scoll con stick
-
+
CrossTrim
Trim incrociati
-
+
BackLight Switch
Interruttore retroilluminazione
-
+
BackLight On Stick Move
Retroilluminazione su stick
-
+
BackLight Invert
Inversione retroilluminazione
-
+
Country Code
Codice paese
-
+
Europe
-
+
Japan
-
+
America
-
+
Metric
Sistema Metrico
-
+
Imperial
Imperiale
-
+
Measurement Units
Unità di misura
-
+
FrSky Internal Alarm
Allarme interno FrSky
-
+
PPMSim
@@ -874,27 +1430,27 @@ Mode 4:
Lingua per le voci
-
+
Beep volume
Volume Beeps
-
+
Wav volume
Volume file Wav
-
+
Vario volume
Volume per vario
-
+
Background volume
Volume sottofondo
-
+
FAI Mode
Modalità FAI
@@ -904,273 +1460,295 @@ Mode 4:
-
+
4800 Baud
-
+
9600 Baud
-
+
14400 Baud
-
+
19200 Baud
-
+
38400 Baud
-
+
57600 Baud
-
+
76800 Baud
-
+
115200 Baud
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen. This function cannot be disabled by the radio.
Se abilitate la modalità FAI, il variometro, le funzioni di lettura della telemetria e gli schermi telemetrici verrano disabilitati. Questa funzione non è disattivabile dalla radio.
-
+
Readonly Unlock
Sblocco modalità sola lettura
-
+
SC
-
+
SE
-
+
SA
-
+
SF
-
+
SH
-
+
SD
-
+
SB
-
+
SG
-
+
Input
Ingresso
-
+
Weight
Peso
-
+
Switch
Interruttore
+
-
-
-
+
+
+= (Sum)
+= (Somma)
+
-
-
-
+
+
:= (Replace)
:= (Sostituisci)
-
-
+
+
PPM 2
PPM 2
-
-
+
+
PPM 3
PPM 3
-
-
+
+
PPM 4
PPM 4
-
+
Telemetry
Telemetria
-
+
RSSI Alarm 1
Allarme RSSI 1
-
-
+
+
----
----
-
-
+
+
Yellow
Giallo
-
-
+
+
Orange
Arancione
-
-
+
+
Red
Rosso
-
+
RSSI Alarm 2
Allarme RSSI 2
-
+
NO DATA Alarm
Allarme NO DATA
-
+
Calibration
Calibrazione
-
+
STICK 1
STICK 1
-
+
STICK 2
STICK 2
-
-
+
+
+ Pot (normal)
+
+
+
+
+
+ Multipos Switch
+
+
+
+
+ S1 Type
+
+
+
+
+ S2 Type
+
+
+
+
+
Mid value
Valore intermedio
-
+
POT 4
POT 4
-
+
STICK 3
STICK 3
-
-
+
+
Negative span
Corsa negativa
-
-
+
+
Positive span
Corsa positiva
-
+
STICK 4
STICK 4
-
+
POT 1
POT 1
-
+
POT 2
POT 2
-
+
POT 3
POT 3
-
+
Battery
Batteria
-
+
v
v
-
+
PPM Multiplier
Moltiplicatore PPM
-
+
Current
Corrente
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen.
This function cannot be disabled by the radio.
Are you sure ?
@@ -1180,58 +1758,268 @@ Questa funzione non è disabilitabile dalla radio.
Siete sicuri ?
-
-
+
+
Warning
Avviso
-
+
Wrong data in profile, radio calibration was not retrieved
Dati errati nel profilo, la calibrazione della radio non è stata ripristinata
-
+
Wrong data in profile, hw related parameters were not retrieved
Dati errati nel profilo, i settaggi HW della radio non sono stati ripristinati
-
+
Do you want to store calibration in %1 profile<br>overwriting existing calibration?
Volete salvare la calibrazione e i settaggi nel profilo %1<br>sovrascrivendo i settaggi esistenti ?
-
+
Calibration and HW parameters saved.
Dati di calibrazione e settaggi HW salvati.
+
+ Heli
+
+
+ Form
+
+
+
+
+ Invert Elevator
+ Elevatore
+
+
+
+ Invert Aileron
+ Alettoni
+
+
+
+ Invert Collective
+ Collettivo
+
+
+
+ Invert
+
+
+
+
+ Off
+ NO
+
+
+
+ 120
+ 120
+
+
+
+ 120X
+ 120X
+
+
+
+ 140
+ 140
+
+
+
+ 90
+ 90
+
+
+
+ Collective
+ Collettivo
+
+
+
+ Swash Type
+ Tipo ciclico
+
+
+
+ Swash Ring
+ Anello del ciclico
+
+
+
+ InputsPanel
+
+
+
+ Move Up
+ Muovi in Su
+
+
+
+
+ Ctrl+Up
+ Ctrl+Up
+
+
+
+
+ Move Down
+ Muovi in Giù
+
+
+
+
+ Ctrl+Down
+ Ctrl+Down
+
+
+
+ Clear All Settings
+
+
+
+
+ Source(%1)
+
+
+
+
+ No Trim
+ No Trim
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ Not enough available inputs!
+
+
+
+
+ Delete Selected Inputs?
+
+
+
+
+ &Add
+ &Aggiungi
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ &Edit
+ &Modifica
+
+
+
+ Enter
+ Invio
+
+
+
+ &Delete
+ &Elimina
+
+
+
+ Delete
+ Elimina
+
+
+
+ &Copy
+
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+ &Taglia
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Paste
+ &Incolla
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ Du&plicate
+ Dup&lica
+
+
+
+ Ctrl+U
+ Ctrl+U
+
+
+
+ Clear Inputs?
+
+
+
+
+ Really clear all the inputs?
+
+
+
MainWindow
-
-
-
-
+
+
+
+
File loaded
Documento caricato
-
+
Display previous warning again at startup ?
Mostrare il precedente avviso all'avvio ?
-
+
Checking for updates
Controllo aggiornamenti
-
-
-
-
-
+
+
+
+
+
Unable to check for updates.
Impossibile controllare gli aggiornamenti.
@@ -1240,21 +2028,21 @@ Siete sicuri ?
Una nuova versione di companion9x è disponibile (versione %1)<br>Desiderate scaricarla ?
-
-
-
-
-
+
+
+
+
+
Save As
Salva come
-
+
Executable (*.exe)
Eseguibili (*.exe)
-
+
New release available
Nuova versione disponibile
@@ -1263,22 +2051,22 @@ Siete sicuri ?
Una nuova versione di companion9x è stata rilasciata, controllate il repository SVN
-
-
+
+
No updates available at this time.
Nessun aggiornamento disponibile.
-
+
Would you like to launch the installer?
Desiderate eseguire l'aggiornamento ?
-
-
-
-
-
+
+
+
+
+
Error opening file %1:
%2.
Errore durante l'apertura del file %1:
@@ -1289,13 +2077,13 @@ Siete sicuri ?
Il firmware richiesto è troppo grande per la flash a causa delle opzioni selezionate
-
+
Compilation server termporary failure, try later
Guasto temporaneo del server di compilazione, riprovate più tardi
-
-
+
+
Compilation server too busy, try later
Il server di compilazione è occupato, provate più tardi
@@ -1312,8 +2100,8 @@ Siete sicuri ?
Il firmware selezionato è diventato troppo grande per la memoria della radio, a causa delle opzioni selezionate
-
-
+
+
Unknown server failure, try later
Errore del server sconosciuto, provare più tardi
@@ -1322,7 +2110,7 @@ Siete sicuri ?
Volete scrivere il nuovo firmware sulla radio ora ?
-
+
Firmware %1 does not seem to have ever been downloaded.
Version %2 is available.
Do you want to download it now ?
@@ -1331,42 +2119,42 @@ E' disponibile la versione %2.
Volete scaricarla adesso ?
-
+
A new version of %1 firmware is available (current %2 - newer %3).
Do you want to download it now ?
Una nuova versione del firmware %1 è disponibile (attuale %2 - nuova %3).
Volete scaricarla ora ?
-
+
Ignore this version (r%1)?
Ignorare questa versione (r%1) ?
-
+
Open
Apri
-
-
+
+
File saved
Documento salvato
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Errore
@@ -1379,7 +2167,7 @@ Volete scaricarla ora ?
Companion9x - EEPROM Editor - firmware %1
-
+
Display previous message again at startup ?
Mostrare il precedente avviso all'avvio ?
@@ -1388,7 +2176,7 @@ Volete scaricarla ora ?
Il firmware selezionato è diventato troppo grande per la flash, a causa delle opzioni slezionate
-
+
Compilation server temporary failure, try later
Guasto temporaneo del server di compilazione, riprovate più tardi
@@ -1401,70 +2189,70 @@ Volete scaricarla ora ?
Il firmware richiesto è troppo grande per la memoria della radio a causa delle opzioni selezionate
-
+
Do you want to write the firmware to the transmitter now ?
Volete scrivere il nuovo firmware sulla radio ora ?
-
-
+
+
Yes
Si
-
-
+
+
No
No
-
-
+
+
Release Notes
Note di aggiornamento
-
-
+
+
Do you want to download release %1 now ?
Volete scaricare la versione %1 adesso ?
-
+
Release notes contain very important informations. Do you want to see them now ?
Le note di rilascio includono informazioni molto importanti. Volete vederle ora ?
-
+
Firmware updates
Aggiornamenti firmware
-
+
Current firmware does not provide release notes informations.
Il firmware selezionato non fornisce note di aggiornamento.
-
+
Cannot write file %1:
%2.
Non posso scrivere il file %1:
%2.
-
-
-
-
-
+
+
+
+
+
Taranis radio not found
Radio taranis non trovata
-
-
-
-
+
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
Impossibile identificare la radio sul vostro sistema, verificate che il disco della eeprom sia connesso.
@@ -1485,16 +2273,16 @@ non è stato riconosciuto come una EEProm valida
Scriverlo ugualmente ?
-
-
-
+
+
+
Backup is impossible
Impossibile effettuare il Backup
-
-
-
+
+
+
The backup dir set in preferences does not exist
La directory per i backup impostata in preferenze non esiste
@@ -1507,8 +2295,8 @@ Scriverlo ugualmente ?
Non posso controllare la compatibilità delle impostazioni! Continuare ugualmente ?
-
-
+
+
Warning
Avviso
@@ -1529,7 +2317,7 @@ Scriverlo ugualmente ?
Scrivi il fimware sulla radio
-
+
Conversion failed
Conversione fallita
@@ -1542,7 +2330,7 @@ Scriverlo ugualmente ?
Ripristina memoria sulla Radio
-
+
Restore failed
Ripristino fallito
@@ -1559,7 +2347,7 @@ Scriverlo ugualmente ?
Non posso aggiornare il firmware, la memoria dei settaggi originale può essere trovata in %1
-
+
Backup failed
Salvataggio fallito
@@ -1576,10 +2364,10 @@ Scriverlo ugualmente ?
Scrivi il firmware in un documento
-
-
-
-
+
+
+
+
Read Models and Settings From Tx
Leggi le impostazioni dalla radio
@@ -1588,22 +2376,44 @@ Scriverlo ugualmente ?
Scrivere %1 nella memoria della radio ?
-
+
Firmware does not longer fit in the Tx, due to selected firmware options
Il firmware selezionato è diventato troppo grande per la radio, a causa delle opzioni selezionate
-
+
Firmware does not fit in the Tx, due to selected firmware options
Il firmware richiesto è troppo grande per la radio a causa delle opzioni selezionate
-
+
+ The selected language will be used the next time you start Companion.
+
+
+
+
+
+
+ OK
+
+
+
+
+ The new theme will be loaded the next time you start Companion.
+
+
+
+
+ The icon size will be used the next time you start Companion.
+
+
+
+
Write Models and settings from %1 to the Tx?
Scrivere le impostazioni sulla radio da %1?
-
+
The file %1
has not been recognized as a valid Models and Settings file
Write anyway ?
@@ -1612,203 +2422,378 @@ non è stato riconosciuto come un file di impostazioni valido.
Scriverlo ugualmente ?
-
-
-
-
-
-
+
+
+
+
+
+
Backup Models and Settings From Tx
Salva impostazioni della radio
-
+
Cannot check Models and Settings compatibility! Continue anyway?
Non posso controllare la compatibilità delle impostazioni! Continuare ugualmente ?
-
+
The transmitter firmware belongs to another product family, check file and preferences!
Il firmware nella radio è di una famiglia differente\n rispetto a quello delle impostazioni che si stanno scrivendo.\n Controllare il documento e le preferenze!
-
+
The transmitter firmware is outdated, please upgrade!
Il firmware della radio è obsoleto, pianificate un aggiornamento!
-
+
Write Models and Settings To Tx
Scrivi le impostazioni nella radio
-
-
+
+
Write Firmware To Tx
Scrivi il fimware sulla radio
-
+
Cannot convert Models and Settings for use with this firmware, original data will be used
Non posso convertire le impostazioni per questo firmware, verranno usate le impostazioni originali
-
+
Restore Models and Settings To Tx
Ripristina le impostazioni sulla Radio
-
+
Could not restore Models and Settings to TX. The models and settings data file can be found at: %1
Non posso ripristinare le impostazioni sulla radio, il file originale può essere trovato in %1
-
+
Firmware write failed
Scrittura del firmware fallita
-
+
Could not write firmware to to transmitter. The models and settings data file can be found at: %1
Non posso aggiornare il firmware, le impostazioni originali possono essere trovate nel file %1
-
+
Cannot backup existing Models and Settings from TX. Firmware write process aborted
Non riesco a salvare le impostazioni della radio, l'aggiornamento firmware viene annullato
-
+
Save transmitter Models and Settings to File
Salva le impostazioni dalla radio e scrivile in un documento
-
+
Impossible to identify the radio on your system, please verify that the eeprom disk is connected.
Impossibile identificare la radio sul vostro sistema, verificate che il disco della eeprom sia connesso.
-
+
Read Tx Firmware to File
Scrivi il firmware in un documento
-
+
Copyright
Copyright
-
+
+ Classic
+
+
+
+
+ The multicolor classical Companion icon theme
+
+
+
+
+ A monochrome black icon theme
+
+
+
+
+ A monochrome white icon theme
+
+
+
+
+ A monochrome blue icon theme
+
+
+
+
+ Small
+
+
+
+
+ Use small toolbar icons
+
+
+
+
+ Use normal size toolbar icons
+
+
+
+
+ Normal
+ Normale
+
+
+
+ Use big toolbar icons
+
+
+
+
+ Big
+
+
+
+
+ Use huge toolbar icons
+
+
+
+
+ Huge
+
+
+
+
+ System default language
+
+
+
+
+ Use system default language in menus
+
+
+
+
+ Czech
+ Ceco
+
+
+
+ Use Czech in menus
+
+
+
+
+ German
+ Tedesco
+
+
+
+ Use German in menus
+
+
+
+
+ English
+ Inglese
+
+
+
+ Use English in menus
+
+
+
+
+ French
+ Francese
+
+
+
+ Use French in menus
+
+
+
+
+ Italian
+ Italiano
+
+
+
+ Use Italian in menus
+
+
+
+
+ Hebrew
+
+
+
+
+ Use Hebrew in menus
+
+
+
+
+ Polish
+
+
+
+
+ Use Polish in menus
+
+
+
+
+ Portuguese
+ Portoghese
+
+
+
+ Use Portuguese in menus
+
+
+
+
+ Swedish
+ Svedese
+
+
+
+ Use Swedish in menus
+
+
+
+
+ Russian
+
+
+
+
+ Use Russian in menus
+
+
+
+
+ Set Menu Language
+
+
+
+
+ &Settings
+
+
+
Version %1 (revision %2), %3
- Versione %1 (revisione %2), %3
+ Versione %1 (revisione %2), %3
The companion9x project was originally forked from eePe
Il progetto companion9x è stato inizialmente derivato da eePe
-
If you've found this program useful, please support by
- Se trovate questo programma utile, supportatelo mediante una
+ Se trovate questo programma utile, supportatelo mediante una
-
donating
- donazione
+ donazione
About companion9x
Informazioni su companion9x
-
-
-
+
+
&%1 %2
-
- %1 %2
-
-
-
-
+
&New
&Nuovo
-
+
Create a new file
Crea un nuovo documento
-
+
&Open...
&Apri...
-
+
Open an existing file
Apri un documente esistente
-
+
&loadBackup...
carica&Backup...
-
+
Load backup from file
Carica backup da file
-
+
&Save
&Salva
-
+
Save the document to disk
Salva il documento su disco
-
+
Save &As...
S&alva come...
-
+
Save the document under a new name
Salva il documento con un nuovo nome
-
+
Lo&gs
Lo&gs
-
+
Ctrl+G
-
+
Open log file
Apri file di log
-
&Preferences...
- &Preferenze...
+ &Preferenze...
-
+
Edit general preferences
Modifica preferenze
-
+
&Check for updates...
&Controlla aggiornamenti...
@@ -1817,7 +2802,7 @@ Scriverlo ugualmente ?
Controlla per nuove versioni di companion9x
-
+
Contributors &List...
E&lenco collaboratori...
@@ -1826,7 +2811,7 @@ Scriverlo ugualmente ?
Mostra l'elenco di quelli che hanno contribuito a companion9x
-
+
ChangeLog...
Cambiamenti...
@@ -1835,137 +2820,166 @@ Scriverlo ugualmente ?
Mostra l'elenco dei cambiamenti in Companion9x
-
+
+ A new release of Companion is available please check the OpenTX website!
+
+
+
+
+ OpenTX Home Page: <a href='%1'>%1</a>
+
+
+
+
+ The OpenTX Companion project was originally forked from <a href='%2'>eePe</a>
+
+
+
+
+ If you've found this program useful, please support by <a href='%1'>donating</a>
+
+
+
+
+ Version %1, %3
+
+
+
+
Firmware ChangeLog...
Cambiamenti del firmware...
-
+
Show firmware changelog
Mostra l'elenco dei cambiamenti del firmware
-
+
Compare...
Confronta...
-
+
Compare models
Confronta due modelli
-
Customize your &TX...
- Personalizza il &TX...
+ Personalizza il &TX...
-
+
Customize the splash screen of your TX
Personalizza la schermata di avvio della radio
-
+
E&xit
Es&ci
-
+
Exit the application
Esci dall'applicazione
-
+
Cu&t
Ta&glia
-
+
Cut the current selection's contents to the clipboard
Taglia la selezione negli appunti
-
+
&Copy
&Copia
-
+
Copy the current selection's contents to the clipboard
Copia la selezione negli appunti
-
+
&Paste
&Incolla
-
+
Paste the clipboard's contents into the current selection
Incolla gli appunti nella selezione corrente
-
+
&Write Models and Settings To Tx
Scri&vi le impostazioni nella radio
-
+
Write Models and Settings to transmitter
Scrivi le impostazioni nella radio
-
+
&Read Models and Settings From Tx
&Leggi le impostazioni dalla radio
-
+
Read Models and Settings from transmitter
Leggi le impostazioni dalla radio
-
+
Write Firmware
Scrivi il fimware
-
+
Write firmware to transmitter
Scrivi il firmware nella radio
-
+
Write Models and Settings from file to Tx
Scrivi le impostazioni nella radio da un documento
-
+
Write Models and Settings from file to transmitter
Scrivi le impostazioni nella radio da un documento
-
+
Save transmitter Models and Settings to file
Salva le impostazioni dalla radio e scrivile in un documento
-
+
Save the Models and Settings from the transmitter to a file
Leggi le impostazioni dalla radio e scrivile in un file
-
+
Read Firmware
Leggi firmware
-
+
Read firmware from transmitter
Leggi il firmware dalla radio
-
+
+ &Configure connection software...
+
+
+
+
Configure software for reading from and writing to the transmitter
Configura il software per la lettura/scrittura del microprocessore
@@ -1978,23 +2992,23 @@ Scriverlo ugualmente ?
Configura il programmatore del microprocessore
-
+
&Read/Write
&Leggi/Scrivi
-
+
Write
Scrivi
-
-
+
+
Invalid Models and Settings File %1
File impostazioni non valido %1
-
+
Invalid binary Models and Settings File %1
File binario delle impostazioni non valido %1
@@ -2003,7 +3017,7 @@ Scriverlo ugualmente ?
&Scrivi la memoria nella radio
-
+
Ctrl+Alt+W
Ctrl+Alt+W
@@ -2016,7 +3030,7 @@ Scriverlo ugualmente ?
&Leggi la memoria dalla radio
-
+
Ctrl+Alt+R
Ctrl+Alt+R
@@ -2057,219 +3071,214 @@ Scriverlo ugualmente ?
Leggi il firmware dalla radio
-
&Configure...
- &Configura...
+ &Configura...
Configure burning software
Configura il programmatore del microprocessore
-
-
-
+
+
+
Companion - Models and Settings Editor - %1 - profile %2
-
-
-
-
+
+
+
+
Companion - Models and Settings Editor - %1
-
+
A new version of Companion is available (version %1)<br>Would you like to download it?
-
- A new release of Companion is available please check the repository
-
-
-
-
-
+
+
Compilation server requires registration, please check OpenTX web site
-
- The Companion project was originally forked from eePe
-
-
-
-
+
About Companion
-
+
+ &General Preferences...
+
+
+
+
Check for new version of Companion
-
+
Show Companion contributors list
-
+
Show Companion changelog
-
+
+ Configure transmitter start screen...
+
+
+
+
&List programmers
E&lenco programmatori
-
+
List available programmers
Lista dei programmatori supportati
-
+
&Fuses...
&Fuses...
-
+
Show fuses dialog
Mostra finestra di dialogo Fuses
-
+
&Simulate
Si&mula
-
+
Alt+S
-
+
Simulate selected model.
Simula modello selezionato.
-
+
&Print
Stam&pa
-
+
Ctrl+P
-
+
Print current model.
Stampa modello corrente.
-
Cl&ose
- C&hiudi
+ C&hiudi
-
Close the active window
- Chiudi finestra corrente
+ Chiudi finestra corrente
-
Close &All
- Chiudi &Tutto
+ Chiudi &Tutto
-
Close all the windows
- Chiudi dutte le finestre
+ Chiudi dutte le finestre
-
&Tile
- Aff&ianca
+ Aff&ianca
-
Tile the windows
- Affianca fineste
+ Affianca fineste
-
&Cascade
- &Disponi
+ &Disponi
-
Cascade the windows
- Disponi finestre a cascata
+ Disponi finestre a cascata
-
Ne&xt
- Successi&va
+ Successi&va
-
Move the focus to the next window
- Sposta il fuoco sulla finestra seguente
+ Sposta il fuoco sulla finestra seguente
-
Pre&vious
- P&recedente
+ P&recedente
-
Move the focus to the previous window
- Sposta il fuoco sulla finestra precedente
+ Sposta il fuoco sulla finestra precedente
-
+
&About
&Informazioni su
-
+
Show the application's About box
Mostra la finestra Informazioni Su
-
Switch layout direction
- Cambia orientamento
+ Cambia orientamento
-
Switch layout Left/Right
- Cambia orientazione Sinistra/Destra
+ Cambia orientazione Sinistra/Destra
-
-
+
+
Recent Files
Documenti Recenti
-
-
+
+
Firmware Profiles
Profili personalizzati
-
+
+ Set Icon Theme
+
+
+
+
+ Set Icon Size
+
+
+
+
&File
&Documento
-
+
&Edit
&Modifica
@@ -2278,22 +3287,21 @@ Scriverlo ugualmente ?
&Programma
-
&Window
- &Finestra
+ &Finestra
-
+
&Help
&Aiuto
-
+
File
Documento
-
+
Edit
Modifica
@@ -2302,17 +3310,17 @@ Scriverlo ugualmente ?
Scrivi
-
+
Help
Aiuto
-
+
Ready
Pronto
-
+
Unable to find file %1!
Impossibile trovare il file %1!
@@ -2321,7 +3329,7 @@ Scriverlo ugualmente ?
File impostazioni non valido %1
-
+
Error reading file %1:
%2.
Error durante la lettura del file %1:
@@ -2340,175 +3348,175 @@ Scriverlo ugualmente ?
byte liberi
-
+
Do you want to use model wizard?
Utilizzare l'assistente di configurazione dei modelli ?
-
-
-
+
+
+
Companion
-
+
Ask this question again ?
Volete che vi sia ancora richiesto ?
-
+
Editing model %1:
Modifica modello %1:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Errore
-
-
+
+
Unable to find file %1!
Impossibile trovare il file %1!
-
-
-
-
+
+
+
+
Error opening file %1:
%2.
Errore durante l'apertura del file %1:
%2.
-
-
+
+
Invalid EEPROM File %1
File impostazioni non valido %1
-
-
+
+
Error reading file %1:
%2.
Error durante la lettura del file %1:
%2.
-
+
Invalid binary EEPROM File %1
File binario delle impostazioni non valido %1
-
-
-
-
+
+
+
+
Save As
Salva Come
-
-
-
-
+
+
+
+
Cannot write file %1:
%2.
Non posso scrivere il file %1:
%2.
-
-
+
+
Error writing file %1:
%2.
Errore durante la scrittura del file %1:
%2.
-
+
Backup is impossible
Impossibile effettuare il Backup
-
+
The backup dir set in preferences does not exist
La directory per i backup impostata in preferenze non esiste
-
-
-
+
+
+
Taranis radio not found
Radio taranis non trovata
-
-
-
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
Impossibile identificare la radio sul vostro sistema, verificate che il disco della eeprom sia connesso.
-
-
-
+
+
+
Backup EEPROM From Tx
Salva impostazioni dalla radio
-
+
Cannot check eeprom compatibility! Continue anyway?
Non posso controllare la compatibilità della eEprom! Continuare ugualmente ?
-
-
+
+
Warning
Avviso
-
+
Firmware in radio is of a different family of eeprom written, check file and preferences!
Il firmware nella radio è di una famiglia differente\n rispetto a quello della eEprom che si sta scrivendo.\n Controllare la eeprom e le preferenze!
-
+
Firmware in flash is outdated, please upgrade!
Il firmware nella radio è obsoleto, pianificate un aggiornamento!
-
+
Write EEPROM To Tx
Scrivi le impostazioni nella radio
-
+
Open
Apri
-
+
Invalid binary backup File %1
File di backup binario non valido %1
@@ -2517,14 +3525,14 @@ Scriverlo ugualmente ?
companion9x
-
+
%1 has been modified.
Do you want to save your changes?
%1 è stato modificato.
Salvare le modifiche ?
-
+
Cannot write temporary file!
Errore durante la scittura del file temporaneo!
@@ -2532,129 +3540,125 @@ Salvare le modifiche ?
MixerDialog
-
+
Dialog
Dialogo
-
+
Source
Sorgente
-
-
-
-
+
+
+
+
The source for the mixer
Sorgente da miscelare
-
+
Weight
Peso
-
-
-
-
+
Offset
Spostamento
-
+
Include Trim
Include i Trim
-
+
Curve
Curva
-
+
The curve used by the mix
Curva utilizzata dalla miscelazione
-
+
Switch
Interruttore
-
-
-
+
+
+
GV
VG
-
+
Switch used by the mix.
If blank then the mix is considered to be "ON" all the time.
Interruttore che controlla la miscelazione.
Se vuoto la miscelazione è sempre attiva.
-
+
Yes
Si
-
+
No
No
-
+
Warning
Avviso
-
Curve/Differential
- Curva/Differenziale
+ Curva/Differenziale
-
+
Mixer warning.
Setting this value will cause a beep to be emmitted when this value is active.
Allarme miscelazione.
Impostare questo valore causa un'allarme in corrispondenza del valore.
-
+
OFF
Spento
-
+
1 Beep
1 Beep
-
+
2 Beep
2 Beep
-
+
3 Beep
3 Beep
-
+
Multiplex
Miscelatore
-
+
Flight modes
Fasi di volo
-
+
Multiplexer
This determines how mixer values are added.
@@ -2671,105 +3675,103 @@ Determina come il valore viene aggiunto alla miscelazione.
"R" significa che il valore rimpiazza il valore attuale del canale. Se l'interruttore è spento questo valore verrà ignorato.
-
+
ADD
AGGIUNGI
-
+
MULTIPLY
MOLTIPLICA
-
+
REPLACE
SOSTITUISCI
-
+
Include DR/Expo
Include DR/Espo
-
+
0
0
-
+
1
1
-
+
2
2
-
+
3
3
-
+
4
4
-
+
5
5
-
+
6
6
-
+
7
7
-
+
8
8
-
Enable FM Trim
- Abilita FM Trim
+ Abilita FM Trim
-
+
Name
Nome
-
Fix Offset
- Spostamento fisso
+ Spostamento fisso
-
+
Delay
Ritardo
-
+
Slow
Rallentamento
-
+
Up
Su
-
-
-
-
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -2794,2544 +3796,1779 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Se il rallentamento non è zero allora la velocità verrà impostata al valore selezionato -> il valore indica il numero di secondi per passare da -100 a 100.</p></body></html>
-
+
Down
Giù
-
+
DEST -> X%1
-
+
DEST -> CH%1%2
DEST -> CH%1%2
-
-
FM Trim Value
- Valore FM Trim
+ Valore FM Trim
-
+
Rud
-
+
Ele
-
+
Thr
-
+
Ail
+
+ MixesPanel
+
+
+
+ Move Up
+ Muovi in Su
+
+
+
+
+ Ctrl+Up
+ Ctrl+Up
+
+
+
+
+ Move Down
+ Muovi in Giù
+
+
+
+
+ Ctrl+Down
+ Ctrl+Down
+
+
+
+ Clear Mixes
+ Cancella Miscelazioni
+
+
+
+
+
+ X%1
+
+
+
+
+
+
+ CH%1%2
+ CH%1%2
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ No Trim
+ No Trim
+
+
+
+ No DR/Expo
+ No DR/Expo
+
+
+
+ Offset(%1)
+
+
+
+
+ Delay(u%1:d%2)
+ Ritarda(s%1:g%2)
+
+
+
+ Slow(u%1:d%2)
+ Rallenta(s%1:g%2)
+
+
+
+ Warn(%1)
+ Avviso(%1)
+
+
+
+ Not enough available mixers!
+ Non ci sono più miscelazioni disponibili!
+
+
+
+ Delete Selected Mixes?
+ Cancellare le miscelazioni selezionate ?
+
+
+
+ &Add
+ &Aggiungi
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ &Edit
+ &Modifica
+
+
+
+ Enter
+ Invio
+
+
+
+ &Delete
+ &Elimina
+
+
+
+ Delete
+ Elimina
+
+
+
+ &Copy
+
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+ &Taglia
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Paste
+ &Incolla
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ Du&plicate
+ Dup&lica
+
+
+
+ Ctrl+U
+ Ctrl+U
+
+
+
+ Clear Mixes?
+ Cancellare le miscelazioni ?
+
+
+
+ Really clear all the mixes?
+ Sicuri di voler cancellare le miscelazioni ?
+
+
ModelEdit
-
+
Dialog
Dialogo
-
+
Simulate
Simula Modello
-
+
Setup
Impostazioni
-
+
+ Heli
+
+
+
+
+ Inputs
+
+
+
+
+ Logical Switches
+
+
+
+
+ Switch Assignment
+
+
+
Model Name
- Nome del modello
+ Nome del modello
-
Timer1
- Temporizzatore1
+ Temporizzatore1
-
-
mm:ss
- mm:ss
+ mm:ss
-
-
Count Down
- Decrementa
+ Decrementa
-
-
Count Up
- Incrementa
+ Incrementa
-
Timer2
- Temporizzatore2
+ Temporizzatore2
-
Trim Increment
- Incremento del Trim
+ Incremento del Trim
-
Exponential
- Esponenziale
+ Esponenziale
-
Extra Fine
- Extra Fine
+ Extra Fine
-
Fine
- Fine
+ Fine
-
Medium
- Medio
+ Medio
-
Coarse
- Ampio
+ Ampio
-
Throttle Trim
- Trim Motore
+ Trim Motore
-
Throttle Expo
- Esponenziale Motore
+ Esponenziale Motore
-
Center beep
- Avviso centraggio
+ Avviso centraggio
-
-
-
-
-
-
-
-
-
RUD
- RUD
+ RUD
-
-
-
-
-
-
-
-
-
-
-
-
ELE
- ELE
+ ELE
-
-
-
-
-
THR
- THR
+ THR
-
-
-
-
-
-
-
-
-
-
AIL
- AIL
+ AIL
-
P1
- P1
+ P1
-
P2
- P2
+ P2
-
P3
- P3
+ P3
-
Pulse Shift (polarity)
- Polarità impulso
+ Polarità impulso
-
-
-
Positive
- positivo
+ positivo
-
-
-
Negative
- Negativo
+ Negativo
-
Extended Limits
- Limiti estesi
+ Limiti estesi
-
-
-
Protocol
- Protocollo
+ Protocollo
-
-
-
+
Channels
Canali
-
-
-
-
-
-
ch
- ch
+ ch
-
-
-
PPM delay
- Ritardo PPM
+ Ritardo PPM
-
-
-
usec
- usec
+ usec
-
Extended Trims
- Trim estesi
+ Trim estesi
-
Throttle2Trig
- Avvia T2 con motore
+ Avvia T2 con motore
-
-
-
PPM Frame Length
- Lunghezza segnale PPM
+ Lunghezza segnale PPM
-
-
-
mSec
- mSec
+ mSec
-
-
Heli Setup
- Elicottero
+ Elicottero
-
Swash Type
- Tipo ciclico
+ Tipo ciclico
-
-
Off
- NO
+ NO
-
120
- 120
+ 120
-
120X
- 120X
+ 120X
-
140
- 140
+ 140
-
90
- 90
+ 90
-
Collective
- Collettivo
+ Collettivo
-
Swash Ring
- Anello del ciclico
+ Anello del ciclico
-
-
-
Invert
- Invers
+ Invers
-
Invert Elevator
- Elevatore
+ Elevatore
-
Invert Aileron
- Alettoni
+ Alettoni
-
Invert Collective
- Collettivo
+ Collettivo
-
-
-
-
-
-
-
-
-
Fade In
- Tempo transizione in ingresso
+ Tempo transizione in ingresso
-
-
-
-
-
-
-
-
-
Fade Out
- Tempo transizione in uscita
+ Tempo transizione in uscita
-
-
-
-
-
-
-
-
-
trim2
- trim2
+ trim2
-
-
-
-
-
-
-
-
-
trim1
- trim1
+ trim1
-
-
DSM Type
- Tipologia DSM
+ Tipologia DSM
-
-
LP4/LP5
- LP4/LP5
+ LP4/LP5
-
-
DSM2only
- DSM2
+ DSM2
-
-
DSM2/DSMX
- DSM2/DSMX
+ DSM2/DSMX
-
-
RX Number
- ID Ricevente
+ ID Ricevente
-
Throttle Source
Throttle Trace
- Sorgente motore
+ Sorgente motore
-
-
CH01
- CH01
+ CH01
-
-
CH02
- CH02
+ CH02
-
-
CH03
- CH03
+ CH03
-
-
CH04
- CH04
+ CH04
-
-
CH05
- CH05
+ CH05
-
-
CH06
- CH06
+ CH06
-
-
CH07
- CH07
+ CH07
-
-
CH08
- CH08
+ CH08
-
-
CH09
- CH09
+ CH09
-
-
CH10
- CH10
+ CH10
-
-
CH11
- CH11
+ CH11
-
-
CH12
- CH12
+ CH12
-
-
CH13
- CH13
+ CH13
-
-
CH14
- CH14
+ CH14
-
-
CH15
- CH15
+ CH15
-
-
CH16
- CH16
+ CH16
-
-
Check
- Controllo
+ Controllo
-
Model Voice
- Voce per il modello
+ Voce per il modello
-
Flight Mode 0 (Default)
- Fase di volo 0 (Predefinita)
+ Fase di volo 0 (Predefinita)
-
-
-
-
-
-
-
-
-
trim4
- trim4
+ trim4
-
-
-
-
-
-
-
-
-
trim3
- trim3
+ trim3
-
-
-
-
-
-
-
-
-
GVAR1
- VARG1
+ VARG1
-
-
-
-
-
-
-
-
-
GVAR2
- VARG2
+ VARG2
-
-
-
-
-
-
-
-
-
GVAR3
- VARG3
+ VARG3
-
-
-
-
-
-
-
-
-
GVAR4
- VARG4
+ VARG4
-
-
-
-
-
-
-
-
-
GVAR5
- VARG5
+ VARG5
-
-
-
-
-
-
-
-
-
Rotary encoder B
- Encoder Rotativo B
+ Encoder Rotativo B
-
-
-
-
-
-
-
-
-
Rotary encoder A
- Encoder Rotativo A
+ Encoder Rotativo A
-
-
-
-
-
-
-
-
-
-
-
-
-
Switch
- Interruttore
+ Interruttore
Expos/DR
Esponenziali/DR
-
+
Mixes
Miscelazioni
-
Limits
- Limiti
+ Limiti
NOR
NOR
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
INV
- INV
+ INV
-
-
-
Channel
- Canale
+ Canale
-
-
-
Offset
- Sposta
+ Sposta
-
-
-
-
-
Min
- Min
+ Min
-
-
-
-
-
Max
- Max
+ Max
-
+
Curves
Curve
-
Curve 3
- Curva 3
+ Curva 3
-
Curve 4
- Curva 4
+ Curva 4
-
Curve 5
- Curva 5
+ Curva 5
-
Curve 6
- Curva 6
+ Curva 6
-
Curve 7
- Curva 7
+ Curva 7
-
Curve 8
- Curva 8
+ Curva 8
-
Curve 9
- Curva 9
+ Curva 9
-
Curve 10
- Curva 10
+ Curva 10
-
Curve 11
- Curva 11
+ Curva 11
-
Curve 12
- Curva 12
+ Curva 12
-
Curve 13
- Curva 13
+ Curva 13
-
Curve 14
- Curva 14
+ Curva 14
-
Curve 15
- Curva 15
+ Curva 15
-
Curve 16
- Curva 16
+ Curva 16
-
Curve 2
- Curva 2
+ Curva 2
-
Curve 1
- Curva 1
+ Curva 1
-
Clear All Curves
- Azzera tutte le curve
+ Azzera tutte le curve
-
Custom switches
- Int. Personalizzati
+ Int. Personalizzati
-
-
-
-
Function
- Funzione
+ Funzione
-
-
V1
- V1
+ V1
-
-
V2
- V2
+ V2
-
Safety Switches
- Int. Sicurezza
+ Int. Sicurezza
-
Value
- Valore
+ Valore
-
-
- TriggerB
-
-
-
-
Disable Throttle Warning
- Disabilita avviso Motore
+ Disabilita avviso Motore
-
Switch startup Warning
- Avviso interruttori all'avvio
+ Avviso interruttori all'avvio
-
GEA
- GEA
+ GEA
-
- 3POS
-
-
-
-
-
-
ON
- Acceso
+ Acceso
-
-
OFF
- Spento
+ Spento
-
ID0
- ID0
+ ID0
-
ID1
- ID1
+ ID1
-
ID2
- ID2
+ ID2
-
REa
- REa
+ REa
-
REb
- REb
+ REb
-
Instant Trim
- Trim Istantanei
+ Trim Istantanei
-
-
Persistent
- Persistente
+ Persistente
-
-
MinuteBeep
- Suono al minuto
+ Suono al minuto
-
-
CountDownBeep
- Suono nel conto alla rovescia
+ Suono nel conto alla rovescia
-
- RS
-
-
-
-
ModelSetup
- Impostazione modello
+ Impostazione modello
-
- SB
-
-
-
-
- SD
-
-
-
-
- SA
-
-
-
-
- SC
-
-
-
-
- SG
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
RF Module 1
- Modulo n° 1
+ Modulo n° 1
-
RF Module 2
- Modulo n° 2
+ Modulo n° 2
-
Reverse Throttle Operation
- Stick motore invertito
+ Stick motore invertito
-
Model Image
- Immagine modello
+ Immagine modello
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Stick motore inverso.
+ Stick motore inverso.
Se l'opzione selezionata lo stick motore verrà rovesciato. Il minimo sarà in avanti, anche i trim verranno rovesciati e anche gli avvisi.
-
Master
- Maestro
+ Maestro
-
Slave
- Allievo
+ Allievo
-
Trainer Mode
- Modalità maestro allievo
+ Modalità maestro allievo
-
Master/Trainer Port
- Porta maestro/allievo
+ Porta maestro/allievo
-
-
-
Start
- Inizio
+ Inizio
-
-
Polarity
- Polarità
+ Polarità
-
Failsafe
- Impostazioni sicurezza
+ Impostazioni sicurezza
-
External module
- Modulo esterno
+ Modulo esterno
-
-
Failsafe Mode
- Modalità FailSafe
+ Modalità FailSafe
-
-
Hold
- Mantieni
+ Mantieni
-
-
Custom
- Personalizzato
+ Personalizzato
-
-
No Pulses
- No impulsi
+ No impulsi
-
Internal Module
- Modulo interno
+ Modulo interno
-
+
Flight Modes
Fasi di volo
-
-
-
-
-
-
-
-
-
Flight Mode Name
- Nome fase di volo
+ Nome fase di volo
-
GVAR6
- VARG6
+ VARG6
-
GVAR7
- VARG7
+ VARG7
-
FM 1
- FV 1
+ FV 1
-
FM 2
- FV 2
+ FV 2
-
FM 3
- FV 3
+ FV 3
-
FM 4
- FV 4
+ FV 4
-
FM 5
- FV 5
+ FV 5
-
FM 6
- FV 6
+ FV 6
-
FM 7
- FV 7
+ FV 7
-
FM 8
- FV 8
+ FV 8
-
-
Center
- Centro
+ Centro
-
-
Sym
- Simm
+ Simm
-
-
Curve type
- Tipo curva
+ Tipo curva
-
3 points
- 3 punti
+ 3 punti
-
3 points custom
- 3 punti personalizzata
+ 3 punti personalizzata
-
5 points
- 5 punti
+ 5 punti
-
5 points custom
- 5 punti personalizzata
+ 5 punti personalizzata
-
9 points
- 9 punti
+ 9 punti
-
9 points custom
- 9 punti personalizzata
+ 9 punti personalizzata
-
17 points
- 17 punti
+ 17 punti
-
17 points custom
- 17 punti personalizzata
+ 17 punti personalizzata
-
Curve name
- Nome curva
+ Nome curva
-
Curve Creator
- Assistente Curve
+ Assistente Curve
-
Both
- Entrambi
+ Entrambi
-
- x>0
-
-
-
-
- x<0
-
-
-
-
Linear
- Lineare
+ Lineare
-
Single Expo
- Esponenziale singola
+ Esponenziale singola
-
Symmetrical f(x)=-f(-x)
Simmetrycal f(x)=-f(-x)
- Expo simmetrica f(x)=-f(-x)
+ Expo simmetrica f(x)=-f(-x)
-
Symmetrical f(x)=f(-x)
Simmetrycal f(x)=f(-x)
- Expo simmetrica f(x)=f(-x)
+ Expo simmetrica f(x)=f(-x)
-
Side
- Lato
+ Lato
-
Y at X=0
- Y a X=0
+ Y a X=0
-
Y at X=100
- Y a X=100
+ Y a X=100
-
Coefficient
- Coefficiente
+ Coefficiente
-
Y at X=-100
- Y a X=-100
+ Y a X=-100
-
Apply
- Applica
+ Applica
-
CS9
CSw9
- CS9
+ CS9
-
-
Duration
- Durata
+ Durata
-
CSF
CSwF
- CSF
+ CSF
-
CSD
CSwD
- CSD
+ CSD
-
-
AND
- AND
+ AND
-
-
Delay
- Ritardo
+ Ritardo
-
Custom Functions
- Funzioni personalizzate
+ Funzioni personalizzate
-
-
Param
- Parametro
+ Parametro
-
-
Enable
- Abilita
+ Abilita
-
+
Telemetry
Telemetria
-
-
-
-
A1
- A1
+ A1
-
-
FAS
- FAS
+ FAS
-
CEL
- CEL
+ CEL
-
- Alti
-
-
-
-
- Alti+
-
-
-
-
Vario
- Variometro
+ Variometro
-
Sink Min
Sunk Min
- Min Discesa
+ Min Discesa
-
-
Unit
- Unità
+ Unità
-
-
Raw (-)
- Grezza (-)
+ Grezza (-)
-
-
Max Value
- Valore MAX
+ Valore MAX
-
-
Alarm 1
- Allarme 1
+ Allarme 1
-
-
-
-
-
-
----
- ----
+ ----
-
-
-
-
-
-
Yellow
- Giallo
+ Giallo
-
-
-
-
-
-
Orange
- Arancione
+ Arancione
-
-
-
-
-
-
Red
- Rosso
+ Rosso
-
-
-
-
<
- <
+ <
-
-
-
-
>
- >
+ >
-
-
-
Alarm 2
- Allarme 2
+ Allarme 2
-
-
Min Value
- Valore Min
+ Valore Min
-
-
-
-
A2
- A2
+ A2
-
RSSI
- RSSI
+ RSSI
-
Alarm 1
- Allarme 1
+ Allarme 1
-
Serial Protocol
- Protocollo seriale
+ Protocollo seriale
-
Units
- Unità
+ Unità
-
None
- Nessuno
+ Nessuno
-
FrSky Sensor Hub
- FrSky Sensor Hub
+ FrSky Sensor Hub
-
Metric
- Sistema Metrico
+ Sistema Metrico
-
-
- (00:00:00)
-
-
-
-
Sticks
- Expo/DR
+ Expo/DR
-
Show channels names in mixes
- Mostra i nomi dei canali definiti in "Limiti"
+ Mostra i nomi dei canali definiti in "Limiti"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
---
- ---
+ ---
-
CS6
CSw6
- CS6
+ CS6
-
CS1
CSw1
- CS1
+ CS1
-
CS8
CSw8
- CS8
+ CS8
-
CS7
CSw7
- CS7
+ CS7
-
CSA
CSwA
- CSA
+ CSA
-
CSB
CSwB
- CSB
+ CSB
-
CSC
CSwC
- CSC
+ CSC
-
CS5
CSw5
- CS5
+ CS5
-
CS3
CSw3
- CS3
+ CS3
-
CS2
CSw2
- CS2
+ CS2
-
CSE
CSwE
- CSE
+ CSE
-
CSG
CSwG
- CSG
+ CSG
-
CS4
CSw4
- CS4
+ CS4
-
CST
CSwT
- CST
+ CST
-
CSM
CSwM
- CSM
+ CSM
-
CSP
CSwP
- CSP
+ CSP
-
CSH
CSwH
- CSH
+ CSH
-
CSO
CSwO
- CSO
+ CSO
-
CSN
CSwN
- CSN
+ CSN
-
CSQ
CSwQ
- CSQ
+ CSQ
-
CSR
CSwR
- CSR
+ CSR
-
CSS
CSwS
- CSS
+ CSS
-
CSL
CSwL
- CSL
+ CSL
-
CSK
CSwK
- CSK
+ CSK
-
CSJ
CSwJ
- CSJ
+ CSJ
-
CSI
CSwI
- CSI
+ CSI
-
CSU
CSwU
- CSU
+ CSU
-
CSV
CSwV
- CSV
+ CSV
-
CSW
CSwW
- CSW
+ CSW
-
Volt source
- Misura della tensione
+ Misura della tensione
-
Imperial
- Imperiale
+ Imperiale
-
Current source
- Misura della corrente
+ Misura della corrente
-
NONE
- Nessuno
+ Nessuno
-
2
- 2
+ 2
-
3
- 3
+ 3
-
4
- 4
+ 4
-
Blades
- Pale dell'elica
+ Pale dell'elica
-
Sink Max
Sunk Max
- Max Discesa
+ Max Discesa
-
Climb Max
Raise Max
- Max Salita
+ Max Salita
-
Climb Min
Raise Min
- Min Salita
+ Min Salita
-
Display altitude in toolbar
- Mostra l'altitudine sulla barra
+ Mostra l'altitudine sulla barra
-
-
Volts (V)
- Voltaggio (V)
+ Voltaggio (V)
-
-
Amps (A)
- Corrente (A)
+ Corrente (A)
-
-
Speed (m/s or ft/s)
- Velocità (m/s o ft/s)
+ Velocità (m/s o ft/s)
-
-
Speed (km/h or miles/h)
- Velocità (km/h o miglia/h)
+ Velocità (km/h o miglia/h)
-
-
Meters (m or ft)
- Metri (m o ft)
+ Metri (m o ft)
-
-
Temp (°)
- Temperatura (°)
+ Temperatura (°)
-
-
Fuel (%)
- Carburante (%)
+ Carburante (%)
-
-
mAmps (mA)
- Corrente (mA)
+ Corrente (mA)
-
-
-
Source
- Sorgente
+ Sorgente
-
-
-
Gauge
- Barra
+ Barra
-
-
-
Gauge 1
- Barra 1
+ Barra 1
-
-
-
Gauge 2
- Barra 2
+ Barra 2
-
-
-
Gauge 3
- Barra 3
+ Barra 3
-
-
-
Gauge 4
- Barra 4
+ Barra 4
-
Altimetry / Vario
- Altimetria / Variometro
+ Altimetria / Variometro
-
Vario source
- Sorgente per il Vario
+ Sorgente per il Vario
-
Vario limits
- Limiti per il Vario
+ Limiti per il Vario
-
Use GPS as altitude source
- Usa il GPS per l'altitudine
+ Usa il GPS per l'altitudine
-
Telemetry screen 1
- Schermo telemetria 1
+ Schermo telemetria 1
-
-
-
Custom Screen Type
- Tipo schermo personalizzato
+ Tipo schermo personalizzato
-
-
-
Nums
- Valori
+ Valori
-
-
-
Bars
- Barre
+ Barre
-
Telemetry screen 2
- Schermo telemetria 2
+ Schermo telemetria 2
-
Telemetry screen 3
- Schermo telemetria 3
+ Schermo telemetria 3
-
Templates
- Modelli
+ Modelli
-
-
-
-
Ctrl+Up
- Ctrl+Up
+ Ctrl+Up
-
-
-
-
Ctrl+Down
- Ctrl+Down
+ Ctrl+Down
-
Clear Expo Settings
- Cancella Esponenziali
+ Cancella Esponenziali
-
Clear Mixes
- Cancella Miscelazioni
+ Cancella Miscelazioni
-
Weight
- Peso
+ Peso
-
-
-
CH%1%2
- CH%1%2
+ CH%1%2
-
-
DISABLED
- DISABILITATO
+ DISABILITATO
-
Ele
- Elevatore
+ Elevatore
-
Thr
- Motore
+ Motore
-
Ail
- Alettoni
+ Alettoni
-
Rud
- Direzionale
+ Direzionale
-
-
Flight modes
- Fasi di volo
+ Fasi di volo
-
-
Flight mode
- Fase di volo
+ Fase di volo
-
-
-
- X%1
-
-
-
-
No Trim
- No Trim
+ No Trim
-
No DR/Expo
- No DR/Expo
+ No DR/Expo
-
Delay(u%1:d%2)
- Ritarda(s%1:g%2)
+ Ritarda(s%1:g%2)
-
Slow(u%1:d%2)
- Rallenta(s%1:g%2)
+ Rallenta(s%1:g%2)
-
Warn(%1)
- Avviso(%1)
+ Avviso(%1)
-
CF%1
- CF%1
+ CF%1
-
Error
- Errore
+ Errore
-
Unable to find sound file %1!
- Impossibile trovare il file sonoro %1!
+ Impossibile trovare il file sonoro %1!
-
Winged Shadow How High
- Winged Shadow How High
+ Winged Shadow How High
-
Winged Shadow How High (not supported)
- Winged Shadow How High (non supportato)
+ Winged Shadow How High (non supportato)
-
-
Range
- Intervallo
+ Intervallo
-
Simple 4-CH
- 4 Canali (Modello base)
+ 4 Canali (Modello base)
-
T-Cut
- Taglio Motore
+ Taglio Motore
-
Sticky T-Cut
- Taglio motore con controllo comando
+ Taglio motore con controllo comando
-
V-Tail
- Coda a V
+ Coda a V
-
Elevon\Delta
- Elevoni/Ala a delta
+ Elevoni/Ala a delta
-
Heli Setup with gyro gain control
- Elicottero con controllo giroscopio
+ Elicottero con controllo giroscopio
-
Gyro gain control
- Controllo giroscopio
+ Controllo giroscopio
-
Heli Setup (Futaba's channel assignment style)
- Elicottero (Assegnazione canali alla Futaba)
+ Elicottero (Assegnazione canali alla Futaba)
-
Heli Setup with gyro gain control (Futaba's channel assignment style)
- Elicottero con controllo giroscopio (Assegnazione canali alla Futaba)
+ Elicottero con controllo giroscopio (Assegnazione canali alla Futaba)
-
Gyro gain control (Futaba's channel assignment style)
- Controllo giroscopio (Assegnazione canali alla Futaba)
+ Controllo giroscopio (Assegnazione canali alla Futaba)
-
Servo Test
- Controllo servocomandi
+ Controllo servocomandi
-
MultiCopter
- Multirotore
+ Multirotore
-
Use Model Config Wizard
- Usa assistente di configurazione modelli
+ Usa assistente di configurazione modelli
-
Editing curve %1
- Modifica curva %1
+ Modifica curva %1
-
Not enough available mixers!
- Non ci sono più miscelazioni disponibili!
+ Non ci sono più miscelazioni disponibili!
-
Not enough available expos!
- Non ci sono più esponenziali disponibili!
+ Non ci sono più esponenziali disponibili!
-
Delete Selected Mixes?
- Cancellare le miscelazioni selezionate ?
+ Cancellare le miscelazioni selezionate ?
-
Delete Selected Expos?
- Cancellare le impostazioni dell'esponenziale selezionate ?
+ Cancellare le impostazioni dell'esponenziale selezionate ?
-
-
&Add
- &Aggiungi
+ &Aggiungi
-
-
Ctrl+A
- Ctrl+A
+ Ctrl+A
-
-
&Edit
- &Modifica
+ &Modifica
-
-
Enter
- Invio
+ Invio
-
-
-
-
&Delete
- &Elimina
+ &Elimina
-
-
-
-
Delete
- Elimina
+ Elimina
-
-
-
-
&Copy
- Co&pia
+ Co&pia
-
-
-
-
Ctrl+C
- Ctrl+C
+ Ctrl+C
-
-
-
-
&Cut
- &Taglia
+ &Taglia
-
-
-
-
Ctrl+X
- Ctrl+X
+ Ctrl+X
-
-
-
-
&Paste
- &Incolla
+ &Incolla
-
-
-
-
Ctrl+V
- Ctrl+V
+ Ctrl+V
-
-
Du&plicate
- Dup&lica
+ Dup&lica
-
-
Ctrl+U
- Ctrl+U
+ Ctrl+U
-
Are you sure you want to delete curve %1 ?
- Sicuro di voler cancella re la curva %1 ?
+ Sicuro di voler cancella re la curva %1 ?
-
-
-
-
- AIL2
-
-
-
-
-
-
-
- ELE2
-
-
-
-
-
-
-
-
-
- FLAPS
-
-
-
-
-
-
-
-
-
- FLAP%1
-
-
-
-
-
-
-
- PITCH
-
-
-
-
-
-
-
-
-
-
-
- GYRO
-
-
-
-
-
- SPOIL
-
-
-
-
-
- SPOIL%1
-
-
-
-
-
- RUD2
-
-
-
-
Really clear existing mixes on CH6?
- Sicuri di voler cancellare le miscelazioni sul canale 6 ?
+ Sicuri di voler cancellare le miscelazioni sul canale 6 ?
-
Really clear existing mixes on CH5?
- Sicuri di voler cancellare le miscelazioni sul canale 5?
+ Sicuri di voler cancellare le miscelazioni sul canale 5?
-
Not enough free points in eeprom to store the curve.
- Non ci sono punti liberi a sufficienza per il tipo di curva.
+ Non ci sono punti liberi a sufficienza per il tipo di curva.
-
-
-
-
Move Up
- Muovi in Su
+ Muovi in Su
-
-
-
-
Move Down
- Muovi in Giù
+ Muovi in Giù
-
- S1
-
-
-
-
- S2
-
-
-
-
- LS
-
-
-
-
-
Expo
- Espo
+ Espo
-
-
Curve
- Curva
+ Curva
-
FMTrim
- FMTrim
+ FMTrim
-
Diff
- Diff
+ Diff
-
-
-
-
CH %1
- CH %1
+ CH %1
-
Apply Template?
- Applicare il modelo ?
+ Applicare il modelo ?
-
Apply template "%1"?
- Applicare il modello "%1"?
+ Applicare il modello "%1"?
-
Clear Expos?
- Cancellare gli esponenziali ?
+ Cancellare gli esponenziali ?
-
Really clear all the expos?
- Sicuri di voler cancellare gli esponenziali ?
+ Sicuri di voler cancellare gli esponenziali ?
-
-
-
Clear Mixes?
- Cancellare le miscelazioni ?
+ Cancellare le miscelazioni ?
-
Really clear all the mixes?
- Sicuri di voler cancellare le miscelazioni ?
+ Sicuri di voler cancellare le miscelazioni ?
-
+
Clear Curves?
Cancellare le curve ?
-
+
Really clear all the curves?
Sicuri di voler cancellare le curve ?
@@ -5339,132 +5576,264 @@ Se l'opzione selezionata lo stick motore verrà rovesciato. Il minimo sarà
ModelsListWidget
-
+
&Edit
&Modifica
-
+
&Restore from backup
&Ripristina da backup
-
+
&Model Wizard
&Assistente di configurazione
-
+
&Delete
&Elimina
-
+
Delete
Elimina
-
+
&Copy
&Copia
-
+
Ctrl+C
Ctrl+C
-
+
&Cut
&Taglia
-
+
Ctrl+X
Ctrl+X
-
+
&Paste
&Incolla
-
+
Ctrl+V
Ctrl+V
-
+
D&uplicate
D&uplica
-
+
Ctrl+U
Ctrl+U
-
+
&Use as default
&Predefinito
-
+
P&rint model
S&tampa modello
-
+
Alt+R
ALT+T
-
+
Alt+S
Alt+S
-
+
&Simulate model
Sim&ula modello
-
+
General Settings
Impostazioni generali radio
-
+
Delete Selected Models?
Cancellare i modelli selezionati ?
-
-
+
+
Cannot delete default model.
Non posso cancellare il modello predefinito.
-
+
Cannot cut default model.
Non posso tagliare il modello predefinito.
-
+
Do you want to overwrite TX general settings?
Volete sovrascrivere le impostazioni generali della radio ?
-
+
You are pasting on an not empty model, are you sure?
State copiando su un modello non vuoto, siete sicuri ?
-
+
No free slot available, cannot duplicate
Nussun spazio di memoria libero, non posso duplicare
+
+ Module
+
+
+ Form
+
+
+
+
+ Failsafe Mode
+ Modalità FailSafe
+
+
+
+ Start
+ Inizio
+
+
+
+ PPM delay
+ Ritardo PPM
+
+
+
+ usec
+ usec
+
+
+
+ Negative
+ Negativo
+
+
+
+ Positive
+ positivo
+
+
+
+ RX Number
+ ID Ricevente
+
+
+
+ Master
+ Maestro
+
+
+
+ Slave
+ Allievo
+
+
+
+ Polarity
+ Polarità
+
+
+
+ Trainer Mode
+ Modalità maestro allievo
+
+
+
+ mSec
+ mSec
+
+
+
+ PPM Frame Length
+ Lunghezza segnale PPM
+
+
+
+ Label
+
+
+
+
+
+ ch
+ ch
+
+
+
+ Channels
+ Canali
+
+
+
+ Hold
+ Mantieni
+
+
+
+ Custom
+ Personalizzato
+
+
+
+ No Pulses
+ No impulsi
+
+
+
+ Failsafe Positions
+
+
+
+
+ Protocol
+ Protocollo
+
+
+
+ ModulePanel
+
+
+ Trainer Output
+
+
+
+
+ Internal Radio System
+
+
+
+
+ External Radio Module
+
+
+
QObject
@@ -5474,1953 +5843,2014 @@ Se l'opzione selezionata lo stick motore verrà rovesciato. Il minimo sarà
FV %1
-
+
+ Input%1
+
+
+
+
+ Polish
+
+
+
+
+ CH%1
+ CH%1
+
+
+
No
No
-
+
RotEnc A
-
+
Rot Enc B
-
+
Rot Enc C
-
+
Rot Enc D
-
+
Rot Enc E
-
+
Safety %1
-
+
Trainer
-
+
Trainer RUD
-
+
Trainer ELE
-
+
Trainer THR
-
+
Trainer AIL
-
+
Instant Trim
Trim Istantanei
-
+
Play Sound
-
+
Play Track
-
+
Start Logs
-
+
Play Haptic
-
+
Reset
-
+
Vario
Variometro
-
+
Volume
-
+
Backlight
-
+
Play Value
-
-
+
+
---
---
-
+
Rud Trim
-
+
Ele Trim
-
+
Thr Trim
-
+
Ail Trim
-
+
Rot Enc
-
+
English
Inglese
-
+
French
Francese
-
+
Italian
Italiano
-
+
German
Tedesco
-
+
Czech
Ceco
-
+
Slovak
Slovacco
-
+
Spanish
Spagnolo
-
+
Portuguese
Portoghese
-
+
Swedish
Svedese
-
CH
- CH
+ CH
-
-
+
+
No repeat
Non ripetere
-
+
%1 sec
-
+
Play Both
-
+
Background Music
-
+
Background Music Pause
-
Adjust GV1
- Aggiusta VG1
+ Aggiusta VG1
-
Adjust GV2
- Aggiusta VG2
+ Aggiusta VG2
-
Adjust GV3
- Aggiusta VG3
+ Aggiusta VG3
-
Adjust GV4
- Aggiusta VG4
+ Aggiusta VG4
-
Adjust GV5
- Aggiusta VG5
+ Aggiusta VG5
-
+
Delay %1 sec
Ritardo %1 sec
-
+
Duration %1 sec
Durata %1 sec
-
-
+
+
<font color=red><b>Inconsistent parameter</b></font>
<font color=red><b>Parametro inconsistente</b></font>
-
-
+
+
All
-
-
+
+
Telemetry
-
+
Value
Valore
-
+
Decr:
-
+
Incr:
-
+
+ Played once, not during startup
+
+
+
+
%1s
-
+
Value
Valore
-
+
Source
Sorgente
-
+
GVAR
VARG
-
+
Increment
Incremento
-
+
!Flight mode %1
!Fase di volo %1
-
+
Flight mode %1
Fase di volo %1
-
- Diff
-
-
-
-
- Expo
-
-
-
-
+
Own trim
Legato alla fase
-
+
Flight mode %1 trim
Trim Fase di Volo %1
-
+
Own value
Legato alla fase
-
+
Flight mode %1 value
Valore Fase di Volo %1
-
+
Keys
Tasti
-
+
Sticks
Leve
-
+
Keys + Sticks
Tasti + Leve
-
+
+
-GV%1
-VG%1
-
(-GV%1)
- (-VG%1)
+ (-VG%1)
-
+
+ Adjust GV%1
+
+
+
+
+ Rotary Encoder
+
+
+
+
Yellow
Giallo
-
+
Orange
Arancione
-
+
Red
Rosso
-
+
Winged Shadow How High
Winged Shadow How High
-
+
Winged Shadow How High (not supported)
Winged Shadow How High (non supportato)
-
+
FrSky Sensor Hub
FrSky Sensor Hub
-
+
+
None
Nessuno
-
+
Imperial
Imperiale
-
+
Metric
Sistema Metrico
-
+
Extra Fine
Extra Fine
-
+
Fine
Fine
-
+
Medium
Medio
-
+
Coarse
Ampio
-
+
Exponential
Esponenziale
-
+
Count Up
Incrementa
-
+
Count Down
Decrementa
-
+
%1:%2,
%1:%2,
-
+
: %1 Channels, %2usec Delay
: %1 Canali, %2usec Ritardo
-
+
+ Flight modes(%1)
+
+
+
+
+ Flight mode(%1)
+
+
+
+
Rudder
Direzionale
-
+
Elevator
Elevatore
-
+
Throttle
Motore
-
+
Aileron
Alettoni
-
-
+
+
+
GV%1
VG%1
-
(GV%1)
- (VG%1)
+ (VG%1)
-
-
-
-
+
+
+
+
----
----
-
-
RUD
- RUD
+ RUD
-
-
ELE
- ELE
+ ELE
-
-
-
-
+
+
THR
THR
-
-
AIL
- AIL
+ AIL
-
-
-
+
+
+
P1
P1
-
-
-
+
+
+
P2
P2
-
-
-
+
+
+
P3
P3
-
+
+
REa
REa
-
+
+
REb
REb
-
+
Alt
Alt
-
+
Rpm
-
+
Fuel
-
+
Speed
-
+
Dist
-
+
GPS Alt
-
+
Cell
-
+
MAX
-
-
+
+
Rud
-
-
+
+
Ele
-
-
+
+
Thr
-
-
+
+
Ail
-
- 3POS
-
-
-
-
-
-
+
+
+
Timer1
-
-
-
+
+
+
Timer2
-
+
A1
A1
-
+
A2
A2
-
+
T1
-
+
T2
-
Curve
- Curva
+ Curva
-
-
-
-
Flight modes settings on expos not exported
- Le impostazioni delle fasi negli esponenziali non sono state esportate
+ Le impostazioni delle fasi negli esponenziali non sono state esportate
-
gruvin9x doesn't have trims as source
- Gruvin9x non accetta i trim come sorgenti
+ Gruvin9x non accetta i trim come sorgenti
-
gruvin9x doesn't have swappable trims
- Gruvin9x non accetta l'incroco dei trim
+ Gruvin9x non accetta l'incroco dei trim
-
gruvin9x on this board doesn't have Rotary Encoders
- Gruvin9x su questa piastra non ha gli Encoder Rotativi
+ Gruvin9x su questa piastra non ha gli Encoder Rotativi
-
gruvin9x does not support Custom Switch function %1
- gruvin9x non supporta la funzione %1 negli interruttori personalizzati
+ gruvin9x non supporta la funzione %1 negli interruttori personalizzati
-
gruvin9x only accepts %1 expos
- gruvin9x accetta solamente %1 esponenziali
+ gruvin9x accetta solamente %1 esponenziali
-
-
gruvin9x doesn't support custom curves as curve%1, curve as been exported as fixed point
- gruvin9x non supporta curve customizzate per la curva %1, la curva viene esportata come curva a punti fissi
+ gruvin9x non supporta curve customizzate per la curva %1, la curva viene esportata come curva a punti fissi
-
-
gruvin9x doesn't support curve with %1 point as curve%2
- gruvin9x non supporta curve con %1 punti come curva %2
+ gruvin9x non supporta curve con %1 punti come curva %2
-
-
-
Open9x doesn't allow Curve%1 in expos
- Open9x non consente la Curva %1 negli esponenziali
+ Open9x non consente la Curva %1 negli esponenziali
-
-
+
+
Simultaneous usage of expo and curves is no longer supported
L'uso simultaneo degli esponenziali e delle curve non è più supportato
-
-
-
-
-
-
-
Flight modes settings on mixers not exported
- Le impostazioni delle fasi nelle miscelazioni non sono state esportate
+ Le impostazioni delle fasi nelle miscelazioni non sono state esportate
-
-
Flight mode settings on mixers not exported
- Le impostazioni delle fasi nelle miscelazioni non sono state esportate
+ Le impostazioni delle fasi nelle miscelazioni non sono state esportate
-
-
-
-
This version of open9x does not support Custom Switch function %1
- Questa versione di open9x non supporta la Funzione %1 negli interruttori personalizzati
+ Questa versione di open9x non supporta la Funzione %1 negli interruttori personalizzati
-
-
-
-
-
-
open9x only accepts %1 points in all curves
- open9x accetta solamente %1 punti in tutte le curve
+ open9x accetta solamente %1 punti in tutte le curve
-
+
openTx only accepts %1 points in all curves
openTx accetta solamente %1 punti in tutte le curve
-
-
-
+
+
+
OpenTX on this board doesn't accept this function
OpenTX in questa piattaforma non accetta la funzione
-
-
+
+
OpenTX doesn't accept this protocol
OpenTX non accetta questo protocollo
-
+
OpenTX doesn't allow this number of channels
OpenTX non consente questo numero di canali
-
-
-
-
-
-
-
-
Open9x on this board doesn't have Rotary Encoders
- Open9x su questa piastra non ha gli Encoder Rotativi
+ Open9x su questa piastra non ha gli Encoder Rotativi
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Open9x doesn't accept this protocol
- Open9x non accetta questo protocollo
+ Open9x non accetta questo protocollo
-
+
Simultaneous usage of expo and curves is no longer supported in open9x
L'uso simultaneo degli esponenziali e delle curve non è più supportato in open9x
-
-
open9x on this board doesn't have Rotary Encoders
- Open9x su questa piastra non ha gli Encoder Rotativi
+ Open9x su questa piastra non ha gli Encoder Rotativi
-
-
-
-
-
-
-
-
-
-
-
-
-
open9x only accepts %1 expos
- open9x accetta solamente %1 esponenziali
+ open9x accetta solamente %1 esponenziali
-
+
th9x
-
+
er9x
-
-
+
+
Support for frsky telemetry mod
Supporto per la modifica per la telemetria FrSky
-
-
+
+
Support for jeti telemetry mod
Supporto per la modifica per la telemetria Jeti
-
-
+
+
Support for receiving ardupilot data
Supporto per la modifica per la ricezione dati ardupilot
-
-
+
+
Support for receiving NMEA data
Supporto per la modifica per la ricezione dati NMEA
-
+
Support for telemetry easy board
Supporto per la scheda Telemetrez
-
-
+
+
Support for MAVLINK devices
Supporto per dispositivi MAVLINK
-
+
Rotary Encoder use in menus navigation
Utilizzo dell'encoder rotativo nella navigazione dei menù
-
+
Possibility to enable FAI MODE at field
Impostazione della modalità FAI da radio
-
+
FAI MODE always enabled
Modalità FAI sempre attiva
-
+
openTx for 9X board
openTx per scheda originale
-
-
-
-
-
+
+
+
+
+
Enable heli menu and cyclic mix support
Abilita supporto menù elicotteri e miscelazione ciclico
-
-
-
-
-
-
+
+
+
+
+
+
Enable TEMPLATES menu
Abilita menù dei MODELLI
-
-
-
-
+
+
+
+
No splash screen
Disabilita schermata di avvio
-
-
-
-
-
-
+
+
+
+
+
+
No flight modes
Disabilita supporto fasi di volo
-
-
-
-
-
-
+
+
+
+
+
+
Disable curves menus
Disabilita il menu delle curve
-
-
-
-
+
+
+
+
Support for radio modified with regular speaker
Supporto per modifica con altoparlante
-
-
-
-
-
+
+
+
+
+
Used if you have modified your radio with voice mode
Utilizzato per la gestione del modulo audio
-
-
-
-
+
+
+
+
Used if you have modified your radio with haptic mode
Abilita supporto vibrazione
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set source by moving some of them
Selezione automatica delle sorgenti nei menù tramite loro azionamento
-
-
-
-
-
-
+
+
+
+
+
+
Battery graph
Grafico della batteria
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Use alternative SQT5 font
Usa font alternativo SQT5 (Leggermente quadrato)
-
-
-
-
+
+
+
+
Enable the throttle trace in Statistics
Abilita il grafico utilizzo motore nelle statistiche
-
+
EEprom write progress bar
Barra di avanzamento durante la scrittura della eeprom
-
-
+
+
No Winged Shadow How High support
Disabilita supporto Winged Shadow How High
-
-
+
+
No vario support
Nessun Variometro
-
-
+
+
No GPS support
Disabilita supporto GPS
-
-
+
+
No gauges in the custom telemetry screen
Disabilita schermate telemetriche a barre
-
+
+ Allow compensating for offset errors in FrSky FAS current sensors
+
+
+
+
openTx for M128 / 9X board
openTx per scheda originale con CPU ATMEGA 128
-
+
openTx for 9XR
openTx per 9XR
-
+
openTx for 9XR with M128 chip
openTx per 9XR con chip M128
-
+
openTx for Gruvin9x board / 9X
openTX per piastra Gruivin9X
-
+
Support of FrSky PXX protocol
Supporto del protocollo PXX FrSky
-
+
Use FrSky Taranis sticks in a 9X/9XR
Use FrSky's taranis like sticks
Usa stick tipo FrSky Taranis
-
+
openTx for FrSky Taranis
openTx per FrSky Taranis
-
-
+
+
Disable HELI menu and cyclic mix support
Disabilita il menù HELI e le funzioni del piatto ciclico
-
-
+
+
Disable TEMPLATES menu
Disabilita menù dei MODELLI
-
-
+
+
Disable Global variables
Disabilita variabili globali
-
+
openTx for FrSky Taranis Rev4a
openTx per FrSky Taranis Rev4a
-
-
-
-
-
+
+
+
+
+
Support for DSM2 modules
Supporto per moduli DSM2
-
-
-
-
-
-
+
+
+
+
+
+
PPM center adjustment in limits
Regolazione del centro PPM nel menù limiti
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
PPM values displayed in us
Valori del PPM in uSec
-
-
-
-
-
-
+
+
+
+
+
+
Symetrical Limits
Limiti Simmetrici
-
-
-
-
-
+
+
+
+
+
Pots use in menus navigation
Utilizzo dei potenziometri per la navigazione nei menù
-
+
Your radio probably uses a wrong firmware,
eeprom size is 4096 but only the first 2048 are used
La tua radio probabilmente sta utilizzando un firmware sbagliato,
la eeprom è 4096 bytes ma solo 2048 vengono utilizzati
-
-
+
+
SmartieParts 2.2 Backlight support
Abilita il supporto per la scheda SmartiePart versione 2.2
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set switch by moving some of them
Selezione automatica degli switch nei menù tramite loro azionamento
-
-
-
-
+
+
+
+
Enable resetting values by pressing up and down at the same time
Abilita l'azzeramento di un valore mediante pressione contemporanea di tasti
-
-
-
-
-
-
+
+
+
+
+
+
No graphical check boxes and sliders
Disabilita grafica per caselle di spunta e cursori
-
-
-
-
-
-
+
+
+
+
+
+
Don't use bold font for highlighting active items
Non utilizzare font in grassetto per evidenziare le voci attive
-
-
-
-
+
+
+
+
EEprom write Progress bar
Barra di avanzamento durante la scrittura della eeprom
-
-
-
-
-
+
+
+
+
+
Imperial units
Unità Imperiali nella telemetria
-
+
openTx for Sky9x board / 9X
openTx per piastra sky9x
-
+
Bluetooth interface
Interfaccia bluetooth
-
-
-
-
-
-
+
+
+
+
+
+
Global variables
Variabili Globali
-
+
Support for SD memory card
Supporto memorie SD
-
+
Support for DSM2 modules using ppm instead of true serial
Supporto per moduli DSM2 usando il ppm invece della seriale
-
+
Enable HELI menu and cyclic mix support
Abilita il menù HELI e le funzioni del piatto ciclico
-
+
ersky9x
-
+
TrmR
-
+
TrmE
-
+
TrmT
-
+
TrmA
-
-
+
+
S1
-
-
+
+
S2
-
-
+
+
LS
-
-
+
+
RS
-
- SA
-
-
-
-
- SB
-
-
-
-
- SC
-
-
-
-
- SD
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- SG
-
-
-
-
- SH
-
-
-
-
+
Batt
Batt
-
+
Tx
-
+
Rx
-
+
Cels
-
+
Vfas
-
+
Curr
-
+
Cnsp
-
+
Powr
-
+
AccX
-
+
AccY
-
+
AccZ
-
+
HDG
-
+
VSpd
-
+
A1-
A1-
-
+
A2-
A2-
-
+
Alt-
-
+
Alt+
-
+
Rpm+
-
+
T1+
-
+
T2+
-
+
Spd+
-
+
Dst+
-
+
Cur+
-
+
ACC
-
+
Time
Tempo
-
+
Pwr+
-
+
+
+ LS1
+
+
+
+
+
+ LS2
+
+
+
+
+
+ LS3
+
+
+
+
+
+ LS4
+
+
+
+
+
+ LS5
+
+
+
+
+
+ LS6
+
+
+
+
+
+ LS7
+
+
+
+
+
+ LS8
+
+
+
+
+
+ LS9
+
+
+
+
+
+ LSA
+
+
+
+
+
+ LSB
+
+
+
+
+
+ LSC
+
+
+
+
+
+ LSD
+
+
+
+
+
+ LSE
+
+
+
+
+
+ LSF
+
+
+
+
+
+ LSG
+
+
+
+
+
+ LSH
+
+
+
+
+
+ LSI
+
+
+
+
+
+ LSJ
+
+
+
+
+
+ LSK
+
+
+
+
+
+ LSL
+
+
+
+
+
+ LSM
+
+
+
+
+
+ LSN
+
+
+
+
+
+ LSO
+
+
+
+
+
+ LSP
+
+
+
+
+
+ LSQ
+
+
+
+
+
+ LSR
+
+
+
+
+
+ LSS
+
+
+
+
+
+ LST
+
+
+
+
+
+ LSU
+
+
+
+
+
+ LSV
+
+
+
+
+
+ LSW
+
+
+
+
+ Input %1
+
+
+
+
CYC%1
-
+
PPM%1
-
+
CH%1%2
CH%1%2
-
+
X%1
-
-
- CS1
- CS1
+
+ S11
+
-
+
+ S12
+
+
+
+
+ S13
+
+
+
+
+ S14
+
+
+
+
+ S15
+
+
+
+
+ S16
+
+
+
+
+ S21
+
+
+
+
+ S22
+
+
+
+
+ S23
+
+
+
+
+ S24
+
+
+
+
+ S25
+
+
+
+
+ S26
+
+
+
+
+ Diff(%1)
+
+
+
+
+ Expo(%1)
+
+
+
+
+ Function(%1)
+
+
+
+
+ Curve(%1)
+
+
+
+
+ !Curve(%1)
+
+
+
+ CS1
+ CS1
+
+
+
SWR
-
+
RSSI
RSSI
-
-
CS2
- CS2
+ CS2
-
-
CS3
- CS3
+ CS3
-
-
CS4
- CS4
+ CS4
-
-
CS5
- CS5
+ CS5
-
-
CS6
- CS6
+ CS6
-
-
CS7
- CS7
+ CS7
-
-
CS8
- CS8
+ CS8
-
-
CS9
- CS9
+ CS9
-
-
CSA
- CSA
+ CSA
-
-
CSB
- CSB
+ CSB
-
-
CSC
- CSC
+ CSC
-
-
CSD
- CSD
+ CSD
-
-
CSE
- CSE
+ CSE
-
-
CSF
- CSF
+ CSF
-
-
CSG
- CSG
+ CSG
-
-
CSH
- CSH
+ CSH
-
-
CSI
- CSI
+ CSI
-
-
CSJ
- CSJ
+ CSJ
-
-
CSK
- CSK
+ CSK
-
-
CSL
- CSL
+ CSL
-
-
CSM
- CSM
+ CSM
-
-
CSN
- CSN
+ CSN
-
-
CSO
- CSO
+ CSO
-
-
CSP
- CSP
+ CSP
-
-
CSQ
- CSQ
+ CSQ
-
-
CSR
- CSR
+ CSR
-
-
CSS
- CSS
+ CSS
-
-
CST
- CST
+ CST
-
-
CSU
- CSU
+ CSU
-
-
CSV
- CSV
+ CSV
-
-
CSW
- CSW
+ CSW
-
+
ONE
-
+
!ONE
-
+
TRNs
-
+
TRNl
-
+
REAs
-
+
REAl
-
ID0
- ID0
+ ID0
-
ID1
- ID1
+ ID1
-
ID2
- ID2
+ ID2
-
-
GEA
- GEA
+ GEA
-
-
TRN
- TRN
+ TRN
CS%1
CS%1
-
-
+
+
ON
-
-
+
+
OFF
-
er9x doesn't have Rotary Encoders
- er9x non ha gli Encoder Rotativi
+ er9x non ha gli Encoder Rotativi
-
er9x doesn't have trims as source
- er9x non accetta i trim come sorgenti
+ er9x non accetta i trim come sorgenti
-
er9x doesn't have negative gvars as weight
- er9x non può utilizzare le variabili GV negative come peso
+ er9x non può utilizzare le variabili GV negative come peso
-
er9x doesn't have negative gvars as offset
- er9x non può utilizzare le variabili GV negative come spostamento
+ er9x non può utilizzare le variabili GV negative come spostamento
-
-
-
er9x doesn't have swappable trims
- er9x non accetta l'incroco dei trim
+ er9x non accetta l'incroco dei trim
-
-
-
er9x on this board doesn't have Rotary Encoders
- er9x su questa piastra non ha gli Encoder Rotativi
+ er9x su questa piastra non ha gli Encoder Rotativi
-
er9x does not support Custom Switch function %1
- er9x non supporta la funzione %1 negli interruttori personalizzati
+ er9x non supporta la funzione %1 negli interruttori personalizzati
-
-
-
er9x does not support this range for A1/A2
- er9x non accetta il voltaggio di fondo scala settato per A1/A2
+ er9x non accetta il voltaggio di fondo scala settato per A1/A2
-
-
-
er9x does not support this telemetry units
- er9x non supporta l'unità di telemetria scelta per A1/A2
+ er9x non supporta l'unità di telemetria scelta per A1/A2
-
-
Er9x doesn't accept this protocol
- Er9x non accetta questo protocollo
+ Er9x non accetta questo protocollo
-
-
Er9x doesn't support custom curves as curve%1, curve as been exported as fixed point
- Er9x non supporta curve customizzate per la curva %1, la curva viene esportata come curva a punti fissi
+ Er9x non supporta curve customizzate per la curva %1, la curva viene esportata come curva a punti fissi
-
-
Er9x doesn't support curve with %1 point as curve%2
- Er9x non supporta curve con %1 punti come curva %2
+ Er9x non supporta curve con %1 punti come curva %2
-
-
-
-
-
+
+
+
+
Warning
Avviso
-
-
+
EEPROM saved with these warnings:
EEPROM salvata con questi avvisi:
-
-
ersky9x doesn't have Rotary Encoders
- ersky9x non ha gli Encoder Rotativi
+ ersky9x non ha gli Encoder Rotativi
-
-
ersky9x doesn't have trims as source
- ersky9x non accetta i trim come sorgenti
+ ersky9x non accetta i trim come sorgenti
-
-
ersky9x does not support Custom Switch function %1
- ersky9x non supporta la funzione %1 negli interruttori personalizzati
+ ersky9x non supporta la funzione %1 negli interruttori personalizzati
-
-
Ersky9x doesn't accept this protocol
- Ersky9x non accetta questo protocollo
+ Ersky9x non accetta questo protocollo
-
-
-
-
ErSky9x doesn't support custom curves as curve%1, curve as been exported as fixed point
- Ersky9x non supporta curve customizzate per la curva %1, la curva viene esportata come curva a punti fissi
+ Ersky9x non supporta curve customizzate per la curva %1, la curva viene esportata come curva a punti fissi
-
-
-
-
ErSky9x doesn't support curve with %1 point as curve%2
- Ersky9x non supporta curve con %1 punti come curva %2
+ Ersky9x non supporta curve con %1 punti come curva %2
-
-
-
+
+
+
Simulator for this firmware is not yet available
Il simulatore per questo firmware non è ancora disponibile
-
th9x does not support Custom Switch function %1
- th9x non supporta la funzione %1 negli interruttori personalizzati
+ th9x non supporta la funzione %1 negli interruttori personalizzati
-
+
th9x on this board doesn't have Rotary Encoders
th9x non ha gli Encoder Rotativi
-
-
-
th9x doesn't support custom curves as curve%1, curve as been exported as fixed point
- th9x non supporta curve customizzate per la curva %1, la curva viene esportata come curva a punti fissi
+ th9x non supporta curve customizzate per la curva %1, la curva viene esportata come curva a punti fissi
-
-
-
th9x doesn't support curve with %1 point as curve%2
- th9x non supporta curve con %1 punti come curva %2
+ th9x non supporta curve con %1 punti come curva %2
-
-
Flight Mode 0 (Default)
- Fase di volo 0 (Predefinita)
+ Fase di volo 0 (Predefinita)
-
-
FM %1
- FV %1
+ FV %1
@@ -7432,6 +7862,590 @@ The OpenTX/Companion Team.
+
+ Setup
+
+
+ Form
+
+
+
+
+ Model Name
+ Nome del modello
+
+
+
+ Timer2
+
+
+
+
+ Timer1
+ Tempo1
+
+
+
+ Throttle Source
+ Sorgente motore
+
+
+
+ Switch startup Warning
+ Avviso interruttori all'avvio
+
+
+
+ Center beep
+ Avviso centraggio
+
+
+
+ Trim Increment
+ Incremento del Trim
+
+
+
+ ON
+ Acceso
+
+
+
+ OFF
+ Spento
+
+
+
+ Check
+ Controllo
+
+
+
+ Model Image
+ Immagine modello
+
+
+
+ Exponential
+ Esponenziale
+
+
+
+ Extra Fine
+ Extra Fine
+
+
+
+ Fine
+ Fine
+
+
+
+ Medium
+ Medio
+
+
+
+ Coarse
+ Ampio
+
+
+
+ Extended Limits
+ Limiti estesi
+
+
+
+ Extended Trims
+ Trim estesi
+
+
+
+ Throttle Trim
+ Trim Motore
+
+
+
+ Throttle Warning
+
+
+
+
+ Reverse throttle operation.
+If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
+
+
+ Stick motore inverso.
+Se l'opzione selezionata lo stick motore verrà rovesciato. Il minimo sarà in avanti, anche i trim verranno rovesciati e anche gli avvisi.
+
+
+
+
+
+ Reverse Throttle
+
+
+
+
+ Telemetry
+
+
+ Form
+
+
+
+
+
+
+
+ A1
+ A1
+
+
+
+
+
+
+ A2
+ A2
+
+
+
+ RSSI
+ RSSI
+
+
+
+ Alarm 1
+ Allarme 1
+
+
+
+
+ ----
+ ----
+
+
+
+
+ Yellow
+ Giallo
+
+
+
+
+ Orange
+ Arancione
+
+
+
+
+ Red
+ Rosso
+
+
+
+ Alarm 2
+ Allarme 2
+
+
+
+ Serial Protocol
+ Protocollo seriale
+
+
+
+ Volt source
+ Misura della tensione
+
+
+
+ Metric
+ Sistema Metrico
+
+
+
+ Imperial
+ Imperiale
+
+
+
+ Current source
+ Misura della corrente
+
+
+
+ Protocol
+ Protocollo
+
+
+
+ NONE
+ Nessuno
+
+
+
+
+ FAS
+ FAS
+
+
+
+ None
+ Nessuno
+
+
+
+ FrSky Sensor Hub
+ FrSky Sensor Hub
+
+
+
+ CEL
+ CEL
+
+
+
+ 2
+ 2
+
+
+
+ 3
+ 3
+
+
+
+ 4
+ 4
+
+
+
+ Units
+ Unità
+
+
+
+ Blades
+ Pale dell'elica
+
+
+
+ Altimetry / Vario
+ Altimetria / Variometro
+
+
+
+ Alti
+
+
+
+
+ Alti+
+
+
+
+
+ Vario
+ Variometro
+
+
+
+ Sink Max
+ Max Discesa
+
+
+
+ Off
+ NO
+
+
+
+ Climb Max
+ Max Salita
+
+
+
+ Sink Min
+ Min Discesa
+
+
+
+ Climb Min
+ Min Salita
+
+
+
+ Vario source
+ Sorgente per il Vario
+
+
+
+ Vario limits
+ Limiti per il Vario
+
+
+
+ Use GPS as altitude source
+ Usa il GPS per l'altitudine
+
+
+
+ Display altitude in toolbar
+ Mostra l'altitudine sulla barra
+
+
+
+ Various
+
+
+
+
+ mAh count
+
+
+
+
+ FAS Offset
+
+
+
+
+ Persistent mAh
+
+
+
+
+ TelemetryAnalog
+
+
+ Form
+
+
+
+
+ Unit
+ Unità
+
+
+
+ Max Value
+ Valore MAX
+
+
+
+ Alarm 1
+ Allarme 1
+
+
+
+
+ ----
+ ----
+
+
+
+
+ Yellow
+ Giallo
+
+
+
+
+ Orange
+ Arancione
+
+
+
+
+ Red
+ Rosso
+
+
+
+
+ <
+ <
+
+
+
+
+ >
+ >
+
+
+
+ Alarm 2
+ Allarme 2
+
+
+
+ Min Value
+ Valore Min
+
+
+
+ Volts (V)
+ Voltaggio (V)
+
+
+
+ Amps (A)
+ Corrente (A)
+
+
+
+ Speed (m/s or ft/s)
+ Velocità (m/s o ft/s)
+
+
+
+ Raw (-)
+ Grezza (-)
+
+
+
+ Speed (km/h or miles/h)
+ Velocità (km/h o miglia/h)
+
+
+
+ Meters (m or ft)
+ Metri (m o ft)
+
+
+
+ Temp (°)
+ Temperatura (°)
+
+
+
+ Fuel (%)
+ Carburante (%)
+
+
+
+ mAmps (mA)
+ Corrente (mA)
+
+
+
+ Range
+ Intervallo
+
+
+
+ TelemetryCustomScreen
+
+
+ Form
+
+
+
+
+ Custom Screen Type
+ Tipo schermo personalizzato
+
+
+
+ Nums
+ Valori
+
+
+
+ Bars
+ Barre
+
+
+
+ Min
+ Min
+
+
+
+ Source
+ Sorgente
+
+
+
+ Gauge
+ Barra
+
+
+
+ Max
+ Max
+
+
+
+ TelemetryPanel
+
+
+ Telemetry screen %1
+
+
+
+
+ Winged Shadow How High
+ Winged Shadow How High
+
+
+
+ Winged Shadow How High (not supported)
+ Winged Shadow How High (non supportato)
+
+
+
+ Timer
+
+
+ Form
+
+
+
+
+ mm:ss
+ mm:ss
+
+
+
+ Countdown
+
+
+
+
+ MinuteBeep
+ Suono al minuto
+
+
+
+ Persistent
+ Persistente
+
+
+
+ (00:00:00)
+
+
+
+
+ TimerPanel
+
+
+ None
+ Nessuno
+
+
+
+ Beeps
+
+
+
+
+ Countdown
+
+
+
avrOutputDialog
@@ -7748,33 +8762,33 @@ utilizzatelo solo se sapete cosa state facendo. Non viene fatto alcun controllo
Porta seriale per sam-ba
-
+
DFU-UTIL Configuration
DFU-UTIL Cconfiguration
Configurazione DFU-UTIL
-
+
SAM-BA Configuration
SAM-BA Cconfiguration
Configurazione SAM-BA
-
+
AVRDUDE Configuration
AVRDUDE Cconfiguration
Configurazione AVRDUDE
-
-
-
+
+
+
Select Location
Seleziona eseguibile
-
-
+
+
Companion
@@ -7783,12 +8797,12 @@ utilizzatelo solo se sapete cosa state facendo. Non viene fatto alcun controllo
companion9x
-
+
<b><u>WARNING!</u></b><br>This will reset the fuses of %1 to the factory settings.<br>Writing fuses can mess up your radio.<br>Do this only if you are sure they are wrong!<br>Are you sure you want to continue?
<b><u>ATTENZIONE!</u></b><br>Questa operazione ripristinerà i fuse del processore %1 ai valori di fabbrica.<br>Modificare i fuse pruo bloccare la radio.<br>Fatelo solo se siete assolutamente sicuri che siano sbagliati<br>sicuri di voler continuare ?
-
+
<b><u>WARNING!</u></b><br>Normally CPU type is automatically selected according to the chosen firmware.<br>If you change the CPU type the resulting eeprom could be inconsistent.
<b><u>Attenzione!</u></b><br>Normalmente il processore viene selezionato automaticamente in base al firmware scelto.<br>Se cambiate il tipo di processore la EEPROM potrebbe risultare incoerente.
@@ -7852,7 +8866,7 @@ m2560 per le schede v4.1
-
+
Browse for file
Apri file
@@ -7898,7 +8912,7 @@ m2560 per le schede v4.1
-
+
Write to TX
Scrivi sulla radio
@@ -7935,7 +8949,7 @@ m2560 per le schede v4.1
Scrivi sulla radio
-
+
Write firmware to TX
Scrittura firmware sulla radio
@@ -7944,27 +8958,27 @@ m2560 per le schede v4.1
Scrittura impostazioni sulla radio
-
+
Open
Apri
-
-
-
-
-
-
+
+
+
+
+
+
Warning
Avviso
-
+
%1 is not a known firmware
%1 non è un firmware conosciuto
-
+
Burn anyway !
Forza scrittura !
@@ -7973,26 +8987,26 @@ m2560 per le schede v4.1
EEPROM File binario non valido %1, Procedere ugualmente ?
-
+
Open Image to load
Apri l'immagine da caricare
-
+
Images (%1)
Immagini (%1)
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Error
Errore
@@ -8005,7 +9019,7 @@ m2560 per le schede v4.1
Scrittura di %1 sulla radio
-
+
Current profile
Profilo Attuale
@@ -8014,76 +9028,76 @@ m2560 per le schede v4.1
Scegli il documento da scrivere nella EEPROM
-
+
Write Models and Settings to TX
Scrittura impostazioni sulla radio
-
+
Write Models and Settings in %1 to TX
Scrittura impostazioni sulla radio da %1
-
+
Choose file to load Models and Settings from
Scegli il documento di impostazioni da scrivere
-
+
Unable to find file %1!
Impossibile trovare il file %1!
-
-
-
+
+
+
Error opening file %1:
%2.
Errore durante l'apertura del file %1:
%2.
-
-
-
+
+
+
Invalid binary Models and Settings File %1, Proceed anyway ?
File binario delle impostazioni non valido %1, Procedere ugualmente ?
-
+
Error reading file %1:
%2.
Error durante la lettura del file %1:
%2.
-
-
+
+
Cannot load %1.
Non posso caricare %1.
-
+
Cannot save customized firmware
Errore durante la scrittura del file temporaneo
-
+
Custom image not found
Immagine personalizzata non trovata
-
+
No firmware selected
Nessun firmware selezionato
-
+
Wrong radio calibration data in profile, Settings not patched
Dati errati nel profilo, la calibrazione della radio non è stata sostituita
-
+
Wrong radio setting data in profile, Settings not patched
Dati errati nel profilo, i settaggi HW della radio non sono stati sostituiti
@@ -8096,15 +9110,15 @@ m2560 per le schede v4.1
Dati errati nel profilo, i settaggi HW della radio non sono stati sostituiti
-
-
+
+
Cannot write file %1:
%2.
Non posso scrivere il file %1:
%2.
-
+
Error writing file %1:
%2.
Errore durante la scrittura del file %1:
@@ -8245,14 +9259,14 @@ m2560 per le schede v4.1
-
+
-
-
-
-
-
-
+
+
+
+
+
+
Switch
@@ -8303,10 +9317,10 @@ m2560 per le schede v4.1
-
-
-
-
+
+
+
+
Offset
Spostamento
@@ -8314,8 +9328,8 @@ m2560 per le schede v4.1
-
-
+
+
Min
Min
@@ -8323,8 +9337,8 @@ m2560 per le schede v4.1
-
-
+
+
Max
Max
@@ -8340,8 +9354,8 @@ m2560 per le schede v4.1
-
-
+
+
CH
CH
@@ -8375,72 +9389,62 @@ m2560 per le schede v4.1
-
+
Weight
Peso
-
-
Expo
- Espo
+ Espo
-
-
-
-
-
-
+
+
Curve
Curva
-
+
Mixers
Miscelazioni
-
-
+
+
noTrim
noTrim
-
-
FMTrim
- FMTrim
+ FMTrim
-
-
Diff
- Diff
+ Diff
-
-
+
+
Delay(u%1:d%2)
Ritarda(s%1:g%2)
-
-
+
+
Slow(u%1:d%2)
Rallenta(s%1:g%2)
-
-
+
+
Warn
Avviso
-
+
-
-
+
+
DISABLED
DISABILITATO
@@ -8451,128 +9455,121 @@ m2560 per le schede v4.1
Modello senza nome
-
+
Curves
Curve
-
+
5 Points Curves
Curve a 5 Punti
-
-
-
-
+
+
+
+
pt %1
pt %1
-
+
9 Points Curves
Curve a 9 Punti
-
Custom Switches
- Interruttori personalizzati
+ Interruttori personalizzati
-
-
- CS
-
-
-
-
-
+
+
Function
Funzione
-
-
+
+
Param
Parametro
-
-
+
+
Enable
Abilita
-
+
CF
CF
-
+
Telemetry Settings
Impostazioni telemetria
-
-
+
+
Analog
Analogico
-
-
+
+
Unit
Unità
-
-
+
+
Scale
Campo di misura
-
-
-
-
+
+
+
+
A%1
A%1
-
-
+
+
Alarm 1
Allarme 1
-
-
+
+
Alarm 2
Allarme 2
-
-
-
-
+
+
+
+
Type
Tipo
-
-
-
-
+
+
+
+
Condition
Condizione
-
-
-
-
-
-
+
+
+
+
+
+
Value
Valore
@@ -8585,74 +9582,89 @@ m2560 per le schede v4.1
Nome fase di volo
-
+
-
-
+
+
Flight modes
Fasi di volo
-
+
-
-
+
+
Flight mode
Fase di volo
-
Custom Functions
- Funzioni personalizzate
+ Funzioni personalizzate
-
-
+
+
Repeat
Ripeti
-
+
Safety Switches
Interruttori di sicurezza
-
-
+
+
RSSI Alarm
-
-
+
+
Telemetry Bars
Barre Telemetria
-
-
+
+
Bar Number
Numero Barra
-
-
+
+
Source
Sorgente
-
-
+
+
Custom Telemetry View
Schermata personalizzata dati telemetrici
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignment
+
+
+
+
Print Document
Stampa documento
-
+
Select PDF output file
Scegliere il nome del file PDF
@@ -8665,24 +9677,22 @@ m2560 per le schede v4.1
Dialogo
-
+
People who have contributed to this project
Persone che hanno contribuito a questo progetto
-
+
Coders
Programmatori e grafici
-
- Honors go to Rafal Tomczak (RadioClone) and Thomas Husterer (th9x)
-of course. Also to Erez Raviv (er9x) and the fantastic eePe program
-which was the staring point for OpenTX Companion.
+
+ Honors go to Rafal Tomczak (RadioClone), Thomas Husterer (th9x) and Erez Raviv (er9x and eePe)
-
+
Companion Release Notes
@@ -8695,12 +9705,12 @@ Anche a Erez Raviv (er9x) e al fantastico eePe dal quale è stato derivato
companion9x.
-
+
Thank you all !!!
Grazie a tutti !!!
-
+
Contributors
Amici e Programmatori
@@ -8709,7 +9719,7 @@ companion9x.
informazioni su aggiornamenti Companion9x
-
+
OpenTX Release Notes
informazioni su aggiornamenti OpenTX
@@ -8752,7 +9762,7 @@ companion9x.
-
+
Save Firmware
Salva firmware
@@ -8766,80 +9776,80 @@ p, li { white-space: pre-wrap; }
-
-
-
+
+
+
Select an original firmware file
Seleziona un firmware (possibilmente non modificato)
-
+
Open
Apri
-
+
Select an image to customize your splash <br />or save actual firmware splash
Selezionare un'immagine personalizzata <br/>o salvare l'immagine nel firmware caricato
-
-
-
-
+
+
+
+
Error
Errore
-
+
Could not find bitmap to replace in file
Immagine non trovata nel firmware
-
+
Open Image to load
Apri l'immagine da caricare
-
+
Images (%1)
Immagini (%1)
-
-
+
+
Cannot load %1.
Non posso caricare %1.
-
-
+
+
Save your custimized firmware
Salva il firmware personalizzato
-
-
+
+
Write to file
Scrivi in un file
-
+
Error reading file %1
Error durante la lettura del file %1
-
+
Firmware correctly saved.
Firmware salvato correttamente.
-
+
Firmware not saved.
Firmware non slavato correttamente.
-
+
PNG images (*.png);;
Immagini PNG (*.png);;
@@ -9292,17 +10302,17 @@ Premere annulla per cancellare l'operazione
%2.
-
+
Select your log file
Selezionare il file di log
-
+
Available fields
Campi disponibili
-
+
The selected logfile contains %1 invalid lines out of %2 total lines
Il file di log selezionato contiene %1 righe errate su un totale di %2 righe
@@ -9310,7 +10320,7 @@ Premere annulla per cancellare l'operazione
mdiChild
-
+
Simulate Tx
Simula TX
@@ -9760,48 +10770,46 @@ Premere annulla per cancellare l'operazione
Preferenze
-
Language (requires restart)
- Lingua (richiede il riavvio)
+ Lingua (richiede il riavvio)
-
+
Firmware
Firmware
-
+
Check for updates on startup
Controllo aggiornamenti all'avvio
-
+
FwInfo
-
Show Splash Screen
- Mostra schermata iniziale
+ Mostra schermata iniziale
-
+
Recent History Size
File recenti
-
-
+
+
Download
Scarica
-
+
Default Channel Order
Ordine canali predefinito
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -9810,12 +10818,12 @@ This is used by the templated to determine which channel goes to what number out
Utilizzato dai Modelli per stabilire quale uscita viene assegnata ai canali.
-
+
Default Stick Mode
Modalità Stick
-
+
Mode selection:
Mode 1:
@@ -9856,63 +10864,63 @@ Mode 4:
-
-
+
+
...
-
+
Enable
Abilita
-
+
Calibrate
Calibrazione
-
-
-
-
+
+
+
+
Open Folder
Apri Cartella
-
+
Automatic Backup Folder
Cartella per backup
-
+
Set language of voice.
May be different from firmware language
Impostazione del linguaggio della voce.
Può essere differente dalla lingua del firmware
-
+
Voice
Voce
-
+
Ask for flashing after Download
Scrivere dopo aggiornamento
-
+
Export Profile
Esporta Profilo
-
+
Import Profile
Importa Profilo
-
+
Custom TX splash screen
Schermo personalizzato
@@ -9921,218 +10929,227 @@ Può essere differente dalla lingua del firmware
Cartella per backup
-
+
auto backup before write
Esegui backup prima di ogni scrittura
-
+
Automatically add version number to the filename after download
Aggiungi automaticamente il numero di versione al nome del file dopo il download
-
+
SD Structure path
Cartella Struttura Scheda SD
-
+
Processor ID
ID del processore
-
+
Simulator capture folder
Cartella per cattura schermate
-
+
Use clipboard only
Usa solo gli appunti
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
CheckBox
CheckBox
-
+
Check for updates
Verifica aggiornamenti
-
+
Check for selected Fw updates
Controlla aggiornamenti Fw
-
+
Ask use of wizard for new models
Chiedi l'utilizzo dell'assistente per i nuovi modelli
-
+
Remember switches in simulator
Ricorda la posizione degli switches nel simulatore
-
+
Mode 1 (RUD ELE THR AIL)
Modo 1 (DIR ELE MOT ALE)
-
+
Mode 2 (RUD THR ELE AIL)
Modo 2 (DIR MOTO ELE ALE)
-
+
Mode 3 (AIL ELE THR RUD)
Modo 3 (ALE ELE MOT DIR)
-
+
Mode 4 (AIL THR ELE RUD)
Modo 4 (ALE MOT ELE DIR)
-
+
Profile slot
Profilo personalizzato
-
+
Find Executable
-
+
Google Earth Executable
-
+
Profile Name
Descrizione
-
+
Save Profile
Salva Profilo
-
+
Blue
Blu
-
+
Language
Lingua
-
+
Green
Verde
-
+
+ Show Splash At Start
+
+
+
+
Red
Rosso
-
+
Orange
Arancione
-
+
Yellow
Giallo
-
+
Personal splash library
Libreria sfondi personale
-
+
Splash library behaviour
Caratteristiche libreria sfondi
-
+
Include companion splashes
Includi sfondi predefiniti
-
+
Only user defined splashes
Solamente sfondi utente
-
+ Normal
+ Normale
+
+
+
Joystick
Joystick
-
+
Open Image
Apri immagine
-
+
Invert Pixels
Negativo
-
+
Simu BackLight
Colore Retroilluminazione
-
+
Last downloaded release: %1
Ultima versione scaricata: %1
@@ -10145,48 +11162,48 @@ Può essere differente dalla lingua del firmware
Il firmware selezionato non può essere scaricato da companion9x.
-
+
Image stored in settings
Immagine predefinita
-
-
+
+
No joysticks found
Nessun joystick trovato
-
+
Select your Models and Settings backup folder
Selezionare la cartella per i backup
-
+
Select Google Earth executable
-
+
Profile name is empty, profile slot %1 will be deleted.<br>Are you sure ?
La descrizione del profilo è vuota. Il profilo %1 sarà cancellato.<br>Siete sicuri ?
-
+
Select your library folder
Selezionare la cartella degli sfondi
-
+
The selected firmware has never been downloaded by Companion.
-
+
The selected firmware cannot be downloaded by Companion.
-
+
Select your snapshot folder
Selezionare la cartella per le schermate del simulatore
@@ -10195,44 +11212,44 @@ Può essere differente dalla lingua del firmware
Selezionare la cartella per i backup
-
+
Select the folder replicating your SD structure
Selezionare la cartella contenente la struttura della scheda SD
-
+
Export profile As
Esporta il profilo come
-
+
Profile slot is not empty, profile slot %1 will we overwritten.<br>Are you sure ?
La descrizione del profilo è vuota. Il profilo %1 sarà sovrascritto.<br>Siete sicuri ?
-
+
Open Profile to import
Apri il profile da importare
-
+
Open Image to load
Apri l'immagine da caricare
-
+
Images (%1)
Immagini (%1)
-
-
+
+
Error
Errore
-
-
+
+
Cannot load %1.
Non posso caricare %1.
@@ -10276,9 +11293,9 @@ Può essere differente dalla lingua del firmware
-
-
-
+
+
+
Name
Nome
@@ -10315,7 +11332,7 @@ Può essere differente dalla lingua del firmware
-
+
Enabled
Abilitato
@@ -10367,10 +11384,10 @@ Può essere differente dalla lingua del firmware
-
-
-
-
+
+
+
+
Switch
Int.
@@ -10380,24 +11397,23 @@ Può essere differente dalla lingua del firmware
Nome fase di volo
-
-
+
+
Flight modes
Fasi di volo
-
-
+
+
Flight mode
Fase di volo
-
CF
- CF
+ CF
-
+
ODF files (*.odt);;PDF Files(*.pdf);;HTML-Files (*.htm *.html);;All Files (*)
Documenti ODF (*.odt);;Documenti PDF (*.pdf);;Documenti HTML (*.htm *.html);;Tutti i documenti (*)
@@ -10412,23 +11428,38 @@ Può essere differente dalla lingua del firmware
Usc.
-
Diff
- Diff
+ Diff
-
-
+
+
DISABLED
DISABILITATO
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignments
+
+
+
+
Parameter
Parametro
-
+
Scale
Campo di misura
@@ -10451,188 +11482,167 @@ Può essere differente dalla lingua del firmware
Peso
-
-
-
-
Expo
- Esponenziale
+ Esponenziale
-
-
-
-
-
-
-
+
+
+
Curve
Curva
-
+
Mixers
Miscelazioni
-
-
-
-
-
+
+
+
+
+
CH
CH
-
+
noTrim
noTrim
-
-
-
-
-
+
+
+
+
+
Offset
Spostamento
-
+
Delay(u%1:d%2)
Ritarda(s%1:g%2)
-
+
Slow(u%1:d%2)
Rallenta(s%1:g%2)
-
+
Warn
Avviso
-
-
- CS
-
-
-
-
+
Select PDF output file
Scegliere il nome del file PDF
-
+
Limits
Limiti
-
FMTrim
- FMTrim
+ FMTrim
-
-
-
-
+
+
+
+
Min
Min
-
-
-
-
+
+
+
+
Max
Max
-
-
-
+
+
+
Invert
Invers
-
-
-
+
+
+
INV
INV
-
-
-
+
+
+
NOR
NOR
-
+
Curves
Curve
-
5 Points Curves
- Curve a 5 Punti
+ Curve a 5 Punti
-
-
-
+
pt %1
pt %1
-
9 Points Curves
- Curve a 9 Punti
+ Curve a 9 Punti
-
Custom Switches
- Interruttori personalizzati
+ Interruttori personalizzati
-
+
Global Variables
Variabili Globali
-
+
GV
VG
-
+
Safety Switches
Interruttori di sicurezza
-
-
-
-
-
+
+
+
+
+
Value
Valore
-
Function Switches
- Interruttori di funzione
+ Interruttori di funzione
-
+
Function
Funzione
-
+
Repeat
Ripeti
@@ -10641,96 +11651,96 @@ Può essere differente dalla lingua del firmware
FSW
-
+
Telemetry Settings
Impostazioni telemetria
-
-
+
+
Alarm 1
Allarme 1
-
-
+
+
Alarm 2
Allarme 2
-
+
Analog
Analogico
-
+
Unit
Unità
-
-
-
-
+
+
+
+
Type
Tipo
-
-
-
-
+
+
+
+
Condition
Condizione
-
+
A%1
A%1
-
+
RSSI Alarm
Allarmi RSSI
-
+
Frsky serial protocol
Protocollo seriale FrSky
-
+
System of units
Sistema di misura
-
+
Propeller blades
Pale dell'elica
-
+
Telemetry Bars
Barre Telemetria
-
+
Bar Number
Numero Barra
-
+
Source
Sorgente
-
-
+
+
Custom Telemetry View
Schermata personalizzata dati telemetrici
-
+
Print Document
Stampa documento
@@ -10742,17 +11752,17 @@ Può essere differente dalla lingua del firmware
companion9x
-
+
P1
P1
-
+
P2
P2
-
+
P3
P3
@@ -10770,7 +11780,7 @@ Può essere differente dalla lingua del firmware
-
+
Right Double Click to Reset
Doppio click con il destro per portare a 0
@@ -10791,33 +11801,33 @@ Può essere differente dalla lingua del firmware
-
+
Hold X
Tieni X
-
+
Fix X
Fissa X
-
+
Fix Y
Fissa Y
-
+
Hold Y
Tieni Y
-
-
+
+
TextLabel
TextLabel
@@ -10837,24 +11847,24 @@ Può essere differente dalla lingua del firmware
ID0
-
+
ID1
ID1
-
+
ID2
ID2
-
-
-
+
+
+
0 %
-
+
9x Simulator
Simulatore 9x
@@ -10865,268 +11875,396 @@ Può essere differente dalla lingua del firmware
- CS1
- CS1
+ LS1
+
- CS2
- CS2
+ LS2
+
- CS3
- CS3
+ LS3
+
- CS4
- CS4
+ LS4
+
- CS5
- CS5
+ LS5
+
- CS6
- CS6
+ LS6
+
- CS7
- CS7
+ LS7
+
- CS8
- CS8
+ LS8
+
- CS9
- CS9
+ LS9
+
- CSA
- CSA
+ LSA
+
- CSB
- CSB
+ LSB
+
- CSC
- CSC
+ LSC
+
- CSD
- CSD
+ LSD
+
- CSE
- CSE
+ LSE
+
- CSF
- CSF
+ LSF
+
- CSG
- CSG
+ LSG
+
- CSH
- CSH
+ LSH
+
+ LSI
+
+
+
+
+ LSJ
+
+
+
+
+ LSK
+
+
+
+
+ LSL
+
+
+
+
+ LSM
+
+
+
+
+ LSN
+
+
+
+
+ LSO
+
+
+
+
+ LSP
+
+
+
+
+ LSQ
+
+
+
+
+ LSR
+
+
+
+
+ LSS
+
+
+
+
+ LST
+
+
+
+
+ LSU
+
+
+
+
+ LSV
+
+
+
+
+ LSW
+
+
+
+ CS1
+ CS1
+
+
+ CS2
+ CS2
+
+
+ CS3
+ CS3
+
+
+ CS4
+ CS4
+
+
+ CS5
+ CS5
+
+
+ CS6
+ CS6
+
+
+ CS7
+ CS7
+
+
+ CS8
+ CS8
+
+
+ CS9
+ CS9
+
+
+ CSA
+ CSA
+
+
+ CSB
+ CSB
+
+
+ CSC
+ CSC
+
+
+ CSD
+ CSD
+
+
+ CSE
+ CSE
+
+
+ CSF
+ CSF
+
+
+ CSG
+ CSG
+
+
+ CSH
+ CSH
+
+
CSI
- CSI
+ CSI
-
CSJ
- CSJ
+ CSJ
-
CSL
- CSL
+ CSL
-
CSM
- CSM
+ CSM
-
CSN
- CSN
+ CSN
-
CSO
- CSO
+ CSO
-
CSP
- CSP
+ CSP
-
CSQ
- CSQ
+ CSQ
-
CSR
- CSR
+ CSR
-
CSS
- CSS
+ CSS
-
CST
- CST
+ CST
-
CSU
- CSU
+ CSU
-
CSV
- CSV
+ CSV
-
+
BEEP
SUONO
-
CSK
SWK
- CSK
+ CSK
-
CSW
SWW
- CSW
+ CSW
-
+
CH1
CH1
-
+
CH9
CH9
-
+
CH2
CH2
-
+
CH10
CH10
-
+
CH3
CH3
-
+
CH11
CH11
-
+
CH4
CH4
-
+
CH12
CH12
-
+
CH5
CH5
-
+
CH13
CH13
-
+
CH6
CH6
-
+
CH14
CH14
-
+
CH7
CH7
-
+
CH15
CH15
-
+
CH8
CH8
-
+
CH16
CH16
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-100.1
-100.1
@@ -11170,33 +12308,33 @@ Può essere differente dalla lingua del firmware
splashLibrary
-
+
...
-
+
Splash Library - page %1 of %2
Libreria sfondi - pagina %1 di %2
-
+
Warning
Avviso
-
+
Invalid image in library %1
Immagine corrotta nella libreria %1
-
+
Information
Informazione
-
+
No valid image found in library, check your settings
Nessuna immagine trovata nella libreria, controllate le impostazioni
@@ -11331,16 +12469,14 @@ Può essere differente dalla lingua del firmware
Uscite
-
CSK
SWK
- CSK
+ CSK
-
CSW
SWW
- CSW
+ CSW
@@ -11359,10 +12495,10 @@ Può essere differente dalla lingua del firmware
-
-
-
-
+
+
+
+
@@ -11403,12 +12539,12 @@ Può essere differente dalla lingua del firmware
CH4
-
+
CH12
CH12
-
+
CH5
CH5
@@ -11447,155 +12583,285 @@ Può essere differente dalla lingua del firmware
CH16
CH16
+
+
+ LSK
+
+
- CSC
- CSC
+ LSC
+
- CSD
- CSD
+ LSD
+
- CS7
- CS7
+ LS7
+
- CSL
- CSL
+ LSL
+
- CSB
- CSB
+ LSB
+
- CS1
- CS1
+ LS1
+
- CSH
- CSH
+ LSH
+
- CSG
- CSG
+ LSG
+
- CSE
- CSE
+ LSE
+
- CSF
- CSF
+ LSF
+
- CS8
- CS8
+ LS8
+
- CS9
- CS9
+ LS9
+
- CSA
- CSA
+ LSA
+
- CSM
- CSM
+ LSM
+
- CSJ
- CSJ
+ LSJ
+
- CSI
- CSI
+ LSI
+
- CS4
- CS4
+ LS4
+
- CS5
- CS5
+ LS5
+
- CS2
- CS2
+ LS2
+
- CS3
- CS3
+ LS3
+
- CS6
- CS6
+ LS6
+
- CSN
- CSN
+ LSN
+
- CSO
- CSO
+ LSO
+
- CSP
- CSP
+ LSP
+
- CSQ
- CSQ
+ LSQ
+
- CSR
- CSR
+ LSR
+
- CSS
- CSS
+ LSS
+
- CST
- CST
+ LST
+
- CSU
- CSU
+ LSU
+
+ LSV
+
+
+
+
+ LSW
+
+
+
+ CSC
+ CSC
+
+
+ CSD
+ CSD
+
+
+ CS7
+ CS7
+
+
+ CSL
+ CSL
+
+
+ CSB
+ CSB
+
+
+ CS1
+ CS1
+
+
+ CSH
+ CSH
+
+
+ CSG
+ CSG
+
+
+ CSE
+ CSE
+
+
+ CSF
+ CSF
+
+
+ CS8
+ CS8
+
+
+ CS9
+ CS9
+
+
+ CSA
+ CSA
+
+
+ CSM
+ CSM
+
+
+ CSJ
+ CSJ
+
+
+ CSI
+ CSI
+
+
+ CS4
+ CS4
+
+
+ CS5
+ CS5
+
+
+ CS2
+ CS2
+
+
+ CS3
+ CS3
+
+
+ CS6
+ CS6
+
+
+ CSN
+ CSN
+
+
+ CSO
+ CSO
+
+
+ CSP
+ CSP
+
+
+ CSQ
+ CSQ
+
+
+ CSR
+ CSR
+
+
+ CSS
+ CSS
+
+
+ CST
+ CST
+
+
+ CSU
+ CSU
+
+
CSV
- CSV
+ CSV
@@ -11614,22 +12880,22 @@ Può essere differente dalla lingua del firmware
Non riesco ad aprire il joystick, supporto joystick disabilitato
-
+
Firmware %1 error: %2
Firmware %1 errore: %2
-
+
- Flight mode: %1(%2)
- Fase di Volo: %1(%2)
-
+
Simulating Tx (%1)
Simulazione Tx (%1)
-
+
Simulating
Simulazione in corso
diff --git a/companion/src/translations/companion_pl.ts b/companion/src/translations/companion_pl.ts
index e4e822e8b..1e3e8e66f 100644
--- a/companion/src/translations/companion_pl.ts
+++ b/companion/src/translations/companion_pl.ts
@@ -1937,9 +1937,9 @@ Jesteś pewien ?
MainWindow
-
-
-
+
+
+
File loaded
Plik załadowany
@@ -1997,24 +1997,24 @@ Jesteś pewien ?
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
Error
Błąd
-
-
-
+
+
+
Error opening file %1:
%2.
Błąd otwarcia pliku %1:
@@ -2100,103 +2100,308 @@ Chcesz pobrać teraz?
Opis wydania zawiera bardzo ważne informacje. Chcesz je przeczytać teraz?
-
-
+
+
File saved
Plik zapisany
-
+
Firmware updates
Aktualizacja firmware
-
+
Current firmware does not provide release notes informations.
Aktualny firmware nie zawiera opisu wydania.
-
+
Cannot write file %1:
%2.
Nie mogę zapisać pliku %1:
%2.
-
-
-
-
-
+
+
+
+
+
Taranis radio not found
Nie znaleziono Radia Taranis
-
-
-
-
+
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
Identyfikacja radia niemożliwa w Twoim systemie, proszę sprawdzić podłączony dysk eeprom.
-
-
-
+
+
+
Backup is impossible
Backup jest niemożliwy do wykonania
-
-
-
+
+
+
The backup dir set in preferences does not exist
Brak ustawień ścieżki backupu
-
-
+
+
Warning
Ostrzeżenie
-
+
Conversion failed
Konwersja nieudana
-
+
Restore failed
Zapis nieudany
-
+
Backup failed
Backup nieudany
-
+
Copyright
-
-
+
+ &General Preferences...
+
+
+
+
+ Configure transmitter start screen...
+
+
+
+
+ &Configure connection software...
+
+
+
+
+ Classic
+ Klasyczna
+
+
+
+ The multicolor classical Companion icon theme
+
+
+
+
+ A monochrome black icon theme
+
+
+
+
+ A monochrome white icon theme
+
+
+
+
+ A monochrome blue icon theme
+
+
+
+
+ Small
+ Mała
+
+
+
+ Use small toolbar icons
+
+
+
+
+ Use normal size toolbar icons
+
+
+
+
+ Normal
+ Normalna
+
+
+
+ Use big toolbar icons
+
+
+
+
+ Big
+ Duża
+
+
+
+ Use huge toolbar icons
+
+
+
+
+ Huge
+ Olbrzymia
+
+
+
+ System default language
+
+
+
+
+ Use system default language in menus
+
+
+
+
+ Czech
+ Czeski
+
+
+
+ Use Czech in menus
+
+
+
+
+ German
+ Niemiecki
+
+
+
+ Use German in menus
+
+
+
+
+ English
+ Angielski
+
+
+
+ Use English in menus
+
+
+
+
+ French
+ Francuski
+
+
+
+ Use French in menus
+
+
+
+
+ Italian
+ Włoski
+
+
+
+ Use Italian in menus
+
+
+
+
+ Hebrew
+
+
+
+
+ Use Hebrew in menus
+
+
+
+
+ Polish
+ Polski
+
+
+
+ Use Polish in menus
+
+
+
+
+ Portuguese
+ Portugalski
+
+
+
+ Use Portuguese in menus
+
+
+
+
+ Swedish
+ Szwedzki
+
+
+
+ Use Swedish in menus
+
+
+
+
+ Russian
+
+
+
+
+ Use Russian in menus
+
+
+
+
+ Set Icon Theme
+
+
+
+
+ Set Icon Size
+
+
+
+
+ &Settings
+
+
+
+
+
&%1 %2
-
-
+
+
Companion - Models and Settings Editor - %1 - profile %2
Companion - Edytor Modeli i Ustawień - %1 - profil %2
-
-
-
+
+
+
Companion - Models and Settings Editor - %1
Companion - Edytor Modeli i Ustawień - %1
@@ -2232,25 +2437,47 @@ Chcesz pobrać teraz?
Chcesz wgrać firmware do radia teraz?
-
+
+ The selected language will be used the next time you start Companion.
+
+
+
+
+
+
+ OK
+
+
+
+
+ The new theme will be loaded the next time you start Companion.
+
+
+
+
+ The icon size will be used the next time you start Companion.
+
+
+
+
Open
Otwórz
-
-
-
-
+
+
+
+
Read Models and Settings From Tx
Wczytaj Modele i Ustawienia z radia
-
+
Write Models and settings from %1 to the Tx?
Czy zapisać Modele i Ustawienia z %1 do radia ?
-
+
The file %1
has not been recognized as a valid Models and Settings file
Write anyway ?
@@ -2259,501 +2486,503 @@ nie został rozpoznany jako prawidłowy pli Modeli i Ustawień.
Czy mimo wszystko zapisać?
-
-
-
-
-
-
+
+
+
+
+
+
Backup Models and Settings From Tx
Zbakupuj Modele i Ustawienia z radia
-
+
Cannot check Models and Settings compatibility! Continue anyway?
Nie mogę potwierdzić kompatybilności Modeli i Ustawień. Kontynuować?
-
+
The transmitter firmware belongs to another product family, check file and preferences!
Firmwqare radia nalezy do innej rodziny produktów, sprawdź plik i preferencje !
-
+
The transmitter firmware is outdated, please upgrade!
Firmware radia jest przestarzały, proszę zaktualizować!
-
+
Write Models and Settings To Tx
Zapisz Modele i Ustawienia do radia
-
-
+
+
Write Firmware To Tx
Zapisz firmware do radia
-
+
Cannot convert Models and Settings for use with this firmware, original data will be used
Nie mogę skonwertować Modeli i Ustawień na ten rodzaj firmware, zostaną użyte oryginalne dane
-
+
Restore Models and Settings To Tx
Odtwórz Modele i Ustawienia do radia
-
+
Could not restore Models and Settings to TX. The models and settings data file can be found at: %1
Nie mogę odtworzyć Modeli i Ustawień do radia. Plik modeli i ustawień mozna znaleźć w: %1
-
+
Firmware write failed
Zapis firmawe nie powiódł się
-
+
Could not write firmware to to transmitter. The models and settings data file can be found at: %1
Nie mogę zapisać Firmware do radia. Plik modeli i ustawień mozna znaleźć w: %1
-
+
Cannot backup existing Models and Settings from TX. Firmware write process aborted
Nie mogę zbackupować Modeli i Ustawień z radia, Zapis Firmawe przerwany
-
+
Save transmitter Models and Settings to File
Zapisz Modele i Ustawienia z radia do pliku
-
+
Impossible to identify the radio on your system, please verify that the eeprom disk is connected.
Identyfikacja radia niemożliwa w Twoim systemie, proszę sprawdzić podłączony dysk eeprom.
-
+
Read Tx Firmware to File
Odczytaj firmware z radia do pliku
-
+
OpenTX Home Page: <a href='%1'>%1</a>
Strona domowa OpenTX: <a href='%1'>%1</a>
-
+
The OpenTX Companion project was originally forked from <a href='%2'>eePe</a>
Projekt Companion odłączony z oryginalnego <a href='%2'>eePe</a>
-
+
If you've found this program useful, please support by <a href='%1'>donating</a>
Jeśli uważasz, że ten program jest użyteczny, wesprzyj poprzez <a href='%1'>donację</a>
-
+
Version %1, %3
Wersja %1, %3
-
+
About Companion
O aplikacji Companion
-
+
&New
&Nowy
-
+
Create a new file
Utwórz nowy plik
-
+
&Open...
&Otwórz...
-
+
Open an existing file
Otwórz istniejący plik
-
+
&loadBackup...
&Załaduj backup...
-
+
Load backup from file
Załaduj backup z pliku
-
+
&Save
&Zapisz
-
+
Save the document to disk
Zapisz dokument na dysku
-
+
Save &As...
Zapisz j&ako...
-
+
Save the document under a new name
Zapisz dokument pod nową nazwą
-
+
Lo&gs
Lo&gi
-
+
Ctrl+G
-
+
Open log file
Otwórz plik logów
-
&Preferences...
- &Preferencje...
+ &Preferencje...
-
+
Edit general preferences
Edycja głównych ustawień
-
+
&Check for updates...
&Sprawdź aktualizacje...
-
+
Check for new version of Companion
Sprawdź nową wersję Companion
-
+
Show Companion contributors list
Pokaz listę twórców Companion
-
+
Show Companion changelog
Zobacz zmiany w Companion
-
+
&Write Models and Settings To Tx
&Zapisz Modele i Ustawienia do radia
-
+
Write Models and Settings to transmitter
Zapisz Modele i Ustawienia do radia
-
+
&Read Models and Settings From Tx
&Wczytaj Modele i Ustawienia z radia
-
+
Read Models and Settings from transmitter
Wczytaj Modele i Ustawienia z radia
-
+
Write Firmware
Zapisz firmware
-
+
Write firmware to transmitter
Zapisz firmware do radia
-
+
Write Models and Settings from file to Tx
Zapisz Modele i Ustawienia z pliku do radia
-
+
Write Models and Settings from file to transmitter
Zapisz Modele i Ustawienia z pliku do radia
-
+
Save transmitter Models and Settings to file
Zapisz Modele i Ustawienia do pliku
-
+
Save the Models and Settings from the transmitter to a file
Zapisz Modele i Ustawienia z radia do pliku
-
+
Read Firmware
Wczytaj Firmware
-
+
Read firmware from transmitter
Wczytaj Firmware z radia
-
+
Configure software for reading from and writing to the transmitter
Ustawienia oprogramowania do odczytu i zapisu radia
-
+
&Read/Write
&Odczyt/Zapis
-
+
Write
Zapis
-
-
+
+
Invalid Models and Settings File %1
Błędny plik %1 Modeli i Ustawień
-
+
Invalid binary Models and Settings File %1
Błędny binarny plik %1 Modeli i Ustawień
-
+
Contributors &List...
&Lista twórców...
-
+
ChangeLog...
Zmiany...
-
+
Firmware ChangeLog...
Zmiany firmware...
-
+
Show firmware changelog
Zobacz zmiany w firmware
-
+
Compare...
Porównaj...
-
+
Compare models
Porównaj modele
-
Customize your &TX...
- &Personalizuj swoje radio...
+ &Personalizuj swoje radio...
-
+
Customize the splash screen of your TX
Personalizuj obrazek na swoim radiu
-
+
E&xit
Za&kończ
-
+
Exit the application
Zakończ aplikację companion9x
-
+
Cu&t
&Wytnij
-
+
Cut the current selection's contents to the clipboard
Wytnij zaznaczenie do schowka
-
+
&Copy
&Kopiuj
-
+
Copy the current selection's contents to the clipboard
Kopiuj zaznaczenie do schowka
-
+
&Paste
&Wklej
-
+
Paste the clipboard's contents into the current selection
Wklej zawartość schowka na aktualnej pozycji
-
+
Ctrl+Alt+W
-
+
Ctrl+Alt+R
-
&Configure...
- &Konfiguracja...
+ &Konfiguracja...
-
+
&List programmers
&Lista programatorów
-
+
List available programmers
Lista dostępnych programatorów
-
+
&Fuses...
Ustawienia &mikro-kontrolera...
-
+
Show fuses dialog
Pokaż okno ustawień mikro-kontrolera
-
+
&Simulate
&Symulator
-
+
Alt+S
-
+
Simulate selected model.
Symulacja wybranego modelu.
-
+
&Print
&Drukuj
-
+
Ctrl+P
-
+
Print current model.
Wydrukuj aktualny model.
-
+
&About
&O aplikacji
-
+
Show the application's About box
O aplikacji companion9x
-
-
+
+
Recent Files
Poprzednie pliki
-
-
+
+
Firmware Profiles
Profile firmware
-
+
+ Set Menu Language
+
+
+
+
&File
&Plik
-
+
&Edit
&Edycja
-
+
&Help
&Pomoc
-
+
File
Plik
-
+
Edit
Edycja
-
+
Help
Pomoc
-
+
Ready
Gotowe
-
+
Unable to find file %1!
Nie mogę znaleźć pliku %1!
-
+
Error reading file %1:
%2.
Błąd odczytu pliku %1:
@@ -8257,88 +8486,89 @@ Tlačítkem Zrušit přerušíte kalibraci
Preferencje
-
+
Check for selected Fw updates
Sprawdź aktualizacje firmware
-
+
Ask use of wizard for new models
Zapytać czy używać konfiguratora nowych modeli
-
+
Invert Pixels
Odwrócić piksele
-
-
+
+
...
-
+
Remember switches in simulator
Zapamietać przaełaczniki w symulatorze
-
+
Enable
Włącz
-
+
Calibrate
Kalibruj
-
-
-
-
+
+
+
+
Open Folder
Otwórz katalog
-
+
FwInfo
-
+
Check for updates
Sprawdź aktualizacje
-
+
Open Image
Otwórz obrazek
-
+
Language
Język
-
-
+
+
Download
Pobierz
-
+
Set language of voice.
May be different from firmware language
Ustaw język komuniaktów głosowych ().
Moze być inny od języka firmware
-
+
Voice
Komuniakty głosowe
+
@@ -8380,164 +8610,150 @@ Moze być inny od języka firmware
-
CheckBox
-
+
Ask for flashing after Download
Zapytaj o flaszowanie po pobraniu
-
+
Export Profile
Eksport profili
-
+
Import Profile
Import profili
-
+
Profile Name
Nazwa profilu
-
+
Automatically add version number to the filename after download
Automatycznie dodaj numer wersji do nazwy pliku po pobraniu
-
+
Save Profile
Zapisz profil
-
+
Show Splash At Start
Pokazuj ekran startowy z logo
-
+
Automatic Backup Folder
Automatyczny Katalog Backupów
-
+
Simu BackLight
BackLight Color
Kolor podświetlenia
-
+
Blue
Niebieski
-
+
Green
Zielony
-
+
Red
Czerwony
-
+
Orange
Pomarańczowy
-
+
Yellow
Żółty
-
Theme
- Skórka
+ Skórka
-
-
Requires restart
- Wymagany restart
+ Wymagany restart
-
Classic
- Klasyczna
+ Klasyczna
-
Monochrome
- Monochromatyczna
+ Monochromatyczna
-
MonoWhite
- Mono-Biała
+ Mono-Biała
-
MonoBlue
- Mono-Niebieska
+ Mono-Niebieska
-
Icon size
- Wielkość Ikon
+ Wielkość Ikon
-
Small
- Mała
+ Mała
-
Normal
- Normalna
+ Normalna
-
Big
- Duża
+ Duża
-
Huge
- Olbrzymia
+ Olbrzymia
-
+
Check for updates on startup
Sprawdź aktualizacje na przy uruchomieniu
-
+
Google Earth Executable
Wykonywalny plik Google Earth
-
+
Find Executable
Znajdź wykonywalny plik
-
Language (requires restart)
- Język programu (wymaga restartu)
+ Język programu (wymaga restartu)
-
+
Custom TX splash screen
Własny obrazek na wyświetlaczu
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -8545,27 +8761,27 @@ This is used by the templated to determine which channel goes to what number out
To ustawienie jest używane przez szablony, jakie wyjście przypisane jest do kanałów.
-
+
Firmware
-
+
Default Stick Mode
Bazowy mod drążków
-
+
Default Channel Order
Bazowa kolejność kanałów
-
+
Personal splash library
Własna biblioteka obrazków
-
+
Mode selection:
Mode 1:
@@ -8606,171 +8822,171 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
Mod 1 (SK.SW.Gaz.Lot)
-
+
Mode 2 (RUD THR ELE AIL)
Mod 2 (SK.Gaz.SW.Lot)
-
+
Mode 3 (AIL ELE THR RUD)
Mod 3 (LOT.SW.Gaz.SK)
-
+
Mode 4 (AIL THR ELE RUD)
Mod 4 (Lot.Gaz.SW.SK)
-
+
Joystick
-
+
Include companion splashes
Załącz bazowe logo
-
+
Only user defined splashes
Własne logo
-
+
Splash library behaviour
Zachowanie bibliteki obrazków
-
+
SD Structure path
Struktura karty SD
-
+
Processor ID
ID procesora
-
+
Recent History Size
Wielkość zapamietanej historii
-
+
Profile slot
Slot profilu
-
+
auto backup before write
Automatyczny backup przed zapisem
-
+
Simulator capture folder
Katalog zapisu symulatora
-
+
Use clipboard only
Użycie schowka do kopiowania
-
+
Last downloaded release: %1
Ostatnie pobrane wydanie: %1
-
+
Image stored in settings
Logo zapamietane w ustawieniach
-
-
+
+
No joysticks found
Brak oysticka
-
+
Select the folder replicating your SD structure
Wybierz folder do zreplikowania struktury Twojej karty SD
-
+
Profile name is empty, profile slot %1 will be deleted.<br>Are you sure ?
Nazwa profilu jest pusta, slot %1 będzie skasowany.<br>Jesteś pewien ?
-
+
Select your library folder
Support for SD memory card
Wybierz katalog bibliteki
-
+
Select your snapshot folder
Katalog obrazków dla symulatora
-
+
The selected firmware has never been downloaded by Companion.
Wybrany firmware nie został nigdy pobrany przez Companion.
-
+
The selected firmware cannot be downloaded by Companion.
Companion nie moze pobrac wybranego firmware.
-
+
Select your Models and Settings backup folder
Wybierz folder do backupowania Modeli i Ustawień
-
+
Select Google Earth executable
Wybierz wykonywalny plik Google Earth
-
-
+
+
Error
Błąd
-
-
+
+
Cannot load %1.
nie mogę wczytać %1.
-
+
Export profile As
Wyeksportuj profil jako
-
+
Profile slot is not empty, profile slot %1 will we overwritten.<br>Are you sure ?
Slot profilu nie jest pusty, slot %1 zostanie zapisany.<br>Jesteś pewien ?
-
+
Open Profile to import
Otworzyć PRofil do zaimportowania
-
+
Open Image to load
Otworzyć obrazek
-
+
Images (%1)
Obrazki (%1)
@@ -9238,7 +9454,7 @@ Mode 4:
-
+
Right Double Click to Reset
Powójne kliknięcie RP myszy w celu zresetowania
@@ -9264,33 +9480,33 @@ Mode 4:
-
+
Hold X
Przytrzymaj X
-
+
Fix X
Zablokuj X
-
+
Fix Y
Zablokuj Y
-
+
Hold Y
Zablokuj Y
-
-
+
+
TextLabel
@@ -9310,199 +9526,209 @@ Mode 4:
-
+
ID1
-
+
ID2
-
+
P1
Potencjometr1
-
-
-
+
+
+
0 %
-
+
P2
Potencjometr2
-
+
P3
Potencjometr3
-
+
9x Simulator
Symulator 9x
-
+
Outputs
Wyjścia
-
- CS1
+
+ LS1
PL1
-
- CS2
+
+ LS2
PL2
-
- CS3
+
+ LS3
PL3
-
- CS4
+
+ LS4
PL4
-
- CS5
+
+ LS5
PL5
-
- CS6
+
+ LS6
PL6
-
- CS7
+
+ LS7
PL7
-
- CS8
+
+ LS8
PL8
-
- CS9
+
+ LS9
PL9
-
- CSA
+
+ LSA
PLA
-
- CSB
+
+ LSB
PLB
-
- CSC
+
+ LSC
PLC
-
- CSD
+
+ LSD
PLD
-
- CSE
+
+ LSE
PLE
-
- CSF
+
+ LSF
PLF
-
- CSG
+
+ LSG
PLG
-
- CSH
+
+ LSH
PLH
-
- CSI
+
+ LSI
PLI
-
- CSJ
+
+ LSJ
PLJ
-
- CSL
+
+ LSK
+ PLK
+
+
+
+ LSL
PLL
-
- CSM
- PLM
+
+ LSM
+ PLM,
-
- CSN
+
+ LSN
PLN
-
- CSO
+
+ LSO
PLO
-
- CSP
+
+ LSP
PLP
-
- CSQ
+
+ LSQ
PLQ
-
- CSR
+
+ LSR
PLR
-
- CSS
+
+ LSS
PLS
-
- CST
+
+ LST
PLT
-
- CSU
+
+ LSU
PLU
-
- CSV
+
+ LSV
PLV
-
+
+ LSW
+ PLW
+
+
+
BEEP
Zvuk
@@ -9512,114 +9738,102 @@ Mode 4:
Symulator Companion
-
- CSK
- SWK
- PLK
-
-
-
- CSW
- SWW
- PLW
-
-
-
+
CH1
Kanał 01
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-100.1
-
+
CH9
Kanał 09
-
+
CH2
Kanał 02
-
+
CH10
Kanał 10
-
+
CH3
Kanał 03
-
+
CH11
Kanał 11
-
+
CH4
Kanał 04
-
+
CH12
Kanał 12
-
+
CH5
Kanał 05
-
+
CH13
Kanał 13
-
+
CH6
Kanał 06
-
+
CH14
Kanał 14
-
+
CH7
Kanał 07
-
+
CH15
Kanał 15
-
+
CH8
Kanał 08
-
+
CH16
Kanał 16
@@ -9840,12 +10054,12 @@ Mode 4:
-
-
-
-
-
-
+
+
+
+
+
+
-100.1
@@ -9890,198 +10104,198 @@ Mode 4:
Kanał 05
-
+
CH13
Kanał 13
-
+
CH6
Kanał 06
-
+
CH14
Kanał 14
-
+
CH7
Kanał 07
-
+
CH15
Kanał 15
-
+
CH8
Kanał 08
-
+
CH16
Kanał 16
-
- CSK
+
+ LSK
PLK
-
- CSC
+
+ LSC
PLC
-
- CSD
+
+ LSD
PLD
-
- CS7
+
+ LS7
PL7
-
- CSL
+
+ LSL
PLL
-
- CSB
+
+ LSB
PLB
-
- CS1
+
+ LS1
PL1
-
- CSH
+
+ LSH
PLH
-
- CSG
+
+ LSG
PLG
-
- CSE
+
+ LSE
PLE
-
- CSF
+
+ LSF
PLF
-
- CS8
+
+ LS8
PL8
-
- CS9
+
+ LS9
PL9
-
- CSA
+
+ LSA
PLA
-
- CSM
- PLM
+
+ LSM
+ PLM,
-
- CSJ
+
+ LSJ
PLJ
-
- CSI
+
+ LSI
PLI
-
- CS4
+
+ LS4
PL4
-
- CS5
+
+ LS5
PL5
-
- CS2
+
+ LS2
PL2
-
- CS3
+
+ LS3
PL3
-
- CS6
+
+ LS6
PL6
-
- CSN
+
+ LSN
PLN
-
- CSO
+
+ LSO
PLO
-
- CSP
+
+ LSP
PLP
-
- CSQ
+
+ LSQ
PLQ
-
- CSR
+
+ LSR
PLR
-
- CSS
+
+ LSS
PLS
-
- CST
+
+ LST
PLT
-
- CSU
+
+ LSU
PLU
-
- CSV
+
+ LSV
PLV
-
- CSW
+
+ LSW
PLW
diff --git a/companion/src/translations/companion_pt.ts b/companion/src/translations/companion_pt.ts
index 97da176bb..7cd2bc608 100644
--- a/companion/src/translations/companion_pt.ts
+++ b/companion/src/translations/companion_pt.ts
@@ -1,6 +1,375 @@
+
+ Channels
+
+
+ Name
+ Nome
+
+
+
+ Offset
+
+
+
+
+ Min
+ Min
+
+
+
+ Max
+ Max
+
+
+
+ Invert
+ Inverter
+
+
+
+ Center
+
+
+
+
+ Sym
+
+
+
+
+ Channel %1
+
+
+
+
+ ---
+
+
+
+
+ INV
+ INV
+
+
+
+ CurveGroup
+
+
+ Diff
+
+
+
+
+ Expo
+
+
+
+
+ Func
+
+
+
+
+ Curve
+ Curva
+
+
+
+ Curves
+
+
+ Form
+
+
+
+
+ Standard
+
+
+
+
+ Custom
+
+
+
+
+ Lines
+
+
+
+
+ Smooth
+
+
+
+
+ Curve type
+
+
+
+
+ Curve name
+
+
+
+
+ Curve %1
+ Curva %1
+
+
+
+ %1 points
+
+
+
+
+ Are you sure you want to reset curve %1 ?
+
+
+
+
+ Editing curve %1
+
+
+
+
+ Not enough free points in EEPROM to store the curve.
+
+
+
+
+ CustomFunctionsPanel
+
+
+ Switch
+ Interruptor
+
+
+
+ Action
+
+
+
+
+ Parameters
+
+
+
+
+ Enable
+
+
+
+
+ ON
+
+
+
+
+ Error
+ Erro
+
+
+
+ Unable to find sound file %1!
+
+
+
+
+ &Delete
+
+
+
+
+ Delete
+
+
+
+
+ &Copy
+ &Copiar
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ Co&lar
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ CustomSwitchesPanel
+
+
+ Condition
+
+
+
+
+ V1
+
+
+
+
+ V2
+
+
+
+
+ AND
+
+
+
+
+ Duration
+
+
+
+
+ Delay
+ Atraso
+
+
+
+
+ LS%1
+
+
+
+
+ &Delete
+
+
+
+
+ Delete
+
+
+
+
+ &Copy
+ &Copiar
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ Co&lar
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ Dialog
+
+
+ Dialog
+ Dialogo
+
+
+
+ Curve type
+
+
+
+
+ Coefficient
+
+
+
+
+ Both
+
+
+
+
+ x>0
+
+
+
+
+ x<0
+
+
+
+
+ Y at X=0
+
+
+
+
+ Side
+
+
+
+
+ Y at X=-100
+
+
+
+
+ Y at X=100
+
+
+
+
+ Linear
+
+
+
+
+ Single Expo
+
+
+
+
+ Symmetrical f(x)=-f(-x)
+
+
+
+
+ Symmetrical f(x)=f(-x)
+
+
+
ExpoDialog
@@ -8,132 +377,290 @@
Dialogo
-
- Expo
-
-
-
-
+
Weight
Peso
-
Name
- Nome
+ Nome
-
-
-
+
+
GV
-
-
- Phase used by the expo.
+
+ The source for the mixer
+ A fonte para a mistura
+
+
+
+ Input name
-
+
+ Phase used by the input.
+
+
+
+
Flight modes
-
+
0
-
+
1
-
+
2
-
+
3
-
+
4
-
+
5
-
+
6
-
+
7
-
+
8
-
+
Switch
Interruptor
-
- Switch used by the expo.
-If blank then the expo is considered to be "ON" all the time.
+
+ Switch used by the input.
+If blank then the input is considered to be "ON" all the time.
-
- Curve/Exponential
+
+ The curve used by the input
-
+
+ Source
+ Fonte
+
+
+
+ Line name
+
+
+
+
Stick Side
-
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Delay ans Slow</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These values control the speed and delay of the output of the mix. </p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Delay is not zero the actuation of the mix will be delayed by the specified amount of seconds.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Slow is not zero then the speed of the mix will be set by the value specified -> the value states the number of seconds it takes to transit from -100 to 100.</p></body></html>
+
+
+
+
+ Scale
+
+
+
+
+ Include Trim
+ Incluir Ajustes (Trim)
+
+
+
+ No
+
+
+
+
+ Yes
+
+
+
+
Curve
Curva
-
- The curve used by the expo
-
-
-
-
+
NEG
-
+
POS
-
+
ALL
-
- DEST -> %1
+
+ Edit %1
+
+
+
+
+ Rud
+
+
+
+
+ Ele
+
+
+
+
+ Thr
+
+
+
+
+ Ail
+
+
+
+
+ FlightMode
+
+
+ Form
+
+
+
+
+ Fade In
+
+
+
+
+ Fade Out
+
+
+
+
+ Name
+ Nome
+
+
+
+ Switch
+ Interruptor
+
+
+
+ trim1
+
+
+
+
+ trim2
+
+
+
+
+ trim4
+
+
+
+
+ trim3
+
+
+
+
+ Rud
+
+
+
+
+ Ele
+
+
+
+
+ Thr
+
+
+
+
+ Ail
+
+
+
+
+ Rotary Encoder %1
+
+
+
+
+ GVAR%1
+
+
+
+
+ FlightModes
+
+
+ Flight Mode %1
+
+
+
+
+ (%1)
+
+
+
+
+ (default)
@@ -156,13 +683,13 @@ These will be relevant for all models in the same EEPROM.
Parâmetros
-
+
Contrast
Contraste
-
-
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -172,12 +699,12 @@ p, li { white-space: pre-wrap; }
-
+
Battery Warning
Alerta de Bateria
-
+
Battery warning voltage.
This is the threashhold where the battery warning sounds.
@@ -185,17 +712,17 @@ Acceptable values are 5v..10v
-
+
v
v
-
+
Battery Calibration
Calibração da Bateria
-
+
Battery calibration:
This value will be added to the measured battery voltage. Use this value to calibrate the meter with an external meter.
@@ -205,7 +732,7 @@ This value will be added to the measured battery voltage. Use this value to cal
Interruptor de Retro-iluminação
-
+
This is the switch selectrion for turning on the backlight (if installed).
@@ -216,51 +743,42 @@ This value will be added to the measured battery voltage. Use this value to cal
Desligar Retro-iluminação depois de
-
+
If this value is not 0, any keypress will turn on the backlight and turn it off after the specified number of seconds.
-
-
+
+
sec
seg.
-
+
Inactivity Timer
Temporizador de Inatividade
-
+
If not zero will sound beeps if the transmitter has been left without inputs for the specified number of minutes.
-
+
min
min.
-
Reverse Throttle Operation
- Inverter Acelerador
+ Inverter Acelerador
-
- Reverse throttle operation.
-If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
-
-
-
-
-
-
+
Timer Beeps
Sons do Temporizador
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -269,22 +787,22 @@ p, li { white-space: pre-wrap; }
-
+
Every Minute
Todos os Minutos
-
+
Beeps at 30, 15, 10, and down from5 seconds
Soar aos 30, 15, 10 e a descontar a partir de 5 segundos
-
+
Count Down to Zero
Contar até Zero
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -293,257 +811,246 @@ p, li { white-space: pre-wrap; }
-
+
Flash on beep
Piscar Ecrã com os Sons
-
+
Alarm Warning
-
-
+
+
Quiet
-
-
+
+
No Keys
-
-
+
+
Normal
-
-
+
+
Long
-
+
Input Filter
Filtro de Entrada
-
+
Single
Simples
-
+
Oversample
Oversample
-
+
Filter
Filtro
-
+
Owner Name
-
+
-
-
-
+
+
Off
-
- Switches Up
-
-
-
-
- Switches Down
-
-
-
-
+
Trainer
-
-
+
+
PPM 1
+
-
-
-
+
+
chn1
+
-
-
-
+
+
chn2
+
-
-
-
+
+
chn3
+
-
-
-
+
+
chn4
-
+
Mode
-
+
Telemetry NO DATA Alarm
-
+
Show Owner Name on Splash
-
+
Sound Mode
-
+
Beeper
-
+
Speaker Pitch (spkr only)
-
+
Only Alarms
-
-
+
+
All
-
+
Pot Scrolling Enable
-
+
Bandgap Measuring Enable
-
+
THR
THR
-
+
RUD
RUD
-
+
ELE
ELE
-
+
AIL
AIL
-
+
GEA
GEA
-
+
ID0
ID0
-
+
ID1
ID1
-
+
ID2
ID2
-
+
Beeper Length
-
-
+
+
X-Short
-
-
+
+
Short
-
-
+
+
X-Long
-
+
Haptic Mode
-
+
Alarms Only
-
+
Haptic Length
-
+
GPS Coordinates
@@ -558,122 +1065,122 @@ p, li { white-space: pre-wrap; }
-
+
Speaker
-
+
BeeperVoice
-
+
SpeakerVoice
-
+
hh° (N/S) mm' ss''.dd
-
+
NMEA
-
+
Timeshift from UTC
-
+
LCD Display Type
-
+
Standard
-
+
Optrex
-
+
Speaker Volume
-
+
Haptic Strength
-
+
BackLight Brightness
-
+
RotEnc Navigation
-
+
BackLight Auto OFF after
-
+
BackLight Switch
-
+
BackLight On Stick Move
-
+
BackLight Invert
-
+
Country Code
-
+
Europe
-
+
Japan
-
+
America
-
+
FrSky Internal Alarm
-
+
StickScroll
-
+
PPMSim
@@ -683,47 +1190,47 @@ p, li { white-space: pre-wrap; }
-
+
CrossTrim
-
+
Beep volume
-
+
Wav volume
-
+
Vario volume
-
+
Background volume
-
+
Measurement Units
-
+
Metric
-
+
Imperial
-
+
FAI Mode
@@ -733,273 +1240,293 @@ p, li { white-space: pre-wrap; }
-
+
4800 Baud
-
+
9600 Baud
-
+
14400 Baud
-
+
19200 Baud
-
+
38400 Baud
-
+
57600 Baud
-
+
76800 Baud
-
+
115200 Baud
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen. This function cannot be disabled by the radio.
-
+
Readonly Unlock
-
+
SC
-
+
SE
-
+
SA
-
+
SF
-
+
SH
-
+
SD
-
+
SB
-
+
SG
-
+
Input
-
+
Weight
Peso
-
+
Switch
Interruptor
+
-
-
-
+
+
+= (Sum)
+
-
-
-
+
+
:= (Replace)
-
-
+
+
PPM 2
-
-
+
+
PPM 3
-
-
+
+
PPM 4
-
+
Telemetry
-
+
RSSI Alarm 1
-
-
+
+
----
-
-
+
+
Yellow
-
-
+
+
Orange
-
-
+
+
Red
-
+
RSSI Alarm 2
-
+
NO DATA Alarm
-
+
POT 4
-
-
+
+
Negative span
-
-
+
+
Mid value
-
-
+
+
Positive span
-
+
STICK 1
STICK 1
-
+
STICK 2
STICK 2
-
+
Current
-
+
+
+ Pot (normal)
+
+
+
+
+
+ Multipos Switch
+
+
+
+
+ S1 Type
+
+
+
+
+ S2 Type
+
+
+
+
STICK 3
STICK 4
-
+
STICK 4
STICK 3
-
+
POT 1
-
+
POT 2
-
+
POT 3
-
+
Battery
-
+
PPM Multiplier
-
Throttle Startup Warning
- Aviso Inicial sobre Acelerador
+ Aviso Inicial sobre Acelerador
-
-
-
-
-
-
+
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -1014,12 +1541,11 @@ p, li { white-space: pre-wrap; }
-
Switch Startup Warning
- Aviso Inicial sobre Interruptores
+ Aviso Inicial sobre Interruptores
-
+
Memory Startup Warning
Aviso Inicial sobre Memória
@@ -1028,20 +1554,22 @@ p, li { white-space: pre-wrap; }
Modo Silencioso (sem Alarmes)
-
+
Beeper Mode
Modo dos Alarmes Sonoros
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
Beeper volume
0 - Quiet. No beeps at all.
@@ -1072,24 +1600,24 @@ p, li { white-space: pre-wrap; }
4 - Extra Longo
-
+
Channel Order (For Templates)
Ordem dos Canais (para as Mascaras)
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
-
+
Stick Mode
Modo do Emissor
-
+
Mode selection:
Mode 1:
@@ -1112,38 +1640,38 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
Modo 1 (RUD ELE THR AIL)
-
+
Mode 2 (RUD THR ELE AIL)
Modo 2 (RUD THR ELE AIL)
-
+
Mode 3 (AIL ELE THR RUD)
Modo 3 (AIL ELE THR RUD)
-
+
Mode 4 (AIL THR ELE RUD)
Modo 4 (AIL THR ELE RUD)
-
+
Show Splash Screen on Startup
-
-
+
+
Show splash screen on startup
-
+
Calibration
Calibração
@@ -1192,39 +1720,249 @@ Mode 4:
Positivo
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen.
This function cannot be disabled by the radio.
Are you sure ?
-
-
+
+
Warning
Aviso
-
+
Wrong data in profile, radio calibration was not retrieved
-
+
Wrong data in profile, hw related parameters were not retrieved
-
+
Do you want to store calibration in %1 profile<br>overwriting existing calibration?
-
+
Calibration and HW parameters saved.
+
+ Heli
+
+
+ Form
+
+
+
+
+ Invert Elevator
+
+
+
+
+ Invert Aileron
+
+
+
+
+ Invert Collective
+
+
+
+
+ Invert
+ Inverter
+
+
+
+ Off
+
+
+
+
+ 120
+
+
+
+
+ 120X
+
+
+
+
+ 140
+
+
+
+
+ 90
+
+
+
+
+ Collective
+
+
+
+
+ Swash Type
+
+
+
+
+ Swash Ring
+
+
+
+
+ InputsPanel
+
+
+
+ Move Up
+
+
+
+
+
+ Ctrl+Up
+
+
+
+
+
+ Move Down
+
+
+
+
+
+ Ctrl+Down
+
+
+
+
+ Clear All Settings
+
+
+
+
+ Source(%1)
+
+
+
+
+ No Trim
+
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ Not enough available inputs!
+
+
+
+
+ Delete Selected Inputs?
+
+
+
+
+ &Add
+ &Adicionar
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ &Edit
+ &Editar
+
+
+
+ Enter
+ Enter
+
+
+
+ &Delete
+
+
+
+
+ Delete
+
+
+
+
+ &Copy
+ &Copiar
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ Co&lar
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ Du&plicate
+
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Inputs?
+
+
+
+
+ Really clear all the inputs?
+
+
+
MainWindow
@@ -1232,10 +1970,10 @@ Are you sure ?
companion9x - Editor de EEPROM
-
-
-
-
+
+
+
+
File loaded
Ficheiro carregado
@@ -1244,11 +1982,11 @@ Are you sure ?
companion9x
-
-
-
-
-
+
+
+
+
+
Save As
Gravar Como
@@ -1257,27 +1995,27 @@ Are you sure ?
Ficheiros EEPROM hex (*.hex);;EEPROM bin files (*.bin)
-
-
+
+
No updates available at this time.
-
-
-
-
-
+
+
+
+
+
Unable to check for updates.
-
+
Executable (*.exe)
-
+
Would you like to launch the installer?
@@ -1286,13 +2024,13 @@ Are you sure ?
Ficheiros EEPROM (*.bin *.hex);;BIN files (*.bin);;HEX files (*.hex)
-
+
Open
Abrir
-
-
+
+
File saved
Ficheiro gravado
@@ -1313,416 +2051,432 @@ Are you sure ?
Ficheiros HEX (*.hex);;BIN files (*.bin);;FLASH files (*.bin *.hex)
-
+
Copyright
-
+
Display previous warning again at startup ?
-
+
New release available
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Erro
-
-
-
-
-
+
+
+
+
+
Error opening file %1:
%2.
-
+
Compilation server termporary failure, try later
-
+
Display previous message again at startup ?
-
-
-
+
+
+
Companion - Models and Settings Editor - %1 - profile %2
-
-
-
-
+
+
+
+
Companion - Models and Settings Editor - %1
-
+
+ A new release of Companion is available please check the OpenTX website!
+
+
+
+
Firmware does not longer fit in the Tx, due to selected firmware options
-
+
Compilation server temporary failure, try later
-
-
+
+
Compilation server too busy, try later
-
-
+
+
Unknown server failure, try later
-
+
Firmware does not fit in the Tx, due to selected firmware options
-
-
+
+
Yes
-
-
+
+
No
-
-
+
+
Release Notes
-
-
+
+
Do you want to download release %1 now ?
-
+
A new version of %1 firmware is available (current %2 - newer %3).
Do you want to download it now ?
-
+
Ignore this version (r%1)?
-
+
Release notes contain very important informations. Do you want to see them now ?
-
+
Firmware updates
-
+
Current firmware does not provide release notes informations.
-
+
Cannot write file %1:
%2.
-
-
-
-
-
+
+
+
+
+
Taranis radio not found
-
-
-
-
+
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
-
+
Write Models and settings from %1 to the Tx?
-
-
-
+
+
+
Backup is impossible
-
-
-
+
+
+
The backup dir set in preferences does not exist
-
-
+
+
Warning
Aviso
-
+
Conversion failed
-
+
Restore failed
-
+
Backup failed
-
- Version %1 (revision %2), %3
-
-
-
-
- If you've found this program useful, please support by
-
-
-
-
donating
- doar
+ doar
About companion9x
Sobre o companion9x
-
-
-
+
+
&%1 %2
&%1 %2
-
%1 %2
- %1 %2
+ %1 %2
-
+
+ OpenTX Home Page: <a href='%1'>%1</a>
+
+
+
+
+ The OpenTX Companion project was originally forked from <a href='%2'>eePe</a>
+
+
+
+
+ If you've found this program useful, please support by <a href='%1'>donating</a>
+
+
+
+
+ Version %1, %3
+
+
+
+
&New
&Novo
-
+
Create a new file
Criar um novo ficheiro
-
+
&Open...
&Abrir...
-
+
Open an existing file
Abrir um ficheiro existente
-
+
&loadBackup...
-
+
Load backup from file
-
+
&Save
&Gravar
-
+
Save the document to disk
Gravar o documento no disco
-
+
Save &As...
Gravar &Como...
-
+
Save the document under a new name
Gravar o documento com um novo nome
-
+
Lo&gs
-
+
Ctrl+G
-
+
Open log file
-
&Preferences...
- &Preferências
+ &Preferências
-
+
Edit general preferences
Editar preferências gerais
-
+
&Check for updates...
-
+
Contributors &List...
-
+
ChangeLog...
-
+
Firmware ChangeLog...
-
+
Show firmware changelog
-
+
Compare...
-
+
Compare models
-
- Customize your &TX...
-
-
-
-
+
Customize the splash screen of your TX
-
+
E&xit
&Sair
-
+
Exit the application
Sair da aplicação
-
+
Cu&t
Cor&tar
-
+
Cut the current selection's contents to the clipboard
Cortar a selecção corrente para a zona de transferência
-
+
&Copy
&Copiar
-
+
Copy the current selection's contents to the clipboard
Copiar a selecção corrente para a zona de transferência
-
+
&Paste
Co&lar
-
+
Paste the clipboard's contents into the current selection
Colar o conteúdo na zona de transferência para a selecção corrente
-
+
Configure software for reading from and writing to the transmitter
-
-
+
+ Set Menu Language
+
+
+
+
+ &Settings
+
+
+
+
+
Invalid Models and Settings File %1
-
+
Invalid binary Models and Settings File %1
@@ -1731,7 +2485,7 @@ Do you want to download it now ?
&Gravar EEPROM no Rádio
-
+
Ctrl+Alt+W
Ctrl+Alt+W
@@ -1744,7 +2498,7 @@ Do you want to download it now ?
&Ler EEPROM do Rádio
-
+
Ctrl+Alt+R
Ctrl-Alt-R
@@ -1769,157 +2523,144 @@ Do you want to download it now ?
Ler memória Flash do Rádio
-
&Configure...
- &Configurar...
+ &Configurar...
Configure burning software
Configurar aplicação de gravação do Rádio
-
+
&List programmers
&Listar programadores
-
+
List available programmers
Lista os programadores disponíveis
-
+
&Fuses...
-
+
Show fuses dialog
-
+
&Simulate
&Simular
-
+
Alt+S
Alt+S
-
+
Simulate selected model.
Simular o modelo seleccionado
-
+
&Print
&Imprimir
-
+
Ctrl+P
Ctrl+P
-
+
Print current model.
Imprimir o modelo corrente
-
Cl&ose
- &Fechar
+ &Fechar
-
Close the active window
- Fechar a janela activa
+ Fechar a janela activa
-
Close &All
- Fechar &Todas
+ Fechar &Todas
-
Close all the windows
- Fechar todas as janelas
+ Fechar todas as janelas
-
&Tile
- &Mosaico
+ &Mosaico
-
Tile the windows
- Apresentar as janelas abertas em mosaico
+ Apresentar as janelas abertas em mosaico
-
&Cascade
- &Cascata
+ &Cascata
-
Cascade the windows
- Apresentar as janelas abertas em cascata
+ Apresentar as janelas abertas em cascata
-
Ne&xt
- &Próxima
+ &Próxima
-
Move the focus to the next window
- Selecciona janela seguinte
+ Selecciona janela seguinte
-
Pre&vious
- &Anterior
+ &Anterior
-
Move the focus to the previous window
- Selecciona janela anterior
+ Selecciona janela anterior
-
+
&About
A&cerca
-
+
Show the application's About box
Sobre a aplicação
-
-
+
+
Recent Files
-
+
&Read/Write
-
+
Write
-
+
Unable to find file %1!
Impossível encontrar o ficheiro %1!
-
+
Error reading file %1:
%2.
@@ -1933,262 +2674,467 @@ Do you want to download it now ?
Lista de contribuidores do er9x/companion9x
-
- Switch layout Left/Right
-
-
-
-
+
&File
&Ficheiro
-
Switch layout direction
- Mudar apresentação dos menus
+ Mudar apresentação dos menus
-
+
Checking for updates
-
+
A new version of Companion is available (version %1)<br>Would you like to download it?
-
- A new release of Companion is available please check the repository
-
-
-
-
-
+
+
Compilation server requires registration, please check OpenTX web site
-
+
Do you want to write the firmware to the transmitter now ?
-
+
Firmware %1 does not seem to have ever been downloaded.
Version %2 is available.
Do you want to download it now ?
-
-
-
-
+
+ The selected language will be used the next time you start Companion.
+
+
+
+
+
+
+ OK
+
+
+
+
+ The new theme will be loaded the next time you start Companion.
+
+
+
+
+ The icon size will be used the next time you start Companion.
+
+
+
+
+
+
+
Read Models and Settings From Tx
-
+
The file %1
has not been recognized as a valid Models and Settings file
Write anyway ?
-
-
-
-
-
-
+
+
+
+
+
+
Backup Models and Settings From Tx
-
+
Cannot check Models and Settings compatibility! Continue anyway?
-
+
The transmitter firmware belongs to another product family, check file and preferences!
-
+
The transmitter firmware is outdated, please upgrade!
-
+
Write Models and Settings To Tx
-
-
+
+
Write Firmware To Tx
-
+
Cannot convert Models and Settings for use with this firmware, original data will be used
-
+
Restore Models and Settings To Tx
-
+
Could not restore Models and Settings to TX. The models and settings data file can be found at: %1
-
+
Firmware write failed
-
+
Could not write firmware to to transmitter. The models and settings data file can be found at: %1
-
+
Cannot backup existing Models and Settings from TX. Firmware write process aborted
-
+
Save transmitter Models and Settings to File
-
+
Impossible to identify the radio on your system, please verify that the eeprom disk is connected.
-
+
Read Tx Firmware to File
-
- The Companion project was originally forked from eePe
-
-
-
-
+
About Companion
-
+
+ &General Preferences...
+
+
+
+
Check for new version of Companion
-
+
Show Companion contributors list
-
+
Show Companion changelog
-
+
+ Configure transmitter start screen...
+
+
+
+
&Write Models and Settings To Tx
-
+
Write Models and Settings to transmitter
-
+
&Read Models and Settings From Tx
-
+
Read Models and Settings from transmitter
-
+
Write Firmware
-
+
Write firmware to transmitter
-
+
Write Models and Settings from file to Tx
-
+
Write Models and Settings from file to transmitter
-
+
Save transmitter Models and Settings to file
-
+
Save the Models and Settings from the transmitter to a file
-
+
Read Firmware
-
+
Read firmware from transmitter
-
-
- Firmware Profiles
+
+ &Configure connection software...
+
+
+
+
+ Classic
+
+
+
+
+ The multicolor classical Companion icon theme
+
+
+
+
+ A monochrome black icon theme
+
+
+
+
+ A monochrome white icon theme
+
+
+
+
+ A monochrome blue icon theme
+
+
+
+
+ Small
+
+
+
+
+ Use small toolbar icons
+
+
+
+
+ Use normal size toolbar icons
+
+
+
+
+ Normal
+ Use big toolbar icons
+
+
+
+
+ Big
+
+
+
+
+ Use huge toolbar icons
+
+
+
+
+ Huge
+
+
+
+
+ System default language
+
+
+
+
+ Use system default language in menus
+
+
+
+
+ Czech
+
+
+
+
+ Use Czech in menus
+
+
+
+
+ German
+
+
+
+
+ Use German in menus
+
+
+
+
+ English
+
+
+
+
+ Use English in menus
+
+
+
+
+ French
+
+
+
+
+ Use French in menus
+
+
+
+
+ Italian
+
+
+
+
+ Use Italian in menus
+
+
+
+
+ Hebrew
+
+
+
+
+ Use Hebrew in menus
+
+
+
+
+ Polish
+
+
+
+
+ Use Polish in menus
+
+
+
+
+ Portuguese
+
+
+
+
+ Use Portuguese in menus
+
+
+
+
+ Swedish
+
+
+
+
+ Use Swedish in menus
+
+
+
+
+ Russian
+
+
+
+
+ Use Russian in menus
+
+
+
+
+
+ Firmware Profiles
+
+
+
+
+ Set Icon Theme
+
+
+
+
+ Set Icon Size
+
+
+
+
&Edit
&Editar
-
&Window
- &Janela
+ &Janela
-
+
&Help
&Ajuda
-
+
File
Ficheiro
-
+
Edit
Editar
@@ -2197,12 +3143,12 @@ Write anyway ?
Gravar
-
+
Help
-
+
Ready
Pronto
@@ -2222,25 +3168,25 @@ Write anyway ?
Apagar Modelos Seleccionados?
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Erro
@@ -2253,7 +3199,7 @@ Write anyway ?
Impossível aplicar modelo!
-
+
Editing model %1:
A editar o modelo %1:
@@ -2267,8 +3213,8 @@ Write anyway ?
documento%1.hex
-
-
+
+
Unable to find file %1!
Impossível encontrar o ficheiro %1!
@@ -2277,8 +3223,8 @@ Write anyway ?
Erro ao ler o ficheiro %1!
-
-
+
+
Error reading file %1:
%2.
@@ -2295,119 +3241,119 @@ Write anyway ?
-
+
Do you want to use model wizard?
-
-
-
+
+
+
Companion
-
+
Ask this question again ?
-
-
-
-
+
+
+
+
Error opening file %1:
%2.
-
-
+
+
Invalid EEPROM File %1
-
+
Invalid binary EEPROM File %1
-
-
-
-
+
+
+
+
Save As
Gravar Como
-
+
Backup is impossible
-
+
The backup dir set in preferences does not exist
-
-
-
+
+
+
Taranis radio not found
-
-
-
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
-
-
-
+
+
+
Backup EEPROM From Tx
-
+
Cannot check eeprom compatibility! Continue anyway?
-
-
+
+
Warning
Aviso
-
+
Firmware in radio is of a different family of eeprom written, check file and preferences!
-
+
Firmware in flash is outdated, please upgrade!
-
+
Write EEPROM To Tx
-
+
Open
Abrir
-
+
Invalid binary backup File %1
-
+
%1 has been modified.
Do you want to save your changes?
@@ -2417,10 +3363,10 @@ Do you want to save your changes?
Ficheiros EEPROM hex (*.hex);;EEPROM bin files (*.bin)
-
-
-
-
+
+
+
+
Cannot write file %1:
%2.
@@ -2434,8 +3380,8 @@ Do you want to save your changes?
%1
-
-
+
+
Error writing file %1:
%2.
@@ -2446,7 +3392,7 @@ Do you want to save your changes?
Gravar %1 no Rádio?
-
+
Cannot write temporary file!
Impossível gravar ficheiro temporário!
@@ -2514,57 +3460,49 @@ Do you want to save your changes?
MixerDialog
-
+
Dialog
Dialogo
-
+
Source
Fonte
-
-
-
-
+
+
+
+
The source for the mixer
A fonte para a mistura
-
+
Weight
Peso
-
- Fix Offset
-
-
-
-
-
-
+
+
+
GV
-
+
Switch used by the mix.
If blank then the mix is considered to be "ON" all the time.
The value of the mixer is multiplied by this value and divided by 100.
O valor da mistura é multiplicado por este valor e dividido por 100.
-
-
-
-
+
Offset
Desvio
-
+
Include Trim
Incluir Ajustes (Trim)
@@ -2573,79 +3511,74 @@ If blank then the mix is considered to be "ON" all the time.
Se escolhido vai adicionar o ajuste (trim) da fonte (se disponível)
-
+
Curve
Curva
-
+
The curve used by the mix
Curva a usar pela mistura
-
+
Switch
Interruptor
-
+
Yes
-
+
No
-
+
Warning
Aviso
-
+
Name
Nome
-
- Curve/Differential
-
-
-
-
+
Mixer warning.
Setting this value will cause a beep to be emmitted when this value is active.
-
+
OFF
OFF
-
+
1 Beep
1 Beep
-
+
2 Beep
2 Beeo
2 Beeps
-
+
3 Beep
3 Beeps
-
+
Multiplex
Multiplexar
-
+
Multiplexer
This determines how mixer values are added.
@@ -2656,100 +3589,95 @@ This determines how mixer values are added.
-
+
ADD
ADICIONAR
-
+
MULTIPLY
MULTIPLICAR
-
+
REPLACE
SUBSTITUIR
-
+
Flight modes
-
+
Include DR/Expo
-
+
0
-
+
1
-
+
2
-
+
3
-
+
4
-
+
5
-
+
6
-
+
7
-
+
8
-
- Enable FM Trim
-
-
-
-
+
Delay
Atraso
-
+
Slow
Lento
-
+
Up
Cima
-
-
-
-
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -2764,63 +3692,252 @@ p, li { white-space: pre-wrap; }
-
+
Down
Baixo
-
+
DEST -> X%1
-
+
DEST -> CH%1%2
DEST -> CH%1%2
-
-
- FM Trim Value
-
-
-
-
+
Rud
-
+
Ele
-
+
Thr
-
+
Ail
+
+ MixesPanel
+
+
+
+ Move Up
+
+
+
+
+
+ Ctrl+Up
+
+
+
+
+
+ Move Down
+
+
+
+
+
+ Ctrl+Down
+
+
+
+
+ Clear Mixes
+
+
+
+
+
+
+ X%1
+
+
+
+
+
+
+ CH%1%2
+ CH%1%2
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ No Trim
+
+
+
+
+ No DR/Expo
+
+
+
+
+ Offset(%1)
+
+
+
+
+ Delay(u%1:d%2)
+ Atraso(u%1:d%2)
+
+
+
+ Slow(u%1:d%2)
+ Lento(u%1:d%2)
+
+
+
+ Warn(%1)
+ Aviso(%1)
+
+
+
+ Not enough available mixers!
+
+
+
+
+ Delete Selected Mixes?
+ Apagar misturas selecionadas?
+
+
+
+ &Add
+ &Adicionar
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ &Edit
+ &Editar
+
+
+
+ Enter
+ Enter
+
+
+
+ &Delete
+
+
+
+
+ Delete
+
+
+
+
+ &Copy
+ &Copiar
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Cut
+
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ Co&lar
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ Du&plicate
+
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Mixes?
+
+
+
+
+ Really clear all the mixes?
+
+
+
ModelEdit
-
+
Dialog
Dialogo
-
+
Setup
Configuração
-
+
+ Heli
+
+
+
+
+ Inputs
+
+
+
+
+ Logical Switches
+
+
+
+
+ Switch Assignment
+
+
+
Model Name
- Nome do Modelo
+ Nome do Modelo
Timer Mode
@@ -2831,263 +3948,121 @@ p, li { white-space: pre-wrap; }
Direcção do Temporizador
-
-
Count Down
- Contagem regressiva
+ Contagem regressiva
-
-
Count Up
- Contagem progressiva
+ Contagem progressiva
Timer Value
Valor Inicial do Temporizador
-
-
mm:ss
- mm:ss
+ mm:ss
-
Trim Increment
- Incremento nos Ajustes (trims)
+ Incremento nos Ajustes (trims)
-
Exponential
- Exponencial
+ Exponencial
-
Extra Fine
- Extra-fino
+ Extra-fino
-
Fine
- Fino
+ Fino
-
Medium
- Médio
+ Médio
-
Coarse
- Aberto
+ Aberto
-
Throttle Trim
- Ajuste (trim) do Acelerador
+ Ajuste (trim) do Acelerador
-
Throttle Expo
- Exponencial do Acelerador
+ Exponencial do Acelerador
instaTrim Switch
Interruptor "instaTrim"
-
Center beep
- Sons ao centrar
+ Sons ao centrar
-
-
-
-
-
-
-
-
-
RUD
- RUD
+ RUD
-
-
-
-
-
-
-
-
-
-
-
-
ELE
- ELE
+ ELE
-
-
-
-
-
THR
- THR
+ THR
-
-
-
-
-
-
-
-
-
-
AIL
- AIL
+ AIL
-
P1
- P1
+ P1
-
P2
- P2
+ P2
-
P3
- P3
+ P3
-
Pulse Shift (polarity)
- Polaridade (pulse shift)
+ Polaridade (pulse shift)
-
-
-
Positive
- Positiva
+ Positiva
-
-
-
Negative
- Negativa
+ Negativa
-
-
-
Protocol
- Protocolo
+ Protocolo
-
-
-
+
Channels
Canais
-
-
-
-
-
-
ch
- ch
+ ch
ppm Delay
Atraso ppm
-
-
-
usec
- useg
-
-
-
- Extended Limits
-
-
-
-
-
- Heli Setup
-
-
-
-
- Swash Type
-
-
-
-
-
- Off
-
-
-
-
- 120
-
-
-
-
- 120X
-
-
-
-
- 140
-
-
-
-
- 90
-
-
-
-
- Collective
-
-
-
-
- Swash Ring
-
-
-
-
- Invert Elevator
-
-
-
-
- Invert Aileron
-
-
-
-
- Invert Collective
-
+ useg
Expo/Dr
@@ -3130,25 +4105,13 @@ p, li { white-space: pre-wrap; }
Elevador
-
+
Mixes
Misturas
-
Limits
- Limites
-
-
-
- Clear All Curves
- Clear All Mixes
-
-
-
-
- Custom switches
-
+ Limites
CSwitch7
@@ -3178,31 +4141,8 @@ p, li { white-space: pre-wrap; }
CSwitch12
-
- Safety Switches
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Switch
- Interruptor
-
-
-
- Value
-
+ Interruptor
CH1
@@ -3213,40 +4153,8 @@ p, li { white-space: pre-wrap; }
NOR
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
INV
- INV
+ INV
CH2
@@ -3281,1551 +4189,199 @@ p, li { white-space: pre-wrap; }
CH9
-
-
CH10
- CH10
+ CH10
-
-
CH11
- CH11
+ CH11
-
-
CH12
- CH12
+ CH12
-
-
CH13
- CH13
+ CH13
-
-
CH14
- CH14
+ CH14
-
-
CH15
- CH15
+ CH15
-
-
CH16
- CH16
+ CH16
-
-
-
Channel
- Canal
+ Canal
-
-
-
Offset
- Desvio
+ Desvio
-
-
-
-
-
Min
- Min
+ Min
-
-
-
-
-
Max
- Max
+ Max
-
-
-
Invert
- Inverter
+ Inverter
-
+
Curves
Curvas
-
Curve 1
- Curva 1
+ Curva 1
-
Curve 2
- Curva 2
+ Curva 2
-
- Timer1
-
-
-
-
- Timer2
-
-
-
-
-
-
- PPM delay
-
-
-
-
- Extended Trims
-
-
-
-
- Throttle2Trig
-
-
-
-
-
-
- PPM Frame Length
-
-
-
-
-
-
- mSec
-
-
-
-
-
-
-
-
-
-
-
-
- Fade In
-
-
-
-
-
-
-
-
-
-
-
-
- Fade Out
-
-
-
-
-
-
-
-
-
-
-
-
- trim2
-
-
-
-
-
-
-
-
-
-
-
-
- trim1
-
-
-
-
-
- DSM Type
-
-
-
-
-
- LP4/LP5
-
-
-
-
-
- DSM2only
-
-
-
-
-
- DSM2/DSMX
-
-
-
-
-
- RX Number
-
-
-
-
-
CH01
- CH01
+ CH01
-
-
CH02
- CH02
+ CH02
-
-
CH03
- CH03
+ CH03
-
-
CH04
- CH04
+ CH04
-
-
CH05
- CH05
+ CH05
-
-
CH06
- CH06
+ CH06
-
-
CH07
- CH07
+ CH07
-
-
CH08
- CH08
+ CH08
-
-
CH09
- CH09
+ CH09
-
-
-
-
-
-
-
-
-
- trim4
-
-
-
-
-
-
-
-
-
-
-
-
- trim3
-
-
-
-
Curve 3
- Curva 3
+ Curva 3
-
Curve 4
- Curva 4
+ Curva 4
-
Curve 5
- Curva 5
+ Curva 5
-
Curve 6
- Curva 6
+ Curva 6
-
Curve 7
- Curva 7
+ Curva 7
-
Curve 8
- Curva 8
+ Curva 8
-
Curve 9
- Curva 9
+ Curva 9
-
Curve 10
- Curva 10
+ Curva 10
-
Curve 11
- Curva 11
+ Curva 11
-
Curve 12
- Curva 12
+ Curva 12
-
Curve 13
- Curva 13
+ Curva 13
-
Curve 14
- Curva 14
+ Curva 14
-
Curve 15
- Curva 15
+ Curva 15
-
Curve 16
- Curva 16
+ Curva 16
-
-
- Param
-
-
-
-
- Disable Throttle Warning
-
-
-
-
- Switch startup Warning
-
-
-
-
- Instant Trim
-
-
-
-
- REa
-
-
-
-
- REb
-
-
-
-
- 3POS
-
-
-
-
-
- Check
-
-
-
-
-
-
- ON
-
-
-
-
-
OFF
- OFF
+ OFF
-
GEA
- GEA
+ GEA
-
ID0
- ID0
+ ID0
-
ID1
- ID1
+ ID1
-
ID2
- ID2
+ ID2
-
-
- TriggerB
-
-
-
-
- Model Voice
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR1
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR2
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR3
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR4
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR5
-
-
-
-
-
-
-
-
-
-
-
-
- Rotary encoder B
-
-
-
-
-
-
-
-
-
-
-
-
- Rotary encoder A
-
-
-
-
-
- Sym
-
-
-
-
-
- Curve type
-
-
-
-
- 3 points
-
-
-
-
- 3 points custom
-
-
-
-
- 5 points
-
-
-
-
- 5 points custom
-
-
-
-
- 9 points
-
-
-
-
- 9 points custom
-
-
-
-
- 17 points
-
-
-
-
- 17 points custom
-
-
-
-
-
- Duration
-
-
-
-
-
Delay
- Atraso
+ Atraso
-
- Custom Functions
-
-
-
-
+
Telemetry
-
- Volt source
-
-
-
-
- Current source
-
-
-
-
- NONE
-
-
-
-
-
-
-
- A1
-
-
-
-
-
- FAS
-
-
-
-
- CEL
-
-
-
-
- Alti
-
-
-
-
- Alti+
-
-
-
-
- Vario
-
-
-
-
-
- Unit
-
-
-
-
-
- Raw (-)
-
-
-
-
- Telemetry screen 1
-
-
-
-
-
-
- Custom Screen Type
-
-
-
-
-
-
- Nums
-
-
-
-
-
-
- Bars
-
-
-
-
- Telemetry screen 2
-
-
-
-
- Telemetry screen 3
-
-
-
-
-
- Max Value
-
-
-
-
- RSSI
-
-
-
-
- Alarm 1
-
-
-
-
- Serial Protocol
-
-
-
-
- Units
-
-
-
-
- None
-
-
-
-
- FrSky Sensor Hub
-
-
-
-
- Metric
-
-
-
-
- ModelSetup
-
-
-
-
- Model Image
-
-
-
-
-
- Persistent
-
-
-
-
-
- MinuteBeep
-
-
-
-
-
- CountDownBeep
-
-
-
-
- SB
-
-
-
-
- Throttle Source
-
-
-
-
- SD
-
-
-
-
- SA
-
-
-
-
- SC
-
-
-
-
- SG
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- RS
-
-
-
-
Reverse Throttle Operation
- Inverter Acelerador
+ Inverter Acelerador
-
- Reverse throttle operation.
-If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
-
-
-
-
-
-
- Master
-
-
-
-
- Slave
-
-
-
-
- Trainer Mode
-
-
-
-
- Master/Trainer Port
-
-
-
-
-
-
- Start
-
-
-
-
-
- Polarity
-
-
-
-
- RF Module 1
-
-
-
-
- RF Module 2
-
-
-
-
-
- (00:00:00)
-
-
-
-
- Failsafe
-
-
-
-
- External module
-
-
-
-
-
- Failsafe Mode
-
-
-
-
-
- Hold
-
-
-
-
-
- Custom
-
-
-
-
-
- No Pulses
-
-
-
-
- Internal Module
-
-
-
-
+
Flight Modes
-
- Flight Mode 0 (Default)
-
-
-
-
-
-
-
-
-
-
-
-
- Flight Mode Name
-
-
-
-
- GVAR6
-
-
-
-
- GVAR7
-
-
-
-
- FM 1
-
-
-
-
- FM 2
-
-
-
-
- FM 3
-
-
-
-
- FM 4
-
-
-
-
- FM 5
-
-
-
-
- FM 6
-
-
-
-
- FM 7
-
-
-
-
- FM 8
-
-
-
-
- Sticks
-
-
-
-
- Show channels names in mixes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ---
-
-
-
-
-
- Center
-
-
-
-
- Curve name
-
-
-
-
- Curve Creator
-
-
-
-
- Y at X=100
-
-
-
-
- Both
-
-
-
-
- x>0
-
-
-
-
- x<0
-
-
-
-
- Linear
-
-
-
-
- Single Expo
-
-
-
-
- Symmetrical f(x)=-f(-x)
-
-
-
-
- Symmetrical f(x)=f(-x)
-
-
-
-
- Apply
-
-
-
-
- Side
-
-
-
-
- Y at X=-100
-
-
-
-
- Y at X=0
-
-
-
-
- Coefficient
-
-
-
-
- CS9
-
-
-
-
- CSF
-
-
-
-
- CSD
-
-
-
-
-
- AND
-
-
-
-
- CS6
-
-
-
-
- CS1
-
-
-
-
- CS8
-
-
-
-
- CS7
-
-
-
-
- CSA
-
-
-
-
- CSB
-
-
-
-
- CSC
-
-
-
-
- CS5
-
-
-
-
- CS3
-
-
-
-
- CS2
-
-
-
-
- CSE
-
-
-
-
- CSG
-
-
-
-
- CS4
-
-
-
-
- CST
-
-
-
-
- CSM
-
-
-
-
- CSP
-
-
-
-
- CSH
-
-
-
-
- CSO
-
-
-
-
- CSN
-
-
-
-
- CSQ
-
-
-
-
- CSR
-
-
-
-
- CSS
-
-
-
-
- CSL
-
-
-
-
- CSK
-
-
-
-
- CSJ
-
-
-
-
- CSI
-
-
-
-
- CSU
-
-
-
-
- CSV
-
-
-
-
- CSW
-
-
-
-
- Imperial
-
-
-
-
- 2
-
-
-
-
- 3
-
-
-
-
- 4
-
-
-
-
- Blades
-
-
-
-
- Sink Max
-
-
-
-
- Climb Max
-
-
-
-
- Sink Min
-
-
-
-
- Climb Min
-
-
-
-
- Display altitude in toolbar
-
-
-
-
-
- Volts (V)
-
-
-
-
-
- Amps (A)
-
-
-
-
-
- Speed (m/s or ft/s)
-
-
-
-
-
- Speed (km/h or miles/h)
-
-
-
-
-
- Meters (m or ft)
-
-
-
-
-
- Temp (°)
-
-
-
-
-
- Fuel (%)
-
-
-
-
-
- mAmps (mA)
-
-
-
-
-
-
Source
- Fonte
-
-
-
-
-
- Gauge
-
-
-
-
-
-
- Gauge 1
-
-
-
-
-
-
- Gauge 2
-
-
-
-
-
-
- Gauge 3
-
-
-
-
-
-
- Gauge 4
-
-
-
-
-
- Alarm 1
-
-
-
-
-
- Enable
-
-
-
-
- Altimetry / Vario
-
-
-
-
- Vario source
-
-
-
-
- Vario limits
-
-
-
-
- Use GPS as altitude source
-
-
-
-
-
-
-
-
-
- ----
-
-
-
-
-
-
-
-
-
- Yellow
-
-
-
-
-
-
-
-
-
- Orange
-
-
-
-
-
-
-
-
-
- Red
-
-
-
-
-
-
-
- <
-
-
-
-
-
-
-
- >
-
-
-
-
-
-
- Alarm 2
-
-
-
-
-
- Min Value
-
-
-
-
-
-
-
- A2
-
+ Fonte
Switches
@@ -4856,24 +4412,8 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
CSwitch6
-
-
-
-
Function
- CSwitch7
-
-
-
-
- V1
-
-
-
-
-
- V2
-
+ CSwitch7
Source/SW1
@@ -4904,21 +4444,13 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
STICK 4
-
- Templates
-
-
-
-
+
Simulate
Simular
-
-
-
CH%1%2
- CH%1%2
+ CH%1%2
%1%
@@ -4945,82 +4477,21 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
Curva(%1)
-
- Clear Mixes
-
-
-
-
- S1
-
-
-
-
- S2
-
-
-
-
- LS
-
-
-
-
- Rud
-
-
-
-
- Ele
-
-
-
-
- Thr
-
-
-
-
- Ail
-
-
-
-
Weight
Weight(+%1%)
- Peso
+ Peso
-
-
- Flight modes
-
-
-
-
-
- Flight mode
-
-
-
-
- No Trim
-
-
-
-
Delay(u%1:d%2)
- Atraso(u%1:d%2)
+ Atraso(u%1:d%2)
-
Slow(u%1:d%2)
- Lento(u%1:d%2)
+ Lento(u%1:d%2)
-
Warn(%1)
- Aviso(%1)
+ Aviso(%1)
Curve %1
@@ -5031,582 +4502,346 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
companion9x
-
-
- Expo
-
-
-
-
-
- DISABLED
-
-
-
-
-
Curve
- Curva
+ Curva
-
-
-
- X%1
-
-
-
-
- No DR/Expo
-
-
-
-
- FMTrim
-
-
-
-
- Diff
-
-
-
-
-
-
-
- CH %1
-
-
-
-
- CF%1
-
-
-
-
Error
- Erro
+ Erro
-
- Unable to find sound file %1!
-
-
-
-
- Winged Shadow How High
-
-
-
-
- Winged Shadow How High (not supported)
-
-
-
-
-
- Range
-
-
-
-
- Simple 4-CH
-
-
-
-
- T-Cut
-
-
-
-
- Sticky T-Cut
-
-
-
-
- V-Tail
-
-
-
-
- Elevon\Delta
-
-
-
-
- Heli Setup with gyro gain control
-
-
-
-
- Gyro gain control
-
-
-
-
- Heli Setup (Futaba's channel assignment style)
-
-
-
-
- Heli Setup with gyro gain control (Futaba's channel assignment style)
-
-
-
-
- Gyro gain control (Futaba's channel assignment style)
-
-
-
-
- Servo Test
-
-
-
-
- MultiCopter
-
-
-
-
- Use Model Config Wizard
-
-
-
-
- Editing curve %1
-
-
-
-
- Not enough available mixers!
-
-
-
-
- Not enough available expos!
-
-
-
-
Delete Selected Mixes?
- Apagar misturas selecionadas?
+ Apagar misturas selecionadas?
-
- Delete Selected Expos?
-
-
-
-
-
&Add
- &Adicionar
+ &Adicionar
-
-
Ctrl+A
- Ctrl+A
+ Ctrl+A
-
-
&Edit
- &Editar
+ &Editar
-
-
Enter
- Enter
+ Enter
-
-
-
-
&Delete
- &Eliminar
+ &Eliminar
-
-
-
-
Delete
- Eliminar
+ Eliminar
-
-
-
-
&Copy
- &Copiar
+ &Copiar
-
-
-
-
Ctrl+C
- Ctrl+C
+ Ctrl+C
-
-
-
-
&Cut
- &Cor&tar
+ &Cor&tar
-
-
-
-
Ctrl+X
- Ctrl+X
+ Ctrl+X
-
-
-
-
&Paste
- Co&lar
+ Co&lar
-
-
-
-
Ctrl+V
- Ctrl+V
+ Ctrl+V
-
-
- Du&plicate
-
-
-
-
- Are you sure you want to delete curve %1 ?
-
-
-
-
- Apply Template?
-
-
-
-
- Apply template "%1"?
-
-
-
-
- Clear Expos?
-
-
-
-
- Really clear all the expos?
-
-
-
-
-
-
- Clear Mixes?
-
-
-
-
- Really clear all the mixes?
-
-
-
-
+
Clear Curves?
-
+
Really clear all the curves?
-
-
-
-
-
- AIL2
-
-
-
-
-
-
-
- ELE2
-
-
-
-
-
-
-
-
-
- FLAPS
-
-
-
-
-
-
-
-
-
- FLAP%1
-
-
-
-
-
-
-
- PITCH
-
-
-
-
-
-
-
-
-
-
-
- GYRO
-
-
-
-
-
- SPOIL
-
-
-
-
-
- SPOIL%1
-
-
-
-
-
- RUD2
-
-
-
-
- Really clear existing mixes on CH6?
-
-
-
-
- Really clear existing mixes on CH5?
-
-
-
-
- Not enough free points in eeprom to store the curve.
-
-
-
-
-
-
-
- Move Up
-
-
-
-
-
-
-
- Ctrl+Up
-
-
-
-
-
-
-
- Move Down
-
-
-
-
-
-
-
- Ctrl+Down
-
-
-
-
- Clear Expo Settings
-
-
D&uplicate
&Duplicar
-
-
Ctrl+U
- Ctrl+U
+ Ctrl+U
ModelsListWidget
-
+
&Edit
&Editar
-
+
&Restore from backup
-
+
&Model Wizard
-
+
&Delete
-
+
Delete
-
+
&Copy
&Copiar
-
+
Ctrl+C
Ctrl+C
-
+
&Cut
-
+
Ctrl+X
-
+
&Paste
Co&lar
-
+
Ctrl+V
Ctrl+V
-
+
D&uplicate
&Duplicar
-
+
Ctrl+U
-
+
&Use as default
-
+
P&rint model
-
+
Alt+R
-
+
Alt+S
Alt+S
-
+
&Simulate model
-
+
General Settings
Parâmetros Gerais
-
+
Delete Selected Models?
Apagar Modelos Seleccionados?
-
-
+
+
Cannot delete default model.
-
+
Cannot cut default model.
-
+
Do you want to overwrite TX general settings?
-
+
You are pasting on an not empty model, are you sure?
You are pasting on an not empty model, are you sure ?
-
+
No free slot available, cannot duplicate
+
+ Module
+
+
+ Form
+
+
+
+
+ Failsafe Mode
+
+
+
+
+ Start
+
+
+
+
+ PPM delay
+
+
+
+
+ usec
+ useg
+
+
+
+ Negative
+
+
+
+
+ Positive
+
+
+
+
+ RX Number
+
+
+
+
+ Master
+
+
+
+
+ Slave
+
+
+
+
+ Polarity
+
+
+
+
+ Trainer Mode
+
+
+
+
+ mSec
+
+
+
+
+ PPM Frame Length
+
+
+
+
+ Label
+
+
+
+
+
+ ch
+ ch
+
+
+
+ Channels
+ Canais
+
+
+
+ Hold
+
+
+
+
+ Custom
+
+
+
+
+ No Pulses
+
+
+
+
+ Failsafe Positions
+
+
+
+
+ Protocol
+ Protocolo
+
+
+
+ ModulePanel
+
+
+ Trainer Output
+
+
+
+
+ Internal Radio System
+
+
+
+
+ External Radio Module
+
+
+
QObject
@@ -5617,1509 +4852,1546 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
-
+
+ Input%1
+
+
+
+
+ Polish
+
+
+
+
+ CH%1
+ CH%1
+
+
+
No
-
+
RotEnc A
-
+
Rot Enc B
-
+
Rot Enc C
-
+
Rot Enc D
-
+
Rot Enc E
-
+
Safety %1
-
+
Trainer
-
+
Trainer RUD
-
+
Trainer ELE
-
+
Trainer THR
-
+
Trainer AIL
-
+
Instant Trim
-
+
Play Sound
-
+
Start Logs
-
+
Play Haptic
-
-
+
+
---
-
+
Rud Trim
-
+
Ele Trim
-
+
Thr Trim
-
+
Ail Trim
-
+
Rot Enc
-
+
English
-
+
French
-
+
Italian
-
+
German
-
+
Czech
-
+
Slovak
-
+
Spanish
-
+
Portuguese
-
+
Swedish
-
- CH
-
-
-
-
-
+
+
No repeat
-
+
%1 sec
-
+
Reset
-
+
Vario
-
+
Play Track
-
+
Play Both
-
+
Play Value
-
+
Volume
-
+
Backlight
-
+
Background Music
-
+
Background Music Pause
-
- Adjust GV1
-
-
-
-
- Adjust GV2
-
-
-
-
- Adjust GV3
-
-
-
-
- Adjust GV4
-
-
-
-
- Adjust GV5
-
-
-
-
+
Delay %1 sec
-
+
Duration %1 sec
-
-
+
+
<font color=red><b>Inconsistent parameter</b></font>
-
+
Value
-
+
Decr:
-
+
Incr:
-
+
+ Played once, not during startup
+
+
+
+
%1s
%1s
-
- Value
+
+ Adjust GV%1
-
- Source
- Fonte
-
-
-
- GVAR
+
+ Rotary Encoder
+ Value
+
+
+
+
+ Source
+ Fonte
+
+
+
+ GVAR
+
+
+
+
Increment
-
+
!Flight mode %1
-
+
Flight mode %1
-
+
Flight mode %1 trim
-
+
Flight mode %1 value
-
+
Yellow
-
+
Orange
-
+
Red
-
+
Winged Shadow How High
-
+
Winged Shadow How High (not supported)
-
+
FrSky Sensor Hub
-
+
+
None
-
+
Imperial
-
+
Metric
-
+
Extra Fine
Extra-fino
-
+
Fine
Fino
-
+
Medium
Médio
-
+
Coarse
Aberto
-
+
Exponential
Exponencial
-
+
Count Up
Contagem progressiva
-
+
Count Down
Contagem regressiva
-
+
%1:%2,
%1:%2,
-
+
: %1 Channels, %2usec Delay
:%1 Canais, Atraso de %3 mseg {1 ?} {2m?} {1 ?} {2u?}
-
+
+ Flight modes(%1)
+
+
+
+
+ Flight mode(%1)
+
+
+
+
Rudder
Leme
-
+
Elevator
Elevador
-
+
Throttle
Acelerador
-
+
Aileron
Aileron
-
-
-
+
+
+
Timer1
-
-
-
+
+
+
Timer2
-
-
+
+
All
-
-
+
+
Telemetry
-
- Diff
-
-
-
-
- Expo
-
-
-
-
+
Own trim
-
+
Own value
-
+
Keys
-
+
Sticks
-
+
Keys + Sticks
-
+
+
-GV%1
-
- (-GV%1)
-
-
-
-
- (GV%1)
-
-
-
-
-
-
-
+
+
+
+
----
-
-
RUD
- RUD
+ RUD
-
-
ELE
- ELE
+ ELE
-
-
-
-
+
+
THR
THR
-
-
AIL
- AIL
+ AIL
-
-
-
+
+
+
P1
P1
-
-
-
+
+
+
P2
P2
-
-
-
+
+
+
P3
P3
-
- SA
-
-
-
-
- SB
-
-
-
-
- SC
-
-
-
-
- SD
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- SG
-
-
-
-
- SH
-
-
-
-
+
Batt
-
+
Pwr+
-
+
+
+ LS1
+
+
+
+
+
+ LS2
+
+
+
+
+
+ LS3
+
+
+
+
+
+ LS4
+
+
+
+
+
+ LS5
+
+
+
+
+
+ LS6
+
+
+
+
+
+ LS7
+
+
+
+
+
+ LS8
+
+
+
+
+
+ LS9
+
+
+
+
+
+ LSA
+
+
+
+
+
+ LSB
+
+
+
+
+
+ LSC
+
+
+
+
+
+ LSD
+
+
+
+
+
+ LSE
+
+
+
+
+
+ LSF
+
+
+
+
+
+ LSG
+
+
+
+
+
+ LSH
+
+
+
+
+
+ LSI
+
+
+
+
+
+ LSJ
+
+
+
+
+
+ LSK
+
+
+
+
+
+ LSL
+
+
+
+
+
+ LSM
+
+
+
+
+
+ LSN
+
+
+
+
+
+ LSO
+
+
+
+
+
+ LSP
+
+
+
+
+
+ LSQ
+
+
+
+
+
+ LSR
+
+
+
+
+
+ LSS
+
+
+
+
+
+ LST
+
+
+
+
+
+ LSU
+
+
+
+
+
+ LSV
+
+
+
+
+
+ LSW
+
+
+
+
+ Input %1
+
+
+
+
MAX
-
-
+
+
Rud
-
-
+
+
Ele
-
-
+
+
Thr
-
-
+
+
Ail
-
+
TrmR
-
+
TrmE
-
+
TrmT
-
+
TrmA
-
-
+
+
S1
-
-
+
+
S2
-
-
+
+
LS
-
-
+
+
RS
-
+
+
REa
-
+
+
REb
-
+
Alt
-
+
Rpm
-
+
Fuel
-
+
Tx
-
+
Rx
-
+
SWR
-
+
RSSI
-
+
Speed
-
+
Dist
-
+
GPS Alt
-
+
Cell
-
+
Cels
-
+
Vfas
-
+
Curr
-
+
Cnsp
-
+
Powr
-
+
AccX
-
+
AccY
-
+
AccZ
-
+
HDG
-
+
VSpd
-
+
A1-
-
+
A2-
-
+
Alt-
-
+
Alt+
-
+
Rpm+
-
+
T1+
-
+
T2+
-
+
Spd+
-
+
Dst+
-
+
Cur+
-
+
ACC
-
+
Time
-
-
- CS1
+
+ S11
-
-
- CS2
+
+ S12
-
-
- CS3
+
+ S13
-
-
- CS4
+
+ S14
-
-
- CS5
+
+ S15
-
-
- CS6
+
+ S16
-
-
- CS7
+
+ S21
-
-
- CS8
+
+ S22
-
-
- CS9
+
+ S23
-
-
- CSA
+
+ S24
-
-
- CSB
+
+ S25
-
-
- CSC
+
+ S26
-
-
- CSD
+
+ Diff(%1)
-
-
- CSE
+
+ Expo(%1)
-
-
- CSF
+
+ Function(%1)
-
-
- CSG
+
+ Curve(%1)
-
-
- CSH
+
+ !Curve(%1)
-
-
- CSI
-
-
-
-
-
- CSJ
-
-
-
-
-
- CSK
-
-
-
-
-
- CSL
-
-
-
-
-
- CSM
-
-
-
-
-
- CSN
-
-
-
-
-
- CSO
-
-
-
-
-
- CSP
-
-
-
-
-
- CSQ
-
-
-
-
-
- CSR
-
-
-
-
-
- CSS
-
-
-
-
-
- CST
-
-
-
-
-
- CSU
-
-
-
-
-
- CSV
-
-
-
-
-
- CSW
-
-
-
-
+
ONE
-
+
!ONE
-
+
TRNs
-
+
TRNl
-
+
REAs
-
+
REAl
-
- 3POS
-
-
-
-
+
X%1
-
-
+
+
+
GV%1
-
-
+
+
Support for frsky telemetry mod
-
-
+
+
Support for jeti telemetry mod
-
-
+
+
Support for receiving ardupilot data
-
-
+
+
Support for receiving NMEA data
-
+
Support for telemetry easy board
-
-
+
+
Support for MAVLINK devices
-
+
Rotary Encoder use in menus navigation
-
+
Possibility to enable FAI MODE at field
-
+
FAI MODE always enabled
-
+
openTx for 9X board
-
-
-
-
-
+
+
+
+
+
Enable heli menu and cyclic mix support
-
-
-
-
-
-
+
+
+
+
+
+
Enable TEMPLATES menu
-
-
-
-
+
+
+
+
No splash screen
-
-
-
-
-
-
+
+
+
+
+
+
Disable curves menus
-
-
-
-
+
+
+
+
Support for radio modified with regular speaker
-
-
-
-
-
+
+
+
+
+
Used if you have modified your radio with voice mode
-
-
-
-
+
+
+
+
Used if you have modified your radio with haptic mode
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Use alternative SQT5 font
-
-
-
-
+
+
+
+
Enable the throttle trace in Statistics
-
+
EEprom write progress bar
-
-
+
+
No Winged Shadow How High support
-
-
+
+
No vario support
-
-
+
+
No GPS support
-
-
+
+
No gauges in the custom telemetry screen
-
+
+ Allow compensating for offset errors in FrSky FAS current sensors
+
+
+
+
openTx for M128 / 9X board
-
+
openTx for 9XR
-
+
openTx for 9XR with M128 chip
-
+
openTx for Gruvin9x board / 9X
-
+
Support of FrSky PXX protocol
-
+
Use FrSky Taranis sticks in a 9X/9XR
-
+
openTx for FrSky Taranis
-
-
+
+
Disable HELI menu and cyclic mix support
-
-
+
+
Disable TEMPLATES menu
-
-
+
+
Disable Global variables
-
+
openTx for FrSky Taranis Rev4a
-
-
-
-
-
+
+
+
+
+
Support for DSM2 modules
-
-
-
-
-
-
+
+
+
+
+
+
PPM center adjustment in limits
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
PPM values displayed in us
-
-
-
-
-
-
+
+
+
+
+
+
Symetrical Limits
-
-
-
-
-
+
+
+
+
+
Pots use in menus navigation
-
+
Your radio probably uses a wrong firmware,
eeprom size is 4096 but only the first 2048 are used
-
-
-
-
-
-
+
+
+
+
+
+
No flight modes
-
-
+
+
SmartieParts 2.2 Backlight support
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set source by moving some of them
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set switch by moving some of them
-
-
-
-
+
+
+
+
Enable resetting values by pressing up and down at the same time
-
-
-
-
-
-
+
+
+
+
+
+
No graphical check boxes and sliders
-
-
-
-
-
-
+
+
+
+
+
+
Battery graph
-
-
-
-
-
-
+
+
+
+
+
+
Don't use bold font for highlighting active items
-
-
-
-
+
+
+
+
EEprom write Progress bar
-
-
-
-
-
+
+
+
+
+
Imperial units
-
+
Bluetooth interface
-
-
-
-
-
-
+
+
+
+
+
+
Global variables
-
+
Support for SD memory card
-
+
Support for DSM2 modules using ppm instead of true serial
-
+
openTx for Sky9x board / 9X
-
+
Enable HELI menu and cyclic mix support
-
+
ersky9x
@@ -7188,446 +6460,147 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
CH16
-
+
A1
-
+
A2
-
+
T1
-
+
T2
-
Curve
- Curva
+ Curva
-
-
-
-
- Flight modes settings on expos not exported
- Phases settings on expos not exported
-
-
-
-
-
-
-
-
-
-
-
- Open9x on this board doesn't have Rotary Encoders
-
-
-
-
- gruvin9x doesn't have trims as source
-
-
-
-
- gruvin9x doesn't have swappable trims
-
-
-
-
- gruvin9x on this board doesn't have Rotary Encoders
-
-
-
-
- gruvin9x does not support Custom Switch function %1
-
-
-
-
- gruvin9x only accepts %1 expos
-
-
-
-
-
- gruvin9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
- gruvin9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
- Open9x doesn't allow Curve%1 in expos
-
-
-
-
-
+
+
Simultaneous usage of expo and curves is no longer supported
-
-
-
-
-
-
-
- Flight modes settings on mixers not exported
-
-
-
-
-
- Flight mode settings on mixers not exported
- Phases settings on mixers not exported
-
-
-
-
-
-
-
- This version of open9x does not support Custom Switch function %1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Open9x doesn't accept this protocol
-
-
-
-
-
-
-
-
-
- open9x only accepts %1 points in all curves
-
-
-
-
+
Simultaneous usage of expo and curves is no longer supported in open9x
-
-
- open9x on this board doesn't have Rotary Encoders
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- open9x only accepts %1 expos
- Gruvin9x firmware only accepts %1 expos
-
-
-
-
+
th9x
-
+
er9x
-
+
CYC%1
-
+
PPM%1
-
+
CH%1%2
CH%1
CH%1
-
ID0
- ID0
+ ID0
-
ID1
- ID1
+ ID1
-
ID2
- ID2
+ ID2
-
-
GEA
- GEA
+ GEA
-
-
TRN
- TRN
+ TRN
SW%1
SW%1
-
-
+
+
ON
-
-
+
+
OFF
OFF
-
- er9x doesn't have Rotary Encoders
-
-
-
-
- er9x doesn't have trims as source
-
-
-
-
- er9x doesn't have negative gvars as weight
-
-
-
-
- er9x doesn't have negative gvars as offset
-
-
-
-
-
-
- er9x doesn't have swappable trims
-
-
-
-
-
-
- er9x on this board doesn't have Rotary Encoders
-
-
-
-
- er9x does not support Custom Switch function %1
-
-
-
-
-
-
- er9x does not support this range for A1/A2
-
-
-
-
-
-
- er9x does not support this telemetry units
-
-
-
-
-
- Er9x doesn't accept this protocol
-
-
-
-
-
- Er9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
- Er9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
-
-
+
+
+
+
Warning
Aviso
-
-
+
EEPROM saved with these warnings:
-
-
- ersky9x doesn't have Rotary Encoders
-
-
-
-
-
- ersky9x doesn't have trims as source
-
-
-
-
-
- ersky9x does not support Custom Switch function %1
-
-
-
-
-
- Ersky9x doesn't accept this protocol
-
-
-
-
-
-
-
- ErSky9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
-
-
- ErSky9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
+
+
+
Simulator for this firmware is not yet available
-
- th9x does not support Custom Switch function %1
-
-
-
-
+
th9x on this board doesn't have Rotary Encoders
-
-
-
- th9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
-
- th9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
- Flight Mode 0 (Default)
-
-
-
-
-
- FM %1
-
-
-
-
+
openTx only accepts %1 points in all curves
-
-
-
+
+
+
OpenTX on this board doesn't accept this function
-
-
+
+
OpenTX doesn't accept this protocol
-
+
OpenTX doesn't allow this number of channels
@@ -7641,6 +6614,587 @@ The OpenTX/Companion Team.
+
+ Setup
+
+
+ Form
+
+
+
+
+ Model Name
+ Nome do Modelo
+
+
+
+ Timer2
+
+
+
+
+ Timer1
+
+
+
+
+ Throttle Source
+
+
+
+
+ Switch startup Warning
+
+
+
+
+ Center beep
+ Sons ao centrar
+
+
+
+ Trim Increment
+
+
+
+
+ ON
+
+
+
+
+ OFF
+ OFF
+
+
+
+ Check
+
+
+
+
+ Model Image
+
+
+
+
+ Exponential
+ Exponencial
+
+
+
+ Extra Fine
+ Extra-fino
+
+
+
+ Fine
+ Fino
+
+
+
+ Medium
+ Médio
+
+
+
+ Coarse
+ Aberto
+
+
+
+ Extended Limits
+
+
+
+
+ Extended Trims
+
+
+
+
+ Throttle Trim
+
+
+
+
+ Throttle Warning
+
+
+
+
+ Reverse throttle operation.
+If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
+
+
+
+
+
+
+ Reverse Throttle
+
+
+
+
+ Telemetry
+
+
+ Form
+
+
+
+
+
+
+
+ A1
+
+
+
+
+
+
+
+ A2
+
+
+
+
+ RSSI
+
+
+
+
+ Alarm 1
+
+
+
+
+
+ ----
+
+
+
+
+
+ Yellow
+
+
+
+
+
+ Orange
+
+
+
+
+
+ Red
+
+
+
+
+ Alarm 2
+
+
+
+
+ Serial Protocol
+
+
+
+
+ Volt source
+
+
+
+
+ Metric
+
+
+
+
+ Imperial
+
+
+
+
+ Current source
+
+
+
+
+ Protocol
+ Protocolo
+
+
+
+ NONE
+
+
+
+
+
+ FAS
+
+
+
+
+ None
+
+
+
+
+ FrSky Sensor Hub
+
+
+
+
+ CEL
+
+
+
+
+ 2
+
+
+
+
+ 3
+
+
+
+
+ 4
+
+
+
+
+ Units
+
+
+
+
+ Blades
+
+
+
+
+ Altimetry / Vario
+
+
+
+
+ Alti
+
+
+
+
+ Alti+
+
+
+
+
+ Vario
+
+
+
+
+ Sink Max
+
+
+
+
+ Off
+
+
+
+
+ Climb Max
+
+
+
+
+ Sink Min
+
+
+
+
+ Climb Min
+
+
+
+
+ Vario source
+
+
+
+
+ Vario limits
+
+
+
+
+ Use GPS as altitude source
+
+
+
+
+ Display altitude in toolbar
+
+
+
+
+ Various
+
+
+
+
+ mAh count
+
+
+
+
+ FAS Offset
+
+
+
+
+ Persistent mAh
+
+
+
+
+ TelemetryAnalog
+
+
+ Form
+
+
+
+
+ Unit
+
+
+
+
+ Max Value
+
+
+
+
+ Alarm 1
+
+
+
+
+
+ ----
+
+
+
+
+
+ Yellow
+
+
+
+
+
+ Orange
+
+
+
+
+
+ Red
+
+
+
+
+
+ <
+
+
+
+
+
+ >
+
+
+
+
+ Alarm 2
+
+
+
+
+ Min Value
+
+
+
+
+ Volts (V)
+
+
+
+
+ Amps (A)
+
+
+
+
+ Speed (m/s or ft/s)
+
+
+
+
+ Raw (-)
+
+
+
+
+ Speed (km/h or miles/h)
+
+
+
+
+ Meters (m or ft)
+
+
+
+
+ Temp (°)
+
+
+
+
+ Fuel (%)
+
+
+
+
+ mAmps (mA)
+
+
+
+
+ Range
+
+
+
+
+ TelemetryCustomScreen
+
+
+ Form
+
+
+
+
+ Custom Screen Type
+
+
+
+
+ Nums
+
+
+
+
+ Bars
+
+
+
+
+ Min
+ Min
+
+
+
+ Source
+ Fonte
+
+
+
+ Gauge
+
+
+
+
+ Max
+ Max
+
+
+
+ TelemetryPanel
+
+
+ Telemetry screen %1
+
+
+
+
+ Winged Shadow How High
+
+
+
+
+ Winged Shadow How High (not supported)
+
+
+
+
+ Timer
+
+
+ Form
+
+
+
+
+ mm:ss
+ mm:ss
+
+
+
+ Countdown
+
+
+
+
+ MinuteBeep
+
+
+
+
+ Persistent
+
+
+
+
+ (00:00:00)
+
+
+
+
+ TimerPanel
+
+
+ None
+
+
+
+
+ Beeps
+
+
+
+
+ Countdown
+
+
+
avrOutputDialog
@@ -7808,7 +7362,7 @@ Do you want some help ?
burnConfigDialog
-
+
AVRDUDE Configuration
Configuração do AVRDUDE
@@ -7985,25 +7539,25 @@ Please only use this if you know what you are doing. There are no error checks
Activar o Fuse "Limpar EEPROM"
-
+
DFU-UTIL Configuration
-
+
SAM-BA Configuration
-
-
-
+
+
+
Select Location
Selecionar localização
-
-
+
+
Companion
@@ -8012,12 +7566,12 @@ Please only use this if you know what you are doing. There are no error checks
companion9x
-
+
<b><u>WARNING!</u></b><br>This will reset the fuses of %1 to the factory settings.<br>Writing fuses can mess up your radio.<br>Do this only if you are sure they are wrong!<br>Are you sure you want to continue?
-
+
<b><u>WARNING!</u></b><br>Normally CPU type is automatically selected according to the chosen firmware.<br>If you change the CPU type the resulting eeprom could be inconsistent.
@@ -8075,7 +7629,7 @@ m2560 for v4.1 boards
-
+
Browse for file
@@ -8121,7 +7675,7 @@ m2560 for v4.1 boards
-
+
Write to TX
@@ -8146,146 +7700,146 @@ m2560 for v4.1 boards
-
+
Write firmware to TX
-
+
Current profile
-
+
Open
Abrir
-
+
Write Models and Settings to TX
-
+
Write Models and Settings in %1 to TX
-
+
Choose file to load Models and Settings from
-
-
-
-
-
-
+
+
+
+
+
+
Warning
Aviso
-
+
%1 is not a known firmware
-
+
Burn anyway !
-
+
Unable to find file %1!
Impossível encontrar o ficheiro %1!
-
-
-
+
+
+
Error opening file %1:
%2.
-
-
-
+
+
+
Invalid binary Models and Settings File %1, Proceed anyway ?
-
+
Error reading file %1:
%2.
-
+
Open Image to load
-
+
Images (%1)
-
+
Wrong radio calibration data in profile, Settings not patched
-
+
Wrong radio setting data in profile, Settings not patched
-
-
+
+
Cannot write file %1:
%2.
-
+
Error writing file %1:
%2.
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Error
Erro
-
-
+
+
Cannot load %1.
-
+
Cannot save customized firmware
-
+
Custom image not found
-
+
No firmware selected
@@ -8477,14 +8031,14 @@ m2560 for v4.1 boards
-
+
-
-
-
-
-
-
+
+
+
+
+
+
Switch
Interruptor
@@ -8521,10 +8075,10 @@ m2560 for v4.1 boards
-
-
-
-
+
+
+
+
Offset
@@ -8532,8 +8086,8 @@ m2560 for v4.1 boards
-
-
+
+
Min
Min
@@ -8541,8 +8095,8 @@ m2560 for v4.1 boards
-
-
+
+
Max
Max
@@ -8558,8 +8112,8 @@ m2560 for v4.1 boards
-
-
+
+
CH
@@ -8593,198 +8147,181 @@ m2560 for v4.1 boards
-
+
Weight
Peso
-
-
- Expo
+
+ Logical Switches
-
+
+
+ LS
+
+
+
+
+ Switch Assignment
+
+
+
+
-
-
+
+
DISABLED
-
-
-
-
-
-
+
+
Curve
Curva
-
+
Mixers
-
-
+
+
noTrim
-
-
- FMTrim
-
-
-
-
-
- Diff
-
-
-
-
-
+
+
Delay(u%1:d%2)
Atraso(u%1:d%2)
-
-
+
+
Slow(u%1:d%2)
Lento(u%1:d%2)
-
-
+
+
Warn
-
+
Curves
Curvas
-
+
5 Points Curves
-
-
-
-
+
+
+
+
pt %1
pt %1
-
+
9 Points Curves
-
- Custom Switches
-
-
-
-
-
- CS
-
-
-
-
-
+
+
Function
-
-
+
+
Param
-
-
+
+
Enable
-
+
CF
-
+
Telemetry Settings
-
-
+
+
Analog
-
-
+
+
Unit
-
-
+
+
Scale
-
-
-
-
+
+
+
+
A%1
-
-
+
+
Alarm 1
-
-
+
+
Alarm 2
-
-
-
-
+
+
+
+
Type
-
-
-
-
+
+
+
+
Condition
-
-
-
-
-
-
+
+
+
+
+
+
Value
@@ -8816,64 +8353,59 @@ m2560 for v4.1 boards
-
+
-
-
+
+
Flight modes
-
+
-
-
+
+
Flight mode
+
- Custom Functions
-
-
-
-
-
Repeat
-
+
Safety Switches
-
-
+
+
RSSI Alarm
-
-
+
+
Telemetry Bars
-
-
+
+
Bar Number
-
-
+
+
Source
Fonte
-
-
+
+
Custom Telemetry View
@@ -8882,12 +8414,12 @@ m2560 for v4.1 boards
:%1 Canais, Atraso de %3 mseg {1 ?} {2m?} {1 ?} {2u?}
-
+
Print Document
Imprimir Documento
-
+
Select PDF output file
@@ -8900,39 +8432,37 @@ m2560 for v4.1 boards
Dialogo
-
+
People who have contributed to this project
-
+
Coders
-
- Honors go to Rafal Tomczak (RadioClone) and Thomas Husterer (th9x)
-of course. Also to Erez Raviv (er9x) and the fantastic eePe program
-which was the staring point for OpenTX Companion.
-
-
-
-
+
Companion Release Notes
-
+
Thank you all !!!
-
+
+ Honors go to Rafal Tomczak (RadioClone), Thomas Husterer (th9x) and Erez Raviv (er9x and eePe)
+
+
+
+
Contributors
-
+
OpenTX Release Notes
@@ -8975,7 +8505,7 @@ which was the staring point for OpenTX Companion.
-
+
Save Firmware
Save To Hex
@@ -8990,80 +8520,80 @@ p, li { white-space: pre-wrap; }
-
-
-
+
+
+
Select an original firmware file
-
+
Open
Abrir
-
+
Select an image to customize your splash <br />or save actual firmware splash
-
-
-
-
+
+
+
+
Error
Erro
-
+
Could not find bitmap to replace in file
-
+
Open Image to load
-
+
Images (%1)
-
-
+
+
Cannot load %1.
-
-
+
+
Save your custimized firmware
-
-
+
+
Write to file
-
+
Error reading file %1
Erro ao ler o ficheiro %1! {1?}
-
+
Firmware correctly saved.
-
+
Firmware not saved.
-
+
PNG images (*.png);;
@@ -9479,17 +9009,17 @@ Press cancel to abort joystick calibration
-
+
Select your log file
-
+
Available fields
-
+
The selected logfile contains %1 invalid lines out of %2 total lines
@@ -9497,7 +9027,7 @@ Press cancel to abort joystick calibration
mdiChild
-
+
Simulate Tx
@@ -9947,33 +9477,32 @@ Press cancel to abort joystick calibration
Preferências
-
Language (requires restart)
- Língua (necessita uma reinicialização)
+ Língua (necessita uma reinicialização)
-
+
Recent History Size
-
-
+
+
Download
-
+
Default Channel Order
Ordem dos Canais por Defeito
-
+
Default Stick Mode
Modo do Rádio por Defeito
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -9984,12 +9513,7 @@ This is used by the templated to determine which channel goes to what number out
companion9x
-
- Show Splash Screen
-
-
-
-
+
Mode selection:
Mode 1:
@@ -10012,382 +9536,387 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
Modo 1 (RUD ELE THR AIL)
-
+
Mode 2 (RUD THR ELE AIL)
Modo 2 (RUD THR ELE AIL)
-
+
Mode 3 (AIL ELE THR RUD)
Modo 3 (AIL ELE THR RUD)
-
+
Mode 4 (AIL THR ELE RUD)
Modo 4 (AIL THR ELE RUD)
-
+
Automatic Backup Folder
-
+
Automatically add version number to the filename after download
-
+
Voice
-
+
Set language of voice.
May be different from firmware language
-
+
Firmware
-
+
Find Executable
-
+
Google Earth Executable
-
+
Check for updates on startup
-
-
+
+
...
-
+
Splash library behaviour
-
+
Include companion splashes
-
+
Only user defined splashes
-
+
Custom TX splash screen
-
+
Personal splash library
-
+
Joystick
-
-
-
-
+
+
+
+
Open Folder
-
+
SD Structure path
-
+
Processor ID
-
+
Simulator capture folder
-
+
Use clipboard only
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
CheckBox
-
+
Check for updates
-
+
Language
-
+
Profile Name
-
+
Export Profile
-
+
Save Profile
-
+
Import Profile
-
+
Simu BackLight
-
+
Check for selected Fw updates
-
+
Ask use of wizard for new models
-
+
+ Show Splash At Start
+
+
+
+
Remember switches in simulator
-
+
Blue
Blu
-
+
Green
-
+
Red
-
+
Orange
-
+
Yellow
-
+
Profile slot
-
+
auto backup before write
-
+
Ask for flashing after Download
-
+
Enable
-
+
Calibrate
-
+
Open Image
-
+
Invert Pixels
-
+
FwInfo
-
+
Last downloaded release: %1
-
+
Image stored in settings
-
-
+
+
No joysticks found
-
+
Select your snapshot folder
-
+
Select your Models and Settings backup folder
-
+
Select Google Earth executable
-
+
Select the folder replicating your SD structure
-
+
Profile name is empty, profile slot %1 will be deleted.<br>Are you sure ?
-
+
Export profile As
-
+
Profile slot is not empty, profile slot %1 will we overwritten.<br>Are you sure ?
-
+
Open Profile to import
-
+
Open Image to load
-
+
Images (%1)
-
-
+
+
Error
Erro
-
+
The selected firmware has never been downloaded by Companion.
-
+
The selected firmware cannot be downloaded by Companion.
-
+
Select your library folder
-
-
+
+
Cannot load %1.
@@ -10445,9 +9974,9 @@ May be different from firmware language
-
-
-
+
+
+
Name
Nome
@@ -10533,7 +10062,7 @@ May be different from firmware language
-
+
Enabled
Activo
@@ -10646,12 +10175,12 @@ May be different from firmware language
Curva(%1)
-
+
Delay(u%1:d%2)
Atraso(u%1:d%2)
-
+
Slow(u%1:d%2)
Lento(u%1:d%2)
@@ -10676,9 +10205,7 @@ May be different from firmware language
Curvas de 5 pontos
-
-
-
+
pt %1
pt %1
@@ -10695,16 +10222,16 @@ May be different from firmware language
<h2>Interruptores Customizaveis</h2>
-
+
Source
Fonte
-
-
-
-
-
+
+
+
+
+
Offset
Compensação
@@ -10736,25 +10263,19 @@ May be different from firmware language
-
-
+
+
Flight modes
-
-
+
+
Flight mode
-
-
- CS
-
-
-
-
+
Function
Função
@@ -10764,10 +10285,10 @@ May be different from firmware language
-
-
-
-
+
+
+
+
Switch
Interruptor
@@ -10792,256 +10313,230 @@ May be different from firmware language
Peso
-
-
-
-
- Expo
-
-
-
-
-
+
+
DISABLED
-
-
-
-
-
-
-
+
+
+
Curve
Curva
-
+
Mixers
-
-
-
-
-
+
+
+
+
+
CH
-
+
noTrim
-
- FMTrim
-
-
-
-
- Diff
-
-
-
-
+
Warn
-
+
Limits
Limites
-
-
-
-
+
+
+
+
Min
Min
-
-
-
-
+
+
+
+
Max
Max
-
-
-
+
+
+
Invert
Inverter
-
-
-
+
+
+
INV
INV
-
-
-
+
+
+
NOR
NOR
-
+
Curves
Curvas
-
- 5 Points Curves
-
-
-
-
- 9 Points Curves
-
-
-
-
- Custom Switches
-
-
-
-
+
Global Variables
-
+
GV
-
+
Safety Switches
-
-
-
-
-
+
+
+
+
+
Value
-
- Function Switches
-
-
-
-
+
Parameter
-
+
Repeat
-
+
ODF files (*.odt);;PDF Files(*.pdf);;HTML-Files (*.htm *.html);;All Files (*)
-
+
Telemetry Settings
-
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignments
+
+
+
+
+
Alarm 1
-
-
+
+
Alarm 2
-
+
Analog
-
+
Unit
-
+
Scale
-
-
-
-
+
+
+
+
Type
-
-
-
-
+
+
+
+
Condition
-
+
A%1
-
+
RSSI Alarm
-
+
Frsky serial protocol
-
+
System of units
-
+
Propeller blades
-
+
Telemetry Bars
-
+
Bar Number
-
-
+
+
Custom Telemetry View
@@ -11051,17 +10546,12 @@ May be different from firmware language
-
- CF
-
-
-
-
+
Print Document
Imprimir Documento
-
+
Select PDF output file
@@ -11074,17 +10564,17 @@ May be different from firmware language
Simulador ER9x
-
+
P1
P1
-
+
P2
P2
-
+
P3
P3
@@ -11110,33 +10600,33 @@ May be different from firmware language
-
+
Hold X
Manter X
-
+
Fix X
Fixar X
-
+
Fix Y
Fixar Y
-
+
Hold Y
Manter Y
-
-
+
+
TextLabel
@@ -11156,12 +10646,12 @@ May be different from firmware language
ID0
-
+
ID1
ID1
-
+
ID2
ID2
@@ -11178,7 +10668,7 @@ May be different from firmware language
SW3
-
+
BEEP
BEEP
@@ -11190,19 +10680,19 @@ May be different from firmware language
-
+
Right Double Click to Reset
-
-
-
+
+
+
0 %
-
+
9x Simulator
@@ -11246,270 +10736,268 @@ May be different from firmware language
SW12
SW12
-
-
- CSK
- SWK
-
-
-
-
- CS1
-
-
Companion Simulator
+
+
+ LS1
+
+
- CS2
+ LS2
- CS3
+ LS3
- CS4
+ LS4
- CS5
+ LS5
- CS6
+ LS6
- CS7
+ LS7
- CS8
+ LS8
- CS9
+ LS9
- CSA
+ LSA
- CSB
+ LSB
- CSC
+ LSC
- CSD
+ LSD
- CSE
+ LSE
- CSF
+ LSF
- CSG
+ LSG
- CSH
+ LSH
- CSI
+ LSI
-
- CSJ
+
+ LSJ
-
- CSL
+
+ LSK
-
- CSM
+
+ LSL
-
- CSN
+
+ LSM
-
- CSO
+
+ LSN
-
- CSP
+
+ LSO
-
- CSQ
+
+ LSP
-
- CSR
+
+ LSQ
-
- CSS
+
+ LSR
-
- CST
+
+ LSS
-
- CSU
+
+ LST
-
- CSV
+
+ LSU
-
- CSW
- SWW
+
+ LSV
-
+
+ LSW
+
+
+
+
CH1
CH1
-
+
CH9
CH9
-
+
CH2
CH2
-
+
CH10
CH10
-
+
CH3
CH3
-
+
CH11
CH11
-
+
CH4
CH4
-
+
CH12
CH12
-
+
CH5
CH5
-
+
CH13
CH13
-
+
CH6
CH6
-
+
CH14
CH14
-
+
CH7
CH7
-
+
CH15
CH15
-
+
CH8
CH8
-
+
CH16
CH16
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-100.1
-100.1
@@ -11557,33 +11045,33 @@ May be different from firmware language
splashLibrary
-
+
...
-
+
Splash Library - page %1 of %2
-
+
Warning
Aviso
-
+
Invalid image in library %1
-
+
Information
-
+
No valid image found in library, check your settings
@@ -11798,10 +11286,10 @@ May be different from firmware language
-
-
-
-
+
+
+
+
@@ -11842,12 +11330,12 @@ May be different from firmware language
CH4
-
+
CH12
CH12
-
+
CH5
CH5
@@ -11888,162 +11376,162 @@ May be different from firmware language
- CSK
+ LSK
- CSC
+ LSC
- CSD
+ LSD
- CS7
+ LS7
- CSL
+ LSL
- CSB
+ LSB
- CS1
+ LS1
- CSH
+ LSH
- CSG
+ LSG
- CSE
+ LSE
- CSF
+ LSF
- CS8
+ LS8
- CS9
+ LS9
- CSA
+ LSA
- CSM
+ LSM
- CSJ
+ LSJ
- CSI
+ LSI
- CS4
+ LS4
- CS5
+ LS5
- CS2
+ LS2
- CS3
+ LS3
- CS6
+ LS6
- CSN
+ LSN
- CSO
+ LSO
- CSP
+ LSP
- CSQ
+ LSQ
- CSR
+ LSR
- CSS
+ LSS
- CST
+ LST
- CSU
+ LSU
- CSV
+ LSV
- CSW
+ LSW
@@ -12063,22 +11551,22 @@ May be different from firmware language
-
+
Firmware %1 error: %2
-
+
- Flight mode: %1(%2)
-
+
Simulating Tx (%1)
-
+
Simulating
diff --git a/companion/src/translations/companion_ru.ts b/companion/src/translations/companion_ru.ts
index 92c12ee9b..b58c7e001 100644
--- a/companion/src/translations/companion_ru.ts
+++ b/companion/src/translations/companion_ru.ts
@@ -1,6 +1,375 @@
+
+ Channels
+
+
+ Name
+
+
+
+
+ Offset
+
+
+
+
+ Min
+ Мин
+
+
+
+ Max
+ Макс
+
+
+
+ Invert
+ Инверт
+
+
+
+ Center
+
+
+
+
+ Sym
+
+
+
+
+ Channel %1
+
+
+
+
+ ---
+
+
+
+
+ INV
+
+
+
+
+ CurveGroup
+
+
+ Diff
+
+
+
+
+ Expo
+
+
+
+
+ Func
+
+
+
+
+ Curve
+ Кривая
+
+
+
+ Curves
+
+
+ Form
+
+
+
+
+ Standard
+
+
+
+
+ Custom
+
+
+
+
+ Lines
+
+
+
+
+ Smooth
+
+
+
+
+ Curve type
+
+
+
+
+ Curve name
+
+
+
+
+ Curve %1
+ Кривая %1
+
+
+
+ %1 points
+
+
+
+
+ Are you sure you want to reset curve %1 ?
+
+
+
+
+ Editing curve %1
+
+
+
+
+ Not enough free points in EEPROM to store the curve.
+
+
+
+
+ CustomFunctionsPanel
+
+
+ Switch
+
+
+
+
+ Action
+
+
+
+
+ Parameters
+
+
+
+
+ Enable
+
+
+
+
+ ON
+
+
+
+
+ Error
+ Ошибка
+
+
+
+ Unable to find sound file %1!
+
+
+
+
+ &Delete
+ Удалить
+
+
+
+ Delete
+ Удалить
+
+
+
+ &Copy
+ Копировать
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ Вырезать
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ Вставить
+
+
+
+ Ctrl+V
+
+
+
+
+ CustomSwitchesPanel
+
+
+ Condition
+
+
+
+
+ V1
+
+
+
+
+ V2
+
+
+
+
+ AND
+
+
+
+
+ Duration
+
+
+
+
+ Delay
+ Задержка
+
+
+
+
+ LS%1
+
+
+
+
+ &Delete
+ Удалить
+
+
+
+ Delete
+ Удалить
+
+
+
+ &Copy
+ Копировать
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ Вырезать
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ Вставить
+
+
+
+ Ctrl+V
+
+
+
+
+ Dialog
+
+
+ Dialog
+ Диалог
+
+
+
+ Curve type
+
+
+
+
+ Coefficient
+
+
+
+
+ Both
+
+
+
+
+ x>0
+
+
+
+
+ x<0
+
+
+
+
+ Y at X=0
+
+
+
+
+ Side
+
+
+
+
+ Y at X=-100
+
+
+
+
+ Y at X=100
+
+
+
+
+ Linear
+
+
+
+
+ Single Expo
+
+
+
+
+ Symmetrical f(x)=-f(-x)
+
+
+
+
+ Symmetrical f(x)=f(-x)
+
+
+
ExpoDialog
@@ -8,132 +377,289 @@
Диалог
-
- Expo
-
-
-
-
+
Weight
Вес
-
- Name
-
-
-
-
-
-
+
+
GV
-
-
- Phase used by the expo.
+
+ The source for the mixer
+ Источник для микшера
+
+
+
+ Input name
-
+
+ Phase used by the input.
+
+
+
+
Flight modes
-
+
0
-
+
1
-
+
2
-
+
3
-
+
4
-
+
5
-
+
6
-
+
7
-
+
8
-
+
Switch
-
- Switch used by the expo.
-If blank then the expo is considered to be "ON" all the time.
+
+ Switch used by the input.
+If blank then the input is considered to be "ON" all the time.
-
- Curve/Exponential
+
+ The curve used by the input
-
+
+ Source
+ Источник
+
+
+
+ Line name
+
+
+
+
Stick Side
-
+
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; text-decoration: underline;">Delay ans Slow</span></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600; text-decoration: underline;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These values control the speed and delay of the output of the mix. </p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Delay is not zero the actuation of the mix will be delayed by the specified amount of seconds.</p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If Slow is not zero then the speed of the mix will be set by the value specified -> the value states the number of seconds it takes to transit from -100 to 100.</p></body></html>
+ Задержка и замедление.
+Эти значение управляют скоростью и задержкой на выходе микшера.
+Если "Задержка" не равна нулю, то срабатывание микшера происходит через указанное число секунд.
+Если "Замедление" не равно нулю, то это значение означает число секунд для перемещения от -100 до +100.
+
+
+
+ Scale
+
+
+
+
+ Include Trim
+ Исп. трим
+
+
+
+ No
+
+
+
+
+ Yes
+
+
+
+
Curve
Кривая
-
- The curve used by the expo
-
-
-
-
+
NEG
-
+
POS
-
+
ALL
-
- DEST -> %1
+
+ Edit %1
+
+
+
+
+ Rud
+
+
+
+
+ Ele
+
+
+
+
+ Thr
+
+
+
+
+ Ail
+
+
+
+
+ FlightMode
+
+
+ Form
+
+
+
+
+ Fade In
+
+
+
+
+ Fade Out
+
+
+
+
+ Name
+
+
+
+
+ Switch
+
+
+
+
+ trim1
+
+
+
+
+ trim2
+
+
+
+
+ trim4
+
+
+
+
+ trim3
+
+
+
+
+ Rud
+
+
+
+
+ Ele
+
+
+
+
+ Thr
+
+
+
+
+ Ail
+
+
+
+
+ Rotary Encoder %1
+
+
+
+
+ GVAR%1
+
+
+
+
+ FlightModes
+
+
+ Flight Mode %1
+
+
+
+
+ (%1)
+
+
+
+
+ (default)
@@ -157,13 +683,13 @@ These will be relevant for all models in the same EEPROM.
Настройка
-
+
Contrast
Конраст
-
-
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -174,12 +700,12 @@ p, li { white-space: pre-wrap; }
Значения в пределах 20-45
-
+
Battery Warning
Напряж. при разряде
-
+
Battery warning voltage.
This is the threashhold where the battery warning sounds.
@@ -190,17 +716,17 @@ Acceptable values are 5v..10v
Диапазон 5В..10В
-
+
v
В
-
+
Battery Calibration
Калибровка батареи
-
+
Battery calibration:
This value will be added to the measured battery voltage. Use this value to calibrate the meter with an external meter.
Калибровка батареи:
@@ -211,7 +737,7 @@ This value will be added to the measured battery voltage. Use this value to cal
Тумблер подсветки
-
+
This is the switch selectrion for turning on the backlight (if installed).
@@ -222,51 +748,49 @@ This value will be added to the measured battery voltage. Use this value to cal
Подсветка вкл/выкл после
-
+
If this value is not 0, any keypress will turn on the backlight and turn it off after the specified number of seconds.
Если не равно нулю, то любое нажатие кнопок будет включать подсветку и выключать ее через указанное кол-во секунд.
-
-
+
+
sec
сек
-
+
Inactivity Timer
Таймер активности
-
+
If not zero will sound beeps if the transmitter has been left without inputs for the specified number of minutes.
Если не равно нулю, начнет бипать при отсутсвии активности через указанное кол-во минут.
-
+
min
мин
-
Reverse Throttle Operation
- Реверс газа
+ Реверс газа
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Реверсировать канал газа (а также триммеры и предупреждения)
+ Реверсировать канал газа (а также триммеры и предупреждения)
-
+
Timer Beeps
Звук таймера
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -275,22 +799,22 @@ p, li { white-space: pre-wrap; }
Бип каждую минуту
-
+
Every Minute
Кажд. минуту
-
+
Beeps at 30, 15, 10, and down from5 seconds
Бипать за 30, 15, 10, и 5 секунд до конца.
-
+
Count Down to Zero
Достиж. нуля
-
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -299,258 +823,247 @@ p, li { white-space: pre-wrap; }
Моргать подсветкой при бипах таймера
-
+
Flash on beep
Моргать
-
+
Alarm Warning
Предупр. "тишина"
-
-
+
+
Quiet
тихо
-
-
+
+
No Keys
без кнопок
-
-
+
+
Normal
нормально
-
-
+
+
Long
долго
-
+
Input Filter
Входной фильтр
-
+
Single
???
Одиночный
-
+
Oversample
Передискретизация
-
+
Filter
Фильтр
-
+
Owner Name
Имя владельца
-
+
-
-
-
+
+
Off
-
- Switches Up
-
-
-
-
- Switches Down
-
-
-
-
+
Trainer
-
-
+
+
PPM 1
+
-
-
-
+
+
chn1
+
-
-
-
+
+
chn2
+
-
-
-
+
+
chn3
+
-
-
-
+
+
chn4
-
+
Mode
-
+
Telemetry NO DATA Alarm
-
+
Show Owner Name on Splash
-
+
Sound Mode
-
+
Beeper
-
+
Speaker Pitch (spkr only)
-
+
Only Alarms
-
-
+
+
All
-
+
Pot Scrolling Enable
-
+
Bandgap Measuring Enable
-
+
THR
-
+
RUD
-
+
ELE
-
+
AIL
-
+
GEA
-
+
ID0
-
+
ID1
-
+
ID2
-
+
Beeper Length
-
-
+
+
X-Short
-
-
+
+
Short
-
-
+
+
X-Long
-
+
Haptic Mode
-
+
Alarms Only
-
+
Haptic Length
-
+
GPS Coordinates
@@ -565,122 +1078,122 @@ p, li { white-space: pre-wrap; }
-
+
Speaker
-
+
BeeperVoice
-
+
SpeakerVoice
-
+
hh° (N/S) mm' ss''.dd
-
+
NMEA
-
+
Timeshift from UTC
-
+
LCD Display Type
-
+
Standard
-
+
Optrex
-
+
Speaker Volume
-
+
Haptic Strength
-
+
BackLight Brightness
-
+
RotEnc Navigation
-
+
BackLight Auto OFF after
-
+
BackLight Switch
-
+
BackLight On Stick Move
-
+
BackLight Invert
-
+
Country Code
-
+
Europe
-
+
Japan
-
+
America
-
+
FrSky Internal Alarm
-
+
StickScroll
-
+
PPMSim
@@ -690,47 +1203,47 @@ p, li { white-space: pre-wrap; }
-
+
CrossTrim
-
+
Beep volume
-
+
Wav volume
-
+
Vario volume
-
+
Background volume
-
+
Measurement Units
-
+
Metric
-
+
Imperial
-
+
FAI Mode
@@ -740,273 +1253,293 @@ p, li { white-space: pre-wrap; }
-
+
4800 Baud
-
+
9600 Baud
-
+
14400 Baud
-
+
19200 Baud
-
+
38400 Baud
-
+
57600 Baud
-
+
76800 Baud
-
+
115200 Baud
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen. This function cannot be disabled by the radio.
-
+
Readonly Unlock
-
+
SC
-
+
SE
-
+
SA
-
+
SF
-
+
SH
-
+
SD
-
+
SB
-
+
SG
-
+
Input
-
+
Weight
Вес
-
+
Switch
+
-
-
-
+
+
+= (Sum)
+
-
-
-
+
+
:= (Replace)
-
-
+
+
PPM 2
-
-
+
+
PPM 3
-
-
+
+
PPM 4
-
+
Telemetry
-
+
RSSI Alarm 1
-
-
+
+
----
-
-
+
+
Yellow
-
-
+
+
Orange
-
-
+
+
Red
-
+
RSSI Alarm 2
-
+
NO DATA Alarm
-
+
POT 4
-
-
+
+
Negative span
-
-
+
+
Mid value
-
-
+
+
Positive span
-
+
STICK 1
-
+
STICK 2
-
+
Current
-
+
+
+ Pot (normal)
+
+
+
+
+
+ Multipos Switch
+
+
+
+
+ S1 Type
+
+
+
+
+ S2 Type
+
+
+
+
STICK 3
-
+
STICK 4
-
+
POT 1
-
+
POT 2
-
+
POT 3
-
+
Battery
-
+
PPM Multiplier
PPM множитель
-
Throttle Startup Warning
- Предупр. "газ не в нуле"
+ Предупр. "газ не в нуле"
-
-
-
-
-
-
+
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -1025,30 +1558,31 @@ p, li { white-space: pre-wrap; }
"Тишина" - Предупреждение о "тихом" режиме (без звука)
-
Switch Startup Warning
- Предупр. "тумблеры"
+ Предупр. "тумблеры"
-
+
Memory Startup Warning
Предупр. "память"
-
+
Beeper Mode
Режим бипов
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
Beeper volume
0 - Quiet. No beeps at all.
@@ -1065,12 +1599,12 @@ p, li { white-space: pre-wrap; }
4 - Очень громкая.
-
+
Channel Order (For Templates)
Порядок каналов
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -1079,12 +1613,12 @@ This is used by the templated to determine which channel goes to what number out
Используется в шаблоне порядка следования каналов.
-
+
Stick Mode
Режим стиков
-
+
Mode selection:
Mode 1:
@@ -1108,38 +1642,38 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
-
+
Mode 2 (RUD THR ELE AIL)
-
+
Mode 3 (AIL ELE THR RUD)
-
+
Mode 4 (AIL THR ELE RUD)
-
+
Show Splash Screen on Startup
Показывать заставку
-
-
+
+
Show splash screen on startup
Показывать заставку при включении
-
+
Calibration
Калибровка.
@@ -1188,80 +1722,290 @@ Mode 4:
позитив
-
+
If you enable FAI, you loose the vario, the play functions, the telemetry screen.
This function cannot be disabled by the radio.
Are you sure ?
-
-
+
+
Warning
Звук
-
+
Wrong data in profile, radio calibration was not retrieved
-
+
Wrong data in profile, hw related parameters were not retrieved
-
+
Do you want to store calibration in %1 profile<br>overwriting existing calibration?
-
+
Calibration and HW parameters saved.
+
+ Heli
+
+
+ Form
+
+
+
+
+ Invert Elevator
+
+
+
+
+ Invert Aileron
+
+
+
+
+ Invert Collective
+
+
+
+
+ Invert
+ Инверт
+
+
+
+ Off
+
+
+
+
+ 120
+
+
+
+
+ 120X
+
+
+
+
+ 140
+
+
+
+
+ 90
+
+
+
+
+ Collective
+
+
+
+
+ Swash Type
+
+
+
+
+ Swash Ring
+
+
+
+
+ InputsPanel
+
+
+
+ Move Up
+
+
+
+
+
+ Ctrl+Up
+
+
+
+
+
+ Move Down
+
+
+
+
+
+ Ctrl+Down
+
+
+
+
+ Clear All Settings
+
+
+
+
+ Source(%1)
+
+
+
+
+ No Trim
+
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ Not enough available inputs!
+
+
+
+
+ Delete Selected Inputs?
+
+
+
+
+ &Add
+ Добавить
+
+
+
+ Ctrl+A
+
+
+
+
+ &Edit
+
+
+
+
+ Enter
+ Ввод
+
+
+
+ &Delete
+ Удалить
+
+
+
+ Delete
+ Удалить
+
+
+
+ &Copy
+ Копировать
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ Вырезать
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ Вставить
+
+
+
+ Ctrl+V
+
+
+
+
+ Du&plicate
+
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Inputs?
+
+
+
+
+ Really clear all the inputs?
+
+
+
MainWindow
-
-
-
-
+
+
+
+
File loaded
Файл загружен
-
-
-
-
-
+
+
+
+
+
Save As
Сохранить как...
-
-
+
+
No updates available at this time.
-
-
-
-
-
+
+
+
+
+
Unable to check for updates.
-
+
Executable (*.exe)
-
+
Would you like to launch the installer?
@@ -1270,13 +2014,13 @@ Are you sure ?
файлы EEPROM (*.bin *.hex);;файлы BIN (*.bin);;файлы HEX (*.hex)
-
+
Open
Открыть
-
-
+
+
File saved
Файл записан
@@ -1305,7 +2049,7 @@ Are you sure ?
Считать прошивку в файл
-
+
Copyright
@@ -1315,401 +2059,430 @@ Are you sure ?
Если эта программа и/или прошивка оказалась полезной, вы можете
-
donating
- поддержать ее
+ поддержать ее
About eePe
О eePe
-
-
-
+
+
&%1 %2
-
- %1 %2
-
-
-
-
+
&New
Новый
-
+
Create a new file
Создать новый файл
-
+
&Open...
Открыть
-
+
Open an existing file
Открыть файл
-
+
&Save
Сохранить
-
+
Save the document to disk
Записать на диск
-
+
Save &As...
Сохранить как...
-
+
Save the document under a new name
Записать с другим именем
-
&Preferences...
- Настройки
+ Настройки
-
+
Edit general preferences
Редактировать основные настройки
-
+
&Check for updates...
-
- If you've found this program useful, please support by
-
-
-
-
+
Display previous warning again at startup ?
-
+
New release available
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Ошибка
-
-
-
-
-
+
+
+
+
+
Error opening file %1:
%2.
-
+
Compilation server termporary failure, try later
-
+
Display previous message again at startup ?
-
-
-
+
+
+
Companion - Models and Settings Editor - %1 - profile %2
-
-
-
-
+
+
+
+
Companion - Models and Settings Editor - %1
-
+
+ A new release of Companion is available please check the OpenTX website!
+
+
+
+
Firmware does not longer fit in the Tx, due to selected firmware options
-
+
Compilation server temporary failure, try later
-
-
+
+
Compilation server too busy, try later
-
-
+
+
Unknown server failure, try later
-
+
Firmware does not fit in the Tx, due to selected firmware options
-
-
+
+
Yes
-
-
+
+
No
-
-
+
+
Release Notes
-
-
+
+
Do you want to download release %1 now ?
-
+
A new version of %1 firmware is available (current %2 - newer %3).
Do you want to download it now ?
-
+
Ignore this version (r%1)?
-
+
Release notes contain very important informations. Do you want to see them now ?
-
+
+ The selected language will be used the next time you start Companion.
+
+
+
+
+
+
+ OK
+
+
+
+
+ The new theme will be loaded the next time you start Companion.
+
+
+
+
+ The icon size will be used the next time you start Companion.
+
+
+
+
Firmware updates
-
+
Current firmware does not provide release notes informations.
-
+
Cannot write file %1:
%2.
Не удается записать файл %1:
%2.
-
-
-
-
-
+
+
+
+
+
Taranis radio not found
-
-
-
-
+
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
-
+
Write Models and settings from %1 to the Tx?
-
-
-
+
+
+
Backup is impossible
-
-
-
+
+
+
The backup dir set in preferences does not exist
-
-
+
+
Warning
Звук
-
+
Conversion failed
-
+
Restore failed
-
+
Backup failed
-
- Version %1 (revision %2), %3
+
+ OpenTX Home Page: <a href='%1'>%1</a>
-
+
+ The OpenTX Companion project was originally forked from <a href='%2'>eePe</a>
+
+
+
+
+ If you've found this program useful, please support by <a href='%1'>donating</a>
+
+
+
+
+ Version %1, %3
+
+
+
+
&loadBackup...
-
+
Load backup from file
-
+
Lo&gs
-
+
Ctrl+G
-
+
Open log file
-
+
+ &General Preferences...
+
+
+
+
Contributors &List...
-
+
ChangeLog...
-
+
Firmware ChangeLog...
-
+
Show firmware changelog
-
+
Compare...
-
+
Compare models
-
- Customize your &TX...
-
-
-
-
+
Customize the splash screen of your TX
-
+
E&xit
Выход
-
+
Exit the application
Выйти из программы
-
+
Cu&t
Вырезать
-
+
Cut the current selection's contents to the clipboard
Вырезать выделение в буфер обмена
-
+
&Copy
Копировать
-
+
Copy the current selection's contents to the clipboard
Копировать выделение в буфер обмена
-
+
&Paste
Вставить
-
+
Paste the clipboard's contents into the current selection
Вставить выделение из буфера обмена
-
+
Configure software for reading from and writing to the transmitter
@@ -1718,7 +2491,7 @@ Do you want to download it now ?
Записать EEPROM в TX
-
+
Ctrl+Alt+W
@@ -1731,7 +2504,7 @@ Do you want to download it now ?
Считать EEPROM из TX
-
+
Ctrl+Alt+R
@@ -1772,157 +2545,149 @@ Do you want to download it now ?
Считать прошивку из передатчика
-
&Configure...
- Настройка
+ Настройка
Configure burning software
Настроить программатор
-
+
&List programmers
Список программаторов
-
+
List available programmers
Показать список программаторов
-
+
&Fuses...
Фьюзы
-
+
Show fuses dialog
Показать диалог установки фьюзов
-
+
&Simulate
Симуляция
-
+
Alt+S
-
+
Simulate selected model.
Запустить симуляцию
-
+
&Print
Печать
-
+
Ctrl+P
-
+
Print current model.
Распечатать текущую модель
-
Cl&ose
- Закрыть
+ Закрыть
-
Close the active window
- Закрыть активное окно
+ Закрыть активное окно
-
Close &All
- Закрыть все
+ Закрыть все
-
Close all the windows
- Закрыть все окна
+ Закрыть все окна
-
&Tile
- Мозаика
+ Мозаика
-
Tile the windows
- Расположить окна мозаикой
+ Расположить окна мозаикой
-
&Cascade
- Каскад
+ Каскад
-
Cascade the windows
- Разместить окна каскадом
+ Разместить окна каскадом
-
Ne&xt
- Следующее
+ Следующее
-
Move the focus to the next window
- Переместить фокус на следующее окно
+ Переместить фокус на следующее окно
-
Pre&vious
- Предыдущее
+ Предыдущее
-
Move the focus to the previous window
- Переместить фокус на предыдущее окно
+ Переместить фокус на предыдущее окно
-
+
&About
О программе
-
+
Show the application's About box
Показать окно "О программе"
-
-
+
+
Recent Files
-
+
+ Set Menu Language
+
+
+
+
&Read/Write
-
+
Write
-
+
Unable to find file %1!
Невозможно найти файл %1!
-
+
Error reading file %1:
%2.
Ошибка при считывании файла %1:
@@ -1933,253 +2698,437 @@ Do you want to download it now ?
Авторы
-
- Switch layout Left/Right
-
-
-
-
+
&File
Файл
-
Switch layout direction
- Зеркало
+ Зеркало
-
+
Checking for updates
-
+
A new version of Companion is available (version %1)<br>Would you like to download it?
-
- A new release of Companion is available please check the repository
-
-
-
-
-
+
+
Compilation server requires registration, please check OpenTX web site
-
+
Do you want to write the firmware to the transmitter now ?
-
+
Firmware %1 does not seem to have ever been downloaded.
Version %2 is available.
Do you want to download it now ?
-
-
-
-
+
+
+
+
Read Models and Settings From Tx
-
+
The file %1
has not been recognized as a valid Models and Settings file
Write anyway ?
-
-
-
-
-
-
+
+
+
+
+
+
Backup Models and Settings From Tx
-
+
Cannot check Models and Settings compatibility! Continue anyway?
-
+
The transmitter firmware belongs to another product family, check file and preferences!
-
+
The transmitter firmware is outdated, please upgrade!
-
+
Write Models and Settings To Tx
-
-
+
+
Write Firmware To Tx
-
+
Cannot convert Models and Settings for use with this firmware, original data will be used
-
+
Restore Models and Settings To Tx
-
+
Could not restore Models and Settings to TX. The models and settings data file can be found at: %1
-
+
Firmware write failed
-
+
Could not write firmware to to transmitter. The models and settings data file can be found at: %1
-
+
Cannot backup existing Models and Settings from TX. Firmware write process aborted
-
+
Save transmitter Models and Settings to File
-
+
Impossible to identify the radio on your system, please verify that the eeprom disk is connected.
-
+
Read Tx Firmware to File
-
- The Companion project was originally forked from eePe
-
-
-
-
+
About Companion
-
+
Check for new version of Companion
-
+
Show Companion contributors list
-
+
Show Companion changelog
-
+
+ Configure transmitter start screen...
+
+
+
+
&Write Models and Settings To Tx
-
+
Write Models and Settings to transmitter
-
+
&Read Models and Settings From Tx
-
+
Read Models and Settings from transmitter
-
+
Write Firmware
-
+
Write firmware to transmitter
-
+
Write Models and Settings from file to Tx
-
+
Write Models and Settings from file to transmitter
-
+
Save transmitter Models and Settings to file
-
+
Save the Models and Settings from the transmitter to a file
-
+
Read Firmware
-
+
Read firmware from transmitter
-
-
+
+ &Configure connection software...
+
+
+
+
+ Classic
+
+
+
+
+ The multicolor classical Companion icon theme
+
+
+
+
+ A monochrome black icon theme
+
+
+
+
+ A monochrome white icon theme
+
+
+
+
+ A monochrome blue icon theme
+
+
+
+
+ Small
+
+
+
+
+ Use small toolbar icons
+
+
+
+
+ Use normal size toolbar icons
+
+
+
+
+ Normal
+ нормально
+
+
+
+ Use big toolbar icons
+
+
+
+
+ Big
+
+
+
+
+ Use huge toolbar icons
+
+
+
+
+ Huge
+
+
+
+
+ System default language
+
+
+
+
+ Use system default language in menus
+
+
+
+
+ Czech
+
+
+
+
+ Use Czech in menus
+
+
+
+
+ German
+
+
+
+
+ Use German in menus
+
+
+
+
+ English
+
+
+
+
+ Use English in menus
+
+
+
+
+ French
+
+
+
+
+ Use French in menus
+
+
+
+
+ Italian
+
+
+
+
+ Use Italian in menus
+
+
+
+
+ Hebrew
+
+
+
+
+ Use Hebrew in menus
+
+
+
+
+ Polish
+
+
+
+
+ Use Polish in menus
+
+
+
+
+ Portuguese
+
+
+
+
+ Use Portuguese in menus
+
+
+
+
+ Swedish
+
+
+
+
+ Use Swedish in menus
+
+
+
+
+ Russian
+
+
+
+
+ Use Russian in menus
+
+
+
+
+
Firmware Profiles
-
+
+ Set Icon Theme
+
+
+
+
+ Set Icon Size
+
+
+
+
&Edit
Правка
-
-
+
+ &Settings
+
+
+
+
+
Invalid Models and Settings File %1
-
+
Invalid binary Models and Settings File %1
@@ -2188,22 +3137,21 @@ Write anyway ?
Запись
-
&Window
- Окна
+ Окна
-
+
&Help
Помощь
-
+
File
Файл
-
+
Edit
Правка
@@ -2212,12 +3160,12 @@ Write anyway ?
Запись
-
+
Help
-
+
Ready
Готово
@@ -2233,25 +3181,25 @@ Write anyway ?
Удалить выбранные модели?
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Error
Ошибка
@@ -2264,7 +3212,7 @@ Write anyway ?
Невозможно установить модель!
-
+
Editing model %1:
Редактирование модели %1:
@@ -2273,8 +3221,8 @@ Write anyway ?
Невозможно считать настройки!
-
-
+
+
Unable to find file %1!
Невозможно найти файл %1!
@@ -2289,8 +3237,8 @@ Write anyway ?
Ошибка при считывании файла %1!
-
-
+
+
Error reading file %1:
%2.
Ошибка при считывании файла %1:
@@ -2303,10 +3251,10 @@ Write anyway ?
Неверный размер файла - %1
-
-
-
-
+
+
+
+
Error opening file %1:
%2.
@@ -2317,127 +3265,127 @@ Write anyway ?
-
+
Do you want to use model wizard?
-
-
-
+
+
+
Companion
-
+
Ask this question again ?
-
-
+
+
Invalid EEPROM File %1
-
+
Invalid binary EEPROM File %1
-
-
-
-
+
+
+
+
Save As
Сохранить как...
-
-
-
-
+
+
+
+
Cannot write file %1:
%2.
Не удается записать файл %1:
%2.
-
+
Backup is impossible
-
+
The backup dir set in preferences does not exist
-
-
-
+
+
+
Taranis radio not found
-
-
-
+
+
+
Impossible to identify the radio on your system, please verify the eeprom disk is connected.
-
-
-
+
+
+
Backup EEPROM From Tx
-
+
Cannot check eeprom compatibility! Continue anyway?
-
-
+
+
Warning
Звук
-
+
Firmware in radio is of a different family of eeprom written, check file and preferences!
-
+
Firmware in flash is outdated, please upgrade!
-
+
Write EEPROM To Tx
-
+
Open
Открыть
-
+
Invalid binary backup File %1
-
+
%1 has been modified.
Do you want to save your changes?
-
-
+
+
Error writing file %1:
%2.
Ошибка при записи файла %1:
@@ -2455,7 +3403,7 @@ Do you want to save your changes?
Прошить %1 в передатчик?
-
+
Cannot write temporary file!
Не удается записать временный файл!
@@ -2499,53 +3447,45 @@ Do you want to save your changes?
MixerDialog
-
+
Dialog
???
Диалог
-
+
Source
Источник
-
-
-
-
+
+
+
+
The source for the mixer
Источник для микшера
-
+
Weight
Вес
-
- Fix Offset
-
-
-
-
-
-
+
+
+
GV
-
+
Switch used by the mix.
If blank then the mix is considered to be "ON" all the time.
The value of the mixer is multiplied by this value and divided by 100.
Значение микшера умножается на это значение и делится на 100
-
-
-
-
+
Offset
Смещен.
@@ -2558,7 +3498,7 @@ p, li { white-space: pre-wrap; }
Это значение добавляется к микшеру.
-
+
Include Trim
Исп. трим
@@ -2567,80 +3507,75 @@ p, li { white-space: pre-wrap; }
Если отмечено - использует триммеры из источника (при их наличии)
-
+
Curve
Кривая
-
+
The curve used by the mix
Кривая используемая микшером
-
+
Switch
Тумблер
-
+
Yes
-
+
No
-
+
Warning
Звук
-
+
Name
-
- Curve/Differential
-
-
-
-
+
Mixer warning.
Setting this value will cause a beep to be emmitted when this value is active.
Индикация включения.
Когда микшер активируется звучит выбранный сигнал.
-
+
OFF
ВЫКЛ
-
+
1 Beep
1 бип
-
+
2 Beep
2 Beeo
2 бипа
-
+
3 Beep
3 бипа
-
+
Multiplex
Режим
-
+
Multiplexer
This determines how mixer values are added.
@@ -2657,100 +3592,95 @@ This determines how mixer values are added.
"R" - значение текущего микшера заменяет предыдущее значение на этом же канале.
-
+
ADD
ДОБАВИТЬ
-
+
MULTIPLY
УМНОЖИТЬ
-
+
REPLACE
ЗАМЕНИТЬ
-
+
Flight modes
-
+
Include DR/Expo
-
+
0
-
+
1
-
+
2
-
+
3
-
+
4
-
+
5
-
+
6
-
+
7
-
+
8
-
- Enable FM Trim
-
-
-
-
+
Delay
Задержка
-
+
Slow
Замедлен.
-
+
Up
Верх
-
-
-
-
+
+
+
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
@@ -2768,64 +3698,253 @@ p, li { white-space: pre-wrap; }
Если "Замедление" не равно нулю, то это значение означает число секунд для перемещения от -100 до +100.
-
+
Down
Низ
-
+
DEST -> X%1
-
+
DEST -> CH%1%2
???
-
-
- FM Trim Value
-
-
-
-
+
Rud
-
+
Ele
-
+
Thr
-
+
Ail
+
+ MixesPanel
+
+
+
+ Move Up
+
+
+
+
+
+ Ctrl+Up
+
+
+
+
+
+ Move Down
+
+
+
+
+
+ Ctrl+Down
+
+
+
+
+ Clear Mixes
+
+
+
+
+
+
+ X%1
+
+
+
+
+
+
+ CH%1%2
+
+
+
+
+ Weight(%1)
+
+
+
+
+ Switch(%1)
+
+
+
+
+ No Trim
+
+
+
+
+ No DR/Expo
+
+
+
+
+ Offset(%1)
+
+
+
+
+ Delay(u%1:d%2)
+ Задержка(u%1:d%2)
+
+
+
+ Slow(u%1:d%2)
+ Задержка(u%1:d%2)
+
+
+
+ Warn(%1)
+ Пред(%1)
+
+
+
+ Not enough available mixers!
+
+
+
+
+ Delete Selected Mixes?
+ Удалить выбранные микшеры?
+
+
+
+ &Add
+ Добавить
+
+
+
+ Ctrl+A
+
+
+
+
+ &Edit
+
+
+
+
+ Enter
+ Ввод
+
+
+
+ &Delete
+ Удалить
+
+
+
+ Delete
+ Удалить
+
+
+
+ &Copy
+ Копировать
+
+
+
+ Ctrl+C
+
+
+
+
+ &Cut
+ Вырезать
+
+
+
+ Ctrl+X
+
+
+
+
+ &Paste
+ Вставить
+
+
+
+ Ctrl+V
+
+
+
+
+ Du&plicate
+
+
+
+
+ Ctrl+U
+
+
+
+
+ Clear Mixes?
+
+
+
+
+ Really clear all the mixes?
+
+
+
ModelEdit
-
+
Dialog
Диалог
-
+
Setup
Настройка
-
+
+ Heli
+
+
+
+
+ Inputs
+
+
+
+
+ Logical Switches
+
+
+
+
+ Switch Assignment
+
+
+
Model Name
- Название модели
+ Название модели
Timer Mode
@@ -2836,263 +3955,93 @@ p, li { white-space: pre-wrap; }
Направ. таймера
-
-
Count Down
- Обратный отсчет
+ Обратный отсчет
-
-
Count Up
- Прямой отсчет
+ Прямой отсчет
Timer Value
Значен. таймера
-
-
- mm:ss
-
-
-
-
Trim Increment
- Изм. триммеров
+ Изм. триммеров
-
Exponential
- экспонента
+ экспонента
-
Extra Fine
- очень точно
+ очень точно
-
Fine
- точно
+ точно
-
Medium
- средне
+ средне
-
Coarse
- грубо
+ грубо
-
Throttle Trim
- Газ трим
+ Газ трим
-
Throttle Expo
- Газ экспо
+ Газ экспо
instaTrim Switch
инстаТрим
-
Center beep
- Бип в центре
+ Бип в центре
-
-
-
-
-
-
-
-
-
- RUD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ELE
-
-
-
-
-
-
-
-
- THR
-
-
-
-
-
-
-
-
-
-
-
-
-
- AIL
-
-
-
-
- P1
-
-
-
-
- P2
-
-
-
-
- P3
-
-
-
-
Pulse Shift (polarity)
- PPM модуляция
+ PPM модуляция
-
-
-
Positive
- Положительная
+ Положительная
-
-
-
Negative
- Негативная
+ Негативная
-
-
-
Protocol
- Протокол
+ Протокол
-
-
-
+
Channels
Каналы
-
-
-
-
-
-
ch
- ch
+ ch
ppm Delay
PPM пауза
-
-
-
usec
- мсек
+ мсек
-
Extended Limits
- Расш. лимиты
-
-
-
-
- Heli Setup
-
-
-
-
- Swash Type
-
-
-
-
-
- Off
-
-
-
-
- 120
-
-
-
-
- 120X
-
-
-
-
- 140
-
-
-
-
- 90
-
-
-
-
- Collective
-
-
-
-
- Swash Ring
-
-
-
-
- Invert Elevator
-
-
-
-
- Invert Aileron
-
-
-
-
- Invert Collective
-
+ Расш. лимиты
Expo/Dr
@@ -3147,1603 +4096,135 @@ Right
Элеватор
-
+
Mixes
Микшеры
-
Limits
- Лимиты
+ Лимиты
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- INV
-
-
-
-
-
-
Channel
- Канал
+ Канал
-
-
-
Offset
- Смещение
+ Смещение
-
-
-
-
-
Min
- Мин
+ Мин
-
-
-
-
-
Max
- Макс
+ Макс
-
-
-
Invert
- Инверт
+ Инверт
-
+
Curves
Кривые
-
Curve 1
- Кривая 1
+ Кривая 1
-
Curve 2
- Кривая 2
+ Кривая 2
-
- Timer1
-
-
-
-
- Timer2
-
-
-
-
-
-
- PPM delay
-
-
-
-
- Extended Trims
-
-
-
-
- Throttle2Trig
-
-
-
-
-
-
- PPM Frame Length
-
-
-
-
-
-
- mSec
-
-
-
-
-
-
-
-
-
-
-
-
- Fade In
-
-
-
-
-
-
-
-
-
-
-
-
- Fade Out
-
-
-
-
-
-
-
-
-
-
-
-
- trim2
-
-
-
-
-
-
-
-
-
-
-
-
- trim1
-
-
-
-
-
- DSM Type
-
-
-
-
-
- LP4/LP5
-
-
-
-
-
- DSM2only
-
-
-
-
-
- DSM2/DSMX
-
-
-
-
-
- RX Number
-
-
-
-
- Disable Throttle Warning
-
-
-
-
- Switch startup Warning
-
-
-
-
- Instant Trim
-
-
-
-
-
- CH01
-
-
-
-
-
- CH02
-
-
-
-
-
- CH03
-
-
-
-
-
- CH04
-
-
-
-
-
- CH05
-
-
-
-
-
- CH06
-
-
-
-
-
- CH07
-
-
-
-
-
- CH08
-
-
-
-
-
- CH09
-
-
-
-
-
- CH10
-
-
-
-
-
- CH11
-
-
-
-
-
- CH12
-
-
-
-
-
- CH13
-
-
-
-
-
- CH14
-
-
-
-
-
- CH15
-
-
-
-
-
- CH16
-
-
-
-
- REa
-
-
-
-
- REb
-
-
-
-
- 3POS
-
-
-
-
-
- Check
-
-
-
-
-
-
- ON
-
-
-
-
-
OFF
- ВЫКЛ
+ ВЫКЛ
-
- GEA
-
-
-
-
- ID0
-
-
-
-
- ID1
-
-
-
-
- ID2
-
-
-
-
-
- TriggerB
-
-
-
-
- Model Voice
-
-
-
-
-
-
-
-
-
-
-
-
- trim4
-
-
-
-
-
-
-
-
-
-
-
-
- trim3
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR1
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR2
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR3
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR4
-
-
-
-
-
-
-
-
-
-
-
-
- GVAR5
-
-
-
-
-
-
-
-
-
-
-
-
- Rotary encoder B
-
-
-
-
-
-
-
-
-
-
-
-
- Rotary encoder A
-
-
-
-
-
- Sym
-
-
-
-
Curve 3
- Кривая 3
+ Кривая 3
-
Curve 4
- Кривая 4
+ Кривая 4
-
Curve 5
- Кривая 5
+ Кривая 5
-
Curve 6
- Кривая 6
+ Кривая 6
-
Curve 7
- Кривая 7
+ Кривая 7
-
Curve 8
- Кривая 8
+ Кривая 8
-
Curve 9
- Кривая 9
+ Кривая 9
-
Curve 10
- Кривая 10
+ Кривая 10
-
Curve 11
- Кривая 11
+ Кривая 11
-
Curve 12
- Кривая 12
+ Кривая 12
-
Curve 13
- Кривая 13
+ Кривая 13
-
Curve 14
- Кривая 14
+ Кривая 14
-
Curve 15
- Кривая 15
+ Кривая 15
-
Curve 16
- Кривая 16
+ Кривая 16
-
-
- Curve type
-
-
-
-
- 3 points
-
-
-
-
- 3 points custom
-
-
-
-
- 5 points
-
-
-
-
- 5 points custom
-
-
-
-
- 9 points
-
-
-
-
- 9 points custom
-
-
-
-
- 17 points
-
-
-
-
- 17 points custom
-
-
-
-
- Clear All Curves
- Clear All Mixes
-
-
-
-
-
- Duration
-
-
-
-
-
Delay
- Задержка
+ Задержка
-
- Telemetry screen 3
-
-
-
-
-
- Param
-
-
-
-
- Telemetry screen 1
-
-
-
-
-
-
- Custom Screen Type
-
-
-
-
-
-
- Nums
-
-
-
-
-
-
- Bars
-
-
-
-
- Telemetry screen 2
-
-
-
-
- Custom Functions
-
-
-
-
+
Telemetry
-
- Volt source
-
-
-
-
- Current source
-
-
-
-
- NONE
-
-
-
-
-
-
-
- A1
-
-
-
-
-
- FAS
-
-
-
-
- CEL
-
-
-
-
- Alti
-
-
-
-
- Alti+
-
-
-
-
- Vario
-
-
-
-
-
- Unit
-
-
-
-
-
- Raw (-)
-
-
-
-
-
- Max Value
-
-
-
-
- RSSI
-
-
-
-
- Alarm 1
-
-
-
-
- Serial Protocol
-
-
-
-
- Units
-
-
-
-
- None
-
-
-
-
- FrSky Sensor Hub
-
-
-
-
- Metric
-
-
-
-
- ModelSetup
-
-
-
-
- Model Image
-
-
-
-
-
- Persistent
-
-
-
-
-
- MinuteBeep
-
-
-
-
-
- CountDownBeep
-
-
-
-
- SB
-
-
-
-
- Throttle Source
-
-
-
-
- SD
-
-
-
-
- SA
-
-
-
-
- SC
-
-
-
-
- SG
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- RS
-
-
-
-
Reverse Throttle Operation
- Реверс газа
+ Реверс газа
-
Reverse throttle operation.
If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
- Реверсировать канал газа (а также триммеры и предупреждения)
+ Реверсировать канал газа (а также триммеры и предупреждения)
-
- Master
-
-
-
-
- Slave
-
-
-
-
- Trainer Mode
-
-
-
-
- Master/Trainer Port
-
-
-
-
-
-
- Start
-
-
-
-
-
- Polarity
-
-
-
-
- RF Module 1
-
-
-
-
- RF Module 2
-
-
-
-
-
- (00:00:00)
-
-
-
-
- Failsafe
-
-
-
-
- External module
-
-
-
-
-
- Failsafe Mode
-
-
-
-
-
- Hold
-
-
-
-
-
- Custom
-
-
-
-
-
- No Pulses
-
-
-
-
- Internal Module
-
-
-
-
+
Flight Modes
-
- Flight Mode 0 (Default)
-
-
-
-
-
-
-
-
-
-
-
-
- Flight Mode Name
-
-
-
-
- GVAR6
-
-
-
-
- GVAR7
-
-
-
-
- FM 1
-
-
-
-
- FM 2
-
-
-
-
- FM 3
-
-
-
-
- FM 4
-
-
-
-
- FM 5
-
-
-
-
- FM 6
-
-
-
-
- FM 7
-
-
-
-
- FM 8
-
-
-
-
- Sticks
-
-
-
-
- Show channels names in mixes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ---
-
-
-
-
-
- Center
-
-
-
-
- Curve name
-
-
-
-
- Curve Creator
-
-
-
-
- Y at X=100
-
-
-
-
- Both
-
-
-
-
- x>0
-
-
-
-
- x<0
-
-
-
-
- Linear
-
-
-
-
- Single Expo
-
-
-
-
- Symmetrical f(x)=-f(-x)
-
-
-
-
- Symmetrical f(x)=f(-x)
-
-
-
-
- Apply
-
-
-
-
- Side
-
-
-
-
- Y at X=-100
-
-
-
-
- Y at X=0
-
-
-
-
- Coefficient
-
-
-
-
- CS9
-
-
-
-
- CSF
-
-
-
-
- CSD
-
-
-
-
-
- AND
-
-
-
-
- CS6
-
-
-
-
- CS1
-
-
-
-
- CS8
-
-
-
-
- CS7
-
-
-
-
- CSA
-
-
-
-
- CSB
-
-
-
-
- CSC
-
-
-
-
- CS5
-
-
-
-
- CS3
-
-
-
-
- CS2
-
-
-
-
- CSE
-
-
-
-
- CSG
-
-
-
-
- CS4
-
-
-
-
- CST
-
-
-
-
- CSM
-
-
-
-
- CSP
-
-
-
-
- CSH
-
-
-
-
- CSO
-
-
-
-
- CSN
-
-
-
-
- CSQ
-
-
-
-
- CSR
-
-
-
-
- CSS
-
-
-
-
- CSL
-
-
-
-
- CSK
-
-
-
-
- CSJ
-
-
-
-
- CSI
-
-
-
-
- CSU
-
-
-
-
- CSV
-
-
-
-
- CSW
-
-
-
-
- Imperial
-
-
-
-
- 2
-
-
-
-
- 3
-
-
-
-
- 4
-
-
-
-
- Blades
-
-
-
-
- Sink Max
-
-
-
-
- Climb Max
-
-
-
-
- Sink Min
-
-
-
-
- Climb Min
-
-
-
-
- Display altitude in toolbar
-
-
-
-
-
- Volts (V)
-
-
-
-
-
- Amps (A)
-
-
-
-
-
- Speed (m/s or ft/s)
-
-
-
-
-
- Speed (km/h or miles/h)
-
-
-
-
-
- Meters (m or ft)
-
-
-
-
-
- Temp (°)
-
-
-
-
-
- Fuel (%)
-
-
-
-
-
- mAmps (mA)
-
-
-
-
-
-
Source
- Источник
-
-
-
-
-
- Gauge
-
-
-
-
-
-
- Gauge 1
-
-
-
-
-
-
- Gauge 2
-
-
-
-
-
-
- Gauge 3
-
-
-
-
-
-
- Gauge 4
-
-
-
-
-
- Alarm 1
-
-
-
-
-
- Enable
-
-
-
-
- Altimetry / Vario
-
-
-
-
- Vario source
-
-
-
-
- Vario limits
-
-
-
-
- Use GPS as altitude source
-
-
-
-
-
-
-
-
-
- ----
-
-
-
-
-
-
-
-
-
- Yellow
-
-
-
-
-
-
-
-
-
- Orange
-
-
-
-
-
-
-
-
-
- Red
-
-
-
-
-
-
-
- <
-
-
-
-
-
-
-
- >
-
-
-
-
-
-
- Alarm 2
-
-
-
-
-
- Min Value
-
-
-
-
-
-
-
- A2
-
+ Источник
Switches
@@ -4774,29 +4255,8 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
Триггер 6
-
-
-
-
Function
- Функция
-
-
-
- Custom switches
-
-
-
-
-
- V1
-
-
-
-
-
- V2
-
+ Функция
CSwitch7
@@ -4826,43 +4286,23 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
Триггер 12
-
Safety Switches
- Защитные выкл.
+ Защитные выкл.
-
-
-
-
-
-
-
-
-
-
-
-
-
Switch
- Выключатель
+ Выключатель
-
Value
- Значение
+ Значение
Trims
Триммеры
-
- Templates
-
-
-
-
+
Simulate
Симуляция
@@ -4883,536 +4323,80 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
Кривая(%1)
-
- Clear Mixes
-
-
-
-
- S1
-
-
-
-
- S2
-
-
-
-
- LS
-
-
-
-
- Rud
-
-
-
-
- Ele
-
-
-
-
- Thr
-
-
-
-
- Ail
-
-
-
-
Weight
Weight(+%1%)
- Вес
+ Вес
-
-
- Flight modes
-
-
-
-
-
- Flight mode
-
-
-
-
-
-
- CH%1%2
-
-
-
-
- No Trim
-
-
-
-
Delay(u%1:d%2)
- Задержка(u%1:d%2)
+ Задержка(u%1:d%2)
-
Slow(u%1:d%2)
- Задержка(u%1:d%2)
+ Задержка(u%1:d%2)
-
Warn(%1)
- Пред(%1)
-
-
-
-
-
-
- CH %1
-
-
-
-
- Editing curve %1
-
+ Пред(%1)
Curve %1
Кривая %1
-
-
- Expo
-
-
-
-
-
- DISABLED
-
-
-
-
-
Curve
- Кривая
+ Кривая
-
-
-
- X%1
-
-
-
-
- No DR/Expo
-
-
-
-
- FMTrim
-
-
-
-
- Diff
-
-
-
-
- CF%1
-
-
-
-
Error
- Ошибка
+ Ошибка
-
- Unable to find sound file %1!
-
-
-
-
- Winged Shadow How High
-
-
-
-
- Winged Shadow How High (not supported)
-
-
-
-
-
- Range
-
-
-
-
- Simple 4-CH
-
-
-
-
- T-Cut
-
-
-
-
- Sticky T-Cut
-
-
-
-
- V-Tail
-
-
-
-
- Elevon\Delta
-
-
-
-
- Heli Setup with gyro gain control
-
-
-
-
- Gyro gain control
-
-
-
-
- Heli Setup (Futaba's channel assignment style)
-
-
-
-
- Heli Setup with gyro gain control (Futaba's channel assignment style)
-
-
-
-
- Gyro gain control (Futaba's channel assignment style)
-
-
-
-
- Servo Test
-
-
-
-
- MultiCopter
-
-
-
-
- Use Model Config Wizard
-
-
-
-
- Not enough available mixers!
-
-
-
-
- Not enough available expos!
-
-
-
-
Delete Selected Mixes?
- Удалить выбранные микшеры?
+ Удалить выбранные микшеры?
-
- Delete Selected Expos?
-
-
-
-
-
&Add
- Добавить
+ Добавить
-
-
- Ctrl+A
-
-
-
-
-
&Edit
- Правка
+ Правка
-
-
Enter
- Ввод
+ Ввод
-
-
-
-
&Delete
- Удалить
+ Удалить
-
-
-
-
Delete
- Удалить
+ Удалить
-
-
-
-
&Copy
- Копировать
+ Копировать
-
-
-
-
- Ctrl+C
-
-
-
-
-
-
-
&Cut
- Вырезать
+ Вырезать
-
-
-
-
- Ctrl+X
-
-
-
-
-
-
-
&Paste
- Вставить
+ Вставить
-
-
-
-
- Ctrl+V
-
-
-
-
-
- Du&plicate
-
-
-
-
-
- Ctrl+U
-
-
-
-
- Are you sure you want to delete curve %1 ?
-
-
-
-
- Apply Template?
-
-
-
-
- Apply template "%1"?
-
-
-
-
- Clear Expos?
-
-
-
-
- Really clear all the expos?
-
-
-
-
-
-
- Clear Mixes?
-
-
-
-
- Really clear all the mixes?
-
-
-
-
+
Clear Curves?
-
+
Really clear all the curves?
-
-
-
-
-
- AIL2
-
-
-
-
-
-
-
- ELE2
-
-
-
-
-
-
-
-
-
- FLAPS
-
-
-
-
-
-
-
-
-
- FLAP%1
-
-
-
-
-
-
-
- PITCH
-
-
-
-
-
-
-
-
-
-
-
- GYRO
-
-
-
-
-
- SPOIL
-
-
-
-
-
- SPOIL%1
-
-
-
-
-
- RUD2
-
-
-
-
- Really clear existing mixes on CH6?
-
-
-
-
- Really clear existing mixes on CH5?
-
-
-
-
- Not enough free points in eeprom to store the curve.
-
-
-
-
-
-
-
- Move Up
-
-
-
-
-
-
-
- Ctrl+Up
-
-
-
-
-
-
-
- Move Down
-
-
-
-
-
-
-
- Ctrl+Down
-
-
-
-
- Clear Expo Settings
-
-
D&uplicate
Дублировать
@@ -5421,133 +4405,265 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
ModelsListWidget
-
+
&Edit
-
+
&Restore from backup
-
+
&Model Wizard
-
+
&Delete
Удалить
-
+
Delete
Удалить
-
+
&Copy
Копировать
-
+
Ctrl+C
-
+
&Cut
Вырезать
-
+
Ctrl+X
-
+
&Paste
Вставить
-
+
Ctrl+V
-
+
D&uplicate
Дублировать
-
+
Ctrl+U
-
+
&Use as default
-
+
P&rint model
-
+
Alt+R
-
+
Alt+S
-
+
&Simulate model
-
+
General Settings
Основные настройки
-
+
Delete Selected Models?
Удалить выбранные модели?
-
-
+
+
Cannot delete default model.
-
+
Cannot cut default model.
-
+
Do you want to overwrite TX general settings?
-
+
You are pasting on an not empty model, are you sure?
You are pasting on an not empty model, are you sure ?
-
+
No free slot available, cannot duplicate
+
+ Module
+
+
+ Form
+
+
+
+
+ Failsafe Mode
+
+
+
+
+ Start
+
+
+
+
+ PPM delay
+
+
+
+
+ usec
+ мсек
+
+
+
+ Negative
+
+
+
+
+ Positive
+
+
+
+
+ RX Number
+
+
+
+
+ Master
+
+
+
+
+ Slave
+
+
+
+
+ Polarity
+
+
+
+
+ Trainer Mode
+
+
+
+
+ mSec
+
+
+
+
+ PPM Frame Length
+
+
+
+
+ Label
+
+
+
+
+
+ ch
+ ch
+
+
+
+ Channels
+ Каналы
+
+
+
+ Hold
+
+
+
+
+ Custom
+
+
+
+
+ No Pulses
+
+
+
+
+ Failsafe Positions
+
+
+
+
+ Protocol
+ Протокол
+
+
+
+ ModulePanel
+
+
+ Trainer Output
+
+
+
+
+ Internal Radio System
+
+
+
+
+ External Radio Module
+
+
+
QObject
@@ -5558,1949 +4674,1655 @@ If this is checked the throttle will be reversed. Idle will be forward, trim wi
-
+
+ Input%1
+
+
+
+
+ Polish
+
+
+
+
+ CH%1
+
+
+
+
No
-
+
RotEnc A
-
+
Rot Enc B
-
+
Rot Enc C
-
+
Rot Enc D
-
+
Rot Enc E
-
+
Safety %1
-
+
Trainer
-
+
Trainer RUD
-
+
Trainer ELE
-
+
Trainer THR
-
+
Trainer AIL
-
+
Instant Trim
-
+
Play Sound
-
+
Start Logs
-
+
Play Haptic
-
-
+
+
---
-
+
Rud Trim
-
+
Ele Trim
-
+
Thr Trim
-
+
Ail Trim
-
+
Rot Enc
-
+
English
-
+
French
-
+
Italian
-
+
German
-
+
Czech
-
+
Slovak
-
+
Spanish
-
+
Portuguese
-
+
Swedish
-
- CH
-
-
-
-
-
+
+
No repeat
-
+
%1 sec
-
+
Reset
-
+
Vario
-
+
Play Track
-
+
Play Both
-
+
Play Value
-
+
Volume
-
+
Backlight
-
+
Background Music
-
+
Background Music Pause
-
- Adjust GV1
-
-
-
-
- Adjust GV2
-
-
-
-
- Adjust GV3
-
-
-
-
- Adjust GV4
-
-
-
-
- Adjust GV5
-
-
-
-
+
Delay %1 sec
-
+
Duration %1 sec
-
-
+
+
<font color=red><b>Inconsistent parameter</b></font>
-
+
Value
-
+
Decr:
-
+
Incr:
-
+
+ Played once, not during startup
+
+
+
+
%1s
-
- Value
- Значение
+
+ Adjust GV%1
+
-
- Source
- Источник
-
-
-
- GVAR
+
+ Rotary Encoder
+ Value
+ Значение
+
+
+
+ Source
+ Источник
+
+
+
+ GVAR
+
+
+
+
Increment
-
+
!Flight mode %1
-
+
Flight mode %1
-
+
Flight mode %1 trim
-
+
Flight mode %1 value
-
+
Yellow
-
+
Orange
-
+
Red
-
+
Winged Shadow How High
-
+
Winged Shadow How High (not supported)
-
+
FrSky Sensor Hub
-
+
+
None
-
+
Imperial
-
+
Metric
-
+
Extra Fine
очень точно
-
+
Fine
точно
-
+
Medium
средне
-
+
Coarse
грубо
-
+
Exponential
экспонента
-
+
Count Up
Прямой отсчет
-
+
Count Down
Обратный отсчет
-
+
%1:%2,
-
+
: %1 Channels, %2usec Delay
-
+
+ Flight modes(%1)
+
+
+
+
+ Flight mode(%1)
+
+
+
+
Rudder
Руддер
-
+
Elevator
Элеватор
-
+
Throttle
Газ
-
+
Aileron
Элероны
-
-
-
+
+
+
Timer1
-
-
-
+
+
+
Timer2
-
-
+
+
All
-
-
+
+
Telemetry
-
- Diff
-
-
-
-
- Expo
-
-
-
-
+
Own trim
-
+
Own value
-
+
Keys
-
+
Sticks
-
+
Keys + Sticks
-
+
+
-GV%1
-
- (-GV%1)
-
-
-
-
- (GV%1)
-
-
-
-
-
-
-
+
+
+
+
----
-
-
-
+
+
+
P1
-
-
-
+
+
+
P2
-
-
-
+
+
+
P3
-
+
MAX
-
-
+
+
Rud
-
-
+
+
Ele
-
-
+
+
Thr
-
-
+
+
Ail
-
+
+
REa
-
+
+
REb
-
+
Alt
-
+
Rpm
-
+
Fuel
-
+
Speed
-
+
Dist
-
+
GPS Alt
-
+
Cell
-
- 3POS
-
-
-
-
+
A1
-
+
A2
-
+
T1
-
+
T2
-
Curve
- Кривая
+ Кривая
-
-
-
-
- Flight modes settings on expos not exported
- Phases settings on expos not exported
-
-
-
-
-
-
-
-
-
-
-
- Open9x on this board doesn't have Rotary Encoders
-
-
-
-
- gruvin9x doesn't have trims as source
-
-
-
-
- gruvin9x doesn't have swappable trims
-
-
-
-
- gruvin9x on this board doesn't have Rotary Encoders
-
-
-
-
- gruvin9x does not support Custom Switch function %1
-
-
-
-
- gruvin9x only accepts %1 expos
-
-
-
-
-
- gruvin9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
- gruvin9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
- Open9x doesn't allow Curve%1 in expos
-
-
-
-
-
+
+
Simultaneous usage of expo and curves is no longer supported
-
-
-
-
-
-
-
- Flight modes settings on mixers not exported
-
-
-
-
-
- Flight mode settings on mixers not exported
- Phases settings on mixers not exported
-
-
-
-
-
-
-
- This version of open9x does not support Custom Switch function %1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Open9x doesn't accept this protocol
-
-
-
-
-
-
-
-
-
- open9x only accepts %1 points in all curves
-
-
-
-
+
Simultaneous usage of expo and curves is no longer supported in open9x
-
-
- open9x on this board doesn't have Rotary Encoders
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- open9x only accepts %1 expos
- Gruvin9x firmware only accepts %1 expos
-
-
-
-
+
th9x
-
+
er9x
-
+
TrmR
-
+
TrmE
-
+
TrmT
-
+
TrmA
-
-
+
+
S1
-
-
+
+
S2
-
-
+
+
LS
-
-
+
+
RS
-
- SA
-
-
-
-
- SB
-
-
-
-
- SC
-
-
-
-
- SD
-
-
-
-
- SE
-
-
-
-
- SF
-
-
-
-
- SG
-
-
-
-
- SH
-
-
-
-
+
Batt
-
+
Tx
-
+
Rx
-
+
SWR
-
+
RSSI
-
+
Cels
-
+
Vfas
-
+
Curr
-
+
Cnsp
-
+
Powr
-
+
AccX
-
+
AccY
-
+
AccZ
-
+
HDG
-
+
VSpd
-
+
A1-
-
+
A2-
-
+
Alt-
-
+
Alt+
-
+
Rpm+
-
+
T1+
-
+
T2+
-
+
Spd+
-
+
Dst+
-
+
Cur+
-
+
ACC
-
+
Time
-
+
Pwr+
-
+
+
+ LS1
+
+
+
+
+
+ LS2
+
+
+
+
+
+ LS3
+
+
+
+
+
+ LS4
+
+
+
+
+
+ LS5
+
+
+
+
+
+ LS6
+
+
+
+
+
+ LS7
+
+
+
+
+
+ LS8
+
+
+
+
+
+ LS9
+
+
+
+
+
+ LSA
+
+
+
+
+
+ LSB
+
+
+
+
+
+ LSC
+
+
+
+
+
+ LSD
+
+
+
+
+
+ LSE
+
+
+
+
+
+ LSF
+
+
+
+
+
+ LSG
+
+
+
+
+
+ LSH
+
+
+
+
+
+ LSI
+
+
+
+
+
+ LSJ
+
+
+
+
+
+ LSK
+
+
+
+
+
+ LSL
+
+
+
+
+
+ LSM
+
+
+
+
+
+ LSN
+
+
+
+
+
+ LSO
+
+
+
+
+
+ LSP
+
+
+
+
+
+ LSQ
+
+
+
+
+
+ LSR
+
+
+
+
+
+ LSS
+
+
+
+
+
+ LST
+
+
+
+
+
+ LSU
+
+
+
+
+
+ LSV
+
+
+
+
+
+ LSW
+
+
+
+
+ Input %1
+
+
+
+
CYC%1
-
+
PPM%1
-
+
CH%1%2
CH%1
-
+
X%1
-
+
+ S11
+
+
+
+
+ S12
+
+
+
+
+ S13
+
+
+
+
+ S14
+
+
+
+
+ S15
+
+
+
+
+ S16
+
+
+
+
+ S21
+
+
+
+
+ S22
+
+
+
+
+ S23
+
+
+
+
+ S24
+
+
+
+
+ S25
+
+
+
+
+ S26
+
+
+
+
ONE
-
+
!ONE
-
+
TRNs
-
+
TRNl
-
+
REAs
-
+
REAl
-
-
+
+ Diff(%1)
+
+
+
+
+ Expo(%1)
+
+
+
+
+ Function(%1)
+
+
+
+
+ Curve(%1)
+
+
+
+
+ !Curve(%1)
+
+
+
+
+
+
GV%1
-
-
-
-
+
+
THR
-
-
- RUD
-
-
-
-
-
- ELE
-
-
-
-
- ID0
-
-
-
-
- ID1
-
-
-
-
- ID2
-
-
-
-
-
- AIL
-
-
-
-
-
- GEA
-
-
-
-
-
- TRN
-
-
-
-
-
- CS1
-
-
-
-
-
- CS2
-
-
-
-
-
- CS3
-
-
-
-
-
- CS4
-
-
-
-
-
- CS5
-
-
-
-
-
- CS6
-
-
-
-
-
- CS7
-
-
-
-
-
- CS8
-
-
-
-
-
- CS9
-
-
-
-
-
- CSA
-
-
-
-
-
- CSB
-
-
-
-
-
- CSC
-
-
-
-
-
- CSD
-
-
-
-
-
- CSE
-
-
-
-
-
- CSF
-
-
-
-
-
- CSG
-
-
-
-
-
- CSH
-
-
-
-
-
- CSI
-
-
-
-
-
- CSJ
-
-
-
-
-
- CSK
-
-
-
-
-
- CSL
-
-
-
-
-
- CSM
-
-
-
-
-
- CSN
-
-
-
-
-
- CSO
-
-
-
-
-
- CSP
-
-
-
-
-
- CSQ
-
-
-
-
-
- CSR
-
-
-
-
-
- CSS
-
-
-
-
-
- CST
-
-
-
-
-
- CSU
-
-
-
-
-
- CSV
-
-
-
-
-
- CSW
-
-
-
-
-
+
+
ON
-
-
+
+
OFF
ВЫКЛ
-
-
+
+
Support for frsky telemetry mod
-
-
+
+
Support for jeti telemetry mod
-
-
+
+
Support for receiving ardupilot data
-
-
+
+
Support for receiving NMEA data
-
+
Support for telemetry easy board
-
-
+
+
Support for MAVLINK devices
-
+
Rotary Encoder use in menus navigation
-
+
Possibility to enable FAI MODE at field
-
+
FAI MODE always enabled
-
+
openTx for 9X board
-
-
-
-
-
+
+
+
+
+
Enable heli menu and cyclic mix support
-
-
-
-
-
-
+
+
+
+
+
+
Enable TEMPLATES menu
-
-
-
-
+
+
+
+
No splash screen
-
-
-
-
-
-
+
+
+
+
+
+
Disable curves menus
-
-
-
-
+
+
+
+
Support for radio modified with regular speaker
-
-
-
-
-
+
+
+
+
+
Used if you have modified your radio with voice mode
-
-
-
-
+
+
+
+
Used if you have modified your radio with haptic mode
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Use alternative SQT5 font
-
-
-
-
+
+
+
+
Enable the throttle trace in Statistics
-
+
EEprom write progress bar
-
-
+
+
No Winged Shadow How High support
-
-
+
+
No vario support
-
-
+
+
No GPS support
-
-
+
+
No gauges in the custom telemetry screen
-
+
+ Allow compensating for offset errors in FrSky FAS current sensors
+
+
+
+
openTx for M128 / 9X board
-
+
openTx for 9XR
-
+
openTx for 9XR with M128 chip
-
+
openTx for Gruvin9x board / 9X
-
+
Support of FrSky PXX protocol
-
+
Use FrSky Taranis sticks in a 9X/9XR
-
+
openTx for FrSky Taranis
-
-
+
+
Disable HELI menu and cyclic mix support
-
-
+
+
Disable TEMPLATES menu
-
-
+
+
Disable Global variables
-
+
openTx for FrSky Taranis Rev4a
-
-
-
-
-
+
+
+
+
+
Support for DSM2 modules
-
-
-
-
-
-
+
+
+
+
+
+
PPM center adjustment in limits
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
PPM values displayed in us
-
-
-
-
-
-
+
+
+
+
+
+
Symetrical Limits
-
-
-
-
-
+
+
+
+
+
Pots use in menus navigation
-
+
Your radio probably uses a wrong firmware,
eeprom size is 4096 but only the first 2048 are used
-
-
-
-
-
-
+
+
+
+
+
+
No flight modes
-
-
+
+
SmartieParts 2.2 Backlight support
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set source by moving some of them
-
-
-
-
-
-
+
+
+
+
+
+
In model setup menus automatically set switch by moving some of them
-
-
-
-
+
+
+
+
Enable resetting values by pressing up and down at the same time
-
-
-
-
-
-
+
+
+
+
+
+
No graphical check boxes and sliders
-
-
-
-
-
-
+
+
+
+
+
+
Battery graph
-
-
-
-
-
-
+
+
+
+
+
+
Don't use bold font for highlighting active items
-
-
-
-
+
+
+
+
EEprom write Progress bar
-
-
-
-
-
+
+
+
+
+
Imperial units
-
+
Bluetooth interface
-
-
-
-
-
-
+
+
+
+
+
+
Global variables
-
+
Support for SD memory card
-
+
Support for DSM2 modules using ppm instead of true serial
-
+
openTx for Sky9x board / 9X
-
+
Enable HELI menu and cyclic mix support
-
+
ersky9x
-
- er9x doesn't have Rotary Encoders
-
-
-
-
- er9x doesn't have trims as source
-
-
-
-
- er9x doesn't have negative gvars as weight
-
-
-
-
- er9x doesn't have negative gvars as offset
-
-
-
-
-
-
- er9x doesn't have swappable trims
-
-
-
-
-
-
- er9x on this board doesn't have Rotary Encoders
-
-
-
-
- er9x does not support Custom Switch function %1
-
-
-
-
-
-
- er9x does not support this range for A1/A2
-
-
-
-
-
-
- er9x does not support this telemetry units
-
-
-
-
-
- Er9x doesn't accept this protocol
-
-
-
-
-
- Er9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
- Er9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
-
-
+
+
+
+
Warning
Звук
-
-
+
EEPROM saved with these warnings:
-
-
- ersky9x doesn't have Rotary Encoders
-
-
-
-
-
- ersky9x doesn't have trims as source
-
-
-
-
-
- ersky9x does not support Custom Switch function %1
-
-
-
-
-
- Ersky9x doesn't accept this protocol
-
-
-
-
-
-
-
- ErSky9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
-
-
- ErSky9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
-
+
+
+
Simulator for this firmware is not yet available
-
- th9x does not support Custom Switch function %1
-
-
-
-
+
th9x on this board doesn't have Rotary Encoders
-
-
-
- th9x doesn't support custom curves as curve%1, curve as been exported as fixed point
-
-
-
-
-
-
- th9x doesn't support curve with %1 point as curve%2
-
-
-
-
-
- Flight Mode 0 (Default)
-
-
-
-
-
- FM %1
-
-
-
-
+
openTx only accepts %1 points in all curves
-
-
-
+
+
+
OpenTX on this board doesn't accept this function
-
-
+
+
OpenTX doesn't accept this protocol
-
+
OpenTX doesn't allow this number of channels
@@ -7514,6 +6336,587 @@ The OpenTX/Companion Team.
+
+ Setup
+
+
+ Form
+
+
+
+
+ Model Name
+ Название модели
+
+
+
+ Timer2
+
+
+
+
+ Timer1
+
+
+
+
+ Throttle Source
+
+
+
+
+ Switch startup Warning
+
+
+
+
+ Center beep
+ Бип в центре
+
+
+
+ Trim Increment
+ Изм. триммеров
+
+
+
+ ON
+
+
+
+
+ OFF
+ ВЫКЛ
+
+
+
+ Check
+
+
+
+
+ Model Image
+
+
+
+
+ Exponential
+ экспонента
+
+
+
+ Extra Fine
+ очень точно
+
+
+
+ Fine
+ точно
+
+
+
+ Medium
+ средне
+
+
+
+ Coarse
+ грубо
+
+
+
+ Extended Limits
+ Расш. лимиты
+
+
+
+ Extended Trims
+
+
+
+
+ Throttle Trim
+ Газ трим
+
+
+
+ Throttle Warning
+
+
+
+
+ Reverse throttle operation.
+If this is checked the throttle will be reversed. Idle will be forward, trim will also be reversed and the throttle warning will be reversed as well.
+
+
+ Реверсировать канал газа (а также триммеры и предупреждения)
+
+
+
+ Reverse Throttle
+
+
+
+
+ Telemetry
+
+
+ Form
+
+
+
+
+
+
+
+ A1
+
+
+
+
+
+
+
+ A2
+
+
+
+
+ RSSI
+
+
+
+
+ Alarm 1
+
+
+
+
+
+ ----
+
+
+
+
+
+ Yellow
+
+
+
+
+
+ Orange
+
+
+
+
+
+ Red
+
+
+
+
+ Alarm 2
+
+
+
+
+ Serial Protocol
+
+
+
+
+ Volt source
+
+
+
+
+ Metric
+
+
+
+
+ Imperial
+
+
+
+
+ Current source
+
+
+
+
+ Protocol
+ Протокол
+
+
+
+ NONE
+
+
+
+
+
+ FAS
+
+
+
+
+ None
+
+
+
+
+ FrSky Sensor Hub
+
+
+
+
+ CEL
+
+
+
+
+ 2
+
+
+
+
+ 3
+
+
+
+
+ 4
+
+
+
+
+ Units
+
+
+
+
+ Blades
+
+
+
+
+ Altimetry / Vario
+
+
+
+
+ Alti
+
+
+
+
+ Alti+
+
+
+
+
+ Vario
+
+
+
+
+ Sink Max
+
+
+
+
+ Off
+
+
+
+
+ Climb Max
+
+
+
+
+ Sink Min
+
+
+
+
+ Climb Min
+
+
+
+
+ Vario source
+
+
+
+
+ Vario limits
+
+
+
+
+ Use GPS as altitude source
+
+
+
+
+ Display altitude in toolbar
+
+
+
+
+ Various
+
+
+
+
+ mAh count
+
+
+
+
+ FAS Offset
+
+
+
+
+ Persistent mAh
+
+
+
+
+ TelemetryAnalog
+
+
+ Form
+
+
+
+
+ Unit
+
+
+
+
+ Max Value
+
+
+
+
+ Alarm 1
+
+
+
+
+
+ ----
+
+
+
+
+
+ Yellow
+
+
+
+
+
+ Orange
+
+
+
+
+
+ Red
+
+
+
+
+
+ <
+
+
+
+
+
+ >
+
+
+
+
+ Alarm 2
+
+
+
+
+ Min Value
+
+
+
+
+ Volts (V)
+
+
+
+
+ Amps (A)
+
+
+
+
+ Speed (m/s or ft/s)
+
+
+
+
+ Raw (-)
+
+
+
+
+ Speed (km/h or miles/h)
+
+
+
+
+ Meters (m or ft)
+
+
+
+
+ Temp (°)
+
+
+
+
+ Fuel (%)
+
+
+
+
+ mAmps (mA)
+
+
+
+
+ Range
+
+
+
+
+ TelemetryCustomScreen
+
+
+ Form
+
+
+
+
+ Custom Screen Type
+
+
+
+
+ Nums
+
+
+
+
+ Bars
+
+
+
+
+ Min
+ Мин
+
+
+
+ Source
+ Источник
+
+
+
+ Gauge
+
+
+
+
+ Max
+ Макс
+
+
+
+ TelemetryPanel
+
+
+ Telemetry screen %1
+
+
+
+
+ Winged Shadow How High
+
+
+
+
+ Winged Shadow How High (not supported)
+
+
+
+
+ Timer
+
+
+ Form
+
+
+
+
+ mm:ss
+
+
+
+
+ Countdown
+
+
+
+
+ MinuteBeep
+
+
+
+
+ Persistent
+
+
+
+
+ (00:00:00)
+
+
+
+
+ TimerPanel
+
+
+ None
+
+
+
+
+ Beeps
+
+
+
+
+ Countdown
+
+
+
avrOutputDialog
@@ -7667,7 +7070,7 @@ Do you want some help ?
burnConfigDialog
-
+
AVRDUDE Configuration
Настроить программатор
@@ -7821,35 +7224,35 @@ Please only use this if you know what you are doing. There are no error checks
-
+
DFU-UTIL Configuration
-
+
SAM-BA Configuration
-
-
-
+
+
+
Select Location
Выбрать расположение
-
-
+
+
Companion
-
+
<b><u>WARNING!</u></b><br>This will reset the fuses of %1 to the factory settings.<br>Writing fuses can mess up your radio.<br>Do this only if you are sure they are wrong!<br>Are you sure you want to continue?
-
+
<b><u>WARNING!</u></b><br>Normally CPU type is automatically selected according to the chosen firmware.<br>If you change the CPU type the resulting eeprom could be inconsistent.
@@ -7911,7 +7314,7 @@ m2560 for v4.1 boards
-
+
Browse for file
@@ -7957,7 +7360,7 @@ m2560 for v4.1 boards
-
+
Write to TX
@@ -7982,17 +7385,17 @@ m2560 for v4.1 boards
-
+
Write firmware to TX
-
+
Current profile
-
+
Open
Открыть
@@ -8001,134 +7404,134 @@ m2560 for v4.1 boards
Выберите файл для записи в EEPROM
-
+
Write Models and Settings to TX
-
+
Write Models and Settings in %1 to TX
-
+
Choose file to load Models and Settings from
-
-
-
-
-
-
+
+
+
+
+
+
Warning
Звук
-
+
%1 is not a known firmware
-
+
Burn anyway !
-
+
Unable to find file %1!
Невозможно найти файл %1!
-
-
-
+
+
+
Error opening file %1:
%2.
-
-
-
+
+
+
Invalid binary Models and Settings File %1, Proceed anyway ?
-
+
Error reading file %1:
%2.
Ошибка при считывании файла %1:
%2.
-
+
Open Image to load
-
+
Images (%1)
-
+
Wrong radio calibration data in profile, Settings not patched
-
+
Wrong radio setting data in profile, Settings not patched
-
-
+
+
Cannot write file %1:
%2.
Не удается записать файл %1:
%2.
-
+
Error writing file %1:
%2.
Ошибка при записи файла %1:
%2.
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Error
Ошибка
-
-
+
+
Cannot load %1.
-
+
Cannot save customized firmware
-
+
Custom image not found
-
+
No firmware selected
@@ -8312,14 +7715,14 @@ m2560 for v4.1 boards
-
+
-
-
-
-
-
-
+
+
+
+
+
+
Switch
@@ -8356,10 +7759,10 @@ m2560 for v4.1 boards
-
-
-
-
+
+
+
+
Offset
@@ -8367,8 +7770,8 @@ m2560 for v4.1 boards
-
-
+
+
Min
Мин
@@ -8376,8 +7779,8 @@ m2560 for v4.1 boards
-
-
+
+
Max
Макс
@@ -8393,8 +7796,8 @@ m2560 for v4.1 boards
-
-
+
+
CH
@@ -8428,198 +7831,165 @@ m2560 for v4.1 boards
-
+
Weight
Вес
-
-
- Expo
-
-
-
-
+
-
-
+
+
DISABLED
-
-
-
-
-
-
+
+
Curve
Кривая
-
+
Mixers
-
-
+
+
noTrim
-
-
- FMTrim
-
-
-
-
-
- Diff
-
-
-
-
-
+
+
Delay(u%1:d%2)
Задержка(u%1:d%2)
-
-
+
+
Slow(u%1:d%2)
Задержка(u%1:d%2)
-
-
+
+
Warn
-
+
Curves
Кривые
-
+
5 Points Curves
-
-
-
-
+
+
+
+
pt %1
-
+
9 Points Curves
-
- Custom Switches
-
-
-
-
-
- CS
-
-
-
-
-
+
+
Function
Функция
-
-
+
+
Param
-
-
+
+
Enable
-
+
CF
-
+
Telemetry Settings
-
-
+
+
Analog
-
-
+
+
Unit
-
-
+
+
Scale
-
-
-
-
+
+
+
+
A%1
-
-
+
+
Alarm 1
-
-
+
+
Alarm 2
-
-
-
-
+
+
+
+
Type
-
-
-
-
+
+
+
+
Condition
-
-
-
-
-
-
+
+
+
+
+
+
Value
Значение
@@ -8651,74 +8021,85 @@ m2560 for v4.1 boards
-
+
-
-
+
+
Flight modes
-
+
-
-
+
+
Flight mode
+
- Custom Functions
-
-
-
-
-
Repeat
-
+
Safety Switches
Защитные выкл.
-
-
+
+
RSSI Alarm
-
-
+
+
Telemetry Bars
-
-
+
+
Bar Number
-
-
+
+
Source
Источник
-
-
+
+
Custom Telemetry View
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignment
+
+
+
+
Print Document
-
+
Select PDF output file
@@ -8731,39 +8112,37 @@ m2560 for v4.1 boards
Диалог
-
+
People who have contributed to this project
-
+
Coders
-
- Honors go to Rafal Tomczak (RadioClone) and Thomas Husterer (th9x)
-of course. Also to Erez Raviv (er9x) and the fantastic eePe program
-which was the staring point for OpenTX Companion.
-
-
-
-
+
Companion Release Notes
-
+
Thank you all !!!
-
+
+ Honors go to Rafal Tomczak (RadioClone), Thomas Husterer (th9x) and Erez Raviv (er9x and eePe)
+
+
+
+
Contributors
-
+
OpenTX Release Notes
@@ -8806,7 +8185,7 @@ which was the staring point for OpenTX Companion.
-
+
Save Firmware
Save To Hex
@@ -8821,80 +8200,80 @@ p, li { white-space: pre-wrap; }
-
-
-
+
+
+
Select an original firmware file
-
+
Open
Открыть
-
+
Select an image to customize your splash <br />or save actual firmware splash
-
-
-
-
+
+
+
+
Error
Ошибка
-
+
Could not find bitmap to replace in file
-
+
Open Image to load
-
+
Images (%1)
-
-
+
+
Cannot load %1.
-
-
+
+
Save your custimized firmware
-
-
+
+
Write to file
-
+
Error reading file %1
Ошибка при считывании файла %1! {1?}
-
+
Firmware correctly saved.
-
+
Firmware not saved.
-
+
PNG images (*.png);;
@@ -9303,17 +8682,17 @@ Press cancel to abort joystick calibration
%2.
-
+
Select your log file
-
+
Available fields
-
+
The selected logfile contains %1 invalid lines out of %2 total lines
@@ -9321,7 +8700,7 @@ Press cancel to abort joystick calibration
mdiChild
-
+
Simulate Tx
@@ -9771,33 +9150,32 @@ Press cancel to abort joystick calibration
Настройки
-
Language (requires restart)
- Язык (треб. перезапуск)
+ Язык (треб. перезапуск)
-
+
Recent History Size
-
-
+
+
Download
-
+
Default Channel Order
Порядок следов. каналов
-
+
Default Stick Mode
Режим стиков
-
+
Channel order
This is used by the templated to determine which channel goes to what number output.
@@ -9806,17 +9184,12 @@ This is used by the templated to determine which channel goes to what number out
Шаблон для определения порядка следования каналов.
-
+
FwInfo
-
- Show Splash Screen
-
-
-
-
+
Mode selection:
Mode 1:
@@ -9839,377 +9212,386 @@ Mode 4:
-
+
Mode 1 (RUD ELE THR AIL)
-
+
Mode 2 (RUD THR ELE AIL)
-
+
Mode 3 (AIL ELE THR RUD)
-
+
Mode 4 (AIL THR ELE RUD)
-
+
Automatic Backup Folder
-
+
Automatically add version number to the filename after download
-
+
Voice
-
+
Set language of voice.
May be different from firmware language
-
+
Firmware
-
+ Normal
+ нормально
+
+
+
Find Executable
-
+
Google Earth Executable
-
+
Check for updates on startup
Проверять обновления
-
-
+
+
...
-
+
Splash library behaviour
-
+
Include companion splashes
-
+
Only user defined splashes
-
+
Custom TX splash screen
-
+
Personal splash library
-
+
Joystick
-
-
-
-
+
+
+
+
Open Folder
-
+
SD Structure path
-
+
Processor ID
-
+
Simulator capture folder
-
+
Use clipboard only
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
CheckBox
-
+
Check for updates
-
+
Language
-
+
Profile Name
-
+
Export Profile
-
+
Save Profile
-
+
Import Profile
-
+
Simu BackLight
-
+
Check for selected Fw updates
-
+
Ask use of wizard for new models
-
+
+ Show Splash At Start
+
+
+
+
Remember switches in simulator
-
+
Blue
Blu
-
+
Green
-
+
Red
-
+
Orange
-
+
Yellow
-
+
Profile slot
-
+
auto backup before write
-
+
Ask for flashing after Download
-
+
Enable
-
+
Calibrate
-
+
Open Image
-
+
Invert Pixels
-
+
Last downloaded release: %1
-
+
Image stored in settings
-
-
+
+
No joysticks found
-
+
Select your snapshot folder
-
+
Select your Models and Settings backup folder
-
+
Select Google Earth executable
-
+
Select the folder replicating your SD structure
-
+
Profile name is empty, profile slot %1 will be deleted.<br>Are you sure ?
-
+
Export profile As
-
+
Profile slot is not empty, profile slot %1 will we overwritten.<br>Are you sure ?
-
+
Open Profile to import
-
+
Open Image to load
-
+
Images (%1)
-
-
+
+
Error
Ошибка
-
+
The selected firmware has never been downloaded by Companion.
-
+
The selected firmware cannot be downloaded by Companion.
-
+
Select your library folder
-
-
+
+
Cannot load %1.
@@ -10251,9 +9633,9 @@ May be different from firmware language
-
-
-
+
+
+
Name
@@ -10326,7 +9708,7 @@ May be different from firmware language
-
+
Enabled
@@ -10387,12 +9769,12 @@ May be different from firmware language
Кривая(%1)
-
+
Delay(u%1:d%2)
Задержка(u%1:d%2)
-
+
Slow(u%1:d%2)
Задержка(u%1:d%2)
@@ -10401,9 +9783,7 @@ May be different from firmware language
Пред(%1)
-
-
-
+
pt %1
@@ -10412,21 +9792,21 @@ May be different from firmware language
Кривая %1
-
+
Source
Источник
-
+
Function
Функция
-
-
-
-
+
+
+
+
Switch
@@ -10466,271 +9846,239 @@ May be different from firmware language
Вес
-
-
-
-
- Expo
-
-
-
-
-
+
+
DISABLED
-
-
-
-
-
-
-
+
+
+
Curve
Кривая
-
+
Mixers
-
-
-
-
-
+
+
+
+
+
CH
-
+
noTrim
-
- FMTrim
-
-
-
-
-
-
-
-
+
+
+
+
+
Offset
-
- Diff
-
-
-
-
+
Warn
-
+
Limits
Лимиты
-
-
-
-
+
+
+
+
Min
Мин
-
-
-
-
+
+
+
+
Max
Макс
-
-
-
+
+
+
Invert
Инверт
-
-
-
+
+
+
INV
-
-
-
+
+
+
NOR
-
+
Curves
Кривые
-
- 5 Points Curves
-
-
-
-
- 9 Points Curves
-
-
-
-
- Custom Switches
-
-
-
-
-
- CS
-
-
-
-
+
Global Variables
-
+
GV
-
+
Safety Switches
Защитные выкл.
-
-
-
-
-
+
+
+
+
+
Value
Значение
-
- Function Switches
-
-
-
-
+
Parameter
-
+
Repeat
-
+
ODF files (*.odt);;PDF Files(*.pdf);;HTML-Files (*.htm *.html);;All Files (*)
-
+
Telemetry Settings
-
-
+
+ Logical Switches
+
+
+
+
+
+ LS
+
+
+
+
+ Switch Assignments
+
+
+
+
+
Alarm 1
-
-
+
+
Alarm 2
-
+
Analog
-
+
Unit
-
+
Scale
-
-
-
-
+
+
+
+
Type
-
-
-
-
+
+
+
+
Condition
-
+
A%1
-
+
RSSI Alarm
-
+
Frsky serial protocol
-
+
System of units
-
+
Propeller blades
-
+
Telemetry Bars
-
+
Bar Number
-
-
+
+
Custom Telemetry View
@@ -10753,29 +10101,24 @@ May be different from firmware language
-
-
+
+
Flight modes
-
-
+
+
Flight mode
-
- CF
-
-
-
-
+
Print Document
-
+
Select PDF output file
@@ -10788,17 +10131,17 @@ May be different from firmware language
ER9x Симулятор
-
+
P1
-
+
P2
-
+
P3
@@ -10824,33 +10167,33 @@ May be different from firmware language
-
+
Hold X
-
+
Fix X
-
+
Fix Y
-
+
Hold Y
-
-
+
+
TextLabel
@@ -10870,17 +10213,17 @@ May be different from firmware language
-
+
ID1
-
+
ID2
-
+
BEEP
@@ -10888,19 +10231,19 @@ May be different from firmware language
-
+
Right Double Click to Reset
-
-
-
+
+
+
0 %
-
+
9x Simulator
@@ -10909,270 +10252,268 @@ May be different from firmware language
Outputs
-
-
- CSK
- SWK
-
-
-
-
- CS1
-
-
Companion Simulator
+
+
+ LS1
+
+
- CS2
+ LS2
- CS3
+ LS3
- CS4
+ LS4
- CS5
+ LS5
- CS6
+ LS6
- CS7
+ LS7
- CS8
+ LS8
- CS9
+ LS9
- CSA
+ LSA
- CSB
+ LSB
- CSC
+ LSC
- CSD
+ LSD
- CSE
+ LSE
- CSF
+ LSF
- CSG
+ LSG
- CSH
+ LSH
- CSI
+ LSI
-
- CSJ
+
+ LSJ
-
- CSL
+
+ LSK
-
- CSM
+
+ LSL
-
- CSN
+
+ LSM
-
- CSO
+
+ LSN
-
- CSP
+
+ LSO
-
- CSQ
+
+ LSP
-
- CSR
+
+ LSQ
-
- CSS
+
+ LSR
-
- CST
+
+ LSS
-
- CSU
+
+ LST
-
- CSV
+
+ LSU
-
- CSW
- SWW
+
+ LSV
-
+
+ LSW
+
+
+
+
CH1
-
+
CH9
-
+
CH2
-
+
CH10
-
+
CH3
-
+
CH11
-
+
CH4
-
+
CH12
-
+
CH5
-
+
CH13
-
+
CH6
-
+
CH14
-
+
CH7
-
+
CH15
-
+
CH8
-
+
CH16
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-100.1
@@ -11216,33 +10557,33 @@ May be different from firmware language
splashLibrary
-
+
...
-
+
Splash Library - page %1 of %2
-
+
Warning
Звук
-
+
Invalid image in library %1
-
+
Information
-
+
No valid image found in library, check your settings
@@ -11393,10 +10734,10 @@ May be different from firmware language
-
-
-
-
+
+
+
+
@@ -11437,12 +10778,12 @@ May be different from firmware language
-
+
CH12
-
+
CH5
@@ -11483,162 +10824,162 @@ May be different from firmware language
- CSK
+ LSK
- CSC
+ LSC
- CSD
+ LSD
- CS7
+ LS7
- CSL
+ LSL
- CSB
+ LSB
- CS1
+ LS1
- CSH
+ LSH
- CSG
+ LSG
- CSE
+ LSE
- CSF
+ LSF
- CS8
+ LS8
- CS9
+ LS9
- CSA
+ LSA
- CSM
+ LSM
- CSJ
+ LSJ
- CSI
+ LSI
- CS4
+ LS4
- CS5
+ LS5
- CS2
+ LS2
- CS3
+ LS3
- CS6
+ LS6
- CSN
+ LSN
- CSO
+ LSO
- CSP
+ LSP
- CSQ
+ LSQ
- CSR
+ LSR
- CSS
+ LSS
- CST
+ LST
- CSU
+ LSU
- CSV
+ LSV
- CSW
+ LSW
@@ -11658,22 +10999,22 @@ May be different from firmware language
-
+
Firmware %1 error: %2
-
+
- Flight mode: %1(%2)
-
+
Simulating Tx (%1)
-
+
Simulating
Симуляция
diff --git a/companion/src/translations/companion_sv.ts b/companion/src/translations/companion_sv.ts
index 975950d96..ed017dbc3 100644
--- a/companion/src/translations/companion_sv.ts
+++ b/companion/src/translations/companion_sv.ts
@@ -57,7 +57,7 @@
CurveGroup
-
+
Diff
Diff
@@ -257,7 +257,7 @@
LB%1
-
+
&Delete
&Ta bort
@@ -551,7 +551,7 @@ Om fältet lämnas tomt så är filtret aktivt hela tiden.
Redigera %1
-
+
Rud
Rod
@@ -684,7 +684,7 @@ Dessa inställningar gäller för alla modeller.
Setup
- Sändarinställningar
+ Välj Sändarens Startbild
@@ -981,6 +981,8 @@ Mode 4:
+
+
Beeper volume
0 - Quiet. No beeps at all.
@@ -997,7 +999,7 @@ Mode 4:
4 - Extra högt.
-
+
Quiet
Tyst
@@ -1306,7 +1308,29 @@ Mode 4:
SPAK 2
-
+
+
+ Pot (normal)
+ Potentiometer
+
+
+
+
+ Multipos Switch
+ Flerlägesväljare
+
+
+
+ S1 Type
+ S1-ratten
+
+
+
+ S2 Type
+ S2-ratten
+
+
+
STICK 3
SPAK 3
@@ -1471,7 +1495,7 @@ Mode 4:
Spänning
-
+
Warning
Varning
@@ -1916,14 +1940,14 @@ FAI-funktionen kan inte slås av i sändaren.
MainWindow
-
+
-
+
File loaded
Filen har laddats
-
+
@@ -1969,7 +1993,7 @@ Do you want to download it now ?
Vill du ladda ned den nya versionen nu ?
-
+
Open
Öppna
@@ -1985,13 +2009,13 @@ Vill du ladda ned den nya versionen nu ?
Copyright
-
+
&%1 %2
&%1 %2
-
+
&New
&Ny
@@ -2031,14 +2055,13 @@ Vill du ladda ned den nya versionen nu ?
Spara dokumentet under nytt namn
-
&Preferences...
- &Inställningar...
+ &Konfiguration...
-
+
Edit general preferences
- Redigera sändarens generella inställningarna
+ Konfigurera Sökvägar och Firmware
@@ -2046,7 +2069,7 @@ Vill du ladda ned den nya versionen nu ?
&Sök efter uppdateringar...
-
+
Display previous message again at startup ?
Skall föregående varning visas igen vid uppstart ?
@@ -2075,7 +2098,7 @@ Version %2 finns tillgänglig.
Vill du ladda ned den nu ?
-
+
Write Models and settings from %1 to the Tx?
Skriv Modeller och Inställningar från %1 till sändaren?
@@ -2095,14 +2118,13 @@ Vill du ladda ned den nu ?
Säkerhetskopieringen misslyckades
-
Customize your &TX...
- Sändari&nställningar...
+ &Välj Sändarens Startbild...
-
+
Customize the splash screen of your TX
- Ställ in din sändares startlbild
+ Ställ din sändares startbild
@@ -2155,12 +2177,11 @@ Vill du ladda ned den nu ?
Ctrl+Alt+R
-
&Configure...
- &Kommunikationsinställningar...
+ &Kommunikationsinställningar...
-
+
Configure software for reading from and writing to the transmitter
Inställningar för mjukvaran som kommunicerar med sändaren
@@ -2225,33 +2246,33 @@ Vill du ladda ned den nu ?
Visa information om programmet
-
-
+
+
Recent Files
Senaste Filer
-
+
&File
&Arkiv
-
-
+
+
Companion - Models and Settings Editor - %1 - profile %2
Companion - Editor för Modeller och Inställningar - %1 - profile %2
-
-
+
+
Companion - Models and Settings Editor - %1
Companion - Editor för Modeller och Inställningar - %1
-
+
Checking for updates
Letar efter uppdateringar
@@ -2266,7 +2287,7 @@ Vill du ladda ned den nu ?
Ladda inte ned versionen (r%1)?
-
+
OpenTX Home Page: <a href='%1'>%1</a>
OpenTX Hemsida: <a href='%1'>%1</a>
@@ -2351,12 +2372,17 @@ Vill du ladda ned den nu ?
Läs firmware från sändaren
-
+
+ Set Menu Language
+ Ställ in Menyspråk
+
+
+
&Edit
&Redigera
-
+
&Help
&Hjälp
@@ -2381,12 +2407,12 @@ Vill du ladda ned den nu ?
Redo
-
+
Contributors &List...
&Bidragsgivare...
-
+
Display previous warning again at startup ?
SKall föregående varning visas igen vid uppstart ?
@@ -2395,8 +2421,8 @@ Vill du ladda ned den nu ?
-
-
+
+
@@ -2408,21 +2434,21 @@ Vill du ladda ned den nu ?
Fel
-
+
Cannot write file %1:
%2.
Filen %1 kunde inte skrivas:
%2.
-
+
New release available
En ny version finns tillgänglig
-
+
Error opening file %1:
@@ -2431,7 +2457,7 @@ Vill du ladda ned den nu ?
%2.
-
+
Compilation server termporary failure, try later
Tillfälligt fel i byggservern. Försök igen senare
@@ -2448,7 +2474,7 @@ Vill du ladda ned den nu ?
Okänt server-fel. Försök igen senare
-
+
Compare...
Jämför...
@@ -2478,23 +2504,23 @@ Vill du ladda ned den nu ?
Varning
-
-
+
+
Firmware Profiles
Profiler för Firmware
-
+
&Read/Write
&Läs/Skriv
-
+
Write
Skriv
-
+
Unable to find file %1!
Kan inte hitta filen %1 !
@@ -2506,7 +2532,7 @@ Vill du ladda ned den nu ?
%2.
-
+
&loadBackup...
ladda&Backup...
@@ -2548,7 +2574,7 @@ Vill du ladda ned den nu ?
Det går inte att identifiera sändaren. Verifiera att EEPOROM-skivan är ansluteten.
-
+
Yes
Ja
@@ -2588,7 +2614,29 @@ Vill du ladda ned den nu ?
Release notes innehåller väldigt viktig information. Vill du läsa dem nu?
-
+
+ The selected language will be used the next time you start Companion.
+ Språket som valts kommer att användas nästa gång Companion startas.
+
+
+
+
+
+ OK
+ OK
+
+
+
+ The new theme will be loaded the next time you start Companion.
+ De nya ikonerna kommer att användas nästa gång Companion startas.
+
+
+
+ The icon size will be used the next time you start Companion.
+ Ikonernas storlek kommer att justeras nästa gång Companion startas.
+
+
+
Firmware updates
Firmware-uppdatering
@@ -2701,7 +2749,12 @@ Starta skrivningen i alla fall ?
Om Companion
-
+
+ &General Preferences...
+ &Generella Inställningar...
+
+
+
Check for new version of Companion
Sök efter ny version av Companion
@@ -2726,7 +2779,211 @@ Starta skrivningen i alla fall ?
Visa firmware-förändringar
-
+
+ Configure transmitter start screen...
+ Konfigurera sändarens startbild...
+
+
+
+ &Configure connection software...
+ Inställningar för &kommunikation...
+
+
+
+ Classic
+ Klassiskt
+
+
+
+ The multicolor classical Companion icon theme
+ Det flerfärgade klassiska Companion-temat
+
+
+
+ A monochrome black icon theme
+ Ett monokromt svart tema
+
+
+
+ A monochrome white icon theme
+ Ett monokromt vitt tema
+
+
+
+ A monochrome blue icon theme
+ Ett monokromt blått tema
+
+
+
+ Small
+ Liten
+
+
+
+ Use small toolbar icons
+ Använd små ikoner i verktygsfälten
+
+
+
+ Use normal size toolbar icons
+ Använd normalstora ikoner i verktygsfälten
+
+
+
+ Normal
+ Normal
+
+
+
+ Use big toolbar icons
+ Använd stora ikoner i verktygsfälten
+
+
+
+ Big
+ Stor
+
+
+
+ Use huge toolbar icons
+ Använd mycket stora ikoner i verktygsfälten
+
+
+
+ Huge
+ Mycket Stor
+
+
+
+ System default language
+ Systemspråk
+
+
+
+ Use system default language in menus
+ Använd systemspråket i menyerna (om tillgängligt)
+
+
+
+ Czech
+ Czeckiska
+
+
+
+ Use Czech in menus
+ Använd Tjeckiska i menyerna
+
+
+
+ German
+ Tyska
+
+
+
+ Use German in menus
+ Använd Tyska i menyerna
+
+
+
+ English
+ Engelska
+
+
+
+ Use English in menus
+ Använd Engelska i menyerna
+
+
+
+ French
+ Franska
+
+
+
+ Use French in menus
+ Använd Franska i menyerna
+
+
+
+ Italian
+ Italienska
+
+
+
+ Use Italian in menus
+ Använd Italienska i menyerna
+
+
+
+ Hebrew
+ Hebreiska
+
+
+
+ Use Hebrew in menus
+ Använd Hebreiska i menyerna
+
+
+
+ Polish
+ Polska
+
+
+
+ Use Polish in menus
+ Använd Polska i menyerna
+
+
+
+ Portuguese
+ Portugisiska
+
+
+
+ Use Portuguese in menus
+ Använd Portugisiska i menyerna
+
+
+
+ Swedish
+ Svenska
+
+
+
+ Use Swedish in menus
+ Använd Svenska i menyerna
+
+
+
+ Russian
+ Ryska
+
+
+
+ Use Russian in menus
+ Använd Ryska i menyerna
+
+
+ Set MenuLanguage
+ Ställ in menyspråk
+
+
+
+ Set Icon Theme
+ Ställ in Ikontema
+
+
+
+ Set Icon Size
+ Ställ in Ikonstorlek
+
+
+
+ &Settings
+ &Inställningar
+
+
+
Invalid Models and Settings File %1
Filen innehåller inte Modeller och Inställningar: %1
@@ -2860,7 +3117,7 @@ Vill du spara förändringarna?
The backup dir set in preferences does not exist
- Katalog för säkerhetskopiering saknas i inställningarna
+ Den katalog som konfigurerats för säkerhetskopiering existerar inte
@@ -2883,7 +3140,7 @@ Vill du spara förändringarna?
Firmware in radio is of a different family of eeprom written, check file and preferences!
- sändarens firmware är av en annan typ än den aktuella. Kontrollera Arkiv och Inställningar!
+ sändarens firmware är av en annan typ än den aktuella. Kontrollera konfigurationen!
@@ -3727,8 +3984,8 @@ p, li { white-space: pre-wrap; }
QObject
-
-
+
+
P1
P1
@@ -3773,7 +4030,7 @@ p, li { white-space: pre-wrap; }
T2
-
+
th9x
th9x
@@ -3823,16 +4080,16 @@ p, li { white-space: pre-wrap; }
Starta loggning
-
+
-
-
+
+
----
----
-
-
+
+
Rud
Rod
@@ -3856,7 +4113,7 @@ p, li { white-space: pre-wrap; }
-
+
Timer1
Timer1
@@ -3882,7 +4139,7 @@ p, li { white-space: pre-wrap; }
Modelldata sparades, men med dessa varningar:
-
+
ersky9x
ersky9x
@@ -3894,7 +4151,7 @@ p, li { white-space: pre-wrap; }
Det finns ännu ingen simulator för denna typ av firmware
-
+
REa
REa
@@ -3942,198 +4199,198 @@ p, li { white-space: pre-wrap; }
-
+
LS1
LB1
-
-
+
+
LS2
LB2
-
-
+
+
LS3
LB3
-
-
+
+
LS4
LB4
-
-
+
+
LS5
LB5
-
-
+
+
LS6
LB6
-
-
+
+
LS7
LB7
-
-
+
+
LS8
LB8
-
-
+
+
LS9
LB9
-
-
+
+
LSA
LBA
-
-
+
+
LSB
LBB
-
-
+
+
LSC
LBC
-
-
+
+
LSD
LBD
-
-
+
+
LSE
LBE
-
-
+
+
LSF
LBF
-
-
+
+
LSG
LBG
-
-
+
+
LSH
LBH
-
-
+
+
LSI
LBI
-
-
+
+
LSJ
LBJ
-
-
+
+
LSK
LBK
-
-
+
+
LSL
LBL
-
-
+
+
LSM
LBM
-
-
+
+
LSN
LBN
-
-
+
+
LSO
LBO
-
-
+
+
LSP
LBP
-
-
+
+
LSQ
LBQ
-
-
+
+
LSR
LBR
-
-
+
+
LSS
LBS
-
-
+
+
LST
LBT
-
-
+
+
LSU
LBU
-
-
+
+
LSV
LBV
-
-
+
+
LSW
LBW
-
+
Input %1
Filter %1
@@ -4148,55 +4405,46 @@ p, li { white-space: pre-wrap; }
PPM%1
-
-
+
THR
GAS
-
RUD
- ROD
+ ROD
-
ELE
- HÖJ
+ HÖJ
-
ID0
- ID0
+ ID0
-
ID1
- ID1
+ ID1
-
ID2
- ID2
+ ID2
-
AIL
- SKE
+ SKE
-
GEA
- LAN
+ LAN
-
TRN
- TRN
+ TRN
-
-
+
+
ON
På
@@ -4207,7 +4455,7 @@ p, li { white-space: pre-wrap; }
Av
-
+
Safety %1
Säkring %1
@@ -4217,7 +4465,7 @@ p, li { white-space: pre-wrap; }
th9x stödjer inte inställningshjul för detta sändarkort
-
+
TrmR
TrmR
@@ -4252,7 +4500,7 @@ p, li { white-space: pre-wrap; }
Vario
-
+
All
För alla händelser
@@ -4264,7 +4512,7 @@ p, li { white-space: pre-wrap; }
Telemetri
-
+
Play Value
Spela Värde
@@ -4394,7 +4642,7 @@ p, li { white-space: pre-wrap; }
Belysning
-
+
Own trim
Egen trim
@@ -4425,7 +4673,7 @@ p, li { white-space: pre-wrap; }
Det går inte att använda Expo på en specialkurva i open9x
-
+
Support for frsky telemetry mod
Stöd för FrSky telemeri
@@ -4651,19 +4899,19 @@ p, li { white-space: pre-wrap; }
-
-
+
+
GV%1
GV%1
-
-
+
+
---
----
-
+
Rud Trim
Rod.Trim
@@ -4692,6 +4940,11 @@ p, li { white-space: pre-wrap; }
Swedish
Svenska
+
+
+ Polish
+ Polska
+
CH%1
@@ -4708,7 +4961,7 @@ p, li { white-space: pre-wrap; }
Paus i bakgrundsmusiken
-
+
Delay %1 sec
Fördröjning %1 s
@@ -4728,8 +4981,8 @@ p, li { white-space: pre-wrap; }
Eget värde
-
-
+
+
-GV%1
-GV%1
@@ -4757,7 +5010,7 @@ p, li { white-space: pre-wrap; }
-
+
S1
S1
@@ -4846,7 +5099,7 @@ p, li { white-space: pre-wrap; }
Justera GV%1
-
+
<font color=red><b>Inconsistent parameter</b></font>
@@ -4898,7 +5151,7 @@ p, li { white-space: pre-wrap; }
Ökning
-
+
Yellow
Gul
@@ -4929,12 +5182,12 @@ p, li { white-space: pre-wrap; }
-
+
None
Ingen
-
+
Imperial
Imperial
@@ -4944,7 +5197,7 @@ p, li { white-space: pre-wrap; }
Metrisk
-
+
Extra Fine
Extrafin
@@ -5074,7 +5327,67 @@ p, li { white-space: pre-wrap; }
-
+
+ S11
+ S11
+
+
+
+ S12
+ S12
+
+
+
+ S13
+ S13
+
+
+
+ S14
+ S14
+
+
+
+ S15
+ S15
+
+
+
+ S16
+ S16
+
+
+
+ S21
+ S21
+
+
+
+ S22
+ S22
+
+
+
+ S23
+ S23
+
+
+
+ S24
+ S24
+
+
+
+ S25
+ S25
+
+
+
+ S26
+ S26
+
+
+
ONE
ONE
@@ -5129,7 +5442,7 @@ p, li { white-space: pre-wrap; }
!Kurva(%1)
-
+
FM%1
FM%1
@@ -5180,7 +5493,7 @@ p, li { white-space: pre-wrap; }
Portugisiska
-
+
!Flight mode %1
!Flygläge %1
@@ -5200,7 +5513,7 @@ p, li { white-space: pre-wrap; }
Flygläge %1 värde
-
+
openTx only accepts %1 points in all curves
openTX accepterar bar %1 punkter i alla kurvor
@@ -5223,14 +5536,14 @@ p, li { white-space: pre-wrap; }
OpenTX accepterar inte detta antal kanaler
-
+
Your radio probably uses a wrong firmware,
eeprom size is 4096 but only the first 2048 are used
Din sändare har antagligen laddats med felaktig programvara.
eeprom-storleken är 4096, men enbart den första hälften används
-
+
Support for MAVLINK devices
Stöd för MAVLINK-enheter
@@ -5724,96 +6037,60 @@ Gasen reverseras om alternativet väljs. Tomgång ligger då uppåt. Trim och ga
Bestående mAh
-
Telemetry screen 1
- Telemetriskärm 1
+ Telemetriskärm 1
-
-
-
Custom Screen Type
- Visa data som
+ Visa data som
-
-
-
Nums
- Nummer
+ Nummer
-
-
-
Bars
- Staplar
+ Staplar
-
-
-
Source
- Källa
+ Källa
-
-
-
Min
- Min
+ Min
-
-
-
Gauge
- Mätare
+ Mätare
-
-
-
Max
- Max
+ Max
-
-
-
Gauge 1
- Mätare 1
+ Mätare 1
-
-
-
Gauge 2
- Mätare 2
+ Mätare 2
-
-
-
Gauge 3
- Mätare 3
+ Mätare 3
-
-
-
Gauge 4
- Mätare 4
+ Mätare 4
-
Telemetry screen 2
- Telemetriskärm 2
+ Telemetriskärm 2
-
Telemetry screen 3
- Telemetriskärm 3
+ Telemetriskärm 3
@@ -5930,20 +6207,68 @@ Gasen reverseras om alternativet väljs. Tomgång ligger då uppåt. Trim och ga
mAmpere (mA)
-
+
Range
Räckvidd
+
+ TelemetryCustomScreen
+
+
+ Form
+ Form
+
+
+
+ Custom Screen Type
+ Visa data som
+
+
+
+ Nums
+ Nummer
+
+
+
+ Bars
+ Staplar
+
+
+
+ Min
+ Min
+
+
+
+ Source
+ Ursprung
+
+
+
+ Gauge
+ Mätare
+
+
+
+ Max
+ Max
+
+
TelemetryPanel
-
+
+ Telemetry screen %1
+ Telemetriskärm %1
+
+
+
Winged Shadow How High
Winged Shadow How High
-
+
Winged Shadow How High (not supported)
Winged Shadow How High (stöds ej)
@@ -6376,7 +6701,7 @@ m2560 för v4.1-kort
Customize Splash
- Välj Startbild
+ Välj Sändarens Startbild
@@ -6793,30 +7118,30 @@ m2560 för v4.1-kort
-
+
Offset
Offset
-
+
-
-
+
+
Min
Min
-
+
-
-
+
+
Max
Max
-
+
Invert
@@ -6931,70 +7256,70 @@ m2560 för v4.1-kort
-
+
Analog
Analog
-
-
+
+
Unit
Enhet
-
-
+
+
Scale
Skala
-
+
-
+
A%1
A%1
-
-
+
+
Alarm 1
Alarm 1
-
-
+
+
Alarm 2
Alarm 2
-
+
-
+
Type
Typ
-
+
-
+
Condition
Villkor
-
+
-
+
Value
Värde
-
+
Logical Switches
Logiska Brytare
@@ -7011,36 +7336,36 @@ m2560 för v4.1-kort
-
+
RSSI Alarm
RSSI-alarm
-
-
+
+
Telemetry Bars
Telemetri-staplar
-
-
+
+
Bar Number
Stapelnummer
-
-
+
+
Source
Källa
-
-
+
+
Custom Telemetry View
Egna inställning av telemetriskärmen
-
+
Print Document
Skriv dokument
@@ -7050,7 +7375,7 @@ m2560 för v4.1-kort
Välj PDF-fil att skriva till
-
+
No name
Inget namn
@@ -8246,15 +8571,14 @@ Tryck på Avbryt för att avburyta kalibreringen
Preferences
- Inställningar
+ Konfiguration
-
Language (requires restart)
- Språk (kräver omstart)
+ Språk (kräver omstart)
-
+
Recent History Size
Loggstorlek
@@ -8265,7 +8589,7 @@ Tryck på Avbryt för att avburyta kalibreringen
Nedladdning
-
+
Default Channel Order
Kanalordning
@@ -8279,17 +8603,17 @@ This is used by the templated to determine which channel goes to what number out
Detta används av mallen för att koppla kanal till output-nummer.
-
+
Show Splash At Start
Visa Startbild
-
+
Default Stick Mode
Spaktilldelning
-
+
Mode selection:
Mode 1:
@@ -8350,73 +8674,61 @@ Mode 4:
Mode 4 (SKE GAS HÖJ ROD)
-
+
Automatic Backup Folder
Säkerhetskopiera till folder
-
+
Firmware
Firmware
-
Theme
- Tema
+ Tema
-
-
Requires restart
- Kräver omstart
+ Kräver omstart
-
Classic
- Klassiskt
+ Klassiskt
-
Monochrome
- Monokromt
+ Monokromt
-
MonoWhite
- Monokromt Vitt
+ Monokromt Vitt
-
MonoBlue
- Monokromt Blått
+ Monokromt Blått
-
Icon size
- Ikonstorlek
+ Ikonstorlek
-
Small
- Liten
+ Liten
-
Normal
- Normal
+ Normal
-
Big
- Stor
+ Stor
-
Huge
- Enorm
+ Enorm
-
+
Find Executable
Sök Program
@@ -8431,36 +8743,36 @@ Mode 4:
Sök efter uppdateringar vid start
-
-
+
+
...
...
-
+
Splash library behaviour
Beteende för bildbibliotek
-
+
Personal splash library
Personligt bildbibliotek
-
+
Joystick
Joystick
-
-
+
+
-
+
Open Folder
Öppna katalog
-
+
@@ -8506,12 +8818,12 @@ Mode 4:
Kryssruta
-
+
Check for updates
Sök efter uppdateringar
-
+
Blue
Blu
Blå
@@ -8537,7 +8849,7 @@ Mode 4:
Gul
-
+
Enable
Slå på
@@ -8547,28 +8859,28 @@ Mode 4:
Kalibrera
-
+
Open Image
Öppna bild
-
+
Invert Pixels
Invertera bild
-
+
FwInfo
Firmware-info
-
+
Last downloaded release: %1
Senast nedladdade release: %1
-
-
+
+
No joysticks found
Ingen joystick hittades
@@ -8599,7 +8911,7 @@ Mode 4:
Fel
-
+
The selected firmware has never been downloaded by Companion.
Firmware-filen har aldrig laddats ned av Companion.
@@ -8609,18 +8921,18 @@ Mode 4:
Firmware-filen kan inte laddas ned av Companion.
-
+
Cannot load %1.
%1 kunde inte laddas.
-
+
Image stored in settings
Bilden lagras i inställningar
-
+
Include companion splashes
Användarens bilder och companion-bilder
@@ -8630,7 +8942,7 @@ Mode 4:
Enbart användarens bilder
-
+
Custom TX splash screen
Egen uppstartsbild
@@ -8640,12 +8952,12 @@ Mode 4:
Fråga om skrivning efter Nedladdning
-
+
Language
Språk
-
+
Profile Name
Profilnamn
@@ -8655,22 +8967,22 @@ Mode 4:
Spara Profil
-
+
Profile slot
Profilplats
-
+
auto backup before write
säkerhetskopiera innan skrivning
-
+
Select your library folder
Välj bibliotekskatalog
-
+
Export Profile
Exportera Profil
@@ -8680,7 +8992,7 @@ Mode 4:
Importera Profil
-
+
Automatically add version number to the filename after download
Lägg automatiskt till ett versionsnummer till filnamnet
@@ -8712,22 +9024,22 @@ Får skilja från språket för mjukvaran
Öppna profil för import
-
+
Simu BackLight
Simulatorbelysning
-
+
Processor ID
Processortyp
-
+
Simulator capture folder
Katalog för simulator-data
-
+
Use clipboard only
Använd bara clipboard
@@ -8742,12 +9054,12 @@ Får skilja från språket för mjukvaran
Profilnamn saknas, profilplats %1 kommer att raderas.<br> Är du säker?
-
+
Check for selected Fw updates
Sök efter updatering av vald FW
-
+
Ask use of wizard for new models
Använd modell-guiden för nya modeller
@@ -8757,7 +9069,7 @@ Får skilja från språket för mjukvaran
Minns brytare i simulator
-
+
SD Structure path
Sökväg till SD-struktur
@@ -9115,7 +9427,7 @@ Får skilja från språket för mjukvaran
Stapelnummer
-
+
Print Document
Skriv dokument
@@ -9125,7 +9437,7 @@ Får skilja från språket för mjukvaran
Välj PDF-fil att skriva till
-
+
OUT
UT
@@ -9217,7 +9529,7 @@ Får skilja från språket för mjukvaran
Flygläge
-
+
ODF files (*.odt);;PDF Files(*.pdf);;HTML-Files (*.htm *.html);;All Files (*)
ODF filer (*.odt);;PDF Filer(*.pdf);;HTML-Filer (*.htm *.html);;Alla Filer (*)
@@ -9225,7 +9537,7 @@ Får skilja från språket för mjukvaran
simulatorDialog
-
+
P1
P1
@@ -9240,7 +9552,7 @@ Får skilja från språket för mjukvaran
P3
-
+
THR
GAS
@@ -9261,38 +9573,38 @@ Får skilja från språket för mjukvaran
-
+
Hold X
Håll X
-
-
+
+
Fix X
Fixera X
-
-
+
+
Fix Y
Fixera Y
-
-
+
+
Hold Y
Håll Y
-
+
-
+
TextLabel
Textettikett
-
+
TRN
TRN
@@ -9307,7 +9619,7 @@ Får skilja från språket för mjukvaran
ID0
-
+
ID1
ID1
@@ -9322,20 +9634,20 @@ Får skilja från språket för mjukvaran
Summer
-
+
-
+
Right Double Click to Reset
Höger dubbelklick nollställer
-
+
Companion Simulator
Companion Simulator
-
+
9x Simulator
Simulator för 9x
@@ -9345,7 +9657,167 @@ Får skilja från språket för mjukvaran
Utgångar
-
+
+ LS1
+ LB1
+
+
+
+ LS2
+ LB2
+
+
+
+ LS3
+ LB3
+
+
+
+ LS4
+ LB4
+
+
+
+ LS5
+ LB5
+
+
+
+ LS6
+ LB6
+
+
+
+ LS7
+ LB7
+
+
+
+ LS8
+ LB8
+
+
+
+ LS9
+ LB9
+
+
+
+ LSA
+ LBA
+
+
+
+ LSB
+ LBB
+
+
+
+ LSC
+ LBC
+
+
+
+ LSD
+ LBD
+
+
+
+ LSE
+ LBE
+
+
+
+ LSF
+ LBF
+
+
+
+ LSG
+ LBG
+
+
+
+ LSH
+ LBH
+
+
+
+ LSI
+ LBI
+
+
+
+ LSJ
+ LBJ
+
+
+
+ LSK
+ LBK
+
+
+
+ LSL
+ LBL
+
+
+
+ LSM
+ LBM
+
+
+
+ LSN
+ LBN
+
+
+
+ LSO
+ LBO
+
+
+
+ LSP
+ LBP
+
+
+
+ LSQ
+ LBQ
+
+
+
+ LSR
+ LBR
+
+
+
+ LSS
+ LBS
+
+
+
+ LST
+ LBT
+
+
+
+ LSU
+ LBU
+
+
+
+ LSV
+ LBV
+
+
+
+ LSW
+ LBW
+
+
+
CH1
KN1
@@ -9390,7 +9862,7 @@ Får skilja från språket för mjukvaran
KN5
-
+
CH13
KN13
@@ -9425,7 +9897,7 @@ Får skilja från språket för mjukvaran
KN16
-
+
@@ -9434,7 +9906,7 @@ Får skilja från språket för mjukvaran
-
+
@@ -9476,7 +9948,7 @@ Får skilja från språket för mjukvaran
Simulerar
-
+
0 %
@@ -9488,164 +9960,132 @@ Får skilja från språket för mjukvaran
- Fligmod: %1(%2)
-
CS1
- LB1
+ LB1
-
CS2
- LB2
+ LB2
-
CS3
- LB3
+ LB3
-
CS4
- LB4
+ LB4
-
CS5
- LB5
+ LB5
-
CS6
- LB6
+ LB6
-
CS7
- LB7
+ LB7
-
CS8
- LB8
+ LB8
-
CS9
- LB9
+ LB9
-
CSA
- LBA
+ LBA
-
CSB
- LBB
+ LBB
-
CSC
- LBC
+ LBC
-
CSD
- LBD
+ LBD
-
CSE
- LBE
+ LBE
-
CSF
- LBF
+ LBF
-
CSG
- LBG
+ LBG
-
CSH
- LBH
+ LBH
-
CSI
- LBI
+ LBI
-
CSJ
- LBJ
+ LBJ
-
CSK
- LBK
+ LBK
-
CSL
- LBL
+ LBL
-
CSM
- LBM
+ LBM
-
CSN
- LBN
+ LBN
-
CSO
- LBO
+ LBO
-
CSP
- LBP
+ LBP
-
CSQ
- LBQ
+ LBQ
-
CSR
- LBR
+ LBR
-
CSS
- LBS
+ LBS
-
CST
- LBT
+ LBT
-
CSU
- LBU
+ LBU
-
CSV
- LBV
+ LBV
-
CSW
- LBW
+ LBW
@@ -9792,7 +10232,7 @@ Får skilja från språket för mjukvaran
-
+
@@ -9802,7 +10242,7 @@ Får skilja från språket för mjukvaran
-100.1
-
+
CH9
KN9
@@ -9842,7 +10282,7 @@ Får skilja från språket för mjukvaran
KN5
-
+
CH13
KN13
@@ -9876,6 +10316,166 @@ Får skilja från språket för mjukvaran
CH16
KN16
+
+
+ LSK
+ LBK
+
+
+
+ LSC
+ LBC
+
+
+
+ LSD
+ LBD
+
+
+
+ LS7
+ LB7
+
+
+
+ LSL
+ LBL
+
+
+
+ LSB
+ LBB
+
+
+
+ LS1
+ LB1
+
+
+
+ LSH
+ LBH
+
+
+
+ LSG
+ LBG
+
+
+
+ LSE
+ LBE
+
+
+
+ LSF
+ LBF
+
+
+
+ LS8
+ LB8
+
+
+
+ LS9
+ LB9
+
+
+
+ LSA
+ LBA
+
+
+
+ LSM
+ LBM
+
+
+
+ LSJ
+ LBJ
+
+
+
+ LSI
+ LBI
+
+
+
+ LS4
+ LB4
+
+
+
+ LS5
+ LB5
+
+
+
+ LS2
+ LB2
+
+
+
+ LS3
+ LB3
+
+
+
+ LS6
+ LB6
+
+
+
+ LSN
+ LBN
+
+
+
+ LSO
+ LBO
+
+
+
+ LSP
+ LBP
+
+
+
+ LSQ
+ LBQ
+
+
+
+ LSR
+ LBR
+
+
+
+ LSS
+ LBS
+
+
+
+ LST
+ LBT
+
+
+
+ LSU
+ LBU
+
+
+
+ LSV
+ LBV
+
+
+
+ LSW
+ LBW
+
@@ -9908,7 +10508,7 @@ Får skilja från språket för mjukvaran
Simulerar
-
+
SF
@@ -9949,164 +10549,132 @@ Får skilja från språket för mjukvaran
- Fligmod: %1(%2)
-
CSK
- LBK
+ LBK
-
CSC
- LBC
+ LBC
-
CSD
- LBD
+ LBD
-
CS7
- LB7
+ LB7
-
CSL
- LBL
+ LBL
-
CSB
- LBB
+ LBB
-
CS1
- LB1
+ LB1
-
CSH
- LBH
+ LBH
-
CSG
- LBG
+ LBG
-
CSE
- LBE
+ LBE
-
CSF
- LBF
+ LBF
-
CS8
- LB8
+ LB8
-
CS9
- LB9
+ LB9
-
CSA
- LBA
+ LBA
-
CSM
- LBM
+ LBM
-
CSJ
- LBJ
+ LBJ
-
CSI
- LBI
+ LBI
-
CS4
- LB4
+ LB4
-
CS5
- LB5
+ LB5
-
CS2
- LB2
+ LB2
-
CS3
- LB3
+ LB3
-
CS6
- LB6
+ LB6
-
CSN
- LBN
+ LBN
-
CSO
- LBO
+ LBO
-
CSP
- LBP
+ LBP
-
CSQ
- LBQ
+ LBQ
-
CSR
- LBR
+ LBR
-
CSS
- LBS
+ LBS
-
CST
- LBT
+ LBT
-
CSU
- LBU
+ LBU
-
CSV
- LBV
+ LBV
-
CSW
- LBW
+ LBW
diff --git a/companion/src/xsimulatordialog.ui b/companion/src/xsimulatordialog.ui
index 4a5454c5d..b1b5b4859 100644
--- a/companion/src/xsimulatordialog.ui
+++ b/companion/src/xsimulatordialog.ui
@@ -2311,6 +2311,7 @@ border-radius: 4px;
-
+
false
@@ -2893,7 +2894,7 @@ border-radius: 4px;
-
- CSK
+ LSK
Qt::AlignCenter
@@ -2924,7 +2925,7 @@ border-radius: 4px;
-
- CSC
+ LSC
Qt::AlignCenter
@@ -2955,7 +2956,7 @@ border-radius: 4px;
-
- CSD
+ LSD
Qt::AlignCenter
@@ -2986,7 +2987,7 @@ border-radius: 4px;
-
- CS7
+ LS7
Qt::AlignCenter
@@ -3017,7 +3018,7 @@ border-radius: 4px;
-
- CSL
+ LSL
Qt::AlignCenter
@@ -3048,7 +3049,7 @@ border-radius: 4px;
-
- CSB
+ LSB
Qt::AlignCenter
@@ -3079,7 +3080,7 @@ border-radius: 4px;
-
- CS1
+ LS1
Qt::AlignCenter
@@ -3110,7 +3111,7 @@ border-radius: 4px;
-
- CSH
+ LSH
Qt::AlignCenter
@@ -3141,7 +3142,7 @@ border-radius: 4px;
-
- CSG
+ LSG
Qt::AlignCenter
@@ -3172,7 +3173,7 @@ border-radius: 4px;
-
- CSE
+ LSE
Qt::AlignCenter
@@ -3203,7 +3204,7 @@ border-radius: 4px;
-
- CSF
+ LSF
Qt::AlignCenter
@@ -3234,7 +3235,7 @@ border-radius: 4px;
-
- CS8
+ LS8
Qt::AlignCenter
@@ -3265,7 +3266,7 @@ border-radius: 4px;
-
- CS9
+ LS9
Qt::AlignCenter
@@ -3296,7 +3297,7 @@ border-radius: 4px;
-
- CSA
+ LSA
Qt::AlignCenter
@@ -3327,7 +3328,7 @@ border-radius: 4px;
-
- CSM
+ LSM
Qt::AlignCenter
@@ -3358,7 +3359,7 @@ border-radius: 4px;
-
- CSJ
+ LSJ
Qt::AlignCenter
@@ -3389,7 +3390,7 @@ border-radius: 4px;
-
- CSI
+ LSI
Qt::AlignCenter
@@ -3420,7 +3421,7 @@ border-radius: 4px;
-
- CS4
+ LS4
Qt::AlignCenter
@@ -3451,7 +3452,7 @@ border-radius: 4px;
-
- CS5
+ LS5
Qt::AlignCenter
@@ -3482,7 +3483,7 @@ border-radius: 4px;
-
- CS2
+ LS2
Qt::AlignCenter
@@ -3513,7 +3514,7 @@ border-radius: 4px;
-
- CS3
+ LS3
Qt::AlignCenter
@@ -3544,7 +3545,7 @@ border-radius: 4px;
-
- CS6
+ LS6
Qt::AlignCenter
@@ -3575,7 +3576,7 @@ border-radius: 4px;
-
- CSN
+ LSN
Qt::AlignCenter
@@ -3606,7 +3607,7 @@ border-radius: 4px;
-
- CSO
+ LSO
Qt::AlignCenter
@@ -3637,7 +3638,7 @@ border-radius: 4px;
-
- CSP
+ LSP
Qt::AlignCenter
@@ -3668,7 +3669,7 @@ border-radius: 4px;
-
- CSQ
+ LSQ
Qt::AlignCenter
@@ -3699,7 +3700,7 @@ border-radius: 4px;
-
- CSR
+ LSR
Qt::AlignCenter
@@ -3730,7 +3731,7 @@ border-radius: 4px;
-
- CSS
+ LSS
Qt::AlignCenter
@@ -3761,7 +3762,7 @@ border-radius: 4px;
-
- CST
+ LST
Qt::AlignCenter
@@ -3792,7 +3793,7 @@ border-radius: 4px;
-
- CSU
+ LSU
Qt::AlignCenter
@@ -3823,7 +3824,7 @@ border-radius: 4px;
-
- CSV
+ LSV
Qt::AlignCenter
@@ -3854,7 +3855,7 @@ border-radius: 4px;
-
- CSW
+ LSW
Qt::AlignCenter
diff --git a/radio/src/Makefile b/radio/src/Makefile
index 97083ad00..12fb145b1 100644
--- a/radio/src/Makefile
+++ b/radio/src/Makefile
@@ -285,7 +285,7 @@ ifeq ($(PCB), $(filter $(PCB), STD 9X 9XR))
ARCH = AVR
TRGT = avr-
MCU = atmega64
- OPT = s
+ OPT = s
SDCARD = NO
THR_TRACE = NO
INCDIRS += targets/stock
diff --git a/radio/src/gui/menu_general.cpp b/radio/src/gui/menu_general.cpp
index 28656db26..25c9a28c5 100644
--- a/radio/src/gui/menu_general.cpp
+++ b/radio/src/gui/menu_general.cpp
@@ -1037,19 +1037,17 @@ void menuGeneralVersion(uint8_t event)
{
SIMPLE_MENU(STR_MENUVERSION, menuTabDiag, e_Vers, 1);
- lcd_putsLeft(2*FH, stamp1);
- lcd_putsLeft(3*FH, stamp2);
- lcd_putsLeft(4*FH, stamp3);
+ lcd_putsLeft(2*FH, vers_stamp);
+
#if defined(PCBSKY9X) && !defined(REVA)
if (Coproc_valid == 1) {
- lcd_putsLeft(5*FH, PSTR("CoPr:"));
- lcd_outdez8(10*FW, 5*FH, Coproc_read);
+ lcd_putsLeft(6*FH, PSTR("CoPr:"));
+ lcd_outdez8(10*FW, 6*FH, Coproc_read);
}
else {
- lcd_putsLeft(5*FH, PSTR("CoPr: ---"));
+ lcd_putsLeft(6*FH, PSTR("CoPr: ---"));
}
-#endif
- lcd_putsLeft(7*FH, eeprom_stamp);
+#endif
}
void displayKeyState(uint8_t x, uint8_t y, EnumKeys key)
diff --git a/radio/src/gui/menu_model.cpp b/radio/src/gui/menu_model.cpp
index 49d240209..cfd6474d1 100644
--- a/radio/src/gui/menu_model.cpp
+++ b/radio/src/gui/menu_model.cpp
@@ -2271,7 +2271,8 @@ void DrawCurve(uint8_t offset=0)
uint8_t i = 0;
do {
- point_t point = getPoint(i++);
+ point_t point = getPoint(i);
+ i++;
if (point.x == 0) break;
lcd_filled_rect(point.x-offset, point.y-1, 3, 3, SOLID, FORCE); // do markup square
} while(1);
@@ -3239,7 +3240,7 @@ static uint8_t s_copySrcCh;
#define MIX_LINE_SRC_POS 4*FW-1
#if LCD_W >= 212
- #define EXPO_LINE_WEIGHT_POS 8*FW+1
+ #define EXPO_LINE_WEIGHT_POS 8*FW+3
#define EXPO_LINE_SRC_POS 9*FW-2
#define EXPO_LINE_CURVE_POS 12*FW+4
#define EXPO_LINE_SWITCH_POS 17*FW-1
@@ -3251,7 +3252,7 @@ static uint8_t s_copySrcCh;
#define MIX_LINE_SWITCH_POS 16*FW+1
#define MIX_LINE_DELAY_POS 19*FW+2
#elif defined(CPUARM)
- #define EXPO_LINE_WEIGHT_POS 7*FW-1
+ #define EXPO_LINE_WEIGHT_POS 7*FW+1
#define EXPO_LINE_EXPO_POS 10*FW+5
#define EXPO_LINE_SWITCH_POS 11*FW+2
#define EXPO_LINE_SIDE_POS 14*FW+2
@@ -3263,7 +3264,7 @@ static uint8_t s_copySrcCh;
#define MIX_LINE_SWITCH_POS 16*FW
#define MIX_LINE_DELAY_POS 19*FW+7
#else
- #define EXPO_LINE_WEIGHT_POS 7*FW-1
+ #define EXPO_LINE_WEIGHT_POS 7*FW+1
#define EXPO_LINE_EXPO_POS 11*FW
#define EXPO_LINE_SWITCH_POS 11*FW+4
#if MAX_PHASES == 6
diff --git a/radio/src/gui/view_statistics.cpp b/radio/src/gui/view_statistics.cpp
index b352b85da..10573b8bd 100644
--- a/radio/src/gui/view_statistics.cpp
+++ b/radio/src/gui/view_statistics.cpp
@@ -57,15 +57,13 @@ void menuStatisticsView(uint8_t event)
return;
}
- lcd_puts( 1*FW, FH*1, STR_TM1TM2);
+ lcd_puts( 1*FW, FH*0, STR_TOTTM1TM2THRTHP);
putsTime( 5*FW+5*FWNUM+1, FH*1, timersStates[0].val, 0, 0);
putsTime( 12*FW+5*FWNUM+1, FH*1, timersStates[1].val, 0, 0);
- lcd_puts( 1*FW, FH*2, STR_THRTHP);
putsTime( 5*FW+5*FWNUM+1, FH*2, s_timeCumThr, 0, 0);
putsTime( 12*FW+5*FWNUM+1, FH*2, s_timeCum16ThrP/16, 0, 0);
- lcd_puts( 17*FW, FH*0, STR_TOT);
putsTime( 12*FW+5*FWNUM+1, FH*0, s_timeCumTot, 0, 0);
#if defined(PCBTARANIS)
diff --git a/radio/src/lcd.cpp b/radio/src/lcd.cpp
index c4532dcad..d1724b6d7 100644
--- a/radio/src/lcd.cpp
+++ b/radio/src/lcd.cpp
@@ -64,7 +64,8 @@ void lcd_img(xcoord_t x, uint8_t y, const pm_uchar * img, uint8_t idx, LcdFlags
for (uint8_t yb = 0; yb < hb; yb++) {
uint8_t *p = &displayBuf[ (y / 8 + yb) * LCD_W + x ];
for (xcoord_t i=0; i= LCD_H) break;
}
-#endif
else {
x += (c*FW/2); //EXTENDED SPACE
}
s++;
- len--;
}
lcdLastPos = x;
lcdNextPos = x;
@@ -671,7 +669,7 @@ void lcd_hlineStip(xcoord_t x, uint8_t y, xcoord_t w, uint8_t pat, LcdFlags att)
uint8_t *p = &displayBuf[ y / 8 * LCD_W + x ];
uint8_t msk = BITMASK(y%8);
- while(w) {
+ while(w--) {
if(pat&1) {
lcd_mask(p, msk, att);
pat = (pat >> 1) | 0x80;
@@ -679,7 +677,6 @@ void lcd_hlineStip(xcoord_t x, uint8_t y, xcoord_t w, uint8_t pat, LcdFlags att)
else {
pat = pat >> 1;
}
- w--;
p++;
}
}
diff --git a/radio/src/opentx.cpp b/radio/src/opentx.cpp
index c3e19f4fb..7d5514e2d 100644
--- a/radio/src/opentx.cpp
+++ b/radio/src/opentx.cpp
@@ -4845,8 +4845,9 @@ void stack_paint()
p = (unsigned char *) STACKPTR ;
q = &__bss_end ;
p -= 2 ;
- while ( p > q )
+ while ( p > q ) {
*p-- = 0x55 ;
+ }
}
uint16_t stack_free()
@@ -4854,10 +4855,7 @@ uint16_t stack_free()
unsigned char *p ;
p = &__bss_end + 1 ;
- while ( *p == 0x55 )
- {
- p+= 1 ;
- }
+ while ( *p++ == 0x55 );
return p - &__bss_end ;
}
#endif
diff --git a/radio/src/opentx.h b/radio/src/opentx.h
index 121f19e27..c243ae139 100644
--- a/radio/src/opentx.h
+++ b/radio/src/opentx.h
@@ -1196,10 +1196,7 @@ extern int8_t calcRESXto100(int16_t x);
#define TMR_VAROFS 5
-extern const char stamp1[];
-extern const char stamp2[];
-extern const char stamp3[];
-extern const char eeprom_stamp[];
+extern const char vers_stamp[];
extern uint8_t g_vbat100mV;
#define g_blinkTmr10ms (*(uint8_t*)&g_tmr10ms)
diff --git a/radio/src/stamp.cpp b/radio/src/stamp.cpp
index 72e1208bd..cce6febc4 100644
--- a/radio/src/stamp.cpp
+++ b/radio/src/stamp.cpp
@@ -40,11 +40,8 @@
#define STR2(s) #s
#define DEFNUMSTR(s) STR2(s)
-const pm_char stamp1[] PROGMEM = "VERS: " VERS_STR;
-const pm_char stamp2[] PROGMEM = "DATE: " DATE_STR;
-const pm_char stamp3[] PROGMEM = "TIME: " TIME_STR;
#if defined(PCBSTD)
-const pm_char eeprom_stamp[] PROGMEM = "EEPR: " DEFNUMSTR(EEPROM_VER) "-" DEFNUMSTR(EEPROM_VARIANT);
+const pm_char vers_stamp[] PROGMEM = "VERS\037\033: " VERS_STR "\036DATE\037\033: " DATE_STR"\036TIME\037\033: " TIME_STR "\036EEPR\037\033: " DEFNUMSTR(EEPROM_VER) "-" DEFNUMSTR(EEPROM_VARIANT);
#else
-const pm_char eeprom_stamp[] PROGMEM = "EEPR: " DEFNUMSTR(EEPROM_VER);
+const pm_char vers_stamp[] PROGMEM = "VERS\037\033: " VERS_STR "\036DATE\037\033: " DATE_STR"\036TIME\037\033: " TIME_STR "\036EEPR\037\033: " DEFNUMSTR(EEPROM_VER);
#endif
diff --git a/radio/src/translations.cpp b/radio/src/translations.cpp
index de37b6ee2..a5d0ba320 100644
--- a/radio/src/translations.cpp
+++ b/radio/src/translations.cpp
@@ -245,9 +245,7 @@ const pm_char STR_RXBATT[] PROGMEM = TR_RXBATT;
const pm_char STR_TX[] PROGMEM = TR_TXnRX;
const pm_char STR_ACCEL[] PROGMEM = TR_ACCEL;
const pm_char STR_NODATA[] PROGMEM = TR_NODATA;
-const pm_char STR_TM1TM2[] PROGMEM = TR_TM1TM2;
-const pm_char STR_THRTHP[] PROGMEM = TR_THRTHP;
-const pm_char STR_TOT[] PROGMEM = TR_TOT;
+const pm_char STR_TOTTM1TM2THRTHP[] PROGMEM = TR_TOTTM1TM2THRTHP;
const pm_char STR_TMR1LATMAXUS[] PROGMEM = TR_TMR1LATMAXUS;
const pm_char STR_TMR1LATMINUS[] PROGMEM = TR_TMR1LATMINUS;
const pm_char STR_TMR1JITTERUS[] PROGMEM = TR_TMR1JITTERUS;
diff --git a/radio/src/translations.h b/radio/src/translations.h
index 794c6b342..7b60be0e1 100644
--- a/radio/src/translations.h
+++ b/radio/src/translations.h
@@ -399,9 +399,7 @@ extern const pm_char STR_TX[];
#define STR_RX (STR_TX+OFS_RX)
extern const pm_char STR_ACCEL[];
extern const pm_char STR_NODATA[];
-extern const pm_char STR_TM1TM2[];
-extern const pm_char STR_THRTHP[];
-extern const pm_char STR_TOT[];
+extern const pm_char STR_TOTTM1TM2THRTHP[];
extern const pm_char STR_TMR1LATMAXUS[];
extern const pm_char STR_TMR1LATMINUS[];
extern const pm_char STR_TMR1JITTERUS[];
diff --git a/radio/src/translations/cz.h.txt b/radio/src/translations/cz.h.txt
index 47b61a726..3655f1cb4 100644
--- a/radio/src/translations/cz.h.txt
+++ b/radio/src/translations/cz.h.txt
@@ -35,7 +35,7 @@
*/
/* Formatting octal codes available in TR_ strings:
* \037\x -sets LCD x-coord (x value in octal)
- * \036 -newline (ARM boards only)
+ * \036 -newline
* \001 to \035 -extended spacing (value * FW/2)
* \0 -ends actual string
*/
@@ -304,7 +304,7 @@
#define TR_VSWASHTYPE "--- ""120 ""120X""140 ""90\0"
#define LEN_VKEYS "\005"
-#define TR_VKEYS TR(" Menu"" Exit"" Dolů""Nhoru""Vprvo""Vlevo", " Menu"" Exit""Enter"" Page"" Plus""Mínus")
+#define TR_VKEYS TR("Menu\0""Exit\0""Dolů\0""Nhoru""Vprvo""Vlevo", "Menu\0""Exit\0""Enter""Page\0""Plus\0""Mínus")
#define LEN_VRENCODERS "\003"
#define TR_VRENCODERS "REa""REb"
@@ -494,17 +494,15 @@
#define TR_CAL "Kal."
#define TR_VTRIM "Trim- +"
#define TR_BG "BG:"
-#define TR_MENUTOSTART CENTER "\007" TR_ENTER " = START"
-#define TR_SETMIDPOINT TR(CENTER "\001Nastav páky na střed", CENTER "\002Nastav páky na střed")
-#define TR_MOVESTICKSPOTS TR(CENTER "\004Hýbej pákami/poty", "\007Hýbej pákami i potenciometry")
+#define TR_MENUTOSTART CENTER "\010" TR_ENTER " = START"
+#define TR_SETMIDPOINT TR(CENTER "\003Nastav páky na střed", CENTER "\004Nastav páky na střed")
+#define TR_MOVESTICKSPOTS TR(CENTER "\005Hýbej pákami/poty", "\010Hýbej pákami i potenciometry")
#define TR_RXBATT "Rx Bat.:"
#define TR_TXnRX "Tx:\0Rx:"
#define OFS_RX 4
#define TR_ACCEL "Acc:"
#define TR_NODATA CENTER "NO DATA"
-#define TR_TM1TM2 "TM1\037\146TM2"
-#define TR_THRTHP "THR\037\146TH%"
-#define TR_TOT "TOT"
+#define TR_TOTTM1TM2THRTHP "\037\146TOT\036TM1\037\146TM2\036THR\037\146TH%"
#define TR_TMR1LATMAXUS "Tmr1Lat max\037\124us"
#define STR_US (STR_TMR1LATMAXUS+13)
#define TR_TMR1LATMINUS "Tmr1Lat min\037\124us"
diff --git a/radio/src/translations/de.h.txt b/radio/src/translations/de.h.txt
index ebc110d5b..e8ac659c8 100644
--- a/radio/src/translations/de.h.txt
+++ b/radio/src/translations/de.h.txt
@@ -35,7 +35,7 @@
*/
/* Formatting octal codes available in TR_ strings:
* \037\x -sets LCD x-coord (x value in octal)
- * \036 -newline (ARM boards only)
+ * \036 -newline
* \001 to \035 -extended spacing (value * FW/2)
* \0 -ends actual string
*/
@@ -304,7 +304,7 @@
#define TR_VSWASHTYPE "--- ""120 ""120X""140 ""90\0"
#define LEN_VKEYS "\005"
-#define TR_VKEYS TR(" Menu"" Exit"" Down"" Up""Right"" Left", " Menu"" Exit""Enter"" Page"" Plus""Minus")
+#define TR_VKEYS TR("Menu\0""Exit\0""Down\0""Up\0 ""Right""Left\0", "Menu\0""Exit\0""Enter""Page\0""Plus\0""Minus")
#define LEN_VRENCODERS "\003"
#define TR_VRENCODERS "DGa""DGb" //Digitalgeber a und b = Drehgeber
@@ -390,7 +390,7 @@
#define TR_POPUPS TR_ENTER"\010[EXIT]"
#define OFS_EXIT sizeof(TR_ENTER)
-#define TR_MENUWHENDONE CENTER"\006"TR_ENTER" > Weiter"
+#define TR_MENUWHENDONE CENTER"\010"TR_ENTER" > Weiter"
#define TR_FREE "frei"
#define TR_DELETEMODEL "Modell l\203schen?"
#define TR_COPYINGMODEL "Kopiere Modell"
@@ -494,17 +494,15 @@
#define TR_CAL "Kal."
#define TR_VTRIM "Trim- +"
#define TR_BG "BG:"
-#define TR_MENUTOSTART CENTER"\006"TR_ENTER" zum Start"
-#define TR_SETMIDPOINT CENTER"Sticks+Potis auf Mitte"
-#define TR_MOVESTICKSPOTS CENTER"Sticks+Potis bewegen"
+#define TR_MENUTOSTART CENTER"\007"TR_ENTER" zum Start"
+#define TR_SETMIDPOINT CENTER"\002Sticks+Potis auf Mitte"
+#define TR_MOVESTICKSPOTS CENTER"\003Sticks+Potis bewegen"
#define TR_RXBATT "Rx Batt:"
#define TR_TXnRX "Tx:\0Rx:"
#define OFS_RX 4
#define TR_ACCEL "Acc:"
#define TR_NODATA CENTER"NO DATA"
-#define TR_TM1TM2 "TM1\037\146TM2"
-#define TR_THRTHP "THR\037\146TH%"
-#define TR_TOT "TOT"
+#define TR_TOTTM1TM2THRTHP "\037\146TOT\036TM1\037\146TM2\036THR\037\146TH%"
#define TR_TMR1LATMAXUS "Tmr1Lat max\037\124us"
#define STR_US (STR_TMR1LATMAXUS+13)
#define TR_TMR1LATMINUS "Tmr1Lat min\037\124us"
diff --git a/radio/src/translations/en.h b/radio/src/translations/en.h
index 984d49273..0f7dd182e 100644
--- a/radio/src/translations/en.h
+++ b/radio/src/translations/en.h
@@ -35,7 +35,7 @@
*/
/* Formatting octal codes available in TR_ strings:
* \037\x -sets LCD x-coord (x value in octal)
- * \036 -newline (ARM boards only)
+ * \036 -newline
* \001 to \035 -extended spacing (value * FW/2)
* \0 -ends actual string
*/
@@ -309,7 +309,7 @@
#define TR_VSWASHTYPE "---\0""120\0""120X""140\0""90\0"
#define LEN_VKEYS "\005"
-#define TR_VKEYS TR(" Menu"" Exit"" Down"" Up""Right"" Left", " Menu"" Exit""Enter"" Page"" Plus""Minus")
+#define TR_VKEYS TR("Menu\0""Exit\0""Down\0""Up\0 ""Right""Left\0", "Menu\0""Exit\0""Enter""Page\0""Plus\0""Minus")
#define LEN_VRENCODERS "\003"
#define TR_VRENCODERS "REa""REb"
@@ -499,17 +499,15 @@
#define TR_CAL "Cal"
#define TR_VTRIM "Trim- +"
#define TR_BG "BG:"
-#define TR_MENUTOSTART CENTER "\006" TR_ENTER " TO START"
-#define TR_SETMIDPOINT TR(CENTER "\003SET STICKS MIDPOINT",CENTER "\003CENTER STICKS/SLIDERS")
+#define TR_MENUTOSTART CENTER "\010" TR_ENTER " TO START"
+#define TR_SETMIDPOINT TR(CENTER "\004SET STICKS MIDPOINT",CENTER "\004CENTER STICKS/SLIDERS")
#define TR_MOVESTICKSPOTS CENTER "\006MOVE STICKS/POTS"
#define TR_RXBATT "Rx Batt:"
#define TR_TXnRX "Tx:\0Rx:"
#define OFS_RX 4
#define TR_ACCEL "Acc:"
#define TR_NODATA CENTER "NO DATA"
-#define TR_TM1TM2 "TM1\037\146TM2"
-#define TR_THRTHP "THR\037\146TH%"
-#define TR_TOT "TOT"
+#define TR_TOTTM1TM2THRTHP "\037\146TOT\036TM1\037\146TM2\036THR\037\146TH%"
#define TR_TMR1LATMAXUS "Tmr1Lat max\037\124us"
#define STR_US (STR_TMR1LATMAXUS+13)
#define TR_TMR1LATMINUS "Tmr1Lat min\037\124us"
diff --git a/radio/src/translations/es.h.txt b/radio/src/translations/es.h.txt
index f9887a064..d1c923ea7 100644
--- a/radio/src/translations/es.h.txt
+++ b/radio/src/translations/es.h.txt
@@ -35,7 +35,7 @@
*/
/* Formatting octal codes available in TR_ strings:
* \037\x -sets LCD x-coord (x value in octal)
- * \036 -newline (ARM boards only)
+ * \036 -newline
* \001 to \035 -extended spacing (value * FW/2)
* \0 -ends actual string
*/
@@ -304,7 +304,7 @@
#define TR_VSWASHTYPE "---\0""120\0""120X""140\0""90\0"
#define LEN_VKEYS "\005"
-#define TR_VKEYS TR(" Menu""Salir""Abajo""Arrib""Dcha.""Izqd.", " Menu""Salir""Enter""Pgna.""Mas ""Menos")
+#define TR_VKEYS TR("Menu\0""Salir""Abajo""Arrib""Dcha.""Izqd.", "Menu\0""Salir""Enter""Pgna.""Mas\0 ""Menos")
#define LEN_VRENCODERS "\003"
#define TR_VRENCODERS "REa""REb"
@@ -390,7 +390,7 @@
#define TR_POPUPS TR_ENTER "\010[SALIR]"
#define OFS_EXIT sizeof(TR_ENTER)
-#define TR_MENUWHENDONE CENTER "\006" TR_ENTER "AL ACABAR "
+#define TR_MENUWHENDONE CENTER "\007" TR_ENTER " AL ACABAR "
#define TR_FREE "libre"
#define TR_DELETEMODEL "BORRAR MODELO"
#define TR_COPYINGMODEL "Copiando modelo.."
@@ -494,17 +494,15 @@
#define TR_CAL "Cal"
#define TR_VTRIM "Trim- +"
#define TR_BG "BG:"
-#define TR_MENUTOSTART CENTER "\006" TR_ENTER "EMPEZAR"
-#define TR_SETMIDPOINT CENTER "\003STICKS AL CENTRO"
+#define TR_MENUTOSTART CENTER "\010" TR_ENTER " EMPEZAR"
+#define TR_SETMIDPOINT TR(CENTER "\007STICKS AL CENTRO",CENTER "\010STICKS AL CENTRO")
#define TR_MOVESTICKSPOTS CENTER "\006MOVER STICKS/POTS"
#define TR_RXBATT "Rx Batt:"
#define TR_TXnRX "Tx:\0Rx:"
#define OFS_RX 4
#define TR_ACCEL "Acc:"
#define TR_NODATA CENTER "SIN DATOS"
-#define TR_TM1TM2 "TM1\037\146TM2"
-#define TR_THRTHP "THR\037\146TH%"
-#define TR_TOT "TOT"
+#define TR_TOTTM1TM2THRTHP "\037\146TOT\036TM1\037\146TM2\036THR\037\146TH%"
#define TR_TMR1LATMAXUS "Tmr1Lat max\037\124us"
#define STR_US (STR_TMR1LATMAXUS+13)
#define TR_TMR1LATMINUS "Tmr1Lat min\037\124us"
@@ -527,7 +525,7 @@
#define TR_EEPROMLOWMEM "EEPROM mem.baja"
#define TR_ALERT "\016ALERTA"
#define TR_PRESSANYKEYTOSKIP "Pulsar tecla omitir"
-#define TR_THROTTLENOTIDLE "Aceler.Activado"
+#define TR_THROTTLENOTIDLE "Aceler. Activado"
#define TR_ALARMSDISABLED "Alarmas Desact."
#define TR_PRESSANYKEY TR("\010Pulsa una Tecla", "Pulsa una Tecla")
#define TR_BADEEPROMDATA "Datos EEprom mal"
diff --git a/radio/src/translations/fr.h.txt b/radio/src/translations/fr.h.txt
index f1cfea5f1..e018ef0a5 100644
--- a/radio/src/translations/fr.h.txt
+++ b/radio/src/translations/fr.h.txt
@@ -35,7 +35,7 @@
*/
/* Formatting octal codes available in TR_ strings:
* \037\x -sets LCD x-coord (x value in octal)
- * \036 -newline (ARM boards only)
+ * \036 -newline
* \001 to \035 -extended spacing (value * FW/2)
* \0 -ends actual string
*/
@@ -304,7 +304,7 @@
#define TR_VSWASHTYPE "--- ""120 ""120X""140 ""90\0"
#define LEN_VKEYS "\005"
-#define TR_VKEYS TR(" Menu"" Exit"" Bas"" Haut""Droit""Gauch", " Menu"" Exit""Enter"" Page"" Plus""Minus")
+#define TR_VKEYS TR("Menu\0""Exit\0""Bas\0 ""Haut\0""Droit""Gauch", "Menu\0""Exit\0""Enter""Page\0""Plus\0""Minus")
#define LEN_VRENCODERS "\003"
#define TR_VRENCODERS "REa""REb"
@@ -502,9 +502,7 @@
#define OFS_RX 4
#define TR_ACCEL "Acc:"
#define TR_NODATA "NO DATA"
-#define TR_TM1TM2 "TM1\037\146TM2"
-#define TR_THRTHP "THR\037\146TH%"
-#define TR_TOT "TOT"
+#define TR_TOTTM1TM2THRTHP "\037\146TOT\036TM1\037\146TM2\036THR\037\146TH%"
#define TR_TMR1LATMAXUS "Tmr1Lat max\037\124us"
#define STR_US (STR_TMR1LATMAXUS+13)
#define TR_TMR1LATMINUS "Tmr1Lat min\037\124us"
diff --git a/radio/src/translations/it.h.txt b/radio/src/translations/it.h.txt
index 26c241ea7..fc59b9576 100644
--- a/radio/src/translations/it.h.txt
+++ b/radio/src/translations/it.h.txt
@@ -35,7 +35,7 @@
*/
/* Formatting octal codes available in TR_ strings:
* \037\x -sets LCD x-coord (x value in octal)
- * \036 -newline (ARM boards only)
+ * \036 -newline
* \001 to \035 -extended spacing (value * FW/2)
* \0 -ends actual string
*/
@@ -304,7 +304,7 @@
#define TR_VSWASHTYPE "--- ""120 ""120X""140 ""90\0"
#define LEN_VKEYS "\005"
-#define TR_VKEYS TR(" Menù"" EXIT"" DN "" UP"" SX"" DX", " Menu"" Exit""Enter"" Page"" Plus""Minus")
+#define TR_VKEYS TR("Menù\0""EXIT\0""DN\0 ""UP\0 ""SX\0 ""DX\0 ", "Menu\0""Exit\0""Enter""Page\0""Plus\0""Minus")
#define LEN_VRENCODERS "\003"
#define TR_VRENCODERS "REa""REb"
@@ -390,7 +390,7 @@
#define TR_POPUPS TR_ENTER"\004[EXIT]"
#define OFS_EXIT sizeof(TR_ENTER)
-#define TR_MENUWHENDONE CENTER"\006"TR_ENTER" Conferma"
+#define TR_MENUWHENDONE CENTER"\007"TR_ENTER" Conferma"
#define TR_FREE " Disp."
#define TR_DELETEMODEL "Elimina modello?"
#define TR_COPYINGMODEL "Copia in corso.."
@@ -494,17 +494,15 @@
#define TR_CAL "Cal"
#define TR_VTRIM "Trim- +"
#define TR_BG "BG:"
-#define TR_MENUTOSTART CENTER"\006" TR_ENTER " per Cal."
-#define TR_SETMIDPOINT CENTER"\011SETTA CENTRO"
-#define TR_MOVESTICKSPOTS CENTER"\006MUOVI STICK/POT"
+#define TR_MENUTOSTART CENTER"\011" TR_ENTER " per Cal."
+#define TR_SETMIDPOINT CENTER"\012SETTA CENTRO"
+#define TR_MOVESTICKSPOTS CENTER"\010MUOVI STICK/POT"
#define TR_RXBATT "Rx Batt:"
#define TR_TXnRX "Tx:\0Rx:"
#define OFS_RX 4
#define TR_ACCEL "Acc:"
#define TR_NODATA CENTER"DATI ASSENTI"
-#define TR_TM1TM2 "TM1\037\146TM2"
-#define TR_THRTHP "THR\037\146TH%"
-#define TR_TOT "TOT"
+#define TR_TOTTM1TM2THRTHP "\037\146TOT\036TM1\037\146TM2\036THR\037\146TH%"
#define TR_TMR1LATMAXUS "Tmr1Lat max\037\124us"
#define STR_US (STR_TMR1LATMAXUS+13)
#define TR_TMR1LATMINUS "Tmr1Lat min\037\124us"
diff --git a/radio/src/translations/pl.h.txt b/radio/src/translations/pl.h.txt
index 9a5f09488..8f006b74b 100644
--- a/radio/src/translations/pl.h.txt
+++ b/radio/src/translations/pl.h.txt
@@ -35,7 +35,7 @@
*/
/* Formatting octal codes available in TR_ strings:
* \037\x -sets LCD x-coord (x value in octal)
- * \036 -newline (ARM boards only)
+ * \036 -newline
* \001 to \035 -extended spacing (value * FW/2)
* \0 -ends actual string
*/
@@ -304,7 +304,7 @@
#define TR_VSWASHTYPE "--- ""120 ""120X""140 ""90\0"
#define LEN_VKEYS "\005"
-#define TR_VKEYS TR(" Menu""Wyjdź""W dół""Wgórę""Wpraw""Wlewo", " Menu""Wyjdź""W dół""Wgórę""Wpraw""Wlewo")
+#define TR_VKEYS TR("Menu\0""Wyjdź""W dół""Wgórę""Wpraw""Wlewo", "Menu\0""Wyjdź""W dół""Wgórę""Wpraw""Wlewo")
#define LEN_VRENCODERS "\003"
#define TR_VRENCODERS "REa""REb"
@@ -390,7 +390,7 @@
#define TR_POPUPS TR_ENTER"\010[WYJŚCIE]"
#define OFS_EXIT sizeof(TR_ENTER)
-#define TR_MENUWHENDONE CENTER "\007"TR_ENTER" > DALEJ"
+#define TR_MENUWHENDONE CENTER "\012"TR_ENTER" > DALEJ"
#define TR_FREE TR("wolne:", "wolne")
#define TR_DELETEMODEL "SKASUJ MODEL"
#define TR_COPYINGMODEL "Kopiuj model.."
@@ -494,17 +494,15 @@
#define TR_CAL "Kal."
#define TR_VTRIM "Trymer- +"
#define TR_BG "BG:"
-#define TR_MENUTOSTART CENTER "\007" TR_ENTER " = START"
-#define TR_SETMIDPOINT TR(CENTER "\001Ustaw drążki/potencj na środku","\005Ustaw drązki/potencj na środku")
-#define TR_MOVESTICKSPOTS TR(CENTER "\004Poruszaj drążkami i potenc.","\010Poruszaj drążkami i potenc.")
+#define TR_MENUTOSTART CENTER "\011" TR_ENTER " = START"
+#define TR_SETMIDPOINT TR(CENTER "\002Ustaw drążki/potencj","\010Ustaw drązki/potencj na środku")
+#define TR_MOVESTICKSPOTS TR(CENTER "Poruszaj drążkami i pot","\014Poruszaj drążkami i potenc.")
#define TR_RXBATT "Rx Bat.:"
#define TR_TXnRX "Tx:\0Rx:"
#define OFS_RX 4
#define TR_ACCEL "Acc:"
#define TR_NODATA CENTER "NO DATA"
-#define TR_TM1TM2 "TM1\037\146TM2"
-#define TR_THRTHP "THR\037\146TH%"
-#define TR_TOT "TOT"
+#define TR_TOTTM1TM2THRTHP "\037\146TOT\036TM1\037\146TM2\036THR\037\146TH%"
#define TR_TMR1LATMAXUS "Tmr1Lat max\037\124us"
#define STR_US (STR_TMR1LATMAXUS+12)
#define TR_TMR1LATMINUS "Tmr1Lat min\037\124us"
diff --git a/radio/src/translations/pt.h.txt b/radio/src/translations/pt.h.txt
index 469536a97..3a78386ed 100644
--- a/radio/src/translations/pt.h.txt
+++ b/radio/src/translations/pt.h.txt
@@ -35,7 +35,7 @@
*/
/* Formatting octal codes available in TR_ strings:
* \037\x -sets LCD x-coord (x value in octal)
- * \036 -newline (ARM boards only)
+ * \036 -newline
* \001 to \035 -extended spacing (value * FW/2)
* \0 -ends actual string
*/
@@ -304,7 +304,7 @@
#define TR_VSWASHTYPE "--- ""120 ""120X""140 ""90\0"
#define LEN_VKEYS "\005"
-#define TR_VKEYS TR(" Menu"" Sair""Desce"" Sobe""Direi""Esqda", " Menu"" Exit""Enter"" Page"" Plus""Minus")
+#define TR_VKEYS TR("Menu\0""Sair\0""Desce""Sobe\0""Direi""Esqda", "Menu\0""Exit\0""Enter""Page\0""Plus\0""Minus")
#define LEN_VRENCODERS "\003"
#define TR_VRENCODERS "REa""REb"
@@ -494,17 +494,15 @@
#define TR_CAL "Cal"
#define TR_VTRIM "Trim- +"
#define TR_BG "BG:"
-#define TR_MENUTOSTART CENTER"\006" TR_ENTER " INICIAR"
-#define TR_SETMIDPOINT CENTER"\005CENTRAR STICK/POT"
-#define TR_MOVESTICKSPOTS CENTER"\005MOVER STICKS/POTs"
+#define TR_MENUTOSTART CENTER"\011" TR_ENTER " INICIAR"
+#define TR_SETMIDPOINT TR(CENTER"\005CENTRAR STICK/POT",CENTER"\006CENTRAR STICK/POT")
+#define TR_MOVESTICKSPOTS TR(CENTER"\005MOVER STICKS/POTs",CENTER"\006MOVER STICKS/POTs")
#define TR_RXBATT "Rx Batt:"
#define TR_TXnRX "Tx:\0Rx:"
#define OFS_RX 4
#define TR_ACCEL "Acc:"
#define TR_NODATA CENTER"SEM DADOS"
-#define TR_TM1TM2 "TM1\037\146TM2"
-#define TR_THRTHP "THR\037\146TH%"
-#define TR_TOT "TOT"
+#define TR_TOTTM1TM2THRTHP "\037\146TOT\036TM1\037\146TM2\036THR\037\146TH%"
#define TR_TMR1LATMAXUS "Tmr1Lat max\037\124us"
#define STR_US (STR_TMR1LATMAXUS+13)
#define TR_TMR1LATMINUS "Tmr1Lat min\037\124us"
diff --git a/radio/src/translations/se.h.txt b/radio/src/translations/se.h.txt
index 42ae1ab8e..6a3b32bfc 100644
--- a/radio/src/translations/se.h.txt
+++ b/radio/src/translations/se.h.txt
@@ -35,7 +35,7 @@
*/
/* Formatting octal codes available in TR_ strings:
* \037\x -sets LCD x-coord (x value in octal)
- * \036 -newline (ARM boards only)
+ * \036 -newline
* \001 to \035 -extended spacing (value * FW/2)
* \0 -ends actual string
*/
@@ -68,11 +68,11 @@
#define LEN_TRNCHN "\003"
#define TR_TRNCHN "KN1KN2KN3KN4"
-#define LEN_UART3MODES "\017"
-#define TR_UART3MODES "Av\0 ""S-Port-spegel\0 ""Debug\0 "
+#define LEN_UART3MODES "\022"
+#define TR_UART3MODES "Av\0 ""Spegling av S-Port""Debug\0 "
-#define LEN_POTTYPES "\017"
-#define TR_POTTYPES "Pot\0 ""Multipos Switch"
+#define LEN_POTTYPES "\020"
+#define TR_POTTYPES "Potentiometer\0 ""Flerlägesväljare"
#define LEN_DATETIME "\005"
#define TR_DATETIME "DAG: ""TID: "
@@ -304,7 +304,7 @@
#define TR_VSWASHTYPE "--- ""120 ""120X""140 ""90\0"
#define LEN_VKEYS "\005"
-#define TR_VKEYS TR(" Menu"" Exit"" Ned"" Upp""Höger""Vänst", " Menu"" Exit""Enter"" Page"" Plus""Minus")
+#define TR_VKEYS TR("Menu\0""Exit\0""Ned\0 ""Upp\0 ""Höger""Vänst", "Menu\0""Exit\0""Enter""Page\0""Plus\0""Minus")
#define LEN_VRENCODERS "\003"
#define TR_VRENCODERS "REa""REb"
@@ -362,7 +362,7 @@
#define TR_VTMRMODES "Av\0""ABS""GAs""GA%""GAt"
#define LEN_VTRAINERMODES "\006"
-#define TR_VTRAINERMODES "Master""Slav\0."
+#define TR_VTRAINERMODES "Lärare""Elev\0."
#define LEN_VFAILSAFE "\011"
#define TR_VFAILSAFE "Håll\0 ""Special\0 ""Pulsfritt"
@@ -390,7 +390,7 @@
#define TR_POPUPS TR_ENTER"\010[EXIT]"
#define OFS_EXIT sizeof(TR_ENTER)
-#define TR_MENUWHENDONE CENTER "\006" TR_ENTER " Avslutar "
+#define TR_MENUWHENDONE CENTER "\011" TR_ENTER " Avslutar "
#define TR_FREE "kvar"
#define TR_DELETEMODEL "Radera Modell"
#define TR_COPYINGMODEL "Kopierar Modell "
@@ -488,23 +488,21 @@
#define TR_SWITCHWARNING TR("Bryt.varn.","Brytarvarning")
#define TR_TIMEZONE TR("Tidszon","GPS Tidszon")
#define TR_RXCHANNELORD "Kanaler i RX"
-#define TR_SLAVE "Slav"
+#define TR_SLAVE "Elev"
#define TR_MODESRC " Läge\004% Källa"
#define TR_MULTIPLIER "Styrka"
#define TR_CAL "Kalib."
#define TR_VTRIM "Trim- +"
#define TR_BG "BG:"
-#define TR_MENUTOSTART CENTER "\006" TR_ENTER " Startar "
-#define TR_SETMIDPOINT CENTER "\010Centrera Allt"
-#define TR_MOVESTICKSPOTS CENTER "\004Rör Rattar/Spakar"
+#define TR_MENUTOSTART CENTER "\011" TR_ENTER " Startar "
+#define TR_SETMIDPOINT TR(CENTER "\012Centrera Allt",CENTER "\013Centrera Allt")
+#define TR_MOVESTICKSPOTS TR(CENTER "\005Rör Rattar/Spakar",CENTER "\006Rör Rattar/Spakar")
#define TR_RXBATT "Rx Batt:"
#define TR_TXnRX "Tx:\0Rx:"
#define OFS_RX 4
#define TR_ACCEL "Acc:"
#define TR_NODATA CENTER "NO DATA"
-#define TR_TM1TM2 "TM1\037\146TM2"
-#define TR_THRTHP "THR\037\146TH%"
-#define TR_TOT "TOT"
+#define TR_TOTTM1TM2THRTHP "\037\146TOT\036TM1\037\146TM2\036THR\037\146TH%"
#define TR_TMR1LATMAXUS "Tmr1Lat max\037\124us"
#define STR_US (STR_TMR1LATMAXUS+13)
#define TR_TMR1LATMINUS "Tmr1Lat min\037\124us"
@@ -524,15 +522,15 @@
#define TR_MODEL "Modell"
#define TR_FP "FL"
#define TR_MIX "MIX"
-#define TR_EEPROMLOWMEM "EEPROM low mem"
+#define TR_EEPROMLOWMEM "Minnesbrist"
#define TR_ALERT "\016OBS"
#define TR_PRESSANYKEYTOSKIP "Tryck ned en knapp"
#define TR_THROTTLENOTIDLE "Gasen är påslagen!"
#define TR_ALARMSDISABLED "Alarmen Avstängda!"
-#define TR_PRESSANYKEY TR("Tryck ned en knapp", "Tryck ned en knapp")
-#define TR_BADEEPROMDATA "EEprom Datafel "
-#define TR_EEPROMFORMATTING "Formaterar EEprom"
-#define TR_EEPROMOVERFLOW "Fel i EEprom"
+#define TR_PRESSANYKEY "Tryck ned en knapp"
+#define TR_BADEEPROMDATA "Minnet kan inte tolkas"
+#define TR_EEPROMFORMATTING "Minnet Nollställs"
+#define TR_EEPROMOVERFLOW "Minnesfel"
#define TR_MENURADIOSETUP "Inställningar"
#define TR_MENUDATEANDTIME "Dag och Tid"
#define TR_MENUTRAINER "Trainer (PPM in)"
@@ -548,7 +546,7 @@
#define TR_MENUHELISETUP "Helikopter"
#if defined(PCBTARANIS)
- #define TR_MENUINPUTS "Filter"
+ #define TR_MENUINPUTS TR("Filter","Filtrerad Insignal")
#define TR_MENULIMITS "Gränser"
#elif defined(PPM_CENTER_ADJUSTABLE) || defined(PPM_LIMITS_SYMETRICAL) // The right menu titles for the gurus ...
#define TR_MENUINPUTS "Spakar"
@@ -682,9 +680,9 @@
#define TR_CRITICALALARM INDENT "Kritiskt alarm"
#define TR_PERSISTENT_MAH INDENT "Store mAh"
#define TR_FAS_OFFSET TR(INDENT "FAS Ofs", INDENT "FAS Offset")
-#define TR_UART3MODE "Serieport"
-#define TR_POT1TYPE "S1 Type"
-#define TR_POT2TYPE "S2 Type"
+#define TR_UART3MODE "Serieporten"
+#define TR_POT1TYPE "S1-ratten"
+#define TR_POT2TYPE "S2-ratten"
#if defined(MAVLINK)
#define TR_MAVLINK_RC_RSSI_SCALE_LABEL "Max RSSI"
@@ -705,7 +703,7 @@
#define TR_MAVLINK_BEARING "Bäring"
#define TR_MAVLINK_ALTITUDE "Höjd"
#define TR_MAVLINK_GPS "GPS"
- #define TR_MAVLINK_NO_FIX "NO Fix"
+ #define TR_MAVLINK_NO_FIX "EJ Lås"
#define TR_MAVLINK_SAT "SAT"
#define TR_MAVLINK_HDOP "HDOP"
#define TR_MAVLINK_LAT "LAT"