summaryrefslogtreecommitdiff
path: root/src/i18n/translations/site.ts
blob: 89e9ed5560530f8f6abe229a474b49f2bd786065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import type { TranslationsDictionary } from '../../types/TranslationsDictionary';

const siteTranslations = {
  title: {
    sco: 'Scots Leid Associe',
    'en-GB': 'Scots Language Society',
  },
  description: {
    sco: 'The wabsteid o the Scots Leid Associe',
    'en-GB': 'The website of the Scots Language Society',
  },
  lallans: {
    sco: 'Lallans',
    'en-GB': 'Lallans',
  },
  by: {
    sco: 'bi',
    'en-GB': 'by',
  },
};

type Keys = keyof typeof siteTranslations;
export default siteTranslations as TranslationsDictionary<Keys>;