mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Clarfiy inclusive taxes
This commit is contained in:
parent
dd904e1498
commit
35656ae96b
@ -2746,6 +2746,10 @@ $LANG = array(
|
|||||||
'delete_image' => 'Delete Image',
|
'delete_image' => 'Delete Image',
|
||||||
'delete_image_help' => 'Warning: deleting the image will remove it from all proposals.',
|
'delete_image_help' => 'Warning: deleting the image will remove it from all proposals.',
|
||||||
'amount_variable_help' => 'Note: the invoice $amount field will use the partial/deposit field if set otherwise it will use the invoice balance.',
|
'amount_variable_help' => 'Note: the invoice $amount field will use the partial/deposit field if set otherwise it will use the invoice balance.',
|
||||||
|
'taxes_are_included_help' => 'Taxes are included with the cost.',
|
||||||
|
'taxes_are_not_included_help' => 'Taxes are excluded from the cost.',
|
||||||
|
'change_requires_purge' => 'Changing this setting requires :link the account data.',
|
||||||
|
'purging' => 'purging',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -46,6 +46,10 @@
|
|||||||
->label(' ')
|
->label(' ')
|
||||||
->help('inclusive_taxes_notice')
|
->help('inclusive_taxes_notice')
|
||||||
->value(1) !!}
|
->value(1) !!}
|
||||||
|
@elseif ($countInvoices <= 10)
|
||||||
|
{!! Former::plaintext(' ')->help(
|
||||||
|
trans($account->inclusive_taxes ? 'texts.taxes_are_included_help' : 'texts.taxes_are_not_included_help') . '<br/>' .
|
||||||
|
trans('texts.change_requires_purge', ['link' => link_to(url('/settings/account_management'), trans('texts.purging'))])) !!}
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user