diff options
Diffstat (limited to 'src/data')
| -rw-r--r-- | src/data/scotsoun/index.ts | 1 | ||||
| -rw-r--r-- | src/data/scotsoun/sscd820.ts | 87 |
2 files changed, 88 insertions, 0 deletions
diff --git a/src/data/scotsoun/index.ts b/src/data/scotsoun/index.ts index a7cc1d9..a639e80 100644 --- a/src/data/scotsoun/index.ts +++ b/src/data/scotsoun/index.ts @@ -83,6 +83,7 @@ export const getScotsoun: ScotsounGetterTable = { '814': async () => (await import('./sscd814')).default, '815': async () => (await import('./sscd815')).default, '816': async () => (await import('./sscd816')).default, + '820': async () => (await import('./sscd820')).default, M150: async () => (await import('./sscdM150')).default, U1: async () => (await import('./sscdU1')).default, }; diff --git a/src/data/scotsoun/sscd820.ts b/src/data/scotsoun/sscd820.ts new file mode 100644 index 0000000..d213978 --- /dev/null +++ b/src/data/scotsoun/sscd820.ts @@ -0,0 +1,87 @@ +import img192w from '$images/scotsoun/sscd820-192w.jpg'; +import type Scotsoun from '$types/Scotsoun'; + +const cd: Scotsoun = { + img: { + width192: img192w, + }, + title: 'Let the thochts gae roamin', + longName: 'A vision o ma ain countree – Let the thochts gae roamin', + author: 'various', + cdCount: 1, + price: '10.00', + scotsounId: '820', + uploadDate: '2024-03-19', + trackList: [ + 'Kate YA Bone – Some Ghaists Haunt Housses', + 'Kate YA Bone – The Last Fire', + 'Kate YA Bone – Prayer to Saint Andrew', + + 'Muriel Ferrier – Howff', + 'Muriel Ferrier – Saumen Rin', + + 'Tracy Ann Harvey – Breeks', + 'Tracy Ann Harvey – It’s No Potata it’s Tatties', + 'Tracy Ann Harvey – Leanne an Betty Throu the Wa', + 'Tracy Ann Harvey – Ma Language', + 'Tracy Ann Harvey – Schuil Dinners', + 'Tracy Ann Harvey – Seagulls', + 'Tracy Ann Harvey – Ettlin fur Freedom', + 'Tracy Ann Harvey – The Ayr Witch', + 'Tracy Ann Harvey – First Winch', + 'Tracy Ann Harvey – Frogs', + + 'Irene Howat – Granfaither', + 'Irene Howat – Winter of 47', + 'Irene Howat – Wrannie', + 'Irene Howat – Souch o a Poem', + 'Irene Howat – Nip Nebs', + + 'Laureen Johnson – Deep', + 'Laureen Johnson – Staunin Steen', + 'Laureen Johnson – March-past at Arromanches', + + 'Jean Massie – Hill o the Faeries', + 'Jean Massie – Balmarino Abbey', + 'Jean Massie – Wrack an Waith', + + 'Edith MacArthur – The Braw Thocht', + + 'Anne McMaster – So Many Wurds for Soil', + 'Anne McMaster – Ghaists', + 'Anne McMaster – Whenever the Backend of the Year', + 'Anne McMaster – The Cet Now are Getting Aul', + 'Anne McMaster – All Life is Breath', + 'Anne McMaster – Night – To Stert', + 'Anne McMaster – Thanks', + 'Anne McMaster – The Last Sang', + + 'Eilidh Rut NicBhalteir – The Storm', + + 'Dorothy Margaret Paulin – A Galloway Legend', + 'Dorothy Margaret Paulin – Solway Tide', + 'Dorothy Margaret Paulin – Wan Watter', + 'Dorothy Margaret Paulin – Perplexity', + 'Dorothy Margaret Paulin – Sodger’s Lass', + + 'Lynn Valentine – Ma faither at 4am', + 'Lynn Valentine – Loss of the Westhaven', + 'Lynn Valentine – The Leid o Hame', + 'Lynn Valentine – Missin', + 'Lynn Valentine – A lost Freen', + 'Lynn Valentine – At the Clootie Well', + 'Lynn Valentine – Snaw Blind', + ], + description: { + sco: ` + A collection o some o the best female poets warkin in the Scots leid + the day. + `, + 'en-GB': ` + A collection of some of the best female poets working in the Scots + language today. + `, + }, +}; + +export default cd; |
