diff options
| author | Joe Carstairs <118172583+jcarstairs-scottlogic@users.noreply.github.com> | 2023-12-21 21:21:30 +0000 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2024-01-12 08:29:08 +0000 |
| commit | 5d5e2f8aa5c4030c33bf06f2cb817b9d770cc884 (patch) | |
| tree | 1ef67a95bec53331eeba34787e6edc03a2fd9bb1 /src/i18n | |
| parent | 9102fe8bcd13c01bf7bae462e013c920cae9f52f (diff) | |
Improve CSS reset (#51)
* Font size inflation
* Removes main adjustment for IE
* Documents hr corrections
* Documents pre corrections
* Documents abbr[title] corrections
* Documents b, strong corrections
* Squishes pre rule with code,kbd,samp
* Documents sub,sub line-height fix
* Removes IE fix for img borders
* Documents form control resets
* Documents details display:block
* Documents summary correction
* Removes [hidden] fix for IE
* Adds border-box sizing rules
* Refactors links
Diffstat (limited to 'src/i18n')
| -rw-r--r-- | src/i18n/translations/pages/404.ts | 4 | ||||
| -rw-r--r-- | src/i18n/translations/pages/home.ts | 20 |
2 files changed, 12 insertions, 12 deletions
diff --git a/src/i18n/translations/pages/404.ts b/src/i18n/translations/pages/404.ts index d28d297..c77b9b0 100644 --- a/src/i18n/translations/pages/404.ts +++ b/src/i18n/translations/pages/404.ts @@ -8,11 +8,11 @@ const tPage = { message: { sco: () => ` Yon page disna exeist. Try gaein til oor - <a href="/sco" class="link">hame page</a>? + <a href="/sco">hame page</a>? `, 'en-GB': () => ` That page doesn’t exist. Try going to our - <a href="/en-GB" class="link">home page</a>? + <a href="/en-GB">home page</a>? `, }, }; diff --git a/src/i18n/translations/pages/home.ts b/src/i18n/translations/pages/home.ts index a112cc1..2166eaa 100644 --- a/src/i18n/translations/pages/home.ts +++ b/src/i18n/translations/pages/home.ts @@ -17,12 +17,12 @@ const tPage = { sco: () => ` We accep poesie, cuttie tales, reviews, essays an drama, baith oreiginal an owerset. Sen yer submeissions til - <a class="link" href="mailto:lallans@hotmail.co.uk">lallans@hotmail.co.uk</a>. + <a href="mailto:lallans@hotmail.co.uk">lallans@hotmail.co.uk</a>. `, 'en-GB': () => ` We accept poetry, short stories, reviews, essays and drama, both original and translated. Send your submissions to - <a class="link" href="mailto:lallans@hotmail.co.uk">lallans@hotmail.co.uk</a>. + <a href="mailto:lallans@hotmail.co.uk">lallans@hotmail.co.uk</a>. `, }, news: { @@ -91,14 +91,14 @@ const tPage = { sco: () => ` We ar ane o the foremaist furthsetters o new Scots leitratur. Oor maist important furthsettins ar - <a href="/sco/furthsettins/lallans" class="link">Lallans</a> an - <a href="/sco/furthsettins/scotsoun" class="link">Scotsoun</a>. + <a href="/sco/furthsettins/lallans">Lallans</a> an + <a href="/sco/furthsettins/scotsoun">Scotsoun</a>. `, 'en-GB': () => ` We are one of the leading publishers of new Scots literature. Our most important publications are - <a href="/en-GB/furthsettins/lallans" class="link">Lallans</a> and - <a href="/en-GB/furthsettins/scotsoun" class="link">Scotsoun</a>. + <a href="/en-GB/furthsettins/lallans">Lallans</a> and + <a href="/en-GB/furthsettins/scotsoun">Scotsoun</a>. `, }, 'aw-furthsettins': { @@ -167,18 +167,18 @@ const tPage = { 'hou-jyne-para-2': { sco: ({ membershipEmail }: { membershipEmail: string }) => ` Fur tae become a memmer, simply get in titch wi us at - <a class="link" href="mailto:${membershipEmail}">${membershipEmail}</a> + <a href="mailto:${membershipEmail}">${membershipEmail}</a> an we’ll provide ye wi our bank details; or ye can jyne bi sendin us a cheque made peyable til <b>The Scots Language Society</b>. See - <a class="link" href="#contact">Contact us</a> + <a href="#contact">Contact us</a> fur our address. `, 'en-GB': ({ membershipEmail }: { membershipEmail: string }) => ` To become a member, simply get in touch with us at - <a class="link" href="mailto:${membershipEmail}">${membershipEmail}</a> + <a href="mailto:${membershipEmail}">${membershipEmail}</a> and we’ll provide you with our bank details; or you can join by sending us a cheque made payable to <b>The Scots Language Society</b>. See - <a class="link" href="#contact">Contact us</a> for our address. + <a href="#contact">Contact us</a> for our address. `, }, contact: { |
