Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save donnior/1483894 to your computer and use it in GitHub Desktop.
Save donnior/1483894 to your computer and use it in GitHub Desktop.
How to change Application's language under Mac
#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