Commit 66e2638c authored by Bryant Mairs's avatar Bryant Mairs

Moved some more user-facing UI strings into translation calls.

parent 28614171
......@@ -294,7 +294,7 @@ void UASWaypointManager::handleWaypointReached(quint8 systemId, quint8 compId, m
Q_UNUSED(compId);
if (!uas) return;
if (systemId == uasid) {
emit updateStatusString(QString("Reached waypoint %1").arg(wpr->seq));
emit updateStatusString(tr("Reached waypoint %1").arg(wpr->seq));
}
}
......@@ -319,7 +319,7 @@ void UASWaypointManager::handleWaypointCurrent(quint8 systemId, quint8 compId, m
}
}
}
emit updateStatusString(QString("New current waypoint %1").arg(wpc->seq));
emit updateStatusString(tr("New current waypoint %1").arg(wpc->seq));
//emit update to UI widgets
emit currentWaypointChanged(wpc->seq);
}
......
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