diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-14 19:52:37 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-14 19:52:37 +0100 |
| commit | fe4c9492d28c8afcd2a999245865ce5f8a907203 (patch) | |
| tree | 192ee2ac9e46e60fe171c360c8e64ff301f32788 /src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts | |
| parent | 7781c69153e3956ca14684fe9a287fbbb8a01082 (diff) | |
Better variable naming in i18n translations
Diffstat (limited to 'src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts')
| -rw-r--r-- | src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts b/src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts index 3089a4d..552f375 100644 --- a/src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts +++ b/src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts @@ -1,7 +1,7 @@ import type ScotsounId from '$types/ScotsounId'; import type { TranslationsDictionary } from '$types/TranslationsDictionary'; -const scotsounPaymentSuccessConfirmation = { +const tPage = { title: { sco: () => 'Payment Success', 'en-GB': () => 'Payment Success', @@ -23,5 +23,5 @@ const scotsounPaymentSuccessConfirmation = { }, }; -type Raw = typeof scotsounPaymentSuccessConfirmation; -export default scotsounPaymentSuccessConfirmation as TranslationsDictionary<Raw>; +type Raw = typeof tPage; +export default tPage as TranslationsDictionary<Raw>; |
