blob: d4036d8bc1d848a5ec79c04fd7a8b582614e6a04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import type ScotsounId from '$types/ScotsounId';
import type { TranslationsDictionary } from '$types/TranslationsDictionary';
const tPage = {
title: {
sco: ({ scotsounId, name }: { scotsounId: ScotsounId; name: string }) =>
`${name} (Scotsoun SSCD${scotsounId})`,
'en-GB': ({ scotsounId, name }: { scotsounId: ScotsounId; name: string }) =>
`${name} (Scotsoun SSCD${scotsounId})`,
},
};
type Raw = typeof tPage;
export default tPage as TranslationsDictionary<Raw>;
|