ConvertDialog: Provide complete translation string for conversion

Gives the translator full control over the string's localization instead
of only one part of it.
This commit is contained in:
Lioncash 2021-08-24 10:21:51 -04:00
parent 70399955a0
commit a65fcb5e5b
1 changed files with 2 additions and 2 deletions

View File

@ -412,9 +412,9 @@ void ConvertDialog::Convert()
if (m_files.size() > 1) if (m_files.size() > 1)
{ {
// i18n: %1 is a filename.
progress_dialog.GetRaw()->setLabelText( progress_dialog.GetRaw()->setLabelText(
tr("Converting...") + QLatin1Char{'\n'} + tr("Converting...\n%1").arg(QFileInfo(QString::fromStdString(original_path)).fileName()));
QFileInfo(QString::fromStdString(original_path)).fileName());
} }
std::unique_ptr<DiscIO::BlobReader> blob_reader; std::unique_ptr<DiscIO::BlobReader> blob_reader;