mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-01 08:32:52 +01:00
71 lines
2.0 KiB
PHP
71 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* Common elements found throughout many areas of BookStack.
|
|
*/
|
|
return [
|
|
|
|
// Buttons
|
|
'cancel' => 'Cancelar',
|
|
'confirm' => 'Confirmar',
|
|
'back' => 'Atrás',
|
|
'save' => 'Guardar',
|
|
'continue' => 'Continuar',
|
|
'select' => 'Seleccionar',
|
|
'toggle_all' => 'Marcarlos todos',
|
|
'more' => 'Más',
|
|
|
|
// Form Labels
|
|
'name' => 'Nombre',
|
|
'description' => 'Descripción',
|
|
'role' => 'Rol',
|
|
'cover_image' => 'Imagen de portada',
|
|
'cover_image_description' => 'Esta imagen debe ser aproximadamente de 440x250px.',
|
|
|
|
// Actions
|
|
'actions' => 'Acciones',
|
|
'view' => 'Ver',
|
|
'view_all' => 'Ver todos',
|
|
'create' => 'Crear',
|
|
'update' => 'Actualizar',
|
|
'edit' => 'Editar',
|
|
'sort' => 'Ordenar',
|
|
'move' => 'Mover',
|
|
'copy' => 'Copiar',
|
|
'reply' => 'Responder',
|
|
'delete' => 'Borrar',
|
|
'search' => 'Buscar',
|
|
'search_clear' => 'Limpiar búsqueda',
|
|
'reset' => 'Resetear',
|
|
'remove' => 'Remover',
|
|
'add' => 'Añadir',
|
|
|
|
// Sort Options
|
|
'sort_name' => 'Nombre',
|
|
'sort_created_at' => 'Fecha de Creación',
|
|
'sort_updated_at' => 'Fecha de Modificación',
|
|
|
|
// Misc
|
|
'deleted_user' => 'Usuario borrado',
|
|
'no_activity' => 'Ninguna actividad para mostrar',
|
|
'no_items' => 'No hay elementos disponibles',
|
|
'back_to_top' => 'Volver arriba',
|
|
'toggle_details' => 'Alternar detalles',
|
|
'toggle_thumbnails' => 'Alternar miniaturas',
|
|
'details' => 'Detalles',
|
|
'grid_view' => 'Vista en Cuadrícula',
|
|
'list_view' => 'Vista en Lista',
|
|
'default' => 'Predeterminada',
|
|
|
|
// Header
|
|
'view_profile' => 'Ver Perfil',
|
|
'edit_profile' => 'Editar Perfil',
|
|
|
|
// Layout tabs
|
|
'tab_info' => 'Información',
|
|
'tab_content' => 'Contenido',
|
|
|
|
// Email Content
|
|
'email_action_help' => 'Si está teniendo problemas clicando en el botón ":actionText", copie y pegue la siguiente URL en su navegador web:',
|
|
'email_rights' => 'Todos los derechos reservados',
|
|
];
|