Added help texts to localization settings

This commit is contained in:
Hillel Coren 2017-02-07 13:52:12 +02:00
parent a6e44fe994
commit ecc6cc0b7a
2 changed files with 7 additions and 2 deletions

View File

@ -2354,6 +2354,8 @@ $LANG = array(
'recipients' => 'Recipients', 'recipients' => 'Recipients',
'save_as_default' => 'Save as default', 'save_as_default' => 'Save as default',
'template' => 'Template', 'template' => 'Template',
'start_of_week_help' => 'Used by the <b>date</b> selector',
'financial_year_start_help' => 'Used by the <b>date range</b> selector',
); );

View File

@ -54,10 +54,13 @@
<br/>&nbsp;<br/> <br/>&nbsp;<br/>
{!! Former::select('start_of_week')->addOption('','') {!! Former::select('start_of_week')->addOption('','')
->fromQuery($weekdays) !!} ->fromQuery($weekdays)
->help('start_of_week_help') !!}
{!! Former::select('financial_year_start') {!! Former::select('financial_year_start')
->addOption('','') ->addOption('','')
->options($months) !!} ->options($months)
->help('financial_year_start_help') !!}
</div> </div>