Skip to content

Commit

Permalink
[georef] Fix untranslatable strings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 19, 2015
1 parent 32c098d commit fcc9a34
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/plugins/georeferencer/qgsgcplistmodel.cpp
Expand Up @@ -102,7 +102,15 @@ void QgsGCPListModel::updateModel()
unitType = tr( "pixels" );
}

itemLabels << "on/off" << "id" << "srcX" << "srcY" << "dstX" << "dstY" << QString( "dX[" ) + unitType + "]" << QString( "dY[" ) + unitType + "]" << "residual[" + unitType + "]";
itemLabels << tr( "Visible" )
<< tr( "ID" )
<< tr( "Source X" )
<< tr( "Source Y" )
<< tr( "Dest. X" )
<< tr( "Dest. Y" )
<< tr( "dX (%1)" ).arg( unitType )
<< tr( "dY (%1)" ).arg( unitType )
<< tr( "Residual (%1)" ).arg( unitType );

setHorizontalHeaderLabels( itemLabels );
setRowCount( mGCPList->size() );
Expand Down

0 comments on commit fcc9a34

Please sign in to comment.