Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove trailing spacing and punctuation in ui items
  • Loading branch information
DelazJ committed Oct 26, 2017
1 parent cd17832 commit 2614ca1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions python/plugins/db_manager/ui/DlgDbError.ui
Expand Up @@ -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>
Expand All @@ -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>
Expand All @@ -68,7 +68,7 @@
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Query:</string>
<string>Query</string>
</property>
</widget>
</item>
Expand Down
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/core/processing/qgsprocessingutils.cpp
Expand Up @@ -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" );

Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsdelimitedtextsourceselectbase.ui
Expand Up @@ -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>
Expand Down

0 comments on commit 2614ca1

Please sign in to comment.