1*cd7fd4a2SAndreas Gohr<?php 2*cd7fd4a2SAndreas Gohr/** 3*cd7fd4a2SAndreas Gohr * Spanish language file 4*cd7fd4a2SAndreas Gohr * 5*cd7fd4a2SAndreas Gohr * @author Miguel Pagano <miguel.pagano> 6*cd7fd4a2SAndreas Gohr */ 7*cd7fd4a2SAndreas Gohr 8*cd7fd4a2SAndreas Gohr$lang['menu'] = 'Administración de usuarios'; 9*cd7fd4a2SAndreas Gohr 10*cd7fd4a2SAndreas Gohr// custom language strings for the plugin 11*cd7fd4a2SAndreas Gohr$lang['noauth'] = '(la autentiación de usuariosuser no está disponible)'; 12*cd7fd4a2SAndreas Gohr$lang['nosupport'] = '(la administración de usuarios no está habilitada)'; 13*cd7fd4a2SAndreas Gohr 14*cd7fd4a2SAndreas Gohr$lang['badauth'] = 'Mecanismo de autenticación inválido'; // should never be displayed! 15*cd7fd4a2SAndreas Gohr 16*cd7fd4a2SAndreas Gohr$lang['user_id'] = 'Usuario'; 17*cd7fd4a2SAndreas Gohr$lang['user_pass'] = 'Contraseña'; 18*cd7fd4a2SAndreas Gohr$lang['user_name'] = 'Nombre'; 19*cd7fd4a2SAndreas Gohr$lang['user_mail'] = 'Correo electrónico'; 20*cd7fd4a2SAndreas Gohr$lang['user_groups'] = 'Grupos'; 21*cd7fd4a2SAndreas Gohr 22*cd7fd4a2SAndreas Gohr$lang['field'] = 'Campo'; 23*cd7fd4a2SAndreas Gohr$lang['value'] = 'Valor'; 24*cd7fd4a2SAndreas Gohr$lang['add'] = 'Agregar'; 25*cd7fd4a2SAndreas Gohr$lang['delete'] = 'Eliminar'; 26*cd7fd4a2SAndreas Gohr$lang['delete_selected'] = 'Eliminar seleccionados'; 27*cd7fd4a2SAndreas Gohr$lang['edit'] = 'Editar'; 28*cd7fd4a2SAndreas Gohr$lang['edit_prompt'] = 'Editar datos de este usuario'; 29*cd7fd4a2SAndreas Gohr$lang['modify'] = 'Guardar los cambios'; 30*cd7fd4a2SAndreas Gohr$lang['search'] = 'Buscar'; 31*cd7fd4a2SAndreas Gohr$lang['search_prompt'] = 'Realizar la búsqueda'; 32*cd7fd4a2SAndreas Gohr$lang['clear'] = 'Limpiar los filtros de la búsqueda'; 33*cd7fd4a2SAndreas Gohr$lang['filter'] = 'Filtrar'; 34*cd7fd4a2SAndreas Gohr 35*cd7fd4a2SAndreas Gohr$lang['summary'] = 'Mostrando los usuarios %1$d-%2$d de %3$d encontrados. Cantidad total de usuarios %4$d.'; 36*cd7fd4a2SAndreas Gohr$lang['nonefound'] = 'No se encontraron usuarios que coincidan con los párametros de la búsqueda. Cantidad total de usuarios %d.'; 37*cd7fd4a2SAndreas Gohr$lang['delete_ok'] = '%d usuarios eliminados'; 38*cd7fd4a2SAndreas Gohr$lang['delete_fail'] = '%d no se pudieron eliminar.'; 39*cd7fd4a2SAndreas Gohr$lang['update_ok'] = 'Los datos del usuario se actualizaron exitosamente '; 40*cd7fd4a2SAndreas Gohr$lang['update_fail'] = 'Los datos del usuario no se actualizaron'; 41*cd7fd4a2SAndreas Gohr$lang['update_exists'] = 'El cambio de nombre de usuario falló, el nombre especificado ($s) ya está en uso (los otros cambios se aplicaron).'; 42*cd7fd4a2SAndreas Gohr 43*cd7fd4a2SAndreas Gohr$lang['start'] = 'primera'; 44*cd7fd4a2SAndreas Gohr$lang['prev'] = 'anterior'; 45*cd7fd4a2SAndreas Gohr$lang['next'] = 'siguiente'; 46*cd7fd4a2SAndreas Gohr$lang['last'] = 'última'; 47*cd7fd4a2SAndreas Gohr 48