mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-24 18:00:16 +00:00
76 lines
2.4 KiB
PHP
76 lines
2.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
'buttons' => [
|
|
'filter' => 'Filtrar',
|
|
'clear_all_filters' => 'Clear all',
|
|
],
|
|
'labels' => [
|
|
'action' => 'Acción',
|
|
'results_per_page' => 'Registros por página',
|
|
'clear_filter' => 'Borrar el filtro',
|
|
'no_data' => 'No se encontraron registros.',
|
|
'all' => 'Todos',
|
|
'selected' => 'Seleccionado',
|
|
'filtered' => 'Filtrada',
|
|
],
|
|
'placeholders' => [
|
|
'search' => 'Buscar',
|
|
'select' => 'Seleccione un período',
|
|
],
|
|
'pagination' => [
|
|
'showing' => 'Mostrando',
|
|
'to' => 'a',
|
|
'of' => 'de',
|
|
'results' => 'registros',
|
|
'all' => 'Todos',
|
|
],
|
|
'multi_select' => [
|
|
'select' => 'Seleccione',
|
|
'all' => 'Todos',
|
|
],
|
|
'select' => [
|
|
'select' => 'Seleccione',
|
|
'all' => 'Todos',
|
|
],
|
|
'boolean_filter' => [
|
|
'all' => 'Todos',
|
|
],
|
|
'input_text_options' => [
|
|
'is' => 'Es exactamente',
|
|
'is_not' => 'No es exactamente',
|
|
'contains' => 'Contiene',
|
|
'contains_not' => 'No contiene',
|
|
'starts_with' => 'Comienza por',
|
|
'ends_with' => 'Termina en',
|
|
'is_null' => 'És nulo',
|
|
'is_not_null' => 'No és nulo',
|
|
'is_blank' => 'És blanco',
|
|
'is_not_blank' => 'No és blanco',
|
|
'is_empty' => 'Esta relleno',
|
|
'is_not_empty' => 'No está relleno',
|
|
],
|
|
'export' => [
|
|
'exporting' => '¡Espere por favor!',
|
|
'completed' => '¡Exportación completada! Tus archivos están listos para descargar',
|
|
],
|
|
'soft_deletes' => [
|
|
'message_with_trashed' => 'Displaying all records, including deleted ones.',
|
|
'message_only_trashed' => 'Displaying only deleted records.',
|
|
'without_trashed' => 'Without deleted',
|
|
'with_trashed' => 'With deleted',
|
|
'only_trashed' => 'Only deleted',
|
|
],
|
|
'multi_sort' => [
|
|
'message' => 'Multiple sort is active',
|
|
],
|
|
'buttons_macros' => [
|
|
'confirm' => [
|
|
'message' => 'Are you sure you want to perform this action?',
|
|
],
|
|
'confirm_prompt' => [
|
|
'message' => "Are you sure you want to perform this action? \n\n Enter :confirmValue to confirm.",
|
|
],
|
|
],
|
|
];
|