blob: c47ce0f44a2d3dc0f315d03aed8cc54e034ca4b0 (
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
|
import type { TranslationsDictionary } from '../../../types/TranslationsDictionary';
const lallansIssuePaymentSuccessConfirmation = {
title: {
sco: () => 'Payment Success',
'en-GB': () => 'Payment Success',
},
'payment-confirmation-message': {
sco: ({ issueNumber }: { issueNumber: string }) => `
Gin ye hae been sent til this page, at means ye hae successfully ordered
Lallans ${issueNumber} an we’ll be pittin it in the post fur ye belyve!
`,
'en-GB': ({ issueNumber }: { issueNumber: string }) => `
If you have been directed to this page, that means you have successfully
ordered Lallans ${issueNumber} and we shall be putting it in the post for
you right away!
`,
},
'back-button-text': {
sco: ({ issueNumber }: { issueNumber: string }) => `Retour til Lallans ${issueNumber}`,
'en-GB': ({ issueNumber }: { issueNumber: string }) => `Return to Lallans ${issueNumber}`,
},
};
type Raw = typeof lallansIssuePaymentSuccessConfirmation;
export default lallansIssuePaymentSuccessConfirmation as TranslationsDictionary<Raw>;
|