diff --git a/resources/lang/en_US/firefly.php b/resources/lang/en_US/firefly.php index ef30dadf9d..793735db9f 100644 --- a/resources/lang/en_US/firefly.php +++ b/resources/lang/en_US/firefly.php @@ -701,6 +701,7 @@ return [ 'cash_accounts' => 'Cash accounts', 'Cash account' => 'Cash account', 'reconcile_account' => 'Reconcile account ":account"', + 'overview_of_reconcile_modal' => 'Overview of reconciliation', 'delete_reconciliation' => 'Delete reconciliation', 'update_reconciliation' => 'Update reconciliation', 'amount_cannot_be_zero' => 'The amount cannot be zero', diff --git a/resources/views/accounts/reconcile/overview.twig b/resources/views/accounts/reconcile/overview.twig index 78502d20af..a7c9287d36 100644 --- a/resources/views/accounts/reconcile/overview.twig +++ b/resources/views/accounts/reconcile/overview.twig @@ -3,7 +3,8 @@
{{ 'submitted_start_balance'|_ }} (date) | +{{ 'submitted_start_balance'|_ }} ({{ start.formatLocalized(monthAndDayFormat) }}) | {{ formatAmountByAccount(account, startBalance) }} |
{{ formatAmountByAccount(account, clearedAmount) }} | ||
{{ 'submitted_end_balance'|_ }} (date) | +{{ 'submitted_end_balance'|_ }} ({{ end.formatLocalized(monthAndDayFormat) }}) | {{ formatAmountByAccount(account, endBalance) }} |