|
| 1 | +<?php |
| 2 | + |
| 3 | +return [ |
| 4 | + |
| 5 | + /* |
| 6 | + |-------------------------------------------------------------------------- |
| 7 | + | Dick Crud Language Lines |
| 8 | + |-------------------------------------------------------------------------- |
| 9 | + | |
| 10 | + | The following language lines are used by the CRUD interface. |
| 11 | + | You are free to change them to anything |
| 12 | + | you want to customize your views to better match your application. |
| 13 | + | |
| 14 | + */ |
| 15 | + |
| 16 | + // Create form |
| 17 | + 'add' => 'Añadir', |
| 18 | + 'back_to_all' => 'Volver al listado ', |
| 19 | + 'cancel' => 'Cancelar', |
| 20 | + 'add_a_new' => 'Añadir nuevo ', |
| 21 | + |
| 22 | + // Create form - advanced options |
| 23 | + 'after_saving' => 'Después de guardar', |
| 24 | + 'go_to_the_table_view' => 'ir al listado', |
| 25 | + 'let_me_add_another_item' => 'añadir otro item', |
| 26 | + 'edit_the_new_item' => 'editar este item', |
| 27 | + |
| 28 | + // Edit form |
| 29 | + 'edit' => 'Editar', |
| 30 | + 'save' => 'Guardar', |
| 31 | + |
| 32 | + // CRUD table view |
| 33 | + 'all' => 'Todos ', |
| 34 | + 'in_the_database' => 'en la base de datos', |
| 35 | + 'list' => 'Listar', |
| 36 | + 'actions' => 'Acciones', |
| 37 | + 'preview' => 'Vista previa', |
| 38 | + 'delete' => 'Eliminar', |
| 39 | + 'admin' => 'Admin', |
| 40 | + 'details_row' => 'Esta es la fila de detalles. Modificar a su gusto.', |
| 41 | + 'details_row_loading_error' => 'Se ha producido un error al cargar los datos. Por favor, intente de nuevo.', |
| 42 | + |
| 43 | + // Confirmation messages and bubbles |
| 44 | + 'delete_confirm' => '¿Está seguro que desea eliminar este elemento?', |
| 45 | + 'delete_confirmation_title' => 'Elemento eliminado', |
| 46 | + 'delete_confirmation_message' => 'El elemento ha sido eliminado satisfactoriamente.', |
| 47 | + 'delete_confirmation_not_title' => 'No se pudo eliminar', |
| 48 | + 'delete_confirmation_not_message' => "Ha ocurrido un error. Puede que el elemento no haya sido eliminado.", |
| 49 | + 'delete_confirmation_not_deleted_title' => 'No se pudo eliminar', |
| 50 | + 'delete_confirmation_not_deleted_message' => 'No ha ocurrido nada. Su elemento está seguro.', |
| 51 | + |
| 52 | + // DataTables translation |
| 53 | + 'emptyTable' => 'No hay datos disponibles en la tabla', |
| 54 | + 'info' => 'Mostrando _START_ hasta _END_ de _TOTAL_ registros', |
| 55 | + 'infoEmpty' => 'Mostrando 0 hasta 0 de 0 registros', |
| 56 | + 'infoFiltered' => '(filtrando de _MAX_ registros totales)', |
| 57 | + 'infoPostFix' => '', |
| 58 | + 'thousands' => ',', |
| 59 | + 'lengthMenu' => '_MENU_ elementos por página', |
| 60 | + 'loadingRecords' => 'Cargando...', |
| 61 | + 'processing' => 'Procesando...', |
| 62 | + 'search' => 'Buscar: ', |
| 63 | + 'zeroRecords' => 'No se encontraron elementos', |
| 64 | + 'paginate' => [ |
| 65 | + 'first' => 'Primero', |
| 66 | + 'last' => 'Último', |
| 67 | + 'next' => 'Siguiente', |
| 68 | + 'previous' => 'Anterior', |
| 69 | + ], |
| 70 | + 'aria' => [ |
| 71 | + 'sortAscending' => ': activar para ordenar ascendentemente', |
| 72 | + 'sortDescending' => ': activar para ordenar descendentemente', |
| 73 | + ], |
| 74 | + |
| 75 | + // global crud - errors |
| 76 | + 'unauthorized_access' => 'Acceso denegado - usted no tiene los permisos necesarios para ver esta página.', |
| 77 | + 'please_fix' => 'Por favor corrija los siguientes errores:', |
| 78 | + |
| 79 | + // global crud - success / error notification bubbles |
| 80 | + 'insert_success' => 'El elemento ha sido añadido satisfactoriamente.', |
| 81 | + 'update_success' => 'El elemento ha sido modificado satisfactoriamente.', |
| 82 | + |
| 83 | + // CRUD reorder view |
| 84 | + 'reorder' => 'Reordenar', |
| 85 | + 'reorder_text' => 'Arrastrar y soltar para reordenar.', |
| 86 | + 'reorder_success_title' => 'Hecho', |
| 87 | + 'reorder_success_message' => 'El orden ha sido guardado.', |
| 88 | + 'reorder_error_title' => 'Error', |
| 89 | + 'reorder_error_message' => 'El orden no se ha guardado.', |
| 90 | + |
| 91 | + // Fields |
| 92 | + 'browse_uploads' => 'Subir archivos', |
| 93 | + 'clear' => 'Limpiar', |
| 94 | + 'page_link' => 'Enlace', |
| 95 | + 'page_link_placeholder' => 'http://example.com/su-pagina', |
| 96 | + 'internal_link' => 'Enlace interno', |
| 97 | + 'internal_link_placeholder' => 'Slug interno. Ejplo: \'admin/page\' (sin comillas) para \':url\'', |
| 98 | + 'external_link' => 'Enlace externo', |
| 99 | + |
| 100 | +]; |
0 commit comments