From 89f137b21114f99a345b676ec2298419f5e424f7 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Thu, 14 Jul 2022 23:41:38 +0200 Subject: [PATCH] SmartPlaylistSearchTermWidget: Remove tr from Strawberry --- src/smartplaylists/smartplaylistsearchtermwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smartplaylists/smartplaylistsearchtermwidget.cpp b/src/smartplaylists/smartplaylistsearchtermwidget.cpp index 3f711154f..aa6674f74 100644 --- a/src/smartplaylists/smartplaylistsearchtermwidget.cpp +++ b/src/smartplaylists/smartplaylistsearchtermwidget.cpp @@ -417,7 +417,7 @@ void SmartPlaylistSearchTermWidget::RelativeValueChanged() { } // Explain the user why he can't proceed if (ui_->value_date_numeric1->value() >= ui_->value_date_numeric2->value()) { - QMessageBox::warning(this, tr("Strawberry"), tr("The second value must be greater than the first one!")); + QMessageBox::warning(this, "Strawberry", tr("The second value must be greater than the first one!")); } // Emit the signal in any case, so the Next button will be disabled emit Changed();