2,300 changes: 1,180 additions & 1,120 deletions i18n/qgis_de.ts

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions python/plugins/GdalTools/tools/widgetDEM.ui
Original file line number Diff line number Diff line change
Expand Up @@ -429,9 +429,6 @@
</property>
<item>
<widget class="QgsRasterFormatSaveOptionsWidget" name="creationOptionsWidget" native="true">
<property name="toolTip">
<string>bla</string>
</property>
</widget>
</item>
</layout>
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsrasterformatsaveoptionswidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ QString QgsRasterFormatSaveOptionsWidget::validateOptions( bool gui, bool report
}
else
{
QMessageBox::warning( this, "", tr( "Invalid%1creation option :\n\n%2\n\nClick on help button to get valid creation options for this format" ).arg( mPyramids ? " pyramids " : " " ).arg( message ), QMessageBox::Close );
QMessageBox::warning( this, "", tr( "Invalid %1:\n\n%2\n\nClick on help button to get valid creation options for this format." ).arg( mPyramids ? tr( "pyramid creation option" ) : tr( "creation option" ) ).arg( message ), QMessageBox::Close );
}
}

Expand Down