mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-24 12:25:00 +00:00
Fix TR (#1897)
This commit is contained in:
parent
4e8b8887df
commit
9b8de8d320
28 changed files with 112 additions and 112 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue