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
20 lines (17 loc) • 476 B
text/typescript
import {defineLocaleResourceBundle} from 'sanity'
/**
* The locale namespace for the presentation tool
*
* @public
*/
export const presentationLocaleNamespace = 'presentation' as const
/**
* The default locale bundle for the presentation tool, which is US English.
*
* @internal
*/
export const presentationUsEnglishLocaleBundle = defineLocaleResourceBundle({
locale: 'en-US',
namespace: presentationLocaleNamespace,
resources: () => import('./resources'),
})