Skip to content

Commit fcc9a34

Browse files
committedJun 19, 2015
[georef] Fix untranslatable strings
1 parent 32c098d commit fcc9a34

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
 

‎src/plugins/georeferencer/qgsgcplistmodel.cpp

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,15 @@ void QgsGCPListModel::updateModel()
102102
unitType = tr( "pixels" );
103103
}
104104

105-
itemLabels << "on/off" << "id" << "srcX" << "srcY" << "dstX" << "dstY" << QString( "dX[" ) + unitType + "]" << QString( "dY[" ) + unitType + "]" << "residual[" + unitType + "]";
105+
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 );
106114

107115
setHorizontalHeaderLabels( itemLabels );
108116
setRowCount( mGCPList->size() );

0 commit comments

Comments
 (0)
Please sign in to comment.