Skip to main content

Part 5: Defining translation keys

caution

This tutorial is intended for those who started their FastStore project with the Store Components starter. If you started your project with the Base Store starter, please refer to this tutorial.

Introduction​

Now that we have created our Section schemas and Content Types, we will declare the messages that will serve as translation keys for our components.


Defining and exporting translation keys​

Declare the translation keys directly inside messages in the builderConfig object as in the following example.

src/@vtex/gatsby-plugin-cms/index.ts
import type { Schema, ContentTypes, BuilderConfig } from '@vtex/gatsby-plugin-cms'
import { PLP } from '@vtex/gatsby-plugin-cms'

const AwesomeComponent: Schema = {
...
},

const siteMetadata: Schema = {
...
},

const facebook: Schema = {
...
}

export const contentTypes: ContentTypes = {
...
}

export const builderConfig: BuilderConfig = {
blocks: {
...
},
contentTypes,
messages: {
'admin/socialmediaTitle': 'Social Media',
'admin/meta/socialmediaTitleFieldTitle': 'Title',
'admin/meta/socialmediaTitleFieldDescription':
'Appears when a link to this page is shared on social media',
'admin/meta/socialmediaDescriptionFieldTitle': 'Description',
'admin/meta/socialmediaDescriptionFieldDescription':
'Appears when a link to this page is shared on social media',
'admin/meta/socialmediaImageFieldTitle': 'Thumbnail',
'admin/meta/socialmediaImageFieldDescription':
'Appears when the page is shared on social media',
},
}

Didn't find your answers? Ask the Community. For documentation suggestions, submit your feedback.

JOIN THE COMMUNITY