diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 3402cd1ececb..c04cb4036b86 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2649,6 +2649,7 @@ $LANG = array( 'signature_on_pdf_help' => 'Show the client signature on the invoice/quote PDF.', 'expired_white_label' => 'The white label license has expired', 'return_to_login' => 'Return to Login', + 'convert_products_tip' => 'Note: add a custom field named ":name" to see the exchange rate.', ); diff --git a/resources/views/accounts/products.blade.php b/resources/views/accounts/products.blade.php index d529869f74ac..868404c34ebc 100644 --- a/resources/views/accounts/products.blade.php +++ b/resources/views/accounts/products.blade.php @@ -21,7 +21,8 @@ {!! Former::checkbox('fill_products')->text(trans('texts.fill_products_help'))->value(1) !!} {!! Former::checkbox('update_products')->text(trans('texts.update_products_help'))->value(1) !!}   - {!! Former::checkbox('convert_products')->text(trans('texts.convert_products_help'))->value(1) !!} + {!! Former::checkbox('convert_products')->text(trans('texts.convert_products_help')) + ->help(trans('texts.convert_products_tip', ['name' => trans('texts.exchange_rate')]))->value(1) !!}   {!! Former::actions( Button::success(trans('texts.save'))->submit()->appendIcon(Icon::create('floppy-disk')) ) !!} {!! Former::close() !!}