Si quieres cambiar el idioma del administrador has de borrar la tabla configuration_group desde mysql y luego pegar este texto traducido por mí.
————————————————————————————————————————————
CREATE TABLE IF NOT EXISTS `configuration_group` (
`configuration_group_id` int(11) NOT NULL AUTO_INCREMENT,
`configuration_group_title` varchar(64) COLLATE latin1_general_ci NOT NULL,
`configuration_group_description` varchar(255) COLLATE latin1_general_ci NOT NULL,
`sort_order` int(5) DEFAULT NULL,
`visible` int(1) DEFAULT ‘1’,
PRIMARY KEY (`configuration_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=737 ;
—
— Volcar la base de datos para la tabla `configuration_group`
—
INSERT INTO `configuration_group` (`configuration_group_id`, `configuration_group_title`, `configuration_group_description`, `sort_order`, `visible`) VALUES
(1, ‘Mi Tienda’, ‘Información general sobre la tienda’, 1, 1),
(2, ‘Valor Mínimo’, ‘The minimum values for functions / data’, 2, 1),
(3, ‘Valor Máximo’, ‘The maximum values for functions / data’, 3, 1),
(4, ‘Imágenes’, ‘Image parameters’, 4, 1),
(5, ‘Detalles del Cliente’, ‘Customer account configuration’, 5, 1),
(6, ‘Opciones de Módulos’, ‘Hidden from configuration’, 6, 0),
(7, ‘Envío del embalaje’, ‘Shipping options available at my store’, 7, 1),
(8, ‘Lista de Productos’, ‘Product Listing configuration options’, 8, 1),
(9, ‘Stock’, ‘Stock configuration options’, 9, 1),
(10, ‘Logging’, ‘Logging configuration options’, 10, 1),
(11, ‘Cache’, ‘Caching configuration options’, 11, 1),
(12, ‘E-Mail Options’, ‘General setting for E-Mail transport and HTML E-Mails’, 12, 1),
(13, ‘Descargas’, ‘Downloadable products options’, 13, 1),
(14, ‘GZip Compresión’, ‘GZip compression options’, 14, 1),
(15, ‘Sesiones’, ‘Session options’, 15, 1),
(16, ‘SEO URLs’, ‘Options for Ultimate SEO URLs by Chemo’, 16, 1),
(736, ‘Anti Robot Reg’, ‘Anti Robot Registration’, 300, 1);
———————————————————————————————————————–