hisorange / browser-detect

Browser Detection for Laravel by hisorange!
https://browser-detect.com
MIT License
1.08k stars 143 forks source link

Can i get language? #174

Closed tongso closed 3 years ago

tongso commented 3 years ago

how can i get language ?

PoOwAa commented 3 years ago

This package does not have language recognition, because the User-Agent does not contain it.

There are 2 ways to get your users language:

  1. Check the request header for accept-language it will have something like: hu-HU,hu;q=0.9,en-US;q=0.8,en;q=0.7,de;q=0.6. You can find more info here about accept-language header
  2. Check on client-side with javascript: window.navigator.language more info about NavigatorLanguage.language