Skip to content
Permalink
Browse files
Merge pull request #8934 from JosJuice/zstd-recommended
DolphinQt: Mark Zstandard as recommended for RVZ
  • Loading branch information
Tilka committed Jul 5, 2020
2 parents 23ecda7 + 7a45ca0 commit 0dbe8fb
Showing 1 changed file with 5 additions and 1 deletion.
@@ -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);
}

0 comments on commit 0dbe8fb

Please sign in to comment.