20 lines
619 B
PHP
20 lines
619 B
PHP
|
|
<?php
|
||
|
|
$app_list_strings['moduleList']['EcmInvoiceOuts'] = 'Invoices';
|
||
|
|
$app_list_strings['ecminvoiceouts_parent_dom'] = array (
|
||
|
|
'Accounts' => $app_list_strings['moduleList']['Accounts'],
|
||
|
|
'Contacts' => $app_list_strings['moduleList']['Contacts'],
|
||
|
|
);
|
||
|
|
$app_list_strings['ecminvoiceouts_status_dom'] = array (
|
||
|
|
'registered' => 'Registered',
|
||
|
|
'not_accepted' => 'Not Accepted',
|
||
|
|
'accepted' => 'Accepted',
|
||
|
|
'mailed' => 'Sent',
|
||
|
|
'printed' => 'Printed',
|
||
|
|
'paid' => 'Paid',
|
||
|
|
'admonition' => 'Admonition',
|
||
|
|
);
|
||
|
|
$app_list_strings['ecminvoiceouts_type_dom'] = array (
|
||
|
|
'normal' => 'Normal',
|
||
|
|
'correct' => 'Correct',
|
||
|
|
);
|
||
|
|
?>
|