-
-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marc Geurts
authored
Nov 9, 2023
1 parent
1e7d921
commit eac83c0
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?php | ||
|
||
return [ | ||
'buttons' => [ | ||
'filter' => 'Filter', | ||
'clear_all_filters' => 'Wis alle filters', | ||
], | ||
'labels' => [ | ||
'action' => 'Acties', | ||
'results_per_page' => 'Records per pagina', | ||
'clear_filter' => 'Wis filter', | ||
'no_data' => 'Geen records gevonden', | ||
'all' => 'Alles', | ||
'selected' => 'Geselecteerd', | ||
'filtered' => 'Gefilterd', | ||
], | ||
'placeholders' => [ | ||
'search' => 'Zoek...', | ||
'select' => 'Selecteer een periode', | ||
], | ||
'pagination' => [ | ||
'showing' => 'Toont', | ||
'to' => 'tot', | ||
'of' => 'van', | ||
'results' => 'Resultaten', | ||
'all' => 'Alles', | ||
], | ||
'multi_select' => [ | ||
'select' => 'Selecteer', | ||
'all' => 'Alles', | ||
], | ||
'select' => [ | ||
'select' => 'Selecteer', | ||
'all' => 'Alles', | ||
], | ||
'boolean_filter' => [ | ||
'all' => 'Alles', | ||
], | ||
'input_text_options' => [ | ||
'is' => 'Is', | ||
'is_not' => 'Is not', | ||
'contains' => 'Bevat', | ||
'contains_not' => 'Bevat geen', | ||
'starts_with' => 'Begint met', | ||
'ends_with' => 'Eindigt met', | ||
'is_empty' => 'Is leeg', | ||
'is_not_empty' => 'Is niet leeg', | ||
'is_null' => 'Is null', | ||
'is_not_null' => 'Is niet null', | ||
'is_blank' => 'Is niet ingevuld', | ||
'is_not_blank' => 'Is ingevuld', | ||
], | ||
'export' => [ | ||
'exporting' => 'Even geduld a.u.b.!', | ||
'completed' => 'Export voltooid! Uw bestaanden staan klaar voor download.', | ||
], | ||
'soft_deletes' => [ | ||
'message_with_trashed' => 'Toont alle records, inclusief verwijderde.', | ||
'message_only_trashed' => 'Toont enkele verwijderde records.', | ||
'without_trashed' => 'Exclusief verwijderde', | ||
'with_trashed' => 'Inclusief verwijderde', | ||
'only_trashed' => 'Enkel verwijderde', | ||
], | ||
'multi_sort' => [ | ||
'message' => 'Meervoudige sortering is actief', | ||
], | ||
]; |