From ecc6cc0b7a476dbdd3d3b53521092edc06ff4ac6 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 7 Feb 2017 13:52:12 +0200 Subject: [PATCH] Added help texts to localization settings --- resources/lang/en/texts.php | 2 ++ resources/views/accounts/localization.blade.php | 7 +++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 9b788d723e..ad2aa44c40 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2354,6 +2354,8 @@ $LANG = array( 'recipients' => 'Recipients', 'save_as_default' => 'Save as default', 'template' => 'Template', + 'start_of_week_help' => 'Used by the date selector', + 'financial_year_start_help' => 'Used by the date range selector', ); diff --git a/resources/views/accounts/localization.blade.php b/resources/views/accounts/localization.blade.php index b743a70b27..0ef75a1fa7 100644 --- a/resources/views/accounts/localization.blade.php +++ b/resources/views/accounts/localization.blade.php @@ -54,10 +54,13 @@
 
{!! 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') !!}