21 lines
641 B
PHP
21 lines
641 B
PHP
<?php
|
|
|
|
// The one mail a person writes — the answer to "can you migrate our data?".
|
|
// Everything else this application sends, it sends by itself.
|
|
return [
|
|
'title' => 'Write a message',
|
|
'subject' => 'Subject',
|
|
'body' => 'Message',
|
|
'body_hint' => 'What you would like to tell the customer.',
|
|
'send' => 'Send',
|
|
'note' => 'Goes to :email and is recorded in the mail register.',
|
|
'sent' => 'Message sent and recorded.',
|
|
|
|
'answering' => 'Answering a request',
|
|
'cancel_answer' => 'Detach',
|
|
're' => 'Re: :subject',
|
|
|
|
'mail_heading' => 'A message from CluPilot',
|
|
'mail_greeting' => 'Hello :name,',
|
|
];
|