mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-20 09:52:13 +01:00
0c325b4ff6
This fixes the locale not being set correctly in some cases, and forces CFBundleDevelopmentRegion to en to overcome High Sierra Java bug Patch: ``` diff -r 97eb6c13cf33 appbundler/src/com/oracle/appbundler/AppBundlerTask.java --- a/appbundler/src/com/oracle/appbundler/AppBundlerTask.java Wed Aug 02 12:06:27 2017 +0200 +++ b/appbundler/src/com/oracle/appbundler/AppBundlerTask.java Thu Sep 21 16:13:04 2017 +0200 @@ -601,7 +601,7 @@ xout.writeCharacters("\n"); // Write bundle properties - writeProperty(xout, "CFBundleDevelopmentRegion", "English"); + writeProperty(xout, "CFBundleDevelopmentRegion", "en"); writeProperty(xout, "CFBundleExecutable", executableName); writeProperty(xout, "CFBundleIconFile", (icon == null) ? DEFAULT_ICON_NAME : icon.getName()); writeProperty(xout, "CFBundleIdentifier", identifier); ```
2 lines
41 B
Plaintext
2 lines
41 B
Plaintext
63259fca0c3c7588d3d01a5aeec96c615362186a
|