47 lines
1.5 KiB
PHP
47 lines
1.5 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.
|
||
|
********************************************************************************
|
||
|
* Module : PriceBooks
|
||
|
* Language : Español
|
||
|
* Version : 504
|
||
|
* Created Date : 2007-03-30
|
||
|
* Author : Rafael Soler
|
||
|
* Last change : 2008-09-20
|
||
|
* Author : Joe Bordes JPL TSolucio, S.L.
|
||
|
********************************************************************************/
|
||
|
|
||
|
|
||
|
$mod_strings = array(
|
||
|
|
||
|
'LBL_PRICEBOOK_INFORMATION'=>'Información de Tarifa:',
|
||
|
'LBL_CUSTOM_INFORMATION'=>'Información Personalizada',
|
||
|
'LBL_DESCRIPTION_INFORMATION'=>'Nombre:',
|
||
|
//Mapping for price book
|
||
|
'Price Book Name'=>'Nombre de Tarifa',
|
||
|
'Product Name'=>'Nombre de Producto',
|
||
|
'Active'=>'Activo',
|
||
|
'Description'=>'Descripción',
|
||
|
'Created Time'=>'Creado',
|
||
|
'Modified Time'=>'Modificado',
|
||
|
'LBL_LIST_PRODUCT_NAME'=>'Nombre de Producto',
|
||
|
'LBL_PRODUCT_CODE'=>'Código de Producto',
|
||
|
'LBL_PRODUCT_UNIT_PRICE'=>'Precio Unitario',
|
||
|
'LBL_PB_LIST_PRICE'=>'Lista de Precios',
|
||
|
'LBL_ACTION'=>'Acción',
|
||
|
'PriceBook'=>'Tarifa',
|
||
|
|
||
|
// Added after 5.0.4 GA
|
||
|
'Currency'=>'Moneda',
|
||
|
|
||
|
'PriceBook No' => 'Nº Tarifa',
|
||
|
|
||
|
);
|
||
|
|
||
|
?>
|