I'm using yii2 restful api for the backend, and angular for the frontend.
I want to ask about the best approach to implement multi-language feature that can manages both frontend an backend in the same place (db table, file).
I'm using yii2 restful api for the backend, and angular for the frontend.
I want to ask about the best approach to implement multi-language feature that can manages both frontend an backend in the same place (db table, file).
Copyright © 2021 Jogjafile Inc.
The theory and guides:
To implement|enable multi-language feature in a Yii2 application you should use
i18n
component https://www.yiiframework.com/doc/guide/2.0/en/tutorial-i18n.Next is to detect which language is requested|required|selected by
frontend
|backend
|api
. This can be done in several ways: headers, cookies, session, get, post or even by host name.Before handling an request you need to detect selected language, by some kind of priority, where is the language config stored and set it to application.
The code:
app/common/config/main.php
app/common/behaviours/LanguageHandler.php
Now you can use this to achieve your goals, also build your priority of detecting language.
From
Angular
you may set alanguage
header for requests.