blob: 6c8dc0aed3b91b774c204be94a22bce70b067112 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import type Scotsoun from '../../types/Scotsoun';
const cd: Scotsoun = {
title: 'Tenement Tales',
'long-name': 'Tenement Tales',
author: 'Molly Weir',
'cd-count': 1,
price: '11.00',
'scotsoun-id': '017',
description: {
sco: 'Thir stories wis else broadcast on Scottish Television unner the same title.',
'en-GB': 'These stories were previously broadcast on Scottish Television under the same title.',
},
'track-list': ['A Mess of Potage', 'Entertaining Angels Unawares'],
};
export default cd;
|