Shared Translations
shared/
└── translation.ts// shared/translation.ts
export default {
en: {
'$label.shared.title': 'Title',
'$label.shared.description': 'Description',
'$label.shared.read_more': 'Read More',
},
fr: {
'$label.shared.title': 'Titre',
'$label.shared.description': 'Description',
'$label.shared.read_more': 'Lire la suite',
},
} as const;Last updated
Was this helpful?
