diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/data/subscriptionPrices.ts | 9 | ||||
| -rw-r--r-- | src/i18n/translations/pages/jyne.ts | 18 |
2 files changed, 14 insertions, 13 deletions
diff --git a/src/data/subscriptionPrices.ts b/src/data/subscriptionPrices.ts index c52d902..587b535 100644 --- a/src/data/subscriptionPrices.ts +++ b/src/data/subscriptionPrices.ts @@ -1,7 +1,8 @@ import MembershipType from '$enums/MembershipType'; +import type Price from '$types/Price'; -export const annualSubscriptionPrice: { [key in MembershipType]: number } = { - [MembershipType.IndividualUk]: 20.0, - [MembershipType.IndividualNonUk]: 30.0, - [MembershipType.InstitutionUk]: 25.0, +export const annualSubscriptionPrice: { [key in MembershipType]: Price } = { + [MembershipType.IndividualUk]: '25.00', + [MembershipType.IndividualNonUk]: '37.50', + [MembershipType.InstitutionUk]: '30.00', }; diff --git a/src/i18n/translations/pages/jyne.ts b/src/i18n/translations/pages/jyne.ts index 2ec8811..05e7384 100644 --- a/src/i18n/translations/pages/jyne.ts +++ b/src/i18n/translations/pages/jyne.ts @@ -95,7 +95,7 @@ const tPage = { Here, you can pay for one year’s annual subscription to the Scots Language Society if you are an individual and you want your copies of <i>Lallans</i> sent to a UK address. This will cost - £${annualSubscriptionPrice[MembershipType.IndividualNonUk]}. If you want + £${annualSubscriptionPrice[MembershipType.IndividualUk]}. If you want some other kind of membership, <a href="/en-GB/jyne/paypal">see the other options</a>. `, @@ -148,16 +148,16 @@ const tPage = { }, 'hou-pey-by-bank-transfer-para': { sco: () => ` - To pay by bank transfer, please send £20 to the following bank details, - and include your name and the word 'STENT' in the reference. You may - need to shorten your name to fit in the reference. For example, 'J BLOGGS - STENT'. + For tae pey by bank transfer, pleise send the richt amount (see table) til + the follaein bank details, and include your name and the wird 'STENT' in + the reference. You micht hae tae shorten your name for tae fit it intil the + reference. For ensaumple, 'J BLOGGS STENT'. `, 'en-GB': () => ` - For tae pey by bank transfer, pleise send £20 til the follaein bank - details, and include your name and the wird 'STENT' in the reference. You - micht hae tae shorten your name for tae fit it intil the reference. For - ensaumple, 'J BLOGGS STENT'. + To pay by bank transfer, please send right amount (see table) to the + following bank details, and include your name and the word 'STENT' in the + reference. You may need to shorten your name to fit in the reference. For + example, 'J BLOGGS STENT'. `, }, 'hou-pey-by-cheque-title': { |
