diff options
| -rw-r--r-- | src/yuzu/configuration/configure_service.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/yuzu/configuration/configure_service.cpp b/src/yuzu/configuration/configure_service.cpp index 92a1737b3..0de7a4f0b 100644 --- a/src/yuzu/configuration/configure_service.cpp +++ b/src/yuzu/configuration/configure_service.cpp | |||
| @@ -106,10 +106,9 @@ std::pair<QString, QString> ConfigureService::BCATDownloadEvents() { | |||
| 106 | .arg(QString::fromStdString(key)) | 106 | .arg(QString::fromStdString(key)) |
| 107 | .arg(FormatEventStatusString(value)); | 107 | .arg(FormatEventStatusString(value)); |
| 108 | } | 108 | } |
| 109 | return {QStringLiteral("Current Boxcat Events"), std::move(out)}; | 109 | return {tr("Current Boxcat Events"), std::move(out)}; |
| 110 | #else | 110 | #else |
| 111 | return {QStringLiteral("Current Boxcat Events"), | 111 | return {tr("Current Boxcat Events"), tr("There are currently no events on boxcat.")}; |
| 112 | tr("There are currently no events on boxcat.")}; | ||
| 113 | #endif | 112 | #endif |
| 114 | } | 113 | } |
| 115 | 114 | ||