To insert code use <code>...</code>.
Translating blogpost metadata
  • Hi,

    Normally this would be a piece of cake but the localization plugin stopped working after an upgrade.
    So now I had to dive into the php to find these strings but could not find them.
    I also opened the po file in po-edit and did a search but no results.

    Hopefully you can direct me to the location of these strings in the blog ... thanks
    metadata.png
    662 x 64 - 6K
  • 3 Comments sorted by
  • Hi Jan,

    Open the themegenerator.php and goto line 495

    you will see something like this.


    <span class="categories"><?php _e('Categories: ', THEME_FRONT_DOMAIN); echo theme_get_all_category(', ',$post->ID); ?></span>



    replace it by this


    <span class="categories"><?php echo __('Categories: ', THEME_FRONT_DOMAIN); echo theme_get_all_category(', ',$post->ID); ?></span>



    the line in front of the ('Categories: '..) are two underscores.

    Best regards,
    BackuPs
  • Hi,

    Thanks for showing me directions and the code.
  • Hallo Jan,

    I have send JimbaChen een email about this to get it fixed in the next update and to check if my solution was the right one of course..

    Best regards,
    BackuPs
This discussion has been closed.
All Discussions