Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change Magento default admin language

Tags:

magento

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)

like image 678
user829174 Avatar asked Jan 04 '13 14:01

user829174


People also ask

How do I change the language on Magento?

Take the following steps in order to enable the language pack in Magento 2: Navigate to Stores > Configuration > General > Locale Options. Choose the corresponding language from the Locale dropdown. Note: in case you have several store views switch to the Store View you want to change the language for.

How do I change the default admin icon in Magento 2?

It helps you to customize your admin design and, most importantly, change the admin logos with no code editing. Following steps to change Magento admin panel logo: 1. Navigate to Stores > Configuration > Magefan Extensions > Admin View > Logos.


4 Answers

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

like image 102
OSdave Avatar answered Oct 12 '22 08:10

OSdave


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

  • For Default Config: admin language (English)
  • For Website Level: frontend language (German)

Then, on store level, you can still have other (partly translated) locales that would have the website level language as a fallback.

like image 27
pezi5499 Avatar answered Oct 12 '22 07:10

pezi5499


Follow the following steps and you will get what you want:

  1. In your Magento admin go to System > Manage Stores
  2. Click on Main Website Store under the Store Name (if there are several ones, click any of them)
  3. On the next page under Store Information select a different language in the Default Store View drop-down list.
  4. Click Save Store.
  5. Now every time you are opening the your site, it’s going to be in the language you selected.
  6. You can change the default language for the backend by going to System -> Configuration -> General -> Locale options.
like image 42
Neha Avatar answered Oct 12 '22 08:10

Neha


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.

like image 44
Louis B. Avatar answered Oct 12 '22 09:10

Louis B.