-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added required UIRef for localized strings #8884
Conversation
Thanks! Do you mind changing the commit message?
|
I've updated the commit msg. Not sure why the CI failed on an ARM build for Linux as this only touches the MSI installer for Windows... seems unrelated. |
ping... @fhinkel any thing else you need on this? |
c133999
to
83c7a88
Compare
This simple fix has been out a couple month... anything else needed here? |
@nodejs/platform-windows |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't reproduce the original issue as I don't have a non-english OS at hand, but the fix makes sense.
I've tested a MSI build with this on Windows 2008R2 and Windows 10 and did not see any issue.
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: #8884
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: nodejs#8884
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: #8884
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: #8884
@joaocgreis I've backported to v4 and v6, let me know if we should not land it. |
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: #8884
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: #8884
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: #8884
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: #8884
Reviewed-By: João Reis <reis@janeasystems.com> PR-URL: #8884
Checklist
make -j8 test
(UNIX), orvcbuild test nosign
(Windows) passesDescription of change
Installing the latest builds on Windows, I noticed the installer was display incorrect strings for the status text on the progress page. Digging into this a little I found the root cause.
It appears localization work has started on the installer (even though still only for en-us at the moment). However a
UIRef
element required for localized errors and progress text is missing, causing the progress status messages (and others) in the installer to display the template string incorrectly.This fix simply adds the required
UIRef
as outlined at the end of the doc page at http://wixtoolset.org/documentation/manual/v3/wixui/wixui_localization.html, or in the StackOverflow answer at http://stackoverflow.com/a/5986030/1674945 .Below shows the progress dialog before and after the change.
Before
After