Skip to content

Commit

Permalink
fix lrelease warning and translation string
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13714 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jun 12, 2010
1 parent b696363 commit 7906ae1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gui/symbology-ng/qgsrulebasedrendererv2widget.cpp
Expand Up @@ -351,7 +351,7 @@ void QgsRendererRulePropsDialog::testFilter()

QApplication::restoreOverrideCursor();

QMessageBox::information( this, tr( "Filter" ), tr( "Filter returned %1 features" ).arg( count ) );
QMessageBox::information( this, tr( "Filter" ), tr( "Filter returned %n feature(s)", "number of filtered features", count ) );
}

void QgsRendererRulePropsDialog::updateRuleFromGui()
Expand Down
2 changes: 2 additions & 0 deletions src/gui/symbology-ng/qgsrulebasedrendererv2widget.h
Expand Up @@ -27,6 +27,8 @@ class QMenu;

class QgsRendererRulesTreeWidget : public QTreeWidget
{
Q_OBJECT

public:
QgsRendererRulesTreeWidget( QWidget* parent = 0 );

Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsrulebasedrendererv2widget.ui
Expand Up @@ -17,7 +17,7 @@
<item row="0" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>Rules:</string>
<string>Rules</string>
</property>
</widget>
</item>
Expand Down

0 comments on commit 7906ae1

Please sign in to comment.