Translate stuff

This commit is contained in:
James Cole 2024-04-28 14:43:23 +02:00
parent b951d4130c
commit 3674465f53
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
2 changed files with 3 additions and 2 deletions

View File

@ -2335,6 +2335,7 @@ return [
'active_accounts_only' => 'Active accounts only',
'in_active_accounts_only' => 'Inactive accounts only',
'show_all_accounts' => 'Show all accounts',
'group_accounts'=> 'Group accounts',
// piggy banks:
'event_history' => 'Event history',

View File

@ -359,12 +359,12 @@
</div>
</div>
<div class="row mb-3">
<label class="col-sm-4 col-form-label">Group accounts</label>
<label class="col-sm-4 col-form-label">{{ __('firefly.group_accounts') }}</label>
<div class="col-sm-8">
<div class="form-check form-switch">
<label>
<input class="form-check-input" type="checkbox" @change="saveGroupedAccounts"
x-model="pageOptions.groupedAccounts"><span>Group accounts</span>
x-model="pageOptions.groupedAccounts"><span>{{ __('firefly.group_accounts') }}</span>
</label>
</div>
</div>