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

const languageLinksTranslations = {
  '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>;