27 lines
996 B
PHP
27 lines
996 B
PHP
<?php
|
|
|
|
/**
|
|
* Spanish language file
|
|
*
|
|
* @version 1.1.1
|
|
* @author D3iti, WaKeMaTTa
|
|
*/
|
|
|
|
$this->language = array(
|
|
|
|
'clear_date' => 'Limpiar',
|
|
'csrf_detected' => '¡Hubo un problema con tu envio!<br>Probablemente el envio es demasido grande o es una petición duplicada. <br> Por favor, inténtalo de nuevo.',
|
|
'days' => array('Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'),
|
|
'days_abbr' => false, // will use the first 2 letters from the full name
|
|
'months' => array('Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'),
|
|
'months_abbr' => false, // will use the first 3 letters from the full name
|
|
'new_captcha' => 'Obtener nuevo codigo',
|
|
'other' => 'Otro...',
|
|
'select' => '- Seleccionar -',
|
|
'spam_detected' => 'Posible intento de spam detectado. El formulario enviado fue rechazado.',
|
|
'today' => 'Hoy',
|
|
|
|
);
|
|
|
|
?>
|