Site logo

Archived topic

Translation Search & Comments

5 replies · Started by Stephane on May 28, 2020

Viewing posts 1–6 of 6

Hi,

2 parts of my website stayed in English:
- "Search Results for"
- Comments part

Where can I translate it?

Hi there,

Translations can be provided here: https://translate.wordpress.org/projects/wp-themes/generatepress/

They need to reach 95% approved in order to ship to your Dashboard.

Otherwise, you can use functions:

add_filter( 'gettext', function( $text ) {
    if ( 'Search Results for: %s' === $text ) {
        $text = 'Results for: %s';
    }

    return $text;
} );

Which comments part are you referring to?

If you go to "Dashboard > Updates", do you see an "Update Translations" button at the bottom?

My bad.
You're right, I needed to update the translations.

Regards

Glad it's working :)

This archived topic is closed to new replies.