%# locals: (account:, entry:, reconciliation_dry_run:, is_update:, action_verb:) %>
<%= t(".this_will", action_verb: action_verb) %> <%= entry.date.strftime("%B %d, %Y") %> <%= t(".to_colon") %>
<%= action_verb.capitalize %> <% if account.depository? %> <%= t(".account_balance") %> <% elsif account.credit_card? %> <%= t(".credit_card_balance") %> <% elsif account.loan? %> <%= t(".loan_balance") %> <% elsif account.property? %> <%= t(".property_value") %> <% elsif account.vehicle? %> <%= t(".vehicle_value") %> <% elsif account.crypto? %> <%= t(".crypto_balance") %> <% elsif account.other_asset? %> <%= t(".asset_value") %> <% elsif account.other_liability? %> <%= t(".liability_balance") %> <% else %> <%= t(".balance") %> <% end %> <%= t(".on") %> <%= entry.date.strftime("%B %d, %Y") %> <%= t(".to") %> <%= entry.amount_money.format %>.
<% end %><%= t(".recalculate_notice", change_or_update: is_update ? t(".change") : t(".update")) %>