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:
parent
70399955a0
commit
a65fcb5e5b
|
@ -412,9 +412,9 @@ void ConvertDialog::Convert()
|
|||
|
||||
if (m_files.size() > 1)
|
||||
{
|
||||
// i18n: %1 is a filename.
|
||||
progress_dialog.GetRaw()->setLabelText(
|
||||
tr("Converting...") + QLatin1Char{'\n'} +
|
||||
QFileInfo(QString::fromStdString(original_path)).fileName());
|
||||
tr("Converting...\n%1").arg(QFileInfo(QString::fromStdString(original_path)).fileName()));
|
||||
}
|
||||
|
||||
std::unique_ptr<DiscIO::BlobReader> blob_reader;
|
||||
|
|
Loading…
Reference in New Issue