summaryrefslogtreecommitdiff
path: root/src/i18n/translations/pages
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-27 18:26:45 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-27 18:29:47 +0100
commit35c242f6abb614e1d545fb8a2a1180a451c22a54 (patch)
tree12b905e8f8f489a4415ee37cdab4b55042f979ff /src/i18n/translations/pages
parent85675451bcdeaf57d0887305f23731c5837a95a1 (diff)
Scotsoun release title includes ID
Diffstat (limited to 'src/i18n/translations/pages')
-rw-r--r--src/i18n/translations/pages/scotsounRelease.ts14
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>;