You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@pheeria@jarjan Simply using the i18n json doesn't work since the tab information is described in home.js. Any idea how to work around this? Here the code snippet:
constourValues=()=>({badge: "Über Uns",title: "Unsere Werte / Our Values",text: "Dafür steht Die Lernwerkstatt.",link: "/values",image: "img/home/notebook.png"});
The text was updated successfully, but these errors were encountered:
The easiest, although not the cleanest, solution would be reading incoming cookies.
You can access them under req.cookies, and our language cookie is called locale. So, because ourValues is a function, you could pass req.cookies.locale to it and conditionally decide what text to return in each case.
@pheeria @jarjan Simply using the i18n json doesn't work since the tab information is described in
home.js
. Any idea how to work around this? Here the code snippet:The text was updated successfully, but these errors were encountered: