mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Fix #3246
This commit is contained in:
@@ -1088,6 +1088,8 @@ return [
|
||||
'no_bulk_category' => 'Don\'t update category',
|
||||
'no_bulk_budget' => 'Don\'t update budget',
|
||||
'no_bulk_tags' => 'Don\'t update tag(s)',
|
||||
'replace_with_these_tags' => 'Replace with these tags',
|
||||
'append_these_tags' => 'Add these tags',
|
||||
'mass_edit' => 'Edit selected individually',
|
||||
'bulk_edit' => 'Edit selected in bulk',
|
||||
'mass_delete' => 'Delete selected',
|
||||
|
||||
@@ -137,12 +137,24 @@
|
||||
<input class="form-control" placeholder="" name="tags" autocomplete="off" type="text" value="">
|
||||
</td>
|
||||
<td>
|
||||
<div class="checkbox">
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input name="ignore_tags" type="checkbox" value="1" checked>
|
||||
<input type="radio" name="tags_action" id="tags_action_do_nothing" value="no_nothing" checked />
|
||||
{{ 'no_bulk_tags'|_ }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="tags_action" id="tags_action_do_replace" value="do_replace" />
|
||||
{{ 'replace_with_these_tags'|_ }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="tags_action" id="tags_action_do_append" value="do_append" />
|
||||
{{ 'append_these_tags'|_ }}
|
||||
</label>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user