Skip to content

Commit

Permalink
translation string fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Nov 10, 2022
1 parent bcc83e0 commit a0d62fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterattributetable.cpp
Expand Up @@ -439,7 +439,7 @@ bool QgsRasterAttributeTable::insertRow( int position, const QVariantList &rowDa
{
if ( errorMessage )
{
*errorMessage = tr( "Row element count differs from field count (%1)'." ).arg( mFields.size() );
*errorMessage = tr( "Row element count differs from field count (%1)." ).arg( mFields.size() );
}
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion src/gui/raster/qgsrasterattributetablemodel.cpp
Expand Up @@ -176,7 +176,7 @@ bool QgsRasterAttributeTableModel::removeColorOrRamp( QString *errorMessage )
{
if ( errorMessage )
{
*errorMessage = tr( "RAT has not color or ramp information." );
*errorMessage = tr( "Raster attribute table does not have color or ramp information." );
}
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion src/ui/raster/qgscreaterasterattributetabledialogbase.ui
Expand Up @@ -59,7 +59,7 @@
<item row="0" column="0" colspan="2">
<widget class="QRadioButton" name="mNativeRadioButton">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This method will save the attribute table using the data provider, &lt;/p&gt;&lt;p&gt;overwriting any existing attribute table for the raster band used&lt;/p&gt;&lt;p&gt;by the current style.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Depending on the data provider and the raster file format, the &lt;/p&gt;&lt;p&gt;attribute table will be embedded in the main raster file or saved&lt;/p&gt;&lt;p&gt; into a sidecar file manged by the data provider.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This method will save the attribute table using the data provider, &lt;/p&gt;&lt;p&gt;overwriting any existing attribute table for the raster band used&lt;/p&gt;&lt;p&gt;by the current style.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Depending on the data provider and the raster file format, the &lt;/p&gt;&lt;p&gt;attribute table will be embedded in the main raster file or saved&lt;/p&gt;&lt;p&gt; into a sidecar file managed by the data provider.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>Managed by the data provider</string>
Expand Down

0 comments on commit a0d62fe

Please sign in to comment.