blob: 0cc411a62d9ff1a6feaf66fe3230b38d28f0a767 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import type { TranslationsDictionary } from '$types/TranslationsDictionary';
const tPage = {
title: {
sco: () => 'News',
'en-GB': () => 'News',
},
'read-article': {
sco: () => 'Read fu airticle',
'en-GB': () => 'Read full article',
},
'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>;
|