diff options
Diffstat (limited to 'src/i18n/translations/components/languageLinks.ts')
| -rw-r--r-- | src/i18n/translations/components/languageLinks.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/i18n/translations/components/languageLinks.ts b/src/i18n/translations/components/languageLinks.ts index 2a18448..e1bac66 100644 --- a/src/i18n/translations/components/languageLinks.ts +++ b/src/i18n/translations/components/languageLinks.ts @@ -1,11 +1,11 @@ import type { TranslationsDictionary } from '$types/TranslationsDictionary'; -const languageLinksTranslations = { +const tLanguageLinks = { 'language-link-text': { sco: ({ language }: { language: string }) => `Get this page i ${language}`, 'en-GB': ({ language }: { language: string }) => `Get this page in ${language}`, }, }; -type Raw = typeof languageLinksTranslations; -export default languageLinksTranslations as TranslationsDictionary<Raw>; +type Raw = typeof tLanguageLinks; +export default tLanguageLinks as TranslationsDictionary<Raw>; |
