Advertisement:

Author Topic: Bender theme missing translations  (Read 509 times)

Supertolete

  • Newbie
  • *
  • Posts: 29
Bender theme missing translations
« on: June 05, 2017, 06:54:04 pm »
I have bender theme translated. Everything works fine except this part: This website is proudly using... I do not want that in english... can it be translated?

gave

  • Newbie
  • *
  • Posts: 26
Re: Bender theme missing translations
« Reply #1 on: June 21, 2017, 07:21:54 pm »
Hey, if this is missing from your language file, you may add this manually, if that fails you can still just edite the theme's footer.php. Find the line

Code: [Select]
<?php if( (!defined('MULTISITE') || MULTISITE==0) && osc_get_preference('footer_link''bender') !== '0') {
            echo 
'<div>' sprintf(__('This website is proudly using the <a title="Osclass web" href="%s">classifieds scripts</a> software <strong>Osclass</strong>'), 'http://osclass.org/') . '</div>';
        }
        
?>

and just replace the sprintf() with your string and link;

I hope this helps.

Supertolete

  • Newbie
  • *
  • Posts: 29
Re: Bender theme missing translations
« Reply #2 on: June 21, 2017, 09:34:08 pm »
Thank you very much Gave!