Translate stuff

This commit is contained in:
James Cole
2024-04-28 14:43:23 +02:00
parent b951d4130c
commit 3674465f53
2 changed files with 3 additions and 2 deletions

View File

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

View File

@@ -359,12 +359,12 @@
</div> </div>
</div> </div>
<div class="row mb-3"> <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="col-sm-8">
<div class="form-check form-switch"> <div class="form-check form-switch">
<label> <label>
<input class="form-check-input" type="checkbox" @change="saveGroupedAccounts" <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> </label>
</div> </div>
</div> </div>