summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2020-07-05 12:52:59 +0200
committerJosJuice <josjuice@gmail.com>2020-07-05 12:52:59 +0200
commit7a45ca0334e33353dd64fe7a8f8764cd16470fa4 (patch)
tree3e2422d93933dc9a90c283a47b70457f6cb679a5 /Source
parent23ecda7ed0ac46fdd568ec06d1432746605ddcde (diff)
DolphinQt: Mark Zstandard as recommended for RVZ
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinQt/ConvertDialog.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/ConvertDialog.cpp b/Source/Core/DolphinQt/ConvertDialog.cpp
index 24548a9d2d..7ce6ed4db0 100644
--- a/Source/Core/DolphinQt/ConvertDialog.cpp
+++ b/Source/Core/DolphinQt/ConvertDialog.cpp
@@ -251,7 +251,11 @@ void ConvertDialog::OnFormatChanged()
if (format == DiscIO::BlobType::RVZ)
{
- AddToCompressionComboBox(QStringLiteral("Zstandard"), DiscIO::WIARVZCompressionType::Zstd);
+ // i18n: %1 is the name of a compression method (e.g. Zstandard)
+ const QString recommended = tr("%1 (recommended)");
+
+ AddToCompressionComboBox(recommended.arg(QStringLiteral("Zstandard")),
+ DiscIO::WIARVZCompressionType::Zstd);
m_compression->setCurrentIndex(m_compression->count() - 1);
}