mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-22 08:56:39 -06:00
Clean up rule form.
This commit is contained in:
parent
38bdd6c36c
commit
db2485f97a
3
public/v1/js/ff/rules/select-transactions.js
vendored
3
public/v1/js/ff/rules/select-transactions.js
vendored
@ -29,7 +29,4 @@ $(document).ready(function () {
|
||||
}
|
||||
);
|
||||
}
|
||||
// $('form.form-horizontal').on('submit', function () {
|
||||
// return confirm(askReadWarning);
|
||||
// });
|
||||
});
|
||||
|
@ -1213,17 +1213,14 @@ return [
|
||||
'rule_action_append_notes_to_descr' => 'Append notes to description',
|
||||
'rule_action_move_descr_to_notes' => 'Replace notes with description',
|
||||
'rule_action_move_notes_to_descr' => 'Replace description with notes',
|
||||
|
||||
'rules_have_read_warning' => 'Have you read the warning ? ',
|
||||
'apply_rule_warning' => 'Warning: running a rule(group) on a large selection of transactions could take ages, and it could time - out . if it does, the rule(group) will only be applied to an unknown subset of your transactions . This might leave your financial administration in tatters . Please be careful . ',
|
||||
'rulegroup_for_bills_title' => 'Rule group for bills',
|
||||
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills . ',
|
||||
'rule_for_bill_title' => 'Auto - generated rule for bill ":name"',
|
||||
'rule_for_bill_description' => 'This rule is auto - generated to try to match bill ":name" . ',
|
||||
'create_rule_for_bill' => 'Create a new rule for bill ":name"',
|
||||
'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill . for example, whenever you pay your rent, the bill "rent" will be linked to the expense . This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.',
|
||||
'new_rule_for_bill_title' => 'Rule for bill ":name"',
|
||||
'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".',
|
||||
'rulegroup_for_bills_title' => 'Rule group for bills',
|
||||
'rulegroup_for_bills_description' => 'A special rule group for all the rules that involve bills.',
|
||||
'rule_for_bill_title' => 'Auto-generated rule for bill ":name"',
|
||||
'rule_for_bill_description' => 'This rule is auto-generated to try to match bill ":name".',
|
||||
'create_rule_for_bill' => 'Create a new rule for bill ":name"',
|
||||
'create_rule_for_bill_txt' => 'You have just created a new bill called ":name", congratulations!Firefly III can automagically match new withdrawals to this bill. For example, whenever you pay your rent, the bill "rent" will be linked to the expense. This way, Firefly III can accurately show you which bills are due and which ones aren\'t. In order to do so, a new rule must be created. Firefly III has filled in some sensible defaults for you. Please make sure these are correct. If these values are correct, Firefly III will automatically link the correct withdrawal to the correct bill. Please check out the triggers to see if they are correct, and add some if they\'re wrong.',
|
||||
'new_rule_for_bill_title' => 'Rule for bill ":name"',
|
||||
'new_rule_for_bill_description' => 'This rule marks transactions for bill ":name".',
|
||||
|
||||
'new_rule_for_journal_title' => 'Rule based on transaction ":description"',
|
||||
'new_rule_for_journal_description' => 'This rule is based on transaction ":description". It will match transactions that are exactly the same.',
|
||||
|
@ -21,9 +21,6 @@
|
||||
<p>
|
||||
{{ trans('firefly.apply_rule_group_selection_intro', {title: ruleGroup.title}) }}
|
||||
</p>
|
||||
<p class="text-danger">
|
||||
{{ 'apply_rule_warning'|_ }}
|
||||
</p>
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-8 col-sm-12 col-xs-12">
|
||||
{{ ExpandedForm.date('start', first) }}
|
||||
@ -42,9 +39,6 @@
|
||||
</form>
|
||||
{% endblock %}
|
||||
{% block scripts %}
|
||||
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
||||
var askReadWarning = "{{ trans('firefly.rules_have_read_warning')|escape('js') }}";
|
||||
</script>
|
||||
<script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
||||
<script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
||||
<script type="text/javascript" src="v1/js/ff/rules/select-transactions.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
||||
|
@ -21,9 +21,6 @@
|
||||
<p>
|
||||
{{ trans('firefly.apply_rule_selection_intro', {title: rule.title}) }}
|
||||
</p>
|
||||
<p class="text-danger">
|
||||
{{ 'apply_rule_warning'|_ }}
|
||||
</p>
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-8 col-sm-12 col-xs-12">
|
||||
{{ ExpandedForm.date('start', first) }}
|
||||
@ -42,9 +39,6 @@
|
||||
</form>
|
||||
{% endblock %}
|
||||
{% block scripts %}
|
||||
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
||||
var askReadWarning = "{{ trans('firefly.rules_have_read_warning')|escape('js') }}";
|
||||
</script>
|
||||
<script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
||||
<script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
||||
<script type="text/javascript" src="v1/js/ff/rules/select-transactions.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
||||
|
Loading…
Reference in New Issue
Block a user