> ## Documentation Index
> Fetch the complete documentation index at: https://memberful.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Choose your language

> Choose from 15 languages for Memberful's checkout, member account, and emails to connect with members worldwide in the language they prefer to read.

export const RelatedDocs = ({link1, link2, link3, link4, link5, link6, link7, link8, link9, link10, className = ""}) => {
  const links = [link1, link2, link3, link4, link5, link6, link7, link8, link9, link10].filter(Boolean);
  if (!links.length) return null;
  return <section className={`related-docs border dark:border-gray-700 rounded-2xl px-6 py-4 mt-6 ${className}`}>
      <p className="mb-2 font-medium">
        <strong>Related help docs:</strong>
      </p>
      <ul className="space-y-1 mb-1 mt-1">
        {links.map((link, index) => <li key={index}>
            <a href={link.url}>{link.label}</a>
          </li>)}
      </ul>
    </section>;
};

export const ContactSupport = ({label = "Contact us to get set up →", fallbackEmail = "info@memberful.com", className = ""}) => {
  const handleClick = e => {
    e.preventDefault();
    if (typeof window !== 'undefined' && window.Intercom) {
      try {
        window.Intercom('showNewMessage');
        return;
      } catch (error) {
        console.warn('Intercom failed to open:', error);
      }
    }
    window.location.href = `mailto:${fallbackEmail}`;
  };
  return <a href={`mailto:${fallbackEmail}`} onClick={handleClick} className={className}>
      {label}
    </a>;
};

This applies to all **member-facing pages,** like your checkout, member profiles, and all transactional emails. All members will see the language that you select, and they cannot choose their own custom language.

In this help article, we'll show you how Memberful supports 15 different languages and 3 English-speaking locales.

To select your language, go to *Settings → Localization* in your Memberful dashboard.

<Frame>
  <img src="https://mintcdn.com/memberful/rh_I8e0Vok-s0pFM/images/settings/choose-your-language/choose-language.png?fit=max&auto=format&n=rh_I8e0Vok-s0pFM&q=85&s=8641f59ce4b439737f96031025837c30" alt="Choose your language" width="1440" height="898" data-path="images/settings/choose-your-language/choose-language.png" />
</Frame>

In addition to translated words, your selected language will also localize the formatting of dates and currencies through your member-facing pages. In your Memberful dashboard, you'll see a preview of those localizations when you select different languages. You'll also see an option to [process your payments in a different currency](/configuration/localization/choose-your-currency/).

Memberful supports the following languages:

* English
* Czech
* Danish
* Dutch
* French
* German
* Hungarian
* Italian
* Japanese
* Norwegian
* Polish
* Portuguese
* Romanian
* Spanish
* Swedish

Additionally, Memberful supports three English-speaking locales:

* English (United States)
* English (United Kingdom)
* English (Australia)

<Callout icon="info" color="#22E273">
  If you don't see your language listed and would like us to support it, <ContactSupport label="please contact us" />.
</Callout>

<RelatedDocs
  link1={{
url: "/account-management/account-settings/update-your-site-and-account-settings/",
label: "Update your website and account settings.",
}}
  link2={{
url: "/manage-your-account/email-notification-settings/",
label: "Manage your email notification settings.",
}}
/>
