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/home.ts | |
| parent | 7781c69153e3956ca14684fe9a287fbbb8a01082 (diff) | |
Better variable naming in i18n translations
Diffstat (limited to 'src/i18n/translations/pages/home.ts')
| -rw-r--r-- | src/i18n/translations/pages/home.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/i18n/translations/pages/home.ts b/src/i18n/translations/pages/home.ts index 70765d2..635b33a 100644 --- a/src/i18n/translations/pages/home.ts +++ b/src/i18n/translations/pages/home.ts @@ -1,11 +1,11 @@ import type { TranslationsDictionary } from '$types/TranslationsDictionary'; -const homeTranslations = { +const tPage = { title: { sco: () => 'Hame', 'en-GB': () => 'Home', }, }; -type Raw = typeof homeTranslations; -export default homeTranslations as TranslationsDictionary<Raw>; +type Raw = typeof tPage; +export default tPage as TranslationsDictionary<Raw>; |
