Reputation: 6362
I have Magento 1.7.0.2 German website. How can i change the admin panel to be English by default? (i know that i can select the language from the drop down list, however i want it to be set to English by default)
Upvotes: 15
Views: 47810
Reputation: 1
I found a small dropdown window in the bottom left corner of the default admin window that allowed me to change this. I managed to fix it... not an easy thing to find.
Upvotes: 0
Reputation: 8585
In top menu
system > config > (general) general > locale options > locale > english (US)
be sure to set that at the "default config" scope, and log out and then in to be taken into account
Upvotes: 22
Reputation: 81
In General, if you want a shop frontend default language that differs from the admin default language, the easiest way is:
Set Configuration -> General -> Locale Options -> Locale
Then, on store level, you can still have other (partly translated) locales that would have the website level language as a fallback.
Upvotes: 8
Reputation: 71
Follow the following steps and you will get what you want:
Upvotes: 2
Reputation: 2368
The solution proposed in the other answer also affects the front-end, so it might not be ideal for some scenarios: For example if you have multiple stores in the front-end and their default language should be English, you might not want to set the default locale to anything other than English.
I found Aoe_BackendDefaultLanguage extension on GitHub that allows to set a default language per admin account. It seems to be working good so far and the code seems quite clean.
Upvotes: 1