blob: 9985dcc9ec965cce00e953487ee5d343c8b11b5c (
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',
longName: 'Tenement Tales',
author: 'Molly Weir',
cdCount: 1,
price: '11.00',
scotsounId: '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.',
},
trackList: ['A Mess of Potage', 'Entertaining Angels Unawares'],
};
export default cd;
|