sanity
Version:
Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches
18 lines (16 loc) • 615 B
text/typescript
import {type ChunkType, type StudioLocaleResourceKeys} from 'sanity'
/**
* Maps from a chunk type to an i18n key for the operation
*
* @internal
*/
export const TIMELINE_ITEM_I18N_KEY_MAPPING: Record<ChunkType, StudioLocaleResourceKeys> = {
initial: 'timeline.operation.created-initial',
create: 'timeline.operation.created',
publish: 'timeline.operation.published',
editLive: 'timeline.operation.edited-live',
editDraft: 'timeline.operation.edited-draft',
unpublish: 'timeline.operation.unpublished',
discardDraft: 'timeline.operation.draft-discarded',
delete: 'timeline.operation.deleted',
}