• 21-09-2013, 12:09:24
    #19
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Zaten 3.x serisi için değil sanırım.
  • 29-11-2013, 16:14:14
    #20
    Orjinal dili kurun arkadaşlar sonra bu dosya içini silip alttaki kodları yapıştırın düzelecektir sorun, geçmişe yönelik düzeltmez aliasları database den boşaltıp denenebilir.

    Dertli dosya bu: language/tr-TR/tr-TR.localise.php

    <?php
    
    defined('_JEXEC') or die;
    
    abstract class tr_TRLocalise {
    
        public static function getPluralSuffixes($count) {
            if ($count == 0) {
                $return =  array('0');
            }
            elseif($count == 1) {
                $return =  array('1');
            }
            elseif($count > 8 && $count < 12) {
                $return = array('TEN', 'MORE');
            }
            else {
                $return = array('MORE');
            }
            return $return;
        }
    
        public static function getIgnoreSearchWords() {
            $search_ignore = array();
            $search_ignore[] = "ve";
            $search_ignore[] = "veya";
            $search_ignore[] = "yada";
            $search_ignore[] = "de";
            $search_ignore[] = "da";
            $search_ignore[] = "ile";
            $search_ignore[] = "ki";
            return $search_ignore;
        }
    
        public static function transliterate($string)
        {
            $str = JString::strtolower($string);
    
            $glyph_array = array(
            'a'        =>    'à,á,â,ã,ä,å,ā,ă,ą,ḁ,α,ά',
            'ae'    =>    'æ',
            'b'        =>    'β,б',
            'c'        =>    'ç,ć,ĉ,ċ,č,ч,ћ,ц',
            'ch'    =>    'ч',
            'd'        =>    'ď,đ,Ð,д,ђ,δ,ð',
            'dz'    =>    'џ',
            'e'        =>    'è,é,ê,ë,ē,ĕ,ė,ę,ě,э,ε,έ',
            'f'        =>    'ƒ,ф',
            'g'        =>    'ğ,ĝ,ğ,ġ,ģ,г,γ',
            'h'        =>    'ĥ,ħ,Ħ,х',
            'i'        =>    'ì,í,î,ï,ı,ĩ,ī,ĭ,į,и,й,ъ,ы,ь,η,ή',
            'ij'    =>    'ij',
            'j'        =>    'ĵ',
            'ja'    =>    'я',
            'ju'    =>    'яю',
            'k'        =>    'ķ,ĸ,κ',
            'l'        =>    'ĺ,ļ,ľ,ŀ,ł,л,λ',
            'lj'    =>    'љ',
            'm'        =>    'μ',
            'n'        =>    'ñ,ņ,ň,ʼn,ŋ,н,ν',
            'nj'    =>    'њ',
            'o'        =>    'ö,ò,ó,ô,õ,ø,ō,ŏ,ő,ο,ό,ω,ώ',
            'oe'    =>    'œ',
            'p'        =>    'п,π',
            'ph'    =>    'φ',
            'ps'    =>    'ψ',
            'r'        =>    'ŕ,ŗ,ř,р,ρ,σ,ς',
            's'        =>    'ş,ś,ŝ,ş,š,с',
            'ss'    =>    'ß,ſ',
            'sh'    =>    'ш',
            'shch'    =>    'щ',
            't'        =>    'ţ,ť,ŧ,τ',
            'th'    =>    'θ',
            'u'        =>    'ù,ú,û,ü,ũ,ū,ŭ,ů,ű,ų,у',
            'v'        =>    'в',
            'w'        =>    'ŵ',
            'x'        =>    'χ,ξ',
            'y'        =>    'ý,þ,ÿ,ŷ',
            'z'        =>    'ź,ż,ž,з,ж,ζ'
            );
    
            foreach( $glyph_array as $letter => $glyphs ) {
                $glyphs = explode( ',', $glyphs );
                $str = str_replace( $glyphs, $letter, $str );
            }
    
            return $str;
        }
    }