Skip to content

Commit

Permalink
Remove space before ellipsis (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
plata committed Jan 3, 2019
1 parent 274cd5a commit 14c44c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Engines/Wine/Verbs/gdiplus/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Wine.prototype.gdiplus = function () {
.name("WindowsXP-KB975337-x86-ENU.exe")
.get();

this.wizard().wait(tr("Please wait while {0} is installed ...", "GDI+"));
this.wizard().wait(tr("Please wait while {0} is installed...", "GDI+"));
this.run(setupFile, ["/extract:C:\\Tmp", "/q"], null, true, true);

this.overrideDLL()
Expand Down
2 changes: 1 addition & 1 deletion Utils/Functions/Net/Download/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Downloader.prototype.onlyIfUpdateAvailable = function (onlyIfUpdateAvailable) {
*/
Downloader.prototype.get = function () {
if (!this._message) {
this._message = tr("Please wait while {0} is downloaded ...", this._fetchFileNameFromUrl(this._url));
this._message = tr("Please wait while {0} is downloaded...", this._fetchFileNameFromUrl(this._url));
}

if (this._wizard) {
Expand Down
4 changes: 2 additions & 2 deletions i18n/Messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ Please\ wait\ until\ Steam\ has\ finished\ the\ download...=Please wait until St
Please\ wait\ until\ Uplay\ has\ finished\ the\ download...=Please wait until Uplay has finished the download...

#: Utils/Functions/Net/Download/script.js:108
Please\ wait\ while\ {0}\ is\ downloaded\ ...=Please wait while {0} is downloaded ...
Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded...

#: Utils/Functions/Net/Resource/script.js:80
Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded...
Expand All @@ -931,7 +931,7 @@ Please\ wait\ while\ {0}\ is\ downloaded...=Please wait while {0} is downloaded.
Please\ wait\ while\ {0}\ is\ extracted...=Please wait while {0} is extracted...

#: Engines/Wine/Verbs/gdiplus/script.js:18
Please\ wait\ while\ {0}\ is\ installed\ ...=Please wait while {0} is installed ...
Please\ wait\ while\ {0}\ is\ installed...=Please wait while {0} is installed...

#: Engines/Wine/Verbs/vcrun2017/script.js:18
#: Engines/Wine/Verbs/vcrun2017/script.js:29
Expand Down

0 comments on commit 14c44c6

Please sign in to comment.