Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Featured Slider not listed #3759
    tamerch
    Member

    thank you for this translation Sakin !

    br,

    in reply to: Featured Slider not listed #3638
    tamerch
    Member

    Ok, I modified fr_FR.po and fr_FR.mo and it fixes the problem.

    (I can’t attach files to this post … i can send it by mail if needed)

    regards,

     

    in reply to: Featured Slider not listed #3637
    tamerch
    Member

    not sure if it has something to do with translation … (i’m not a specialist in wordpress).

    I guess wordpress would return the message untranslated if it is not found in the translation file ?!

    Anyway, a similar problem occurs in social link options (only facebook and twitter are shown ) !

    in reply to: Featured Slider not listed #3636
    tamerch
    Member

    Ok here is an explanation of the problem on CATCH-BOX theme.

    I saw that, for any reason, the translation “Featured Slider”  in the fr_FR.po is empty !


    #: ../inc/theme-options.php:196
    #: ../inc/theme-options.php:197
    msgid "Featured Slider"
    msgstr ""

    line 608 -> 611

    Changing (in theme-options.php line 195 to 201)

    $slider_options = add_theme_page(
    __( 'Featured Slider', 'catchbox' ), // Name of page
    __( 'Featured Slider', 'catchbox' ), // Label in menu
    'edit_theme_options', // Capability required
    'slider_options', // Menu slug, used to uniquely identify the page
    'catchbox_options_slider_page' // Function that renders the options page
    );

    to

    $slider_options = add_theme_page(
    __( 'Featured Slider', 'catchbox' ), // Name of page
    'Slider', // Label in menu
    'edit_theme_options', // Capability required
    'slider_options', // Menu slug, used to uniquely identify the page
    'catchbox_options_slider_page' // Function that renders the options page
    );

    May correct the problem (I do not recommand to do that but it may help).
    Also you can modify the translation files I guess …

Viewing 4 posts - 1 through 4 (of 4 total)