mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 10:24:31 -04:00
Add help message to explain limited gateways
This commit is contained in:
parent
6485ab44cc
commit
9bb64d4984
@ -2075,6 +2075,7 @@ $LANG = array(
|
|||||||
|
|
||||||
'include_item_taxes_inline' => 'Include <b>line item taxes in line total</b>',
|
'include_item_taxes_inline' => 'Include <b>line item taxes in line total</b>',
|
||||||
'created_quotes' => 'Successfully created :count quotes(s)',
|
'created_quotes' => 'Successfully created :count quotes(s)',
|
||||||
|
'limited_gateways' => 'Note: we support one credit card gateway per company.',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -50,7 +50,8 @@
|
|||||||
{!! Former::select('primary_gateway_id')
|
{!! Former::select('primary_gateway_id')
|
||||||
->fromQuery($primaryGateways, 'name', 'id')
|
->fromQuery($primaryGateways, 'name', 'id')
|
||||||
->label(trans('texts.gateway_id'))
|
->label(trans('texts.gateway_id'))
|
||||||
->onchange('setFieldsShown()') !!}
|
->onchange('setFieldsShown()')
|
||||||
|
->help(count($secondaryGateways) ? false : 'limited_gateways') !!}
|
||||||
|
|
||||||
@if (count($secondaryGateways))
|
@if (count($secondaryGateways))
|
||||||
{!! Former::select('secondary_gateway_id')
|
{!! Former::select('secondary_gateway_id')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user