-
I am unable to test my site from different locales, in all the locales I've tried with locabrowser The _config has Can someone tell me how I can make my site shown in a different language please Thank you 🙏🏻 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Just to be clear |
Beta Was this translation helpful? Give feedback.
-
It seems that GoatCounter might be showing the language based on the browser's language setting, not necessarily indicating that the user is viewing your site in Korean or Russian. You could try copying the specific language locale from |
Beta Was this translation helpful? Give feedback.
-
Hmm, thanks for asking @SoumyaK4. I thought it works dynamically, but I never got a chance to see it in action. You can use Chrome DevTools / Sensors / Location to test site behavior based on locale. Here are my observations. The config says:
So, if If you build a website locally and check for example So if you really need it, you have to implement it from scratch. Personally, I'm glad it's static so I can use English only everywhere, including posts. It will be a huge overhead to support multiple languages. This is too much for one person doing this as a hobby. |
Beta Was this translation helpful? Give feedback.
Hmm, thanks for asking @SoumyaK4. I thought it works dynamically, but I never got a chance to see it in action.
You can use Chrome DevTools / Sensors / Location to test site behavior based on locale.
Here are my observations.
The config says:
So, if
lang
is not set, thenen
should be used by default.If you build a website locally and check for example
_site/index.html
, you will find that text values are already set based onlang
. Also, there are no javascript files that use files from thelocale
folder…