diff options
-rw-r--r-- | Mac/IDLE/IDLE.app/Contents/Info.plist | 2 | ||||
-rw-r--r-- | Mac/Resources/app/Info.plist.in | 2 | ||||
-rw-r--r-- | Mac/Resources/framework/Info.plist.in | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2023-12-16-11-45-32.gh-issue-108269.wVgCHF.rst | 4 |
4 files changed, 10 insertions, 0 deletions
diff --git a/Mac/IDLE/IDLE.app/Contents/Info.plist b/Mac/IDLE/IDLE.app/Contents/Info.plist index fea06d4..20b97b6 100644 --- a/Mac/IDLE/IDLE.app/Contents/Info.plist +++ b/Mac/IDLE/IDLE.app/Contents/Info.plist @@ -56,5 +56,7 @@ <string>%version%</string> <key>NSHighResolutionCapable</key> <true/> + <key>CFBundleAllowMixedLocalizations</key> + <true/> </dict> </plist> diff --git a/Mac/Resources/app/Info.plist.in b/Mac/Resources/app/Info.plist.in index 4ec828f..8362b19 100644 --- a/Mac/Resources/app/Info.plist.in +++ b/Mac/Resources/app/Info.plist.in @@ -58,5 +58,7 @@ <string>(c) 2001-2023 Python Software Foundation.</string> <key>NSHighResolutionCapable</key> <true/> + <key>CFBundleAllowMixedLocalizations</key> + <true/> </dict> </plist> diff --git a/Mac/Resources/framework/Info.plist.in b/Mac/Resources/framework/Info.plist.in index e131c20..238441c 100644 --- a/Mac/Resources/framework/Info.plist.in +++ b/Mac/Resources/framework/Info.plist.in @@ -24,5 +24,7 @@ <string>????</string> <key>CFBundleVersion</key> <string>%VERSION%</string> + <key>CFBundleAllowMixedLocalizations</key> + <true/> </dict> </plist> diff --git a/Misc/NEWS.d/next/macOS/2023-12-16-11-45-32.gh-issue-108269.wVgCHF.rst b/Misc/NEWS.d/next/macOS/2023-12-16-11-45-32.gh-issue-108269.wVgCHF.rst new file mode 100644 index 0000000..8559845 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2023-12-16-11-45-32.gh-issue-108269.wVgCHF.rst @@ -0,0 +1,4 @@ +Set ``CFBundleAllowMixedLocalizations`` to true in the Info.plist for the +framework, embedded Python.app and IDLE.app with framework installs on +macOS. This allows applications to pick up the user's preferred locale when +that's different from english. |