blob: 11728463921b9ac0fea5f8f4659fb81f6902273f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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',
}
};
type Keys = keyof typeof siteTranslations;
export default siteTranslations as TranslationsDictionary<Keys>;
|