Trans
This commit is contained in:
parent
f5004012ed
commit
9f3ed07e87
@ -80,7 +80,7 @@ ConfirmDeleteContractLine=Are you sure you want to delete this contract line?
|
|||||||
MoveToAnotherContract=Move service into another contract.
|
MoveToAnotherContract=Move service into another contract.
|
||||||
ConfirmMoveToAnotherContract=I choosed new target contract and confirm I want to move this service into this contract.
|
ConfirmMoveToAnotherContract=I choosed new target contract and confirm I want to move this service into this contract.
|
||||||
ConfirmMoveToAnotherContractQuestion=Choose in which existing contract (of same third party), you want to move this service to?
|
ConfirmMoveToAnotherContractQuestion=Choose in which existing contract (of same third party), you want to move this service to?
|
||||||
PaymentRenewContractId=Renew contract line (number %s)
|
PaymentRenewContractId=Renew contract %s (service %s)
|
||||||
ExpiredSince=Expiration date
|
ExpiredSince=Expiration date
|
||||||
NoExpiredServices=No expired active services
|
NoExpiredServices=No expired active services
|
||||||
ListOfServicesToExpireWithDuration=List of Services to expire in %s days
|
ListOfServicesToExpireWithDuration=List of Services to expire in %s days
|
||||||
|
|||||||
@ -1353,7 +1353,7 @@ if ($source == 'contractline') {
|
|||||||
|
|
||||||
// Object
|
// Object
|
||||||
$text = '<b>'.$langs->trans("PaymentRenewContractId", $contract->ref, $contractline->ref).'</b>';
|
$text = '<b>'.$langs->trans("PaymentRenewContractId", $contract->ref, $contractline->ref).'</b>';
|
||||||
if ($contractline->fk_product) {
|
if ($contractline->fk_product > 0) {
|
||||||
$contractline->fetch_product();
|
$contractline->fetch_product();
|
||||||
$text .= '<br>'.$contractline->product->ref.($contractline->product->label ? ' - '.$contractline->product->label : '');
|
$text .= '<br>'.$contractline->product->ref.($contractline->product->label ? ' - '.$contractline->product->label : '');
|
||||||
}
|
}
|
||||||
@ -1364,8 +1364,8 @@ if ($source == 'contractline') {
|
|||||||
// $text.='<br>'.$langs->trans("DateEndPlanned").': ';
|
// $text.='<br>'.$langs->trans("DateEndPlanned").': ';
|
||||||
// $text.=dol_print_date($contractline->date_fin_validite);
|
// $text.=dol_print_date($contractline->date_fin_validite);
|
||||||
//}
|
//}
|
||||||
if ($contractline->date_fin_validite) {
|
if ($contractline->date_end) {
|
||||||
$text .= '<br>'.$langs->trans("ExpiredSince").': '.dol_print_date($contractline->date_fin_validite);
|
$text .= '<br>'.$langs->trans("ExpiredSince").': '.dol_print_date($contractline->date_end);
|
||||||
}
|
}
|
||||||
if (GETPOST('desc', 'alpha')) {
|
if (GETPOST('desc', 'alpha')) {
|
||||||
$text = '<b>'.$langs->trans(GETPOST('desc', 'alpha')).'</b>';
|
$text = '<b>'.$langs->trans(GETPOST('desc', 'alpha')).'</b>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user