Skip to content

Commit

Permalink
Fix ellipsis
Browse files Browse the repository at this point in the history
… is an UTF-8 character and those don't really belong in messages like this anyway
  • Loading branch information
CookiePLMonster authored and Nekotekina committed Jan 30, 2020
1 parent 9246616 commit 360e484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpcs3/rpcs3qt/main_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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);
Expand Down

0 comments on commit 360e484

Please sign in to comment.