localization i18n - restarone/violet_rails GitHub Wiki

Getting the visitor locale

the /cookies/fetch endpoint serves locale data

<script>
  $.getJSON("/cookies/fetch", function(data) {
    console.log(data); 
    // {
    //   "cookies_accepted": "true",
    //   "ahoy_visitor_token": "dae5544b-9d9a-4b14-a030-c32ceb5c68b8",
    //   "ahoy_visit_token": "b8e00bd5-abda-4840-bbac-c91457149a6e",
    //   "metadata": {
    //       "ip_address": "142.184.42.152",
    //       "country": "Canada",
    //       "country_code": "CA"
    //   }
    // } 
  });
</script>
⚠️ **GitHub.com Fallback** ⚠️