smitti
smitti

Reputation: 1

Impresspages language settings in backend

I can't switch language into German. I've done this: Translate CMS core

ImpressPages tries to download required translations when you install new language. Full list of languages with available translations can be found on Transifex website. These translations are made by our community. You can help too and add some translations.

If default translations are missing in your language or you don't like the default ones, you can add your own translations. Just create a JSON file in files/translations/override directory with required translations. The JSON file uses the same syntax as described in plugin and theme translation cases above. Use Ip-admin-fr.json for administration page translations, and Ip-fr.json for other web site texts (here fr is two character language code). For plugin translations, use your plugin name. - See more at: http://www.impresspages.org/docs/translations#sthash.nGTMB2um.dpuf

The language in backend is already english. What's to do?

Upvotes: 0

Views: 707

Answers (3)

Mangirdas Skripka
Mangirdas Skripka

Reputation: 1647

Please read on ImpressPages documentation: http://www.impresspages.org/docs/translations

Section "Admin interface translations".

Upvotes: 0

Stancell
Stancell

Reputation: 386

Download https://www.transifex.com/projects/p/impresspages/resource/ip-admin/ German translation and put it as file/translations/original/Ip-admin-de.json

Add 'adminLocale' => 'de' in config.php:

return array(
    'adminLocale' => 'de',
    'sessionName' => 'ses1477701042', // prevents session conflict when two sites runs on the same server
    'developmentEnvironment' => 0, // displays error and debug information. Change to 0 before deployment to production server
    'showErrors' => 1, // 0 if you don't wish to display errors on the page
    ...
    ...
    ...
);

We will make this process easier in future releases.

Upvotes: 1

Mangirdas Skripka
Mangirdas Skripka

Reputation: 1647

When you add a new language, you actually add new language for the frontend not the backend. There is no graphich interface to change admin language yet. But you can take translations from https://www.transifex.com/projects/p/impresspages/ and put in the right place as described here in the last paragraph http://www.impresspages.org/docs/translations.

Upvotes: 0

Related Questions