Can I change the default language of a application / program in Snow Leopard?

14,148

Solution 1

There’s now an application which handles the task elegantly; you can even set the language permanently: Language Switcher.

Update: There is now another application which is available in the MAS: App Language Chooser.

Solution 2

If you only want to do it occasionally, then look at the LaunchApp Plugin.

If you want to set it on a more permanent basis, run this script in a terminal window (a Terminal Window from /Applications/Utilities/Terminal):

defaults write $(mdls -name kMDItemCFBundleIdentifier -raw /Applications/Path\ to\ App.app) AppleLanguages "(de, en)"

Where you replace the path to your application (remember to escape spaces with a backslash) and the language codes with whatever you are looking for. After running this script, the application will always launch in whatever language you've specified first (assuming that language exists).

If you ever want to remove the preference, use:

defaults delete $(mdls -name kMDItemCFBundleIdentifier -raw /Applications/Path\ to\ App.app) AppleLanguages

Solution 3

One could manually remove all the other languages of an application by right-clicking it > show package content < and remove all unwanted languages.

But this is far of from an elegant solution. :(

Solution 4

Just to let you know, some applications, such as Adobe's Creative Suite, only install in one language. It's often not possible to switch like you can do with so many other OS X apps.

If interested, we also make another Language Switching app available on the MAS: http://itunes.apple.com/app/linguaswitch/id464896493?mt=12

All solutions to changing app language are based on what's available in the app bundle itself. They can't provide you with new languages by translating on the fly, as I notice some users of LinguaSwitch thought.

Share:
14,148

Related videos on Youtube

Kyle
Author by

Kyle

// LOVE: webdesign + code + workflow optimization // WAS: certified audio-engineer // NOW: self-employed // EX: tech blogger and podcaster

Updated on September 17, 2022

Comments

  • Kyle
    Kyle almost 2 years

    It used to be so easy in Leopard via the information dialog one could set any application to start in the desired language. Some programs like Things or the Adobe Creative Suite are simply more effective in english. I want to have this feature back - but how…?

    • Admin
      Admin over 14 years
      In addition to following the directions below, you may want to contact the developers of those applications to let them know that their localization needs improvement.
    • Admin
      Admin over 14 years
      It's a new 'feature' of Snow Leopard, that you can’t change the default language anymore via the information dialog. :(
  • Kyle
    Kyle almost 15 years
    The 2nd solution via Terminal seems to be exactly what I’m looking for. Would you be so kind give me one real life example instead of placeholders. Like this for changing RapidWeaver from launching in german to english: > defaults write $(mdls -name kMDItemCFBundleIdentifier -raw /Applications/RapidWeaver.app to RapidWeaver.app) AppleLanguages "(en, de)" I’m kind of struggling to find the right way to enter it in terminal. I always get > Unexpected argument find; leaving defaults unchanged. Thanks a lot so far.
  • Kyle
    Kyle over 14 years
    Thanks SidneySM I would gibe you my 'arrow up' and 'check' if I could :) Works like charm.
  • Joost
    Joost over 10 years
    Just wanted to let you know that I like this solution for apps with a shoddy translation to my locale. I'd much prefer English over a mucky attempt with errors everywhere, so I was glad to find I could just delete it :)