Index: src/categorytypecombobox.cpp =================================================================== --- src/categorytypecombobox.cpp +++ src/categorytypecombobox.cpp @@ -24,7 +24,7 @@ CategoryTypeComboBox::CategoryTypeComboBox(QWidget *parent) : QComboBox(parent) { - addItem(i18n("All"), QString()); + addItem(i18n("No Rule"), QString()); addItem(i18n("Debug"), QStringLiteral("debug")); addItem(i18n("Warning"), QStringLiteral("warning")); addItem(i18n("Critical"), QStringLiteral("critical")); @@ -38,7 +38,7 @@ void CategoryTypeComboBox::setType(const QString &type) { if (type.isEmpty()) { - //All + //No Rule setCurrentIndex(0); } else { const int pos = findData(type);