country-code.html 499 B

123456789101112131415
  1. {{ $languageCode:= .Lang }}
  2. {{/* by default the language code and the country code are same */}}
  3. {{ $countryCode:= $languageCode }}
  4. {{/* language code and country code are not same for some countries. we need to fix them. */}}
  5. {{ if eq $languageCode "en" }}
  6. {{ $countryCode = "gb" }}
  7. {{ else if eq $languageCode "bn" }}
  8. {{ $countryCode = "bd" }}
  9. {{ else if eq $languageCode "hi" }}
  10. {{ $countryCode = "in" }}
  11. {{ end }}
  12. {{/* return the country code */}}
  13. {{ return $countryCode }}