Some new help text for bills. #207

This commit is contained in:
James Cole 2016-03-29 15:33:09 +02:00
parent ed8b41e8ec
commit ef97c3b42d
3 changed files with 3 additions and 2 deletions

View File

@ -465,6 +465,7 @@ return [
'stored_new_bill' => 'Stored new bill ":name"',
'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.',
'rescanned_bill' => 'Rescanned everything.',
'bill_date_little_relevance' => 'The only part of this date used by Firefly is the day. It is only useful when your bill arrives at exactly the same date every month. If the payment date of your bills varies, simply use the first of the month.',
// accounts:
'details_for_asset' => 'Details for asset account ":name"',

View File

@ -19,7 +19,7 @@
{{ ExpandedForm.tags('match') }}
{{ ExpandedForm.amount('amount_min') }}
{{ ExpandedForm.amount('amount_max') }}
{{ ExpandedForm.date('date',phpdate('Y-m-d')) }}
{{ ExpandedForm.date('date',phpdate('Y-m-d'), {helpText: trans('firefly.bill_date_little_relevance')}) }}
{{ ExpandedForm.select('repeat_freq',periods,'monthly') }}
</div>
</div>

View File

@ -21,7 +21,7 @@
{{ ExpandedForm.tags('match') }}
{{ ExpandedForm.amount('amount_min') }}
{{ ExpandedForm.amount('amount_max') }}
{{ ExpandedForm.date('date',bill.date.format('Y-m-d')) }}
{{ ExpandedForm.date('date',bill.date.format('Y-m-d'), {helpText: trans('firefly.bill_date_little_relevance')}) }}
{{ ExpandedForm.select('repeat_freq',periods) }}
</div>
</div>