PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
administrator
/
language
/
el-GR
<?php /** * @package Joomla.Language * * @copyright Copyright (C) 2005 - 2019 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 κλάση τοπικοποίησης. * * @since 1.6 */ abstract class El_GRLocalise { /** * Returns the potential suffixes for a specific number of items * * @param integer $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('ΠΕΡΙΣΣΟΤΕΡΑ'); } } /** * Returns the ignored search words * * @return array An array of ignored search words. * * @since 1.6 */ public static function getIgnoredSearchWords() { return array('και', 'ή', 'σε', 'για', 'με'); } /** * 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 = \Joomla\String\StringHelper::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'); class el_GRDate extends JDate { /** * Αλλάζει την κλήση των μηνών από ονομαστική σε γενική. Δηλαδή μετατρέπει την ημερομηνία από "1 Ιανουάριος 2016" σε * "1 Ιανουαρίου 2016". * * @param string $format * @param bool $local * @param bool $translate * * @return string */ public function format($format, $local = false, $translate = true) { $return = parent::format($format, $local, $translate); if ((strpos($format, 'd') !== false) || (strpos($format, 'j') !== false)) { $orig_months = array("άριος", "άρτιος", "ίλιος", "άιος", "ύνιος", "ύλιος", "ύγουστος", "έμβριος", "ώβριος"); $new_months = array("αρίου", "αρτίου", "ιλίου", "αΐου", "υνίου", "υλίου", "υγούστου", "εμβρίου", "ωβρίου"); $return = str_replace($orig_months, $new_months, $return); } return $return; } }
[+]
..
[-] el-GR.com_actionlogs.ini
[edit]
[-] el-GR.com_actionlogs.sys.ini
[edit]
[-] 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_associations.ini
[edit]
[-] el-GR.com_associations.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_fields.ini
[edit]
[-] el-GR.com_fields.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
[edit]
[-] el-GR.com_postinstall.sys.ini
[edit]
[-] el-GR.com_privacy.ini
[edit]
[-] el-GR.com_privacy.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.date.php
[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_latestactions.ini
[edit]
[-] el-GR.mod_latestactions.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_privacy_dashboard.ini
[edit]
[-] el-GR.mod_privacy_dashboard.sys.ini
[edit]
[-] el-GR.mod_quickicon.ini
[edit]
[-] el-GR.mod_quickicon.sys.ini
[edit]
[-] el-GR.mod_sampledata.ini
[edit]
[-] el-GR.mod_sampledata.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_actionlog_joomla.ini
[edit]
[-] el-GR.plg_actionlog_joomla.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.plg_authentication_ldap.sys.ini
[edit]
[-] el-GR.plg_captcha_recaptcha.ini
[edit]
[-] el-GR.plg_captcha_recaptcha.sys.ini
[edit]
[-] el-GR.plg_captcha_recaptcha_invisible.ini
[edit]
[-] el-GR.plg_captcha_recaptcha_invisible.sys.ini
[edit]
[-] el-GR.plg_content_confirmconsent.ini
[edit]
[-] el-GR.plg_content_confirmconsent.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_fields.ini
[edit]
[-] el-GR.plg_content_fields.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_contact.ini
[edit]
[-] el-GR.plg_editors-xtd_contact.sys.ini
[edit]
[-] el-GR.plg_editors-xtd_fields.ini
[edit]
[-] el-GR.plg_editors-xtd_fields.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_menu.ini
[edit]
[-] el-GR.plg_editors-xtd_menu.sys.ini
[edit]
[-] el-GR.plg_editors-xtd_module.ini
[edit]
[-] el-GR.plg_editors-xtd_module.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_fields_calendar.ini
[edit]
[-] el-GR.plg_fields_calendar.sys.ini
[edit]
[-] el-GR.plg_fields_checkboxes.ini
[edit]
[-] el-GR.plg_fields_checkboxes.sys.ini
[edit]
[-] el-GR.plg_fields_color.ini
[edit]
[-] el-GR.plg_fields_color.sys.ini
[edit]
[-] el-GR.plg_fields_editor.ini
[edit]
[-] el-GR.plg_fields_editor.sys.ini
[edit]
[-] el-GR.plg_fields_image.ini
[edit]
[-] el-GR.plg_fields_image.sys.ini
[edit]
[-] el-GR.plg_fields_imagelist.ini
[edit]
[-] el-GR.plg_fields_imagelist.sys.ini
[edit]
[-] el-GR.plg_fields_integer.ini
[edit]
[-] el-GR.plg_fields_integer.sys.ini
[edit]
[-] el-GR.plg_fields_list.ini
[edit]
[-] el-GR.plg_fields_list.sys.ini
[edit]
[-] el-GR.plg_fields_media.ini
[edit]
[-] el-GR.plg_fields_media.sys.ini
[edit]
[-] el-GR.plg_fields_radio.ini
[edit]
[-] el-GR.plg_fields_radio.sys.ini
[edit]
[-] el-GR.plg_fields_repeatable.ini
[edit]
[-] el-GR.plg_fields_repeatable.sys.ini
[edit]
[-] el-GR.plg_fields_sql.ini
[edit]
[-] el-GR.plg_fields_sql.sys.ini
[edit]
[-] el-GR.plg_fields_text.ini
[edit]
[-] el-GR.plg_fields_text.sys.ini
[edit]
[-] el-GR.plg_fields_textarea.ini
[edit]
[-] el-GR.plg_fields_textarea.sys.ini
[edit]
[-] el-GR.plg_fields_url.ini
[edit]
[-] el-GR.plg_fields_url.sys.ini
[edit]
[-] el-GR.plg_fields_user.ini
[edit]
[-] el-GR.plg_fields_user.sys.ini
[edit]
[-] el-GR.plg_fields_usergrouplist.ini
[edit]
[-] el-GR.plg_fields_usergrouplist.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_folderinstaller.ini
[edit]
[-] el-GR.plg_installer_folderinstaller.sys.ini
[edit]
[-] el-GR.plg_installer_packageinstaller.ini
[edit]
[-] el-GR.plg_installer_packageinstaller.sys.ini
[edit]
[-] el-GR.plg_installer_urlinstaller.ini
[edit]
[-] el-GR.plg_installer_urlinstaller.sys.ini
[edit]
[-] el-GR.plg_installer_webinstaller.ini
[edit]
[-] el-GR.plg_installer_webinstaller.sys.ini
[edit]
[-] el-GR.plg_privacy_actionlogs.ini
[edit]
[-] el-GR.plg_privacy_actionlogs.sys.ini
[edit]
[-] el-GR.plg_privacy_consents.ini
[edit]
[-] el-GR.plg_privacy_consents.sys.ini
[edit]
[-] el-GR.plg_privacy_contact.ini
[edit]
[-] el-GR.plg_privacy_contact.sys.ini
[edit]
[-] el-GR.plg_privacy_content.ini
[edit]
[-] el-GR.plg_privacy_content.sys.ini
[edit]
[-] el-GR.plg_privacy_message.ini
[edit]
[-] el-GR.plg_privacy_message.sys.ini
[edit]
[-] el-GR.plg_privacy_user.ini
[edit]
[-] el-GR.plg_privacy_user.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_quickicon_phpversioncheck.ini
[edit]
[-] el-GR.plg_quickicon_phpversioncheck.sys.ini
[edit]
[-] el-GR.plg_quickicon_privacycheck.ini
[edit]
[-] el-GR.plg_quickicon_privacycheck.sys.ini
[edit]
[-] el-GR.plg_sampledata_blog.ini
[edit]
[-] el-GR.plg_sampledata_blog.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_actionlogs.ini
[edit]
[-] el-GR.plg_system_actionlogs.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_fields.ini
[edit]
[-] el-GR.plg_system_fields.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_logrotation.ini
[edit]
[-] el-GR.plg_system_logrotation.sys.ini
[edit]
[-] el-GR.plg_system_p3p.ini
[edit]
[-] el-GR.plg_system_p3p.sys.ini
[edit]
[-] el-GR.plg_system_privacyconsent.ini
[edit]
[-] el-GR.plg_system_privacyconsent.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.plg_system_remember.sys.ini
[edit]
[-] el-GR.plg_system_sef.ini
[edit]
[-] el-GR.plg_system_sef.sys.ini
[edit]
[-] el-GR.plg_system_sessiongc.ini
[edit]
[-] el-GR.plg_system_sessiongc.sys.ini
[edit]
[-] el-GR.plg_system_stats.ini
[edit]
[-] el-GR.plg_system_stats.sys.ini
[edit]
[-] el-GR.plg_system_updatenotification.ini
[edit]
[-] el-GR.plg_system_updatenotification.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.plg_user_terms.ini
[edit]
[-] el-GR.plg_user_terms.sys.ini
[edit]
[-] el-GR.tpl_hathor.ini
[edit]
[-] el-GR.tpl_hathor.sys.ini
[edit]
[-] el-GR.tpl_isis.ini
[edit]
[-] el-GR.tpl_isis.sys.ini
[edit]
[-] el-GR.xml
[edit]
[-] index.html
[edit]
[-] install.xml
[edit]
[-] .htaccess.disabled
[edit]