import type { TranslationsDictionary } from '$types/TranslationsDictionary'; const tPage = { title: { sco: () => 'Page no fund', 'en-GB': () => 'Page not found', }, message: { sco: () => ` Yon page disna exeist. Try gaein til oor hame page? `, 'en-GB': () => ` That page doesn’t exist. Try going to our home page? `, }, }; type Raw = typeof tPage; export default tPage as TranslationsDictionary;