26 lines
734 B
PHP
26 lines
734 B
PHP
|
|
<?php
|
||
|
|
$app_list_strings['moduleList']['EcmQuotes'] = 'Quotes';
|
||
|
|
/*$app_list_strings['ecmquotes_parent_dom'] = array (
|
||
|
|
'Accounts' => $app_list_strings['moduleList']['Accounts'],
|
||
|
|
'Contacts' => $app_list_strings['moduleList']['Contacts'],
|
||
|
|
);*/
|
||
|
|
$app_list_strings['ecmquotes_type_dom'] = array (
|
||
|
|
'normal' => 'Normal',
|
||
|
|
'correct' => 'Correct',
|
||
|
|
);
|
||
|
|
$app_list_strings['ecmquotes_status_dom'] = array (
|
||
|
|
's10' => 'Registered',
|
||
|
|
's20' => 'Waiting',
|
||
|
|
's30' => 'Accepted',
|
||
|
|
's40' => 'Not Accepted',
|
||
|
|
's50' => 'Sent',
|
||
|
|
's60' => 'Won',
|
||
|
|
's70' => 'Lost',
|
||
|
|
);
|
||
|
|
$app_list_strings['ecmquotes_order_origin_dom'] = array (
|
||
|
|
'internet' => 'Internet',
|
||
|
|
'old_account' => 'Old Account',
|
||
|
|
'by_phone' => 'By Phone',
|
||
|
|
'fair' => 'From Fair'
|
||
|
|
);
|
||
|
|
?>
|