Advertisement:

Author Topic: Speedup Translation  (Read 681 times)

Ranman

  • Newbie
  • *
  • Posts: 24
Speedup Translation
« on: February 07, 2014, 12:30:36 am »
Hi,

i found a small performance issue in OsClass.
It would be great if someone can change the source in the repository.

I change the code from this:
Code: [Select]
  /**
     * Translate strings
     *
     * @since unknown
     *
     * @param string $key
     * @param string $domain
     * @return string
     */
    function __($key, $domain = 'core') {
        $gt = Translation::newInstance()->_get($domain);

        if(!$gt) {
            return $key;
        }
        $string = $gt->translate($key);
        return osc_apply_filter('gettext', $string);
    }


To this, and i was able to speed up my index page by up to 30%

Code: [Select]
/**
     * Translate strings
     *
     * @since unknown
     *
     * @param string $key
     * @param string $domain
     * @return string
     */

    function __($key, $domain = 'core') {
        if(!$gt) {
            return $key;
        }               
       
        if($GLOBALS['__translations'][$domain][$key] == null)
        {
            $string = $gt->translate($key);
            $GLOBALS['__translations'][$domain][$key] = osc_apply_filter('gettext', $string);           
        }
       
        return $GLOBALS['__translations'][$domain][$key]  ;
    }

« Last Edit: February 07, 2014, 12:33:18 am by Ranman »

teseo

  • Hero Member
  • *****
  • Posts: 6169
Re: Speedup Translation
« Reply #1 on: February 07, 2014, 01:39:48 am »
Hi,

Well, with that modification you're effectively disabling every translation using function __(). Fine if you're using english only, but a problem otherwise. Maybe an option to do that (disable all translations, not only those who use that function) on the Admin Dashboard would be a reasonable request. ???

Regards
« Last Edit: February 07, 2014, 01:41:22 am by teseo »

Ranman

  • Newbie
  • *
  • Posts: 24
Re: Speedup Translation
« Reply #2 on: February 07, 2014, 01:53:30 am »
aah... damn... i should go to bed... yes you are totally right  :o
« Last Edit: February 07, 2014, 02:03:37 am by Ranman »