mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-01 11:31:06 +00:00
Add skip help text
This commit is contained in:
@@ -1860,6 +1860,7 @@ return [
|
|||||||
'remove_budgeted_amount' => 'Remove budgeted amount in :currency',
|
'remove_budgeted_amount' => 'Remove budgeted amount in :currency',
|
||||||
|
|
||||||
// bills:
|
// bills:
|
||||||
|
'skip_help_text' => 'Use the skip field to create bi-monthly (skip = 1) or other custom intervals.',
|
||||||
'subscription' => 'Subscription',
|
'subscription' => 'Subscription',
|
||||||
'not_expected_period' => 'Not expected this period',
|
'not_expected_period' => 'Not expected this period',
|
||||||
'subscriptions_in_group' => 'Subscriptions in group "%{title}"',
|
'subscriptions_in_group' => 'Subscriptions in group "%{title}"',
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
{{ ExpandedForm.amountNoCurrency('amount_max') }}
|
{{ ExpandedForm.amountNoCurrency('amount_max') }}
|
||||||
{{ ExpandedForm.date('date',phpdate('Y-m-d')) }}
|
{{ ExpandedForm.date('date',phpdate('Y-m-d')) }}
|
||||||
{{ ExpandedForm.select('repeat_freq',periods,'monthly') }}
|
{{ ExpandedForm.select('repeat_freq',periods,'monthly') }}
|
||||||
{{ ExpandedForm.integer('skip',0) }}
|
{{ ExpandedForm.integer('skip',0, {'helpText': trans('firefly.skip_help_text')}) }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
{{ ExpandedForm.amountNoCurrency('amount_max', bill.amount_max) }}
|
{{ ExpandedForm.amountNoCurrency('amount_max', bill.amount_max) }}
|
||||||
{{ ExpandedForm.date('date',bill.date.format('Y-m-d')) }}
|
{{ ExpandedForm.date('date',bill.date.format('Y-m-d')) }}
|
||||||
{{ ExpandedForm.select('repeat_freq', periods, bill.repeat_freq) }}
|
{{ ExpandedForm.select('repeat_freq', periods, bill.repeat_freq) }}
|
||||||
{{ ExpandedForm.integer('skip', bill.skip) }}
|
{{ ExpandedForm.integer('skip', bill.skip, {'helpText': trans('firefly.skip_help_text')}) }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
{{ preFilled.first_date.format('Y-m-d') }}
|
{{ preFilled.first_date.format('Y-m-d') }}
|
||||||
{{ ExpandedForm.date('first_date',null, {helpText: trans('firefly.help_first_date'), min: preFilled.first_date}) }}
|
{{ ExpandedForm.date('first_date',null, {helpText: trans('firefly.help_first_date'), min: preFilled.first_date}) }}
|
||||||
{{ ExpandedForm.select('repetition_type', [], null, {helpText: trans('firefly.change_date_other_options')}) }}
|
{{ ExpandedForm.select('repetition_type', [], null, {helpText: trans('firefly.change_date_other_options')}) }}
|
||||||
{{ ExpandedForm.integer('skip',0) }}
|
{{ ExpandedForm.integer('skip',0, {'helpText': trans('firefly.skip_help_text')}) }}
|
||||||
{{ ExpandedForm.select('weekend', weekendResponses, null, {helpText: trans('firefly.help_weekend')}) }}
|
{{ ExpandedForm.select('weekend', weekendResponses, null, {helpText: trans('firefly.help_weekend')}) }}
|
||||||
{{ ExpandedForm.select('repetition_end', repetitionEnds) }}
|
{{ ExpandedForm.select('repetition_end', repetitionEnds) }}
|
||||||
{{ ExpandedForm.date('repeat_until',null) }}
|
{{ ExpandedForm.date('repeat_until',null) }}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
{{ ExpandedForm.text('title', array.title) }}
|
{{ ExpandedForm.text('title', array.title) }}
|
||||||
{{ ExpandedForm.date('first_date',array.first_date, {helpText: trans('firefly.help_first_date_no_past')}) }}
|
{{ ExpandedForm.date('first_date',array.first_date, {helpText: trans('firefly.help_first_date_no_past')}) }}
|
||||||
{{ ExpandedForm.select('repetition_type', [], null, {helpText: trans('firefly.change_date_other_options')}) }}
|
{{ ExpandedForm.select('repetition_type', [], null, {helpText: trans('firefly.change_date_other_options')}) }}
|
||||||
{{ ExpandedForm.integer('skip', array.repetitions[0].skip) }}
|
{{ ExpandedForm.integer('skip', array.repetitions[0].skip, {'helpText': trans('firefly.skip_help_text')}) }}
|
||||||
{{ ExpandedForm.select('weekend', weekendResponses, array.repetitions[0].weekend, {helpText: trans('firefly.help_weekend')}) }}
|
{{ ExpandedForm.select('weekend', weekendResponses, array.repetitions[0].weekend, {helpText: trans('firefly.help_weekend')}) }}
|
||||||
{{ ExpandedForm.select('repetition_end', repetitionEnds, repetitionEnd) }}
|
{{ ExpandedForm.select('repetition_end', repetitionEnds, repetitionEnd) }}
|
||||||
{{ ExpandedForm.date('repeat_until',array.repeat_until) }}
|
{{ ExpandedForm.date('repeat_until',array.repeat_until) }}
|
||||||
|
|||||||
Reference in New Issue
Block a user