mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix #1580
This commit is contained in:
@@ -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',
|
||||
|
@@ -3,7 +3,8 @@
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal"><span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
||||
</button>
|
||||
<h4 class="modal-title">Overview of reconciliation
|
||||
<h4 class="modal-title">
|
||||
{{ 'overview_of_reconcile_modal'|_ }}
|
||||
</h4>
|
||||
</div>
|
||||
|
||||
@@ -20,7 +21,7 @@
|
||||
|
||||
<table class="table table-striped table-bordered">
|
||||
<tr>
|
||||
<td>{{ 'submitted_start_balance'|_ }} (date)</td>
|
||||
<td>{{ 'submitted_start_balance'|_ }} ({{ start.formatLocalized(monthAndDayFormat) }})</td>
|
||||
<td>{{ formatAmountByAccount(account, startBalance) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -32,7 +33,7 @@
|
||||
<td>{{ formatAmountByAccount(account, clearedAmount) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{ 'submitted_end_balance'|_ }} (date)</td>
|
||||
<td>{{ 'submitted_end_balance'|_ }} ({{ end.formatLocalized(monthAndDayFormat) }})</td>
|
||||
<td>{{ formatAmountByAccount(account, endBalance) }}</td>
|
||||
</tr>
|
||||
|
||||
|
Reference in New Issue
Block a user