10 lines
525 B
PHP
10 lines
525 B
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.',
|
|
];
|