Component
  
  
Translation navigation
A list of links to available translations
The active property indicates the current language.
How it looks (preview) (preview all)
How to call this component
<%= render "govuk_publishing_components/components/translation_nav", {
  translations: [
    {
      locale: "en",
      base_path: "/en",
      text: "English",
      active: true
    },
    {
      locale: "hi",
      base_path: "/hi",
      text: "हिंदी"
    }
  ]
} %>Accessibility acceptance criteria
The component must:
- be a landmark with a navigation role
- have an accessible name in the current language, eg “Translations”
The translation links must:
- 
    identify the language of the text Watch a screen reader pronounce text differently based on lang attribute 
Links in the component must:
- accept focus
- be focusable with a keyboard
- be usable with a keyboard
- indicate when they have focus
- change in appearance when touched (in the touch-down state)
- change in appearance when hovered
- be usable with touch
- be usable with voice commands
- have visible text
- have meaningful text
Other examples
Standard options
This component uses the component wrapper helper. It accepts the following options and applies them to the parent element of the component. See the component wrapper helper documentation for more detail.
- id- accepts a string for the element ID attribute
- data_attributes- accepts a hash of data attributes
- aria- accepts a hash of aria attributes
- classes- accepts a space separated string of classes, these should not be used for styling and must be prefixed with- js-
- margin_bottom- accepts a number from- 0to- 9(- 0pxto- 60px) using the GOV.UK Frontend spacing scale
- role- accepts a space separated string of roles
- lang- accepts a language attribute value
- open- accepts an open attribute value (true or false)
- hidden- accepts an empty string, ‘hidden’, or ‘until-found’
- tabindex- accepts an integer. The integer can also be passed as a string
- dir- accepts ‘rtl’, ‘ltr’, or ‘auto’
- type- accepts any valid type attribute e.g. ‘button’, ‘submit’, ‘text’
- rel- accepts any valid rel attribute e.g. ‘nofollow’
- target- accepts a valid target attribute e.g. ‘_blank’
- title- accepts any string
- draggable- accepts a draggable attribute value (“true” or “false”)
Multiple translations (preview)
<%= render "govuk_publishing_components/components/translation_nav", {
  translations: [
    {
      locale: "en",
      base_path: "/en",
      text: "English",
      active: true
    },
    {
      locale: "fr",
      base_path: "/fr",
      text: "Français"
    },
    {
      locale: "hi",
      base_path: "/hi",
      text: "हिंदी"
    },
    {
      locale: "ja",
      base_path: "/ja",
      text: "日本語"
    },
    {
      locale: "ur",
      base_path: "/ur",
      text: "اردو"
    },
    {
      locale: "zh",
      base_path: "/zh",
      text: "中文"
    }
  ]
} %>Right to left (preview)
<%= render "govuk_publishing_components/components/translation_nav", {
  translations: [
    {
      locale: "en",
      base_path: "/en",
      text: "English"
    },
    {
      locale: "ar",
      base_path: "/ar",
      text: "العربية",
      active: true
    }
  ]
} %>With number 10 branding (preview)
Organisation colour branding can be added to the component as shown.
<%= render "govuk_publishing_components/components/translation_nav", {
  brand: "prime-ministers-office-10-downing-street",
  translations: [
    {
      locale: "en",
      base_path: "/en",
      text: "English",
      active: true
    },
    {
      locale: "cy",
      base_path: "/cy",
      text: "Cymraeg"
    }
  ]
} %>With data attributes on links (preview)
Data attributes can be passed for each link as shown.
<%= render "govuk_publishing_components/components/translation_nav", {
  translations: [
    {
      locale: "en",
      base_path: "/en",
      text: "English",
      active: true,
      data_attributes: {
        an_attribute: "some_value1"
      }
    },
    {
      locale: "cy",
      base_path: "/cy",
      text: "Cymraeg",
      data_attributes: {
        an_attribute: "some_value2"
      }
    }
  ]
} %>