Using JSON translation in your theme.
Ex:
// In blade views
{{ __('Text you want to translate here') }}
// In controllers
__('Hello')
To translate your theme to other language. Add .json file in /platform/themes/[your-theme]/lang
.
Ex: to translate your theme to Vietnamese.
/platform/themes/[your-theme]/lang/vi.json
{
"Text you want to translate here": "Đoạn văn bản mà bạn muốn dịch",
"Hello": "Xin chào"
}
You can also translate it from UI.
{note} You can see full example in /platform/themes/ripple