up vote 1 down vote favorite

I just installed MonoDevelop on my mac, and I like it. But I don't like the German translation and I can't find any place in the menus where I could change the interface language.

Any ideas?

flag

migrated from stackoverflow.com

5 Answers

up vote 2 down vote

On the Mac, applications try to follow the system wide language preference provided that they have the corresponding localization. So, the easiest way to change the menu language in MonoDevelop without changing the system preferences is to remove or rename the German localization so that the app will fall back to using the US menus.

To do this: control-click the icon for the MonoDevelop application and choose "Show Package Contents". Then navigate to the Resources subdirectory, find German.lproj (or something similar - I don't have MonoDevelop) and rename it. This will do the job.

link|flag
up vote 1 down vote

You'll need to run the program with the appropriate environment variables to tell gettext which translation to load/use. Here is some documentation on gettext environment variables.

LANGUAGE=en_US would be a good place to start, unfortunately I don't have an OSX machine to verify, let us know what works.

link|flag
up vote 0 down vote

Reading this mail from Miguel, you have to change the LANG environment variable LANG to LANG=en_US.UTF-8. I'm not familiar with Mac, but the linux terminal way would be prepending LANG=en_US.UTF-8 exactly before the command which changes this variable for the executing application.

link|flag
up vote 0 down vote

The only thing that helped me was using the following AppleScript and making it an applet:

do shell script "LANG=en_US.UTF-8 open /Applications/MonoDevelop.app"

This took me two hours to find this out :-(

-Matthias

link|flag
up vote 0 down vote

cefstat is right, the actual path is Contents/MacOS/share/locale/**

link|flag

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.