Merge pull request #1030 from marcosgdf/translations
Fixed wrong translation key and and improved translations
This commit is contained in:
commit
d416a7397c
@ -53,7 +53,8 @@ $endyear=$year;
|
||||
|
||||
$form=new Form($db);
|
||||
|
||||
$langs->load("propal");
|
||||
$langs->load('propal');
|
||||
$langs->load('other');
|
||||
|
||||
llxHeader();
|
||||
|
||||
|
||||
@ -51,7 +51,8 @@ $year = GETPOST('year')>0?GETPOST('year'):$nowyear;
|
||||
$startyear=$year-1;
|
||||
$endyear=$year;
|
||||
|
||||
$langs->load("orders");
|
||||
$langs->load('orders');
|
||||
$langs->load('other');
|
||||
|
||||
|
||||
/*
|
||||
|
||||
@ -54,8 +54,9 @@ $endyear=$year;
|
||||
* View
|
||||
*/
|
||||
|
||||
$langs->load("bills");
|
||||
$langs->load("companies");
|
||||
$langs->load('bills');
|
||||
$langs->load('companies');
|
||||
$langs->load('other');
|
||||
|
||||
$form=new Form($db);
|
||||
|
||||
@ -233,7 +234,7 @@ print '<div class="fichecenter"><div class="fichethirdleft">';
|
||||
print $form->select_company($socid,'socid',$filter,1);
|
||||
print '</td></tr>';
|
||||
// User
|
||||
print '<tr><td>'.$langs->trans("Author").'</td><td>';
|
||||
print '<tr><td>'.$langs->trans("CreatedBy").'</td><td>';
|
||||
print $form->select_users($userid,'userid',1);
|
||||
print '</td></tr>';
|
||||
// Year
|
||||
|
||||
@ -701,13 +701,13 @@ class Form
|
||||
$selected_input_value=$product->ref;
|
||||
}
|
||||
=======
|
||||
if ($selected && empty($selected_input_value))
|
||||
{
|
||||
require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
|
||||
$product = new Product($this->db);
|
||||
$product->fetch($selected);
|
||||
$selected_input_value=$product->ref;
|
||||
}
|
||||
if ($selected && empty($selected_input_value))
|
||||
{
|
||||
require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
|
||||
$product = new Product($this->db);
|
||||
$product->fetch($selected);
|
||||
$selected_input_value=$product->ref;
|
||||
}
|
||||
>>>>>>> refs/remotes/origin/3.3
|
||||
// mode=1 means customers products
|
||||
$ajaxoptions=array();
|
||||
@ -1657,8 +1657,8 @@ class Form
|
||||
{
|
||||
$opt.= price($objp->fprice).' '.$currencytext."/".$objp->quantity;
|
||||
$outval.= price($objp->fprice).' '.$currencytextnoent."/".$objp->quantity;
|
||||
$opt.= $langs->trans("Units"); // Do not use strtolower because it breaks utf8 encoding
|
||||
$outval.=$langs->transnoentities("Units");
|
||||
$opt.= ' '.$langs->trans("Units"); // Do not use strtolower because it breaks utf8 encoding
|
||||
$outval.= ' '.$langs->transnoentities("Units");
|
||||
}
|
||||
|
||||
if ($objp->quantity >= 1)
|
||||
|
||||
@ -132,6 +132,7 @@ if ($action == 'confirm_deletedir' && $confirm == 'yes')
|
||||
}
|
||||
else
|
||||
{
|
||||
$langs->load('errors');
|
||||
setEventMessage($langs->trans($ecmdir->error,$ecmdir->label), 'errors');
|
||||
}
|
||||
}
|
||||
|
||||
@ -1109,7 +1109,7 @@ elseif (! empty($object->id))
|
||||
//'text' => $langs->trans("ConfirmClone"),
|
||||
//array('type' => 'checkbox', 'name' => 'clone_content', 'label' => $langs->trans("CloneMainAttributes"), 'value' => 1),
|
||||
//array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' => 1),
|
||||
array('type' => 'other', 'name' => 'idwarehouse', 'label' => $langs->trans("SelectWarehouseForStockDecrease"), 'value' => $formproduct->selectWarehouses(GETPOST('idwarehouse'),'idwarehouse','',1))
|
||||
array('type' => 'other', 'name' => 'idwarehouse', 'label' => $langs->trans("SelectWarehouseForStockIncrease"), 'value' => $formproduct->selectWarehouses(GETPOST('idwarehouse'),'idwarehouse','',1))
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@ -84,14 +84,14 @@ ShowService=Mostrar servicio
|
||||
ProductsAndServicesArea=Área productos y servicios
|
||||
ProductsArea=Área Productos
|
||||
ServicesArea=Área Servicios
|
||||
AddToMyProposals=Adjuntar a mis presupuestos
|
||||
AddToOtherProposals=Adjuntar a otros presupuestos
|
||||
AddToMyBills=Adjuntar a mis facturas
|
||||
AddToOtherBills=Adjuntar a otras facturas
|
||||
AddToMyProposals=Añadir a mis presupuestos
|
||||
AddToOtherProposals=Añadir a otros presupuestos
|
||||
AddToMyBills=Añadir a mis facturas
|
||||
AddToOtherBills=Añadir a otras facturas
|
||||
CorrectStock=Corregir stock
|
||||
AddPhoto=Adjuntar una foto
|
||||
ListOfStockMovements=Listado de movimientos de stock
|
||||
NoPhotoYet=No hay fotografía disponible por el momento
|
||||
NoPhotoYet=No hay fotografías disponibles por el momento
|
||||
BuyingPrice=Precio de compra
|
||||
SupplierCard=Ficha proveedor
|
||||
CommercialCard=Ficha comercial
|
||||
@ -114,6 +114,8 @@ AssociatedProductsAbility=Activar productos compuestos
|
||||
AssociatedProducts=Productos compuestos
|
||||
AssociatedProductsNumber=Nº de productos que componen este producto
|
||||
ParentProductsNumber=Nº de productos que este producto compone
|
||||
IfZeroItIsNotAVirtualProduct=Si 0, este producto no es un producto virtual
|
||||
IfZeroItIsNotUsedByVirtualProduct=Si 0, este producto no está siendo utilizado por ningún producto virtual
|
||||
EditAssociate=Componer
|
||||
Translation=Traducción
|
||||
KeywordFilter=Filtro por clave
|
||||
|
||||
@ -1417,7 +1417,7 @@ if ($object->id && ($action == '' || $action == 'view') && $object->status)
|
||||
$langs->load("bills");
|
||||
|
||||
$html .= '<tr class="liste_titre">';
|
||||
$html .= '<td class="liste_titre">'.$langs->trans("AddToOtherOrders").'</td>';
|
||||
$html .= '<td class="liste_titre">'.$langs->trans("AddToOtherBills").'</td>';
|
||||
$html .= '</tr><tr>';
|
||||
$html .= '<td valign="top">';
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user