Merge pull request #5542 from turbo124/master

Updated texts
This commit is contained in:
David Bomba 2021-04-28 09:44:23 +10:00 committed by GitHub
commit ec70871181
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View File

@ -523,6 +523,7 @@ info("get company");
'updated_at' => $invoice->updated_at ? Carbon::parse($invoice->updated_at)->toDateString() : null,
'deleted_at' => $invoice->deleted_at ? Carbon::parse($invoice->deleted_at)->toDateString() : null,
'invitations' => $this->getResourceInvitations($invoice->invitations, 'invoice_id'),
'auto_bill_enabled' => $invoice->auto_bill,
];
}
@ -595,6 +596,7 @@ info("get company");
'due_date_days' => $this->transformDueDate($invoice),
'remaining_cycles' => $this->getRemainingCycles($invoice),
'invitations' => $this->getResourceInvitations($invoice->invitations, 'recurring_invoice_id'),
'auto_bill_enabled' => $invoice->auto_bill,
];
}

View File

@ -4271,6 +4271,17 @@ $LANG = array(
'activity_82' => ':user archived subscription :subscription',
'activity_83' => ':user deleted subscription :subscription',
'activity_84' => ':user restored subscription :subscription',
'amount_greater_than_balance_v5' => 'The amount is greater than the invoice balance. You cannot overpay an invoice.',
'click_to_continue' => 'Click to continue',
'notification_invoice_sent_subject' => 'Invoice :invoice was created to :client',
'notification_invoice_viewed_subject' => 'Invoice :invoice was created for :client',
'notification_quote_sent_subject' => 'Quote :invoice was created to :client',
'notification_quote_viewed_subject' => 'Quote :invoice was created for :client',
'notification_credit_sent_subject' => 'Credit :invoice was created to :client',
'notification_credit_viewed_subject' => 'Credit :invoice was created for :client',
);
return $LANG;