blob: 3b939897cefc132ea7dda66ba1fe0e07180a069e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
// Heading
$_['heading_title'] = 'SuperVentas';
// Text
$_['text_extension'] = 'Extensiones';
$_['text_success'] = 'Éxito: ¡Has modificado el módulo de superventas!';
$_['text_edit'] = 'Editar Módulo de SuperVentas';
// Entry
$_['entry_name'] = 'Nombre del Módulo';
$_['entry_limit'] = 'Límite';
$_['entry_image'] = 'Imagen (W x H) y tipo de cambio de tamaño';
$_['entry_width'] = 'Ancho';
$_['entry_height'] = 'Alto';
$_['entry_status'] = 'Estado';
// Error
$_['error_permission'] = 'Advertencia: ¡No tiene permiso para modificar el módulo de superventas!';
$_['error_name'] = '¡El nombre del módulo debe tener entre 3 y 64 caracteres!';
$_['error_width'] = '¡Ancho requerido!';
$_['error_height'] = '¡Alto requerido!';
|