mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
This commit is contained in:
parent
1f774e0d71
commit
642539e410
@ -1647,6 +1647,7 @@ return [
|
||||
'transactionsWithoutBudget' => 'Expenses without budget',
|
||||
'transactions_no_budget' => 'Expenses without budget between :start and :end',
|
||||
'spent_between' => 'Already spent between :start and :end',
|
||||
'spent_between_left' => 'Spent :spent between :start and :end, leaving :left.',
|
||||
'set_available_amount' => 'Set available amount',
|
||||
'update_available_amount' => 'Update available amount',
|
||||
'ab_basic_modal_explain' => 'Use this form to indicate how much you expect to be able to budget (in total, in :currency) in the indicated period.',
|
||||
|
@ -154,8 +154,13 @@
|
||||
{# info text to show how much is spent (in currency). #}
|
||||
<div class="row spentInfo" data-id="{{ budget.id }}">
|
||||
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||
<small>{{ trans('firefly.spent_between', {start: budget.start_date.isoFormat(monthAndDayFormat), end: budget.end_date.isoFormat(monthAndDayFormat)}) }}
|
||||
: {{ formatAmountBySymbol(budget.spent, budget.transaction_currency.symbol, budget.transaction_currency.decimal_places) }} </small>
|
||||
<small>{{ trans('firefly.spent_between_left', {
|
||||
start: budget.start_date.isoFormat(monthAndDayFormat),
|
||||
end: budget.end_date.isoFormat(monthAndDayFormat),
|
||||
spent: formatAmountBySymbol(budget.spent, budget.transaction_currency.symbol, budget.transaction_currency.decimal_places),
|
||||
left: formatAmountBySymbol(budget.budgeted + budget.spent, budget.transaction_currency.symbol, budget.transaction_currency.decimal_places),
|
||||
})|raw }}
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user