2021-08-10 07:00:30 +02:00
|
|
|
<?php
|
|
|
|
|
2023-11-28 13:52:03 +01:00
|
|
|
$lang = array(
|
2021-08-10 07:00:30 +02:00
|
|
|
'client_dashboard' => 'Message to be displayed on clients dashboard',
|
|
|
|
'client_currency' => 'The client currency.',
|
|
|
|
'client_language' => 'The client language.',
|
|
|
|
'client_payment_terms' => 'The client payment terms.',
|
|
|
|
'client_paid_invoice' => 'Message to be displayed on a clients paid invoice screen',
|
|
|
|
'client_unpaid_invoice' => 'Message to be displayed on a clients unpaid invoice screen',
|
|
|
|
'client_unapproved_quote' => 'Message to be displayed on a clients unapproved quote screen',
|
2023-11-28 13:52:03 +01:00
|
|
|
);
|
2021-08-10 07:00:30 +02:00
|
|
|
|
2023-11-28 13:56:28 +01:00
|
|
|
return $lang;
|