mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix #1580
This commit is contained in:
parent
2add644706
commit
41da7d9f9a
@ -701,6 +701,7 @@ return [
|
|||||||
'cash_accounts' => 'Cash accounts',
|
'cash_accounts' => 'Cash accounts',
|
||||||
'Cash account' => 'Cash account',
|
'Cash account' => 'Cash account',
|
||||||
'reconcile_account' => 'Reconcile account ":account"',
|
'reconcile_account' => 'Reconcile account ":account"',
|
||||||
|
'overview_of_reconcile_modal' => 'Overview of reconciliation',
|
||||||
'delete_reconciliation' => 'Delete reconciliation',
|
'delete_reconciliation' => 'Delete reconciliation',
|
||||||
'update_reconciliation' => 'Update reconciliation',
|
'update_reconciliation' => 'Update reconciliation',
|
||||||
'amount_cannot_be_zero' => 'The amount cannot be zero',
|
'amount_cannot_be_zero' => 'The amount cannot be zero',
|
||||||
|
@ -3,7 +3,8 @@
|
|||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button type="button" class="close" data-dismiss="modal"><span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
<button type="button" class="close" data-dismiss="modal"><span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
||||||
</button>
|
</button>
|
||||||
<h4 class="modal-title">Overview of reconciliation
|
<h4 class="modal-title">
|
||||||
|
{{ 'overview_of_reconcile_modal'|_ }}
|
||||||
</h4>
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -20,7 +21,7 @@
|
|||||||
|
|
||||||
<table class="table table-striped table-bordered">
|
<table class="table table-striped table-bordered">
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ 'submitted_start_balance'|_ }} (date)</td>
|
<td>{{ 'submitted_start_balance'|_ }} ({{ start.formatLocalized(monthAndDayFormat) }})</td>
|
||||||
<td>{{ formatAmountByAccount(account, startBalance) }}</td>
|
<td>{{ formatAmountByAccount(account, startBalance) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@ -32,7 +33,7 @@
|
|||||||
<td>{{ formatAmountByAccount(account, clearedAmount) }}</td>
|
<td>{{ formatAmountByAccount(account, clearedAmount) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ 'submitted_end_balance'|_ }} (date)</td>
|
<td>{{ 'submitted_end_balance'|_ }} ({{ end.formatLocalized(monthAndDayFormat) }})</td>
|
||||||
<td>{{ formatAmountByAccount(account, endBalance) }}</td>
|
<td>{{ formatAmountByAccount(account, endBalance) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user