Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
translation string fixes
  • Loading branch information
jef-n committed Dec 10, 2020
1 parent 9c26592 commit 5496cb3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -54,7 +54,7 @@ void QgsExportLayersInformationAlgorithm::initAlgorithm( const QVariantMap & )
QString QgsExportLayersInformationAlgorithm::shortHelpString() const
{
return QObject::tr( "Creates a polygon layer with features corresponding to the extent of selected layer(s).\n\n"
"Additional layer details - CRS, provider name, file path, layer name, subset filer, abstract and attribution - are attached as attributes to each feature." );
"Additional layer details - CRS, provider name, file path, layer name, subset filter, abstract and attribution - are attached as attributes to each feature." );

This comment has been minimized.

Copy link
@nirvn

nirvn Dec 11, 2020

Contributor

@jef-n , danke.

This comment has been minimized.

Copy link
@jef-n

jef-n Dec 11, 2020

Author Member

da nicht für

}

QgsExportLayersInformationAlgorithm *QgsExportLayersInformationAlgorithm::createInstance() const
Expand Down
Expand Up @@ -123,7 +123,7 @@ void QgsExportToSpreadsheetAlgorithm::initAlgorithm( const QVariantMap & )
addParameter( new QgsProcessingParameterMultipleLayers( QStringLiteral( "LAYERS" ), QObject::tr( "Input layers" ), QgsProcessing::TypeVector ) );
addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "USE_ALIAS" ), QObject::tr( "Use field aliases as column headings" ), false ) );
addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "FORMATTED_VALUES" ), QObject::tr( "Export formatted values instead of raw values" ), false ) );
QgsProcessingParameterFileDestination *outputParameter = new QgsProcessingParameterFileDestination( QStringLiteral( "OUTPUT" ), QObject::tr( "Destination spreadsheet" ), QObject::tr( "Microsoft Excel (*.xlsx);;Open Document Spreadsheet(*.ods)" ) );
QgsProcessingParameterFileDestination *outputParameter = new QgsProcessingParameterFileDestination( QStringLiteral( "OUTPUT" ), QObject::tr( "Destination spreadsheet" ), QObject::tr( "Microsoft Excel (*.xlsx);;Open Document Spreadsheet (*.ods)" ) );
outputParameter->setMetadata( QVariantMap( {{QStringLiteral( "widget_wrapper" ), QVariantMap( {{QStringLiteral( "dontconfirmoverwrite" ), true }} ) }} ) );
addParameter( outputParameter );
addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "OVERWRITE" ), QObject::tr( "Overwrite existing spreadsheet" ), true ) );
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmrasterize.cpp
Expand Up @@ -124,7 +124,7 @@ QString QgsRasterizeAlgorithm::shortHelpString() const
return QObject::tr( "This algorithm rasterizes map canvas content.\n\n"
"A map theme can be selected to render a predetermined set of layers with a defined style for each layer. "
"Alternatively, a set of layers can be selected if no map theme is set. "
"If neither map theme nor layer is set, all the visible layers in the set extent will be rendered.\n\n "
"If neither map theme nor layer is set, all the visible layers in the set extent will be rendered.\n\n"
"The minimum extent entered will internally be extended to a multiple of the tile size." );
}

Expand Down

0 comments on commit 5496cb3

Please sign in to comment.