Title: hendrys's Replies | WordPress.org

---

# hendrys

  [  ](https://wordpress.org/support/users/hendrys/)

 *   [Profile](https://wordpress.org/support/users/hendrys/)
 *   [Topics Started](https://wordpress.org/support/users/hendrys/topics/)
 *   [Replies Created](https://wordpress.org/support/users/hendrys/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/hendrys/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/hendrys/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/hendrys/engagements/)
 *   [Favorites](https://wordpress.org/support/users/hendrys/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Biography] Change button text](https://wordpress.org/support/topic/change-button-text-14/)
 *  Thread Starter [hendrys](https://wordpress.org/support/users/hendrys/)
 * (@hendrys)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/change-button-text-14/#post-7062389)
 * This code works, thank you very much!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Biography] Change button text](https://wordpress.org/support/topic/change-button-text-14/)
 *  Thread Starter [hendrys](https://wordpress.org/support/users/hendrys/)
 * (@hendrys)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/change-button-text-14/#post-7062387)
 * Hello Wen Solutions,
 * The site URL is [https://www.scholing-online.nl](https://www.scholing-online.nl)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Biography] Change button text](https://wordpress.org/support/topic/change-button-text-14/)
 *  Thread Starter [hendrys](https://wordpress.org/support/users/hendrys/)
 * (@hendrys)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/change-button-text-14/#post-7062381)
 * I created a child theme and it looks likes the theme works. But I cannot get 
   the translation to work. What do I wrong?
 * functions.php:
 *     ```
       <?php
       add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
       function theme_enqueue_styles() {
           wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
       }
   
       add_filter( 'gettext', 'theme_change_comment_field_names', 20, 3 );
       function theme_change_comment_field_names( $translated_text, $text, $domain ) {
   
           if ( is_singular() ) {
   
               switch ( $translated_text ) {
   
                   case 'Contact Me' :
   
                       $translated_text = __( 'Neem contact op', 'Bizlight' );
                       break;
   
                       case 'Download Resume' :
   
                       $translated_text = __( 'Mijn CV', 'Bizlight' );
                       break;
               }
   
           }
   
           return $translated_text;
       }
       ?>
       ```
   
 * Do I need to install additional plugins to get it to work?

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