summaryrefslogtreecommitdiff
path: root/src/i18n/translations/pages/scotsounPaymentSuccessConfirmation.ts
blob: 3089a4d84c1f8dfec1de5121249fb94e9bc41e3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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<Raw>;