1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import img from '$images/scotsoun/sscd122.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img,
title: 'How to Pronounce Older Scots',
longName: 'How to Pronounce Older Scots',
author: 'Prof AJ Aitken',
cdCount: 1,
price: '11.00',
scotsounId: '122',
uploadDate: '2023-08-25',
trackList: [
'From The Fable of the Fox, the Wolf and the Husbandman by Robert Henryson (in Poems edited by Denton Fox, OUP, 1981, pp. 89/90)',
'The Need for Preparation and Rehearsal',
'The Modern Standard English Model',
'Common Inconsistencies and Solecisms',
'Does it Matter?',
'Recapitulation',
],
};
export default cd;
|