From f6d45f7b9374444ae1ab751a213d86827b64eb8f Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Sun, 13 Aug 2023 20:12:53 +0100 Subject: Adds Scotsoun --- .../pages/scotsounPaymentSuccessConfirmation.ts | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts (limited to 'src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts') diff --git a/src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts b/src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts new file mode 100644 index 0000000..3089a4d --- /dev/null +++ b/src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts @@ -0,0 +1,27 @@ +import type ScotsounId from '$types/ScotsounId'; +import type { TranslationsDictionary } from '$types/TranslationsDictionary'; + +const scotsounPaymentSuccessConfirmation = { + title: { + sco: () => 'Payment Success', + 'en-GB': () => 'Payment Success', + }, + 'payment-confirmation-message': { + sco: ({ scotsounId }: { scotsounId: ScotsounId }) => ` + Gin ye hae been sent til this page, at means ye hae successfully ordered + Scotsoun ${scotsounId} an we’ll be pittin it in the post fur ye belyve! + `, + 'en-GB': ({ scotsounId }: { scotsounId: ScotsounId }) => ` + If you have been directed to this page, that means you have successfully + ordered Scotsoun ${scotsounId} and we shall be putting it in the post for + you right away! + `, + }, + 'back-button-text': { + sco: ({ scotsounId }: { scotsounId: ScotsounId }) => `Retour til Scotsoun ${scotsounId}`, + 'en-GB': ({ scotsounId }: { scotsounId: ScotsounId }) => `Return to Scotsoun ${scotsounId}`, + }, +}; + +type Raw = typeof scotsounPaymentSuccessConfirmation; +export default scotsounPaymentSuccessConfirmation as TranslationsDictionary; -- cgit v1.2.3