blob: 1893301d9275799b8b49def6a70806b941d9d0a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
title: 'Tenement Tales',
longName: 'Tenement Tales',
author: 'Molly Weir',
cdCount: 1,
price: '11.00',
scotsounId: '017',
uploadDate: '2023-08-25',
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.',
},
trackList: ['A Mess of Potage', 'Entertaining Angels Unawares'],
};
export default cd;
|