Translations

Learn about translation

How to add a new language

To add missing language, login as admin and

Go to admin Dashboard->Site Settings->Languages.

Then go to languages and click on Add language button.

Add the language you want

How to translate an existing string

Go to Root directory-> Resources->lang find your language.json file(er.json, ar.json etc)

then open the .json file find your words which you want to edit or add your new words.

If when translating the word it doesn't save it?

Solution:

It's a server-specific issue. Go to your project directory->configf folder->translation.php if you have

'ui_url' => 'languages',

then, replace with

'ui_url' => '/languages',

or if you have

'ui_url' => '/languages',

then, replace with

'ui_url' => 'languages',

If you want to do it manually then you can easily do that Go to your project directory->resources->lang folder. Here, which language do you want to change the .json (ex. en.json, fr.json, etc) file is available you can change in the .json file and save it.

Last updated

Was this helpful?