blob: 919110d497674ab0f915d700d1189463340ada2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import type { TranslationsDictionary } from '$types/TranslationsDictionary';
const tFeed = {
title: {
sco: () => 'Scots Leid Associe News',
'en-GB': () => 'Scots Language Society News',
},
description: {
sco: () => 'The latest updates frae the Scots Leid Associe',
'en-GB': () => 'The latest updates from the Scots Language Society',
},
};
type Raw = typeof tFeed;
export default tFeed as TranslationsDictionary<Raw>;
|