<%# locals: (account:, entry:, reconciliation_dry_run:, is_update:, action_verb:) %>
<% if account.investment? %> <% brokerage_cash = reconciliation_dry_run.new_cash_balance || 0 %> <% holdings_value = reconciliation_dry_run.new_balance - brokerage_cash %>

<%= t(".this_will", action_verb: action_verb) %> <%= entry.date.strftime("%B %d, %Y") %> <%= t(".to_colon") %>

<%= t(".total_account_value") %> <%= Money.new(reconciliation_dry_run.new_balance, account.currency).format %>
<%= t(".holdings_value") %> <%= Money.new(holdings_value, account.currency).format %>
<%= t(".brokerage_cash") %> "><%= Money.new(brokerage_cash, account.currency).format %>
<% else %>

<%= 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")) %>