44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
/*+**********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
************************************************************************************/
|
|
|
|
$mod_strings = Array(
|
|
/*some general information*/
|
|
'LBL_MODULE_NAME'=>'Assets',
|
|
'SINGLE_Assets'=>'Asset',
|
|
|
|
/*blocks for the module*/
|
|
'LBL_ASSET_INFORMATION'=>'Asset Information',
|
|
'LBL_CUSTOM_INFORMATION'=>'Custom Information',
|
|
'LBL_DESCRIPTION_INFORMATION'=>'Notes',
|
|
|
|
/*fields for the module*/
|
|
'Assets'=>'Assets',
|
|
'Asset Name' => 'Asset Name',
|
|
'Customer Name'=>'Customer Name',
|
|
'Product Name'=>'Product Name',
|
|
'Serial Number'=>'Serial Number',
|
|
'Asset No'=>'Asset No',
|
|
'Date Sold'=>'Date Sold',
|
|
'Date in Service'=>'Date in Service',
|
|
'Status'=>'Status',
|
|
'Shipping Method'=>'Shipping Method',
|
|
'Shipping Tracking Number'=>'Shipping Tracking Number',
|
|
'Tag Number'=>'Tag Number',
|
|
'Notes'=>'Notes',
|
|
'Invoice Name'=>'Invoice Name',
|
|
|
|
/*picklist values*/
|
|
'In Service'=>'In Service',
|
|
'Out-of-service'=>'Out-of-service',
|
|
'Assets ID'=>'Assets ID',
|
|
|
|
);
|
|
?>
|