BigCommerce
Storefront
Cart and Checkout
Localization

Enabling Multi-Language Checkout

Multi-language setup

Cornerstone's Optimized Checkout (opens in a new tab) SCSS file and Order Confirmation (opens in a new tab) HTML file both contain Handlebars {{lang}} statements. These {{lang}} statements facilitate translation by enabling automatic rendering of their parameters into the default storefront language defined in the control panel. Checkout has been pre-translated into English, French, German, Italian, Norwegian, Polish, Portugese, Spanish, Swedish, Danish, and Dutch. You can override the pre-translations by providing the xx.json file for the language you want to override.

The following example shows how to use the {{lang}} statement in the header of the default checkout page (opens in a new tab):

{{#partial "head"}}
 
{{{ checkout.checkout_head }}}
{{{ stylesheet '/assets/css/optimized-checkout.scss' }}}
{{ getFontsCollection }}
 
<script type="text/javascript">
    window.language = {{{langJson 'optimized_checkout'}}};
</script>
 
{{{head.scripts}}}
 
{{/partial}}
 
{{#partial "page"}}
<header class="checkoutHeader optimizedCheckout-header">
    <div class="checkoutHeader-content">
        <h1 class="is-srOnly">{{lang 'checkout.title'}}</h1>
        <h2 class="checkoutHeader-heading">
            <a class="checkoutHeader-link" href="{{urls.home}}">
                {{#if checkout.header_image}}
                    <img alt="{{settings.store_logo.title}}" class="checkoutHeader-logo" id="logoImage" src="{{ checkout.header_image }}"/>
                {{ else }}
                    <span class="header-logo-text">{{settings.store_logo.title}}</span>
                {{/if}}
            </a>
        </h2>
    </div>
</header>
 
{{{ checkout.checkout_content }}}
 
{{{ footer.scripts }}}
 
{{/partial}}
 
{{> layout/empty}}

Browsing hidden translation keys

BigCommerce exposes only part of the checkout page's structure through the local checkout template. For security purposes, and to offer all stores new checkout features simultaneously, most checkout content is hidden.

This hidden content includes additional key-value pairs that support translation. You can see all the available keys with their default English-language values in the Optimized Checkout (opens in a new tab) JSON file.

Adding your own translation values

You can provide values for all of the checkout's supported translation keys even without direct access to the hidden parts of the checkout template. Here is how:

  1. Download checkout's en.json (opens in a new tab) file (GitHub).
  2. Copy and paste the file's contents into your theme's en.json file.
  3. Copy and paste the file's contents into each of the corresponding json files for the other languages you support. For naming requirements, see Translation Keys.
Supported LanguageRequired Translation File Name
Danishda.json
Dutchnl.json
Englishen.json
Frenchfr.json
Germande.json
Italianit.json
Norwegianno.json
Polishpl.json
Portuguesept.json
Portuguese (Brazil)pt-BR.json
Spanish (Argentina)es-AR.json
Spanish (Chile)es-CL.json
Spanish (Columbia)es-CO.json
Spanish (Latin America & Caribbean)es-419.json
Spanish (Mexico)es-MX.json
Spanish (Peru)es-PE.json
Spanish (Spain)es.json
Swedishsv.json
  1. Replace the values with appropriate phrases in each file's target language.

Localized country and state names

BigCommerce's Optimized One-Page Checkout will translate displayed Country/State names into supported languages. To take advantage of this functionality, enable Optimized One-Page Checkout on your store. You do not need to provide any keys-values for the Country/State names already translated within the BigCommerce platform. As with the translation options described above, the storefront will automatically display the translated Country/State names based on the default storefront language defined in the control panel.

Limits on translation

  • The translation of your theme's content consists of the language JSON files in your lang subdirectory and the key-value pairs for the parameters (beyond Country/State) that you choose to translate.

  • Stencil's multi-language capabilities are limited to the strings that you specify within the theme. The Stencil framework does not currently translate content rendered from a store's database; for example, products' names.

  • Within these limitations, if you intend to do business internationally, we recommend that you specify appropriate alternate-language strings for key parts of your storefront, product catalog, and checkout. Doing so will make browsing, purchasing, and payment easier for users in your target market(s). For an overview of all localization options, see Localizing Stores.

Resources

Additional resources

Did you find what you were looking for?