mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12:00
Qt: change labels in package installer (#7325)
This commit is contained in:
parent
795bc5d52b
commit
c1d7b46235
1 changed files with 2 additions and 2 deletions
|
@ -402,7 +402,7 @@ void main_window::InstallPackages(QStringList file_paths, bool show_confirm)
|
|||
return;
|
||||
}
|
||||
|
||||
progress_dialog pdlg(tr("RPCS3 Package Installer"), tr("Installing package ... please wait ..."), tr("Cancel"), 0, 1000, false, this);
|
||||
progress_dialog pdlg(tr("RPCS3 Package Installer"), tr("Installing package, please wait…"), tr("Cancel"), 0, 1000, false, this);
|
||||
pdlg.show();
|
||||
|
||||
// Synchronization variable
|
||||
|
@ -415,7 +415,7 @@ void main_window::InstallPackages(QStringList file_paths, bool show_confirm)
|
|||
progress = 0.;
|
||||
|
||||
pdlg.SetValue(0);
|
||||
pdlg.setLabelText(tr("Installing package %0/%1 ... please wait ...").arg(i + 1).arg(count));
|
||||
pdlg.setLabelText(tr("Installing package (%0/%1), please wait…").arg(i + 1).arg(count));
|
||||
pdlg.show();
|
||||
|
||||
Emu.SetForceBoot(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue