diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2020-06-20 03:57:51 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2020-06-20 03:57:51 +0200 |
commit | a7fe6dc232ec20a5da2f41807e428e666748d9d8 (patch) | |
tree | 030ad91f9f2713843060d18a395fa7b7fb5faa8a /src | |
parent | Fix compilation when not building with boxcat (diff) | |
download | yuzu-a7fe6dc232ec20a5da2f41807e428e666748d9d8.tar yuzu-a7fe6dc232ec20a5da2f41807e428e666748d9d8.tar.gz yuzu-a7fe6dc232ec20a5da2f41807e428e666748d9d8.tar.bz2 yuzu-a7fe6dc232ec20a5da2f41807e428e666748d9d8.tar.lz yuzu-a7fe6dc232ec20a5da2f41807e428e666748d9d8.tar.xz yuzu-a7fe6dc232ec20a5da2f41807e428e666748d9d8.tar.zst yuzu-a7fe6dc232ec20a5da2f41807e428e666748d9d8.zip |
Diffstat (limited to 'src')
-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() { .arg(QString::fromStdString(key)) .arg(FormatEventStatusString(value)); } - return {QStringLiteral("Current Boxcat Events"), std::move(out)}; + return {tr("Current Boxcat Events"), std::move(out)}; #else - return {QStringLiteral("Current Boxcat Events"), - tr("There are currently no events on boxcat.")}; + return {tr("Current Boxcat Events"), tr("There are currently no events on boxcat.")}; #endif } |