PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
caribe
/
administrator
/
language
/
el-GR
<?php /** * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * el-GR localise class * * @package Joomla.Site * @since 1.6 */ abstract class el_GRLocalise { /** * Returns the potential suffixes for a specific number of items * * @param int $count The number of items. * @return array An array of potential suffixes. * @since 1.6 */ public static function getPluralSuffixes($count) { if ($count == 0) { $return = array('0'); } elseif($count == 1) { $return = array('1'); } else { $return = array('MORE'); } return $return; } /** * Returns the ignored search words * * @return array An array of ignored search words. * @since 1.6 */ public static function getIgnoredSearchWords() { $search_ignore = array(); $search_ignore[] = "και"; $search_ignore[] = "με"; $search_ignore[] = "σε"; return $search_ignore; } /** * Returns the lower length limit of search words * * @return integer The lower length limit of search words. * @since 1.6 */ public static function getLowerLimitSearchWord() { return 3; } /** * Returns the upper length limit of search words * * @return integer The upper length limit of search words. * @since 1.6 */ public static function getUpperLimitSearchWord() { return 20; } /** * Returns the number of chars to display when searching * * @return integer The number of chars to display when searching. * @since 1.6 */ public static function getSearchDisplayedCharactersNumber() { return 200; } public static function transliterate($string) { $str = JString::strtolower($string); //Specific language transliteration. //This one is for latin 1, latin supplement , extended A, Cyrillic, Greek $glyph_array = array( 'afth' => 'αυθ', 'afk' => 'αυκ', 'afks' => 'αυξ', 'afp' => 'αυπ', 'afs' => 'αυσ', 'aft' => 'αυτ', 'aff' => 'αυφ', 'afx' => 'αυχ', 'afps' => 'αυψ', 'efth' => 'ευθ', 'efk' => 'ευκ', 'efks' => 'ευξ', 'efp' => 'ευπ', 'efs' => 'ευσ', 'eft' => 'ευτ', 'eff' => 'ευφ', 'efx' => 'ευχ', 'efps' => 'ευψ', 'ifth' => 'ηυθ', 'ifk' => 'ηυκ', 'ifks' => 'ηυξ', 'ifp' => 'ηυπ', 'ifs' => 'ηυσ', 'ift' => 'ηυτ', 'iff' => 'ηυφ', 'ifx' => 'ηυχ', 'ifps' => 'ηυψ', '-b' => '-μπ', '-d' => '-ντ', '-g' => '-γκ', ' b' => ' μπ', ' d' => ' ντ', ' g' => ' γκ', 'av' => 'αυ', 'ev' => 'ευ', 'iv' => 'ηυ', 'ou' => 'ου', 'a' => 'a,à,á,â,ã,ä,å,ā,ă,ą,ḁ,α,ά', 'ae' => 'æ', 'b' => 'б,^μπ', 'c' => 'c,ç,ć,ĉ,ċ,č,ћ,ц', 'ch' => 'ч', 'd' => 'ď,đ,Ð,д,ђ,δ,ð,^ντ', 'dz' => 'џ', 'e' => 'e,è,é,ê,ë,ē,ĕ,ė,ę,ě,э,ε,έ', 'f' => 'ƒ,ф,φ', 'g' => 'ğ,ĝ,ğ,ġ,ģ,г,γ,^γκ', 'h' => 'ĥ,ħ,Ħ,х', 'i' => 'i,ì,í,î,ï,ı,ĩ,ī,ĭ,į,и,й,ъ,ы,ь,η,ή,ι,ί,ϊ,ΐ', 'ij' => 'ij', 'j' => 'ĵ,j', 'ja' => 'я', 'ju' => 'яю', 'k' => 'ķ,ĸ,κ', 'ks' => 'ξ', 'l' => 'ĺ,ļ,ľ,ŀ,ł,л,λ', 'lj' => 'љ', 'm' => 'μ,м', 'n' => 'ñ,ņ,ň,ʼn,ŋ,н,ν', 'nj' => 'њ', 'o' => 'ò,ó,ô,õ,ø,ō,ŏ,ő,ο,ό,ω,ώ', 'oe' => 'œ,ö', 'p' => 'п,π', 'ps' => 'ψ', 'r' => 'ŕ,ŗ,ř,р,ρ', 's' => 'ş,ś,ŝ,ş,š,с,σ,ς', 'ss' => 'ß,ſ', 'sh' => 'ш', 'shch' => 'щ', 't' => 'ţ,ť,ŧ,τ,т', 'th' => 'θ', 'u' => 'u,ù,ú,û,ü,ũ,ū,ŭ,ů,ű,ų,у', 'v' => 'в,β', 'w' => 'ŵ', 'x' => 'χ', 'y' => 'ý,þ,ÿ,ŷ,υ,ύ,ϋ,ΰ', 'z' => 'ź,ż,ž,з,ж,ζ' ); foreach($glyph_array as $letter => $glyphs) { preg_match_all('/(\^[^,]+(,|$))/', $glyphs, $matches); if (count($matches[0])) { foreach ($matches[0] as $m) { if (strpos($m, ',')) { $glyphs = str_replace($m, '', $glyphs); } elseif(strpos($glyphs, ',')) { $glyphs = str_replace(','.$m, '', $glyphs); } else { $glyphs = ''; } $str = preg_replace('/'.$m.'/', $letter, $str); } } $glyphs = explode(',', $glyphs); $str = str_replace($glyphs, $letter, $str); } return $str; } } jimport('joomla.utilities.date'); $datefile = JPATH_ROOT . DIRECTORY_SEPARATOR . 'libraries' . DIRECTORY_SEPARATOR . 'joomla' . DIRECTORY_SEPARATOR . 'utilities' . DIRECTORY_SEPARATOR . 'date.php'; $fh = fopen($datefile, 'r'); $theData = fread($fh, filesize($datefile)); fclose($fh); $theData = str_replace('<?php', '', $theData); $splitter1 = 'public function format('; $splitter2 = 'return $return;'; $parts1 = explode($splitter1, $theData); $parts2 = explode($splitter2, $parts1[1]); $parts2[0] .= 'if(preg_match("/d|j/", $format)){'; $parts2[0] .= '$orig_months = array("άριος", "άρτιος", "ίλιος", "άιος", "ύνιος", "ύλιος", "ύγουστος", "έμβριος", "ώβριος");'; $parts2[0] .= '$new_months = array("αρίου", "αρτίου", "ιλίου", "αΐου", "υνίου", "υλίου", "υγούστου", "εμβρίου", "ωβρίου");'; $parts2[0] .= 'for ($i = 0; $i < count($orig_months); $i++) $return = str_replace($orig_months[$i], $new_months[$i], $return);'; $parts2[0] .= '}'; $fullcode = implode($splitter2, $parts2); $fullcode = $parts1[0].$splitter1.$fullcode; $fullcode = str_replace('class JDate extends DateTime', 'class el_GRDate extends DateTime', $fullcode); eval($fullcode);
[+]
..
[-] el-GR.com_admin.ini
[edit]
[-] el-GR.com_admin.sys.ini
[edit]
[-] el-GR.com_ajax.ini
[edit]
[-] el-GR.com_ajax.sys.ini
[edit]
[-] el-GR.com_banners.ini
[edit]
[-] el-GR.com_banners.sys.ini
[edit]
[-] el-GR.com_cache.ini
[edit]
[-] el-GR.com_cache.sys.ini
[edit]
[-] el-GR.com_categories.ini
[edit]
[-] el-GR.com_categories.sys.ini
[edit]
[-] el-GR.com_checkin.ini
[edit]
[-] el-GR.com_checkin.sys.ini
[edit]
[-] el-GR.com_config.ini
[edit]
[-] el-GR.com_config.sys.ini
[edit]
[-] el-GR.com_contact.ini
[edit]
[-] el-GR.com_contact.sys.ini
[edit]
[-] el-GR.com_content.ini
[edit]
[-] el-GR.com_content.sys.ini
[edit]
[-] el-GR.com_contenthistory.ini
[edit]
[-] el-GR.com_contenthistory.sys.ini
[edit]
[-] el-GR.com_cpanel.ini
[edit]
[-] el-GR.com_cpanel.sys.ini
[edit]
[-] el-GR.com_finder.ini
[edit]
[-] el-GR.com_finder.sys.ini
[edit]
[-] el-GR.com_installer.ini
[edit]
[-] el-GR.com_installer.sys.ini
[edit]
[-] el-GR.com_joomlaupdate.ini
[edit]
[-] el-GR.com_joomlaupdate.sys.ini
[edit]
[-] el-GR.com_languages.ini
[edit]
[-] el-GR.com_languages.sys.ini
[edit]
[-] el-GR.com_login.ini
[edit]
[-] el-GR.com_login.sys.ini
[edit]
[-] el-GR.com_mailto.sys.ini
[edit]
[-] el-GR.com_media.ini
[edit]
[-] el-GR.com_media.sys.ini
[edit]
[-] el-GR.com_menus.ini
[edit]
[-] el-GR.com_menus.sys.ini
[edit]
[-] el-GR.com_messages.ini
[edit]
[-] el-GR.com_messages.sys.ini
[edit]
[-] el-GR.com_modules.ini
[edit]
[-] el-GR.com_modules.sys.ini
[edit]
[-] el-GR.com_newsfeeds.ini
[edit]
[-] el-GR.com_newsfeeds.sys.ini
[edit]
[-] el-GR.com_plugins.ini
[edit]
[-] el-GR.com_plugins.sys.ini
[edit]
[-] el-GR.com_postinstall.ini
[edit]
[-] el-GR.com_postinstall.sys.ini
[edit]
[-] el-GR.com_redirect.ini
[edit]
[-] el-GR.com_redirect.sys.ini
[edit]
[-] el-GR.com_search.ini
[edit]
[-] el-GR.com_search.sys.ini
[edit]
[-] el-GR.com_tags.ini
[edit]
[-] el-GR.com_tags.sys.ini
[edit]
[-] el-GR.com_templates.ini
[edit]
[-] el-GR.com_templates.sys.ini
[edit]
[-] el-GR.com_users.ini
[edit]
[-] el-GR.com_users.sys.ini
[edit]
[-] el-GR.com_weblinks.ini
[edit]
[-] el-GR.com_weblinks.sys.ini
[edit]
[-] el-GR.com_wrapper.ini
[edit]
[-] el-GR.com_wrapper.sys.ini
[edit]
[-] el-GR.ini
[edit]
[-] el-GR.lib_joomla.ini
[edit]
[-] el-GR.localise.php
[edit]
[-] el-GR.mod_custom.ini
[edit]
[-] el-GR.mod_custom.sys.ini
[edit]
[-] el-GR.mod_feed.ini
[edit]
[-] el-GR.mod_feed.sys.ini
[edit]
[-] el-GR.mod_latest.ini
[edit]
[-] el-GR.mod_latest.sys.ini
[edit]
[-] el-GR.mod_logged.ini
[edit]
[-] el-GR.mod_logged.sys.ini
[edit]
[-] el-GR.mod_login.ini
[edit]
[-] el-GR.mod_login.sys.ini
[edit]
[-] el-GR.mod_menu.ini
[edit]
[-] el-GR.mod_menu.sys.ini
[edit]
[-] el-GR.mod_multilangstatus.ini
[edit]
[-] el-GR.mod_multilangstatus.sys.ini
[edit]
[-] el-GR.mod_popular.ini
[edit]
[-] el-GR.mod_popular.sys.ini
[edit]
[-] el-GR.mod_quickicon.ini
[edit]
[-] el-GR.mod_quickicon.sys.ini
[edit]
[-] el-GR.mod_stats_admin.ini
[edit]
[-] el-GR.mod_stats_admin.sys.ini
[edit]
[-] el-GR.mod_status.ini
[edit]
[-] el-GR.mod_status.sys.ini
[edit]
[-] el-GR.mod_submenu.ini
[edit]
[-] el-GR.mod_submenu.sys.ini
[edit]
[-] el-GR.mod_title.ini
[edit]
[-] el-GR.mod_title.sys.ini
[edit]
[-] el-GR.mod_toolbar.ini
[edit]
[-] el-GR.mod_toolbar.sys.ini
[edit]
[-] el-GR.mod_version.ini
[edit]
[-] el-GR.mod_version.sys.ini
[edit]
[-] el-GR.plg_authentication_cookie.ini
[edit]
[-] el-GR.plg_authentication_cookie.sys.ini
[edit]
[-] el-GR.plg_authentication_gmail.ini
[edit]
[-] el-GR.plg_authentication_gmail.sys.ini
[edit]
[-] el-GR.plg_authentication_joomla.ini
[edit]
[-] el-GR.plg_authentication_joomla.sys.ini
[edit]
[-] el-GR.plg_authentication_ldap.ini
[edit]
[-] el-GR.xml
[edit]
[-] el-GR.plg_authentication_ldap.sys.ini
[edit]
[-] el-GR.plg_captcha_recaptcha.ini
[edit]
[-] el-GR.plg_captcha_recaptcha.sys.ini
[edit]
[-] el-GR.plg_content_contact.ini
[edit]
[-] el-GR.plg_content_contact.sys.ini
[edit]
[-] el-GR.plg_content_emailcloak.ini
[edit]
[-] el-GR.plg_content_emailcloak.sys.ini
[edit]
[-] el-GR.plg_content_finder.ini
[edit]
[-] el-GR.plg_content_finder.sys.ini
[edit]
[-] el-GR.plg_content_joomla.ini
[edit]
[-] el-GR.plg_content_joomla.sys.ini
[edit]
[-] el-GR.plg_content_loadmodule.ini
[edit]
[-] el-GR.plg_content_loadmodule.sys.ini
[edit]
[-] el-GR.plg_content_pagebreak.ini
[edit]
[-] el-GR.plg_content_pagebreak.sys.ini
[edit]
[-] el-GR.plg_content_pagenavigation.ini
[edit]
[-] el-GR.plg_content_pagenavigation.sys.ini
[edit]
[-] el-GR.plg_content_vote.ini
[edit]
[-] el-GR.plg_content_vote.sys.ini
[edit]
[-] el-GR.plg_editors-xtd_article.ini
[edit]
[-] el-GR.plg_editors-xtd_article.sys.ini
[edit]
[-] el-GR.plg_editors-xtd_image.ini
[edit]
[-] el-GR.plg_editors-xtd_image.sys.ini
[edit]
[-] el-GR.plg_editors-xtd_pagebreak.ini
[edit]
[-] el-GR.plg_editors-xtd_pagebreak.sys.ini
[edit]
[-] el-GR.plg_editors-xtd_readmore.ini
[edit]
[-] el-GR.plg_editors-xtd_readmore.sys.ini
[edit]
[-] el-GR.plg_editors_codemirror.ini
[edit]
[-] el-GR.plg_editors_codemirror.sys.ini
[edit]
[-] el-GR.plg_editors_none.ini
[edit]
[-] el-GR.plg_editors_none.sys.ini
[edit]
[-] el-GR.plg_editors_tinymce.ini
[edit]
[-] el-GR.plg_editors_tinymce.sys.ini
[edit]
[-] el-GR.plg_extension_joomla.ini
[edit]
[-] el-GR.plg_extension_joomla.sys.ini
[edit]
[-] el-GR.plg_finder_categories.ini
[edit]
[-] el-GR.plg_finder_categories.sys.ini
[edit]
[-] el-GR.plg_finder_contacts.ini
[edit]
[-] el-GR.plg_finder_contacts.sys.ini
[edit]
[-] el-GR.plg_finder_content.ini
[edit]
[-] el-GR.plg_finder_content.sys.ini
[edit]
[-] el-GR.plg_finder_newsfeeds.ini
[edit]
[-] el-GR.plg_finder_newsfeeds.sys.ini
[edit]
[-] el-GR.plg_finder_tags.ini
[edit]
[-] el-GR.plg_finder_tags.sys.ini
[edit]
[-] el-GR.plg_finder_weblinks.ini
[edit]
[-] el-GR.plg_finder_weblinks.sys.ini
[edit]
[-] el-GR.plg_installer_webinstaller.ini
[edit]
[-] el-GR.plg_installer_webinstaller.sys.ini
[edit]
[-] el-GR.plg_quickicon_extensionupdate.ini
[edit]
[-] el-GR.plg_quickicon_extensionupdate.sys.ini
[edit]
[-] el-GR.plg_quickicon_joomlaupdate.ini
[edit]
[-] el-GR.plg_quickicon_joomlaupdate.sys.ini
[edit]
[-] el-GR.plg_search_categories.ini
[edit]
[-] el-GR.plg_search_categories.sys.ini
[edit]
[-] el-GR.plg_search_contacts.ini
[edit]
[-] el-GR.plg_search_contacts.sys.ini
[edit]
[-] el-GR.plg_search_content.ini
[edit]
[-] el-GR.plg_search_content.sys.ini
[edit]
[-] el-GR.plg_search_newsfeeds.ini
[edit]
[-] el-GR.plg_search_newsfeeds.sys.ini
[edit]
[-] el-GR.plg_search_tags.ini
[edit]
[-] el-GR.plg_search_tags.sys.ini
[edit]
[-] el-GR.plg_search_weblinks.ini
[edit]
[-] el-GR.plg_search_weblinks.sys.ini
[edit]
[-] el-GR.plg_system_cache.ini
[edit]
[-] el-GR.plg_system_cache.sys.ini
[edit]
[-] el-GR.plg_system_debug.ini
[edit]
[-] el-GR.plg_system_debug.sys.ini
[edit]
[-] el-GR.plg_system_highlight.ini
[edit]
[-] el-GR.plg_system_highlight.sys.ini
[edit]
[-] el-GR.plg_system_languagecode.ini
[edit]
[-] el-GR.plg_system_languagecode.sys.ini
[edit]
[-] el-GR.plg_system_languagefilter.ini
[edit]
[-] el-GR.plg_system_languagefilter.sys.ini
[edit]
[-] el-GR.plg_system_log.ini
[edit]
[-] el-GR.plg_system_log.sys.ini
[edit]
[-] el-GR.plg_system_logout.ini
[edit]
[-] el-GR.plg_system_logout.sys.ini
[edit]
[-] el-GR.plg_system_p3p.ini
[edit]
[-] el-GR.plg_system_p3p.sys.ini
[edit]
[-] el-GR.plg_system_redirect.ini
[edit]
[-] el-GR.plg_system_redirect.sys.ini
[edit]
[-] el-GR.plg_system_remember.ini
[edit]
[-] el-GR.tpl_hathor.ini
[edit]
[-] el-GR.plg_system_remember.sys.ini
[edit]
[-] el-GR.plg_system_sef.ini
[edit]
[-] el-GR.plg_system_sef.sys.ini
[edit]
[-] el-GR.plg_twofactorauth_totp.ini
[edit]
[-] el-GR.plg_twofactorauth_totp.sys.ini
[edit]
[-] el-GR.plg_twofactorauth_yubikey.ini
[edit]
[-] el-GR.plg_twofactorauth_yubikey.sys.ini
[edit]
[-] el-GR.plg_user_contactcreator.ini
[edit]
[-] el-GR.plg_user_contactcreator.sys.ini
[edit]
[-] el-GR.plg_user_joomla.ini
[edit]
[-] el-GR.plg_user_joomla.sys.ini
[edit]
[-] el-GR.plg_user_profile.ini
[edit]
[-] el-GR.plg_user_profile.sys.ini
[edit]
[-] el-GR.tpl_hathor.sys.ini
[edit]
[-] el-GR.tpl_isis.ini
[edit]
[-] el-GR.tpl_isis.sys.ini
[edit]
[-] index.html
[edit]
[-] install.xml
[edit]
[-] .htaccess.disabled
[edit]