diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-27 18:26:45 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-27 18:29:47 +0100 |
| commit | 35c242f6abb614e1d545fb8a2a1180a451c22a54 (patch) | |
| tree | 12b905e8f8f489a4415ee37cdab4b55042f979ff /src/i18n/translations/pages | |
| parent | 85675451bcdeaf57d0887305f23731c5837a95a1 (diff) | |
Scotsoun release title includes ID
Diffstat (limited to 'src/i18n/translations/pages')
| -rw-r--r-- | src/i18n/translations/pages/scotsounRelease.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/i18n/translations/pages/scotsounRelease.ts b/src/i18n/translations/pages/scotsounRelease.ts new file mode 100644 index 0000000..d4036d8 --- /dev/null +++ b/src/i18n/translations/pages/scotsounRelease.ts @@ -0,0 +1,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>; |
