-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Multi-language setup support #768
Comments
Use |
|
Thanks for your quick reply. For your reply:
BTW, how to add comment as a reply. Thanks for your project and make my setup work easy :) |
Doc is a little bit outdated — if you set root key UPDATE: fixed in 7.6.0 |
Well... I suggest you to not build 3 different apps — but instead one app that can select language in the runtime using windows locale. It is how NSIS works — it can be changed, but sorry, I am not going to implement it (pull request will be accepted or may be custom script will help). |
I tried with the NSIS setup on Windows 10 with different languages. And it looks that the setup file is support multi-UI, all pages shown with localization text except the 1st page which allow select install per-machine or per-user, it keeps showing in English. |
Yes, as stated "Our custom strings are not translated, please file PR. This issue will be closed.". Please file pull request. If you cannot, but it is important for you, well... I will try to fix. |
Got it, I'll try again. I made a mistake about the location of directories, it's not under build but at the same level. Could you please add similar code to support --em.directories like support --em.build? If support then I can use build with scripts instead of buildall.js I made: Thanks for your help. |
Yeah, sorry for confusion, fixed (will be published soon). |
@JiaHenry you should also put your language id in double quotes (i.e. it expects a string). i.e. Change Note: |
This is a question not an issue.
I want make windows setup (NSIS) files of our app for multi-language (English, Chinese & Japanese).
The files structure is as following:
/myapp
/build
package.json
/en
/cn
/jp
What I do now is, use one package.json for build, and for each language
Use en for example: it's
/en -> /app => build ... => /dist -> /dist-en, /app -> /en
Here some my question: if it's possible to support those steps with options or additional config item.
Also I want to know how to make the build.nsis.language work as expected, I'm still get an English version even I set it to 1041 (setup with Japanese is expected)
"nsis": { "oneClick": false, "allowElevation": false, "language": 1041 }
Thanks.
The text was updated successfully, but these errors were encountered: