We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 32c098d commit fcc9a34Copy full SHA for fcc9a34
src/plugins/georeferencer/qgsgcplistmodel.cpp
@@ -102,7 +102,15 @@ void QgsGCPListModel::updateModel()
102
unitType = tr( "pixels" );
103
}
104
105
- itemLabels << "on/off" << "id" << "srcX" << "srcY" << "dstX" << "dstY" << QString( "dX[" ) + unitType + "]" << QString( "dY[" ) + unitType + "]" << "residual[" + unitType + "]";
+ itemLabels << tr( "Visible" )
106
+ << tr( "ID" )
107
+ << tr( "Source X" )
108
+ << tr( "Source Y" )
109
+ << tr( "Dest. X" )
110
+ << tr( "Dest. Y" )
111
+ << tr( "dX (%1)" ).arg( unitType )
112
+ << tr( "dY (%1)" ).arg( unitType )
113
+ << tr( "Residual (%1)" ).arg( unitType );
114
115
setHorizontalHeaderLabels( itemLabels );
116
setRowCount( mGCPList->size() );
0 commit comments