summaryrefslogtreecommitdiff
path: root/src/i18n/translations/components/scotsoun.ts
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-14 19:52:37 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-14 19:52:37 +0100
commitfe4c9492d28c8afcd2a999245865ce5f8a907203 (patch)
tree192ee2ac9e46e60fe171c360c8e64ff301f32788 /src/i18n/translations/components/scotsoun.ts
parent7781c69153e3956ca14684fe9a287fbbb8a01082 (diff)
Better variable naming in i18n translations
Diffstat (limited to 'src/i18n/translations/components/scotsoun.ts')
-rw-r--r--src/i18n/translations/components/scotsoun.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/i18n/translations/components/scotsoun.ts b/src/i18n/translations/components/scotsoun.ts
index 51017a7..36e96b0 100644
--- a/src/i18n/translations/components/scotsoun.ts
+++ b/src/i18n/translations/components/scotsoun.ts
@@ -3,7 +3,7 @@ import type { TranslationsDictionary } from '$types/TranslationsDictionary';
import type Date from '$types/Date';
import { defaultLocale } from '$i18n/locales';
-const scotsounTranslations = {
+const tScotsoun = {
'cover-artist': {
sco: ({ coverArtist }: { coverArtist: string }) => `Cover airtist: ${coverArtist}.`,
'en-GB': ({ coverArtist }: { coverArtist: string }) => `Cover airtist: ${coverArtist}.`,
@@ -20,5 +20,5 @@ const scotsounTranslations = {
},
};
-type Raw = typeof scotsounTranslations;
-export default scotsounTranslations as TranslationsDictionary<Raw>;
+type Raw = typeof tScotsoun;
+export default tScotsoun as TranslationsDictionary<Raw>;