26 lines
993 B
PHP
26 lines
993 B
PHP
<?php
|
|
|
|
/**
|
|
* Catalan language file
|
|
*
|
|
* @version 1.0
|
|
* @author WaKeMaTTa
|
|
*/
|
|
|
|
$this->language = array(
|
|
|
|
'clear_date' => 'Netejar',
|
|
'csrf_detected' => 'Hi va haver un problema amb el teu enviament! <br> Probablement l\'enviament és massa gran o és una petició duplicada. <br> Si us plau, torneu a provar.',
|
|
'days' => array('Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'),
|
|
'days_abbr' => false, // will use the first 2 letters from the full name
|
|
'months' => array('Gener','Febrer','Març','Abril','Maig','Juny','Julio','Agost','Setembre','Octubre','Novembre','Desembre'),
|
|
'months_abbr' => false, // will use the first 3 letters from the full name
|
|
'new_captcha' => 'Obtenir nou codi',
|
|
'other' => 'Altres...',
|
|
'select' => '- Seleccionar -',
|
|
'spam_detected' => 'Possible intent d\'spam detectat. El formulari enviat va ser rebutjat.',
|
|
'today' => 'Avui',
|
|
|
|
);
|
|
|
|
?>
|