25 lines
986 B
PHP
25 lines
986 B
PHP
<?php
|
|
|
|
/**
|
|
* Albanian language file
|
|
*
|
|
* @author Faton Sopa <fatonsopa@gmail.com>
|
|
*/
|
|
|
|
$this->language = array(
|
|
|
|
'clear_date' => 'Clear',
|
|
'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('Diele','Hene','Marte','Merkure','Enjte','Premte','Shtune'),
|
|
'days_abbr' => false, // will use the first 2 letters from the full name
|
|
'months' => array('Janar','Shkurt','Mars','Prill','Maj','Qershor','Korrik','Gusht','Shtator','Tetor','Nentor','Dhjetor'),
|
|
'months_abbr' => false, // will use the first 3 letters from the full name
|
|
'new_captcha' => 'Get a new code',
|
|
'other' => 'Te tjere...',
|
|
'select' => '- zgjedh opcionin -',
|
|
'spam_detected' => 'Possible spam attempt detected. The posted form data was rejected.',
|
|
'today' => 'Sot',
|
|
|
|
);
|
|
|
|
?>
|