25 lines
1.5 KiB
PHP
25 lines
1.5 KiB
PHP
<?php
|
|
|
|
// What can go wrong on the way to paying, in sentences for the customer.
|
|
return [
|
|
'thanks' => 'Thank you! As soon as the payment is confirmed we start building your cloud — you can follow it on this page.',
|
|
'unavailable' => 'Payment is not possible right now. Please try again in a few minutes.',
|
|
'plan_gone' => 'That package cannot be booked at the moment. Please choose another one.',
|
|
'already_customer' => 'You already have a running package. Change it here rather than buying a second one.',
|
|
|
|
// The line the one-off setup carries on the payment page and on the first
|
|
// invoice. Worded exactly as the price sheet words it: meeting a different
|
|
// name for the same charge at the till is when somebody abandons a checkout.
|
|
'setup_fee_line' => 'Setting up your cloud, one-off',
|
|
|
|
// What happens without the tick: no order at all.
|
|
//
|
|
// The box used to carry the whole FAGG §16 sentence, including a pro-rata
|
|
// liability that does not exist here — a withdrawing consumer gets the whole
|
|
// amount back (App\Actions\WithdrawContract). It is the terms that regulate
|
|
// this sale now, and the express request to start at once is stated there and
|
|
// summarised beside the box. Nothing turns on the record either way; it stays
|
|
// as proof that the customer asked us to start at once.
|
|
'terms_required' => 'Without accepting the terms the order cannot go through. Please tick the box — your 14-day right of withdrawal is regulated in there too.',
|
|
];
|