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

const tComponent = {
  'back-to-top': {
    sco: () => 'Back til tap',
    'en-GB': () => 'Back to top',
  },
  'subscribe-to-rss': {
    sco: () => 'Subscrive til oor RSS feed',
    'en-GB': () => 'Subscribe to our RSS feed',
  },
};

type Raw = typeof tComponent;
export default tComponent as TranslationsDictionary<Raw>;