wiki.techinc.nl/languages/LanguageEl.php
2004-09-26 00:02:28 +00:00

51 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
require_once( "LanguageUtf8.php" );
/* private */ $wgAllMessagesEl = array(
'special_version_prefix' => '',
'special_version_postfix' => '',
'sunday' => "Κυριακή",
'monday' => "Δευτέρα",
'tuesday' => "Τρίτη",
'wednesday' => "Τετάρτη",
'thursday' => "Πέμπτη",
'friday' => "Παρασκευή",
'saturday' => "Σαββάτο",
'january' => "Ιανουαρίου",
'february' => "Φεβρουαρίου",
'march' => "Μαρτίου",
'april' => "Απριλίου",
'may_long' => "Μαΐου",
'june' => "Ιουνίου",
'july' => "Ιουλίου",
'august' => "Αυγούστου",
'september' => "Σεπτεμβρίου",
'october' => "Οκτωβρίου",
'november' => "Νοεμβρίου",
'december' => "Δεκεμβρίου",
'jan' => "Ιαν",
'feb' => "Φεβρ",
'mar' => "Μαρτ",
'apr' => "Απρ",
'may' => "Μαΐου",
'jun' => "Ιουν",
'jul' => "Ιουλ",
'aug' => "Αυγ",
'sep' => "Σεπτ",
'oct' => "Οκτ",
'nov' => "Νοεμβ",
'dec' => "Δεκ",
);
class LanguageEl extends LanguageUtf8 {
function fallback8bitEncoding() {
return "windows-1253";
}
}
?>