mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-18 18:44:16 +00:00
Some bread crumbs and stuff [skip ci]
This commit is contained in:
@@ -871,6 +871,16 @@ Breadcrumbs::register(
|
|||||||
$breadcrumbs->push(trans('breadcrumbs.edit_journal', ['description' => $journal->description]), route('transactions.edit', [$journal->id]));
|
$breadcrumbs->push(trans('breadcrumbs.edit_journal', ['description' => $journal->description]), route('transactions.edit', [$journal->id]));
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// also edit reconciliations:
|
||||||
|
Breadcrumbs::register(
|
||||||
|
'accounts.reconcile.edit',
|
||||||
|
function (BreadCrumbGenerator $breadcrumbs, TransactionJournal $journal) {
|
||||||
|
$breadcrumbs->parent('transactions.show', $journal);
|
||||||
|
$breadcrumbs->push(trans('breadcrumbs.edit_reconciliation', ['description' => $journal->description]), route('accounts.reconcile.edit', [$journal->id]));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
Breadcrumbs::register(
|
Breadcrumbs::register(
|
||||||
'transactions.delete',
|
'transactions.delete',
|
||||||
function (BreadCrumbGenerator $breadcrumbs, TransactionJournal $journal) {
|
function (BreadCrumbGenerator $breadcrumbs, TransactionJournal $journal) {
|
||||||
|
@@ -31,10 +31,12 @@ return [
|
|||||||
'deposit_list' => 'Revenue, income and deposits',
|
'deposit_list' => 'Revenue, income and deposits',
|
||||||
'transfer_list' => 'Transfers',
|
'transfer_list' => 'Transfers',
|
||||||
'transfers_list' => 'Transfers',
|
'transfers_list' => 'Transfers',
|
||||||
|
'reconciliation_list' => 'Reconciliations',
|
||||||
'create_withdrawal' => 'Create new withdrawal',
|
'create_withdrawal' => 'Create new withdrawal',
|
||||||
'create_deposit' => 'Create new deposit',
|
'create_deposit' => 'Create new deposit',
|
||||||
'create_transfer' => 'Create new transfer',
|
'create_transfer' => 'Create new transfer',
|
||||||
'edit_journal' => 'Edit transaction ":description"',
|
'edit_journal' => 'Edit transaction ":description"',
|
||||||
|
'edit_reconciliation' => 'Edit ":description"',
|
||||||
'delete_journal' => 'Delete transaction ":description"',
|
'delete_journal' => 'Delete transaction ":description"',
|
||||||
'tags' => 'Tags',
|
'tags' => 'Tags',
|
||||||
'createTag' => 'Create new tag',
|
'createTag' => 'Create new tag',
|
||||||
|
@@ -621,6 +621,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"',
|
||||||
|
'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',
|
||||||
'end_of_reconcile_period' => 'End of reconcile period: :period',
|
'end_of_reconcile_period' => 'End of reconcile period: :period',
|
||||||
|
Reference in New Issue
Block a user