25 lines
1005 B
PHP
25 lines
1005 B
PHP
<?php
|
|
|
|
/**
|
|
* English language file
|
|
*
|
|
* @author Stefan Gabos <contact@stefangabos.ro>
|
|
*/
|
|
|
|
$this->language = array(
|
|
|
|
'clear_date' => 'Clear date',
|
|
'csrf_detected' => 'There was a problem with your submission!<br>Possible causes may be that the submission has taken too long, or it represents a duplicate request.<br>Please try again.',
|
|
'days' => array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'),
|
|
'days_abbr' => false, // will use the first 2 letters from the full name
|
|
'months' => array('January','February','March','April','May','June','July','August','September','October','November','December'),
|
|
'months_abbr' => false, // will use the first 3 letters from the full name
|
|
'new_captcha' => 'Get a new code',
|
|
'other' => 'Other...',
|
|
'select' => '- select -',
|
|
'spam_detected' => 'Possible spam attempt detected. The posted form data was rejected.',
|
|
'today' => 'Today',
|
|
|
|
);
|
|
|
|
?>
|