mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 10:33:30 +00:00
This commit is contained in:
@@ -54,7 +54,7 @@ return [
|
|||||||
'create_new_stuff' => 'Create new stuff',
|
'create_new_stuff' => 'Create new stuff',
|
||||||
'new_withdrawal' => 'New withdrawal',
|
'new_withdrawal' => 'New withdrawal',
|
||||||
'create_new_transaction' => 'Create new transaction',
|
'create_new_transaction' => 'Create new transaction',
|
||||||
'sidebar_frontpage_options' => 'Options',
|
'sidebar_frontpage_create' => 'Create',
|
||||||
'new_transaction' => 'New transaction',
|
'new_transaction' => 'New transaction',
|
||||||
'no_rules_for_bill' => 'This bill has no rules associated to it.',
|
'no_rules_for_bill' => 'This bill has no rules associated to it.',
|
||||||
'go_to_asset_accounts' => 'View your asset accounts',
|
'go_to_asset_accounts' => 'View your asset accounts',
|
||||||
@@ -929,6 +929,8 @@ return [
|
|||||||
'reconciliation_transaction_title' => 'Reconciliation (:from to :to)',
|
'reconciliation_transaction_title' => 'Reconciliation (:from to :to)',
|
||||||
'sum_of_reconciliation' => 'Sum of reconciliation',
|
'sum_of_reconciliation' => 'Sum of reconciliation',
|
||||||
'reconcile_this_account' => 'Reconcile this account',
|
'reconcile_this_account' => 'Reconcile this account',
|
||||||
|
'reconcile' => 'Reconcile',
|
||||||
|
'show' => 'Show',
|
||||||
'confirm_reconciliation' => 'Confirm reconciliation',
|
'confirm_reconciliation' => 'Confirm reconciliation',
|
||||||
'submitted_start_balance' => 'Submitted start balance',
|
'submitted_start_balance' => 'Submitted start balance',
|
||||||
'selected_transactions' => 'Selected transactions (:count)',
|
'selected_transactions' => 'Selected transactions (:count)',
|
||||||
|
@@ -80,16 +80,25 @@
|
|||||||
<div class="box-footer clearfix">
|
<div class="box-footer clearfix">
|
||||||
<!-- Single button -->
|
<!-- Single button -->
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<a class="btn btn-default"
|
<a type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
href="{{ route('accounts.show', [data[1].id]) }}">{{ formatAmountByAccount(data[1], data[1]|balance, false) }}</a>
|
{{ 'sidebar_frontpage_create'|_ }} <span class="caret"></span>
|
||||||
<a type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
{{ 'sidebar_frontpage_options'|_ }} <span class="caret"></span>
|
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a href="{{ route('transactions.create', ['withdrawal']) }}?source={{ data[1].id }}">{{ 'create_new_withdrawal'|_ }}</a></li>
|
<li><a href="{{ route('transactions.create', ['withdrawal']) }}?source={{ data[1].id }}">{{ 'create_new_withdrawal'|_ }}</a></li>
|
||||||
<li><a href="{{ route('transactions.create', ['deposit']) }}?destination={{ data[1].id }}">{{ 'create_new_deposit'|_ }}</a></li>
|
<li><a href="{{ route('transactions.create', ['deposit']) }}?destination={{ data[1].id }}">{{ 'create_new_deposit'|_ }}</a></li>
|
||||||
<li><a href="{{ route('transactions.create', ['transfer']) }}?source={{ data[1].id }}">{{ 'create_new_transfer'|_ }}</a></li>
|
<li><a href="{{ route('transactions.create', ['transfer']) }}?source={{ data[1].id }}">{{ 'create_new_transfer'|_ }}</a></li>
|
||||||
<li><a href="{{ route('accounts.reconcile', [data[1].id]) }}">{{ 'reconcile_this_account'|_ }}</a></li>
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="btn-group">
|
||||||
|
<a type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"
|
||||||
|
href="{{ route('accounts.show', [data[1].id]) }}">{{ formatAmountByAccount(data[1], data[1]|balance, false) }}
|
||||||
|
<span class="caret"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
<li><a href="{{ route('accounts.show', [data[1].id]) }}">{{ 'show'|_ }}</a></li>
|
||||||
|
<li><a href="{{ route('accounts.reconcile', [data[1].id]) }}">{{ 'reconcile'|_ }}</a></li>
|
||||||
|
<li><a href="{{ route('accounts.edit', [data[1].id]) }}">{{ 'edit'|_ }}</a></li>
|
||||||
|
<li><a href="{{ route('accounts.delete', [data[1].id]) }}">{{ 'delete'|_ }}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user