Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Remove trailing spacing and punctuation in ui items
- Loading branch information
|
@@ -27,7 +27,7 @@ |
|
|
<item> |
|
|
<widget class="QLabel" name="label_3"> |
|
|
<property name="text"> |
|
|
<string>An error occurred:</string> |
|
|
<string>An error occurred</string> |
|
|
</property> |
|
|
</widget> |
|
|
</item> |
|
@@ -51,7 +51,7 @@ |
|
|
<item> |
|
|
<widget class="QLabel" name="label"> |
|
|
<property name="text"> |
|
|
<string>An error occurred when executing a query:</string> |
|
|
<string>An error occurred when executing a query</string> |
|
|
</property> |
|
|
</widget> |
|
|
</item> |
|
@@ -68,7 +68,7 @@ |
|
|
<item> |
|
|
<widget class="QLabel" name="label_2"> |
|
|
<property name="text"> |
|
|
<string>Query:</string> |
|
|
<string>Query</string> |
|
|
</property> |
|
|
</widget> |
|
|
</item> |
|
|
|
@@ -33,7 +33,7 @@ |
|
|
<item row="2" column="0" > |
|
|
<widget class="QLabel" name="label1" > |
|
|
<property name="text" > |
|
|
<string>Overall progress:</string> |
|
|
<string>Overall progress</string> |
|
|
</property> |
|
|
</widget> |
|
|
</item> |
|
|
|
@@ -513,7 +513,7 @@ QString QgsProcessingUtils::formatHelpMapAsHtml( const QVariantMap &map, const Q |
|
|
return QString(); |
|
|
}; |
|
|
|
|
|
QString s = QObject::tr( "<html><body><h2>Algorithm description</h2>\n " ); |
|
|
QString s = QObject::tr( "<html><body><h2>Algorithm description</h2>\n" ); |
|
|
s += QStringLiteral( "<p>" ) + getText( QStringLiteral( "ALG_DESC" ) ) + QStringLiteral( "</p>\n" ); |
|
|
s += QObject::tr( "<h2>Input parameters</h2>\n" ); |
|
|
|
|
|
|
@@ -942,7 +942,7 @@ |
|
|
<string>Geometry is read as a well known text string from the selected fields</string> |
|
|
</property> |
|
|
<property name="text"> |
|
|
<string>Well known text (WKT) </string> |
|
|
<string>Well known text (WKT)</string> |
|
|
</property> |
|
|
</widget> |
|
|
</item> |
|
|