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

const tPage = {
  title: {
    sco: () => 'News',
    'en-GB': () => 'News',
  },
  'no-news': {
    sco: () => 'The ar nae news at the present time. Caw again later!',
    'en-GB': () => 'There is no news at the current time. Check in again later!',
  },
};

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