summaryrefslogtreecommitdiff
path: root/src/i18n/translations/components/languageLinks.ts
blob: e1bac66817f780caef4ce6154dc51e3c8a85baf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
import type { TranslationsDictionary } from '$types/TranslationsDictionary';

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 tLanguageLinks;
export default tLanguageLinks as TranslationsDictionary<Raw>;