Commit 55c1c67d authored by olliw42's avatar olliw42

3 comments by DonLakeFlyer adopted, compiled and tested

parent 5c9a40f9
......@@ -641,7 +641,7 @@ void ParameterManager::_setupComponentCategoryMap(int componentId)
if (i > 0) {
componentCategoryMap[category][paramName.left(i)] += paramName;
} else {
componentCategoryMap[category]["Misc"] += paramName;
componentCategoryMap[category][tr("Misc")] += paramName;
}
}
......@@ -667,7 +667,7 @@ void ParameterManager::_setupDefaultComponentCategoryMap(void)
QString ParameterManager::getComponentCategory(int componentId)
{
if (_mavlinkCompIdHash.contains(componentId)) {
return QString("Component %1 (%2)").arg(_mavlinkCompIdHash.value(componentId)).arg(componentId);
return tr("Component %1 (%2)").arg(_mavlinkCompIdHash.value(componentId)).arg(componentId);
}
QString componentCategoryPrefix = tr("Component ");
return QString("%1%2").arg(componentCategoryPrefix).arg(componentId);
......@@ -1590,7 +1590,7 @@ void ParameterManager::_loadOfflineEditingParams(void)
}
_addMetaDataToDefaultComponent();
_setupDefaultComponentCategoryMap(); //TODO: check if this is really only for the default, or needs to be done for all components !!
_setupDefaultComponentCategoryMap();
_parametersReady = true;
_initialLoadComplete = true;
_debugCacheCRC.clear();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment