Skip to content

Commit

Permalink
add the missing translations
Browse files Browse the repository at this point in the history
  • Loading branch information
Samweli authored and nyalldawson committed Jun 15, 2020
1 parent 4f49711 commit 65bf008
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/gui/raster/qgsrasterlayerproperties.cpp
Expand Up @@ -1371,9 +1371,9 @@ void QgsRasterLayerProperties::setSourceStaticTimeState()
mWmstOptions->setEnabled( !mRasterLayer->temporalProperties()->isActive() );

if ( mRasterLayer->temporalProperties()->isActive() )
mWmstOptionsLabel->setText( "The static temporal options below are disabled because the layer "
"temporal properties are active, to enable them disable temporal properties "
"in the temporal tab. " );
mWmstOptionsLabel->setText( tr( "The static temporal options below are disabled because the layer "
"temporal properties are active, to enable them disable temporal properties "
"in the temporal tab. " ) );

mWmstGroup->setChecked( uri.contains( QStringLiteral( "allowTemporalUpdates" ) ) &&
uri.value( QStringLiteral( "allowTemporalUpdates" ), true ).toBool() );
Expand Down Expand Up @@ -1411,9 +1411,9 @@ void QgsRasterLayerProperties::temporalPropertiesChange()
mWmstOptions->setEnabled( !mRasterLayer->temporalProperties()->isActive() );

if ( mRasterLayer->temporalProperties()->isActive() )
mWmstOptionsLabel->setText( "The static temporal options below are disabled because the layer "
"temporal properties are active, to enable them disable temporal properties "
"in the temporal tab. " );
mWmstOptionsLabel->setText( tr( "The static temporal options below are disabled because the layer "
"temporal properties are active, to enable them disable temporal properties "
"in the temporal tab. " ) );
else
mWmstOptionsLabel->clear();
}
Expand Down

0 comments on commit 65bf008

Please sign in to comment.