Title: GeneratePress localization
Last modified: April 16, 2025

---

# GeneratePress localization

 *  [hrant77](https://wordpress.org/support/users/hrant77/)
 * (@hrant77)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/generatepress-localization/)
 * Hello
 * I need to translate the following words in the GeneratePress theme. Where can
   I find them?
    - “Search …”
    - “Search Results for:”
    - “Next →”
    - “← Previous”
    - “Search:”
    - “No matching records found”
 * Any help on where these strings are located would be appreciated!

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [ying](https://wordpress.org/support/users/yingscarlett/)
 * (@yingscarlett)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/generatepress-localization/#post-18420177)
 * Hi there,
 * For **Search results for:**, use this PHP snippet, replace **Your new search 
   results:** with the actual title:
 *     ```wp-block-code
       add_filter( 'generate_search_title_output', function( $output ) {    $search_query = get_search_query();    $new_output = sprintf(        '<header %s><h1 class="page-title">%s</h1></header>',        generate_get_attr( 'page-header' ),        sprintf(            /* translators: 1: Search query name */            __( 'Your new search results: %s', 'generatepress' ),            '<span>' . esc_html( $search_query ) . '</span>'        )    );    return $new_output;} );
       ```
   
 * For **Next** and **Previous**:
 * [https://docs.generatepress.com/article/generate_previous_link_text/](https://docs.generatepress.com/article/generate_previous_link_text/)
 * [https://docs.generatepress.com/article/generate_next_link_text/](https://docs.generatepress.com/article/generate_next_link_text/)
 * As for the **Search** and **No matching records found **, may I see them on your
   site?
 *  Thread Starter [hrant77](https://wordpress.org/support/users/hrant77/)
 * (@hrant77)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/generatepress-localization/#post-18421524)
 * Hi,
   Thanks a lot — everything is working well.Here’s a screenshot. The strings“
   Search:” and “No matching records found” might be coming from TablePress, but
   I couldn’t find them in the TablePress language file.[https://prnt.sc/oyrkphtErMHh](https://prnt.sc/oyrkphtErMHh)
    -  This reply was modified 1 year, 1 month ago by [hrant77](https://wordpress.org/support/users/hrant77/).
 *  [ying](https://wordpress.org/support/users/yingscarlett/)
 * (@yingscarlett)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/generatepress-localization/#post-18422826)
 * The Search looks like the WP search form’s placeholder text, if that is a WP 
   search form, you should be able to change it in the block.
 * The “No matching records found” is not from GP, try disabling all plugins to 
   see if that sentence is gone, if so, re-enable them one at a time to check which
   one is generate that string.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘GeneratePress localization’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/generatepress/3.6.1/screenshot.
   png)
 * GeneratePress
 * [Support Threads](https://wordpress.org/support/theme/generatepress/)
 * [Active Topics](https://wordpress.org/support/theme/generatepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/generatepress/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/generatepress/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [ying](https://wordpress.org/support/users/yingscarlett/)
 * Last activity: [1 year, 1 month ago](https://wordpress.org/support/topic/generatepress-localization/#post-18422826)
 * Status: not resolved