Skip to content

Commit b65df5c

Browse files
committed
georeferencer: add translation string
1 parent 9076ff8 commit b65df5c

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/gui/symbology-ng/qgsrendererv2widget.h

+1
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ class GUI_EXPORT QgsDataDefinedValueDialog : public QDialog, public Ui::QgsDataD
145145
/** Constructor
146146
* @param symbolList must not be empty
147147
* @param layer must not be null
148+
* @param label value label
148149
*/
149150
QgsDataDefinedValueDialog( const QList<QgsSymbolV2*>& symbolList, QgsVectorLayer * layer, const QString & label );
150151
virtual ~QgsDataDefinedValueDialog() {}

src/plugins/georeferencer/qgsgeorefdescriptiondialog.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ QgsGeorefDescriptionDialog::QgsGeorefDescriptionDialog( QWidget* parent ): QDial
2121
{
2222
setupUi( this );
2323

24-
textEdit->setText( "<h2>Description</h2>"
25-
"<p>This plugin can georeference raster files "
26-
"and set projection. You select points on the "
27-
"raster and give their world "
28-
"coordinates, and the plugin will "
29-
"compute the world file parameters. "
30-
"The more coordinates you can "
31-
"provide the better the result will be.</p>" );
24+
textEdit->setText( tr( "<h2>Description</h2>"
25+
"<p>This plugin can georeference raster files "
26+
"and set projection. You select points on the "
27+
"raster and give their world "
28+
"coordinates, and the plugin will "
29+
"compute the world file parameters. "
30+
"The more coordinates you can "
31+
"provide the better the result will be.</p>" ) );
3232
}

0 commit comments

Comments
 (0)