%# locals: (account:, entry:, reconciliation_dry_run:, is_update:, action_verb:) %>
This will <%= action_verb %> the account value on <%= entry.date.strftime("%B %d, %Y") %> to:
<%= action_verb.capitalize %> <% if account.depository? %> account balance <% elsif account.credit_card? %> credit card balance <% elsif account.loan? %> loan balance <% elsif account.property? %> property value <% elsif account.vehicle? %> vehicle value <% elsif account.crypto? %> crypto balance <% elsif account.other_asset? %> asset value <% elsif account.other_liability? %> liability balance <% else %> balance <% end %> on <%= entry.date.strftime("%B %d, %Y") %> to <%= entry.amount_money.format %>.
<% end %>All future transactions and balances will be recalculated based on this <%= is_update ? "change" : "update" %>.