Skip to content

Instantly share code, notes, and snippets.

@martinratinaud
Created March 9, 2023 04:52
Show Gist options
  • Save martinratinaud/3b983d084ed26785f6f0dd2d0dd18a05 to your computer and use it in GitHub Desktop.
Save martinratinaud/3b983d084ed26785f6f0dd2d0dd18a05 to your computer and use it in GitHub Desktop.
Get translated country names in javascript
const frRegionNames = new Intl.DisplayNames(["fr"], { type: 'region' });
frRegionNames.of("US") // 👉 'États-Unis'
const enRegionNames = new Intl.DisplayNames(["en"], { type: 'region' })
enRegionNames.of("US") // 👉 'United States'
const esRegionNames = new Intl.DisplayNames(["es"], { type: 'region' })
esRegionNames.of("US") // 👉 'Estados Unidos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment