• Resolved Elvisrk

    (@elvisrk)


    I have made language files for this theme, but setting pages did not translate, only user interface

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Richie KS

    (@rkcorp)

    do you mean the wp-admin->theme option or the wp-admin->settings
    the theme options text string should be inside mesocolumn/languages/
    did you try scan with your own .po and .mo file and update the string list?

    Thread Starter Elvisrk

    (@elvisrk)

    Yes, I scan and check translation in poedit, but strings in themes.php?page=theme-options and string in themes.php?page=category-color ” Choose a color for *** category” are still on English

    Theme Author Richie KS

    (@rkcorp)

    i see open lib/functions/category-color-function.php edit line around 64
    Choose a color for <?php echo $cat_value; ?> category
    to
    <?php printf( __( 'Choose a color for %1$s category', TEMPLATE_DOMAIN ), $cat_value ); ?>

    Thread Starter Elvisrk

    (@elvisrk)

    I checked all… Even check files in Poedit, BUT string
    “name” => __(“Favourite Icon”, TEMPLATE_DOMAIN), – still in English
    when
    <?php screen_icon(); echo “<h2>” . $theme_name . __( ‘ Theme Options’, TEMPLATE_DOMAIN ) . “</h2>”; ?> – in Russian…

    Theme Author Richie KS

    (@rkcorp)

    will have some update on this in next version.

    @bug
    $options need to be wrapped inside admin_init(). its too technical to explain here.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Translation issue’ is closed to new replies.