1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

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',
'save_as_default' => 'Save as default',
'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/>
{!! Former::select('start_of_week')->addOption('','')
->fromQuery($weekdays) !!}
->fromQuery($weekdays)
->help('start_of_week_help') !!}
{!! Former::select('financial_year_start')
->addOption('','')
->options($months) !!}
->options($months)
->help('financial_year_start_help') !!}
</div>