Created
December 16, 2011 01:03
-
-
Save donnior/1483894 to your computer and use it in GitHub Desktop.
How to change Application's language under Mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#change some specific application's interface language | |
defaults write com.google.Chrome AppleLanguages "(zh_CN,en_US)" | |
defaults write com.apple.iWork.Pages AppleLanguages "(zh_CN,en_US)" | |
defaults write com.apple.Aperture AppleLanguages "(zh_CN,en_US)" | |
#change all applications' interface language, don't recommend. | |
defaults write NSGlobalDomain AppleLanguages "(en_US,zh_CN)" | |
defaults write NSGlobalDomain AppleLanguages "(zh_CN,en_US)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment