For the complete documentation index, see llms.txt. This page is also available as Markdown.

Override labels

It's possible to change certain labels for certain languages in the UI of the Rubens Configurator.

For example, if you want to change what's written on the Request Product button you can use the translations options to change it:

const options = {
  locale: 'en',
  translations: {
    en: {
      params: {
        'request-product': 'Add to cart',
      },
    },
  },
};

Last updated