mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-10 05:38:49 +00:00
Fix TR (#1897)
This commit is contained in:
@@ -287,11 +287,11 @@ public:
|
||||
#endif
|
||||
QMessageBox::information(
|
||||
nullptr, tr("Shortcut creation"),
|
||||
QString(tr("Shortcut created successfully!\n %1")).arg(linkPath));
|
||||
QString(tr("Shortcut created successfully!") + "\n%1").arg(linkPath));
|
||||
} else {
|
||||
QMessageBox::critical(
|
||||
nullptr, tr("Error"),
|
||||
QString(tr("Error creating shortcut!\n %1")).arg(linkPath));
|
||||
QString(tr("Error creating shortcut!") + "\n%1").arg(linkPath));
|
||||
}
|
||||
} else {
|
||||
QMessageBox::critical(nullptr, tr("Error"), tr("Failed to convert icon."));
|
||||
@@ -305,11 +305,11 @@ public:
|
||||
#endif
|
||||
QMessageBox::information(
|
||||
nullptr, tr("Shortcut creation"),
|
||||
QString(tr("Shortcut created successfully!\n %1")).arg(linkPath));
|
||||
QString(tr("Shortcut created successfully!") + "\n%1").arg(linkPath));
|
||||
} else {
|
||||
QMessageBox::critical(
|
||||
nullptr, tr("Error"),
|
||||
QString(tr("Error creating shortcut!\n %1")).arg(linkPath));
|
||||
QString(tr("Error creating shortcut!") + "\n%1").arg(linkPath));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user