locals

from keys and values added in locals/ar.json. and. locals/en.json you can access locals with key to print the value

locals/ar.json

{
    "home_title": "الصفحة الرئيسية",
    "products": "المنتجات"
}

inside twig file can be used like

<h1>{{ locals.home_title }}</h1>

Last updated

Was this helpful?