Unverified Commit 4536b1d7 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #6671 from feemi/pr-missing-localization

Add missing localization texts
parents 7667b105 a3cb9d50
......@@ -535,37 +535,37 @@ QGCView {
model: [
{
name: "File",
name: qsTr("File"),
iconSource: "/qmlimages/MapSync.svg",
alternateIconSource: "/qmlimages/MapSyncChanged.svg",
dropPanelComponent: syncDropPanel
},
{
name: "Waypoint",
name: qsTr("Waypoint"),
iconSource: "/qmlimages/MapAddMission.svg",
toggle: true
},
{
name: "ROI",
name: qsTr("ROI"),
iconSource: "/qmlimages/MapAddMission.svg",
toggle: true
},
{
name: _singleComplexItem ? _missionController.complexMissionItemNames[0] : "Pattern",
name: _singleComplexItem ? _missionController.complexMissionItemNames[0] : qsTr("Pattern"),
iconSource: "/qmlimages/MapDrawShape.svg",
dropPanelComponent: _singleComplexItem ? undefined : patternDropPanel
},
{
name: "Center",
name: qsTr("Center"),
iconSource: "/qmlimages/MapCenter.svg",
dropPanelComponent: centerMapDropPanel
},
{
name: "In",
name: qsTr("In"),
iconSource: "/qmlimages/ZoomPlus.svg"
},
{
name: "Out",
name: qsTr("Out"),
iconSource: "/qmlimages/ZoomMinus.svg"
}
]
......
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