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

13

8

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…?

patrick

Posted 2009-09-17T17:22:57.043

Reputation: 950

1In 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. – s4y – 2009-10-05T22:23:27.203

1It's a new 'feature' of Snow Leopard, that you can’t change the default language anymore via the information dialog. :( – patrick – 2009-10-08T10:02:54.580

Answers

2

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.

patrick

Posted 2009-09-17T17:22:57.043

Reputation: 950

12

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

TALlama

Posted 2009-09-17T17:22:57.043

Reputation: 321

1The 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. – patrick – 2009-09-25T08:55:05.757

2You almost got it, just get rid of the to App.app part: defaults write $(mdls -name kMDItemCFBundleIdentifier -raw /Applications/RapidWeaver.app) AppleLanguages "(en, de)" – s4y – 2009-10-05T22:21:29.533

1Thanks SidneySM I would gibe you my 'arrow up' and 'check' if I could :)

Works like charm. – patrick – 2009-10-06T12:47:18.683

2

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.

RobFromApplingua

Posted 2009-09-17T17:22:57.043

Reputation: 21

2

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. :(

patrick

Posted 2009-09-17T17:22:57.043

Reputation: 950

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 :) – Joost – 2014-02-16T14:25:13.760