Title: Submit comment
Last modified: August 31, 2016

---

# Submit comment

 *  Resolved [carlager](https://wordpress.org/support/users/carlager/)
 * (@carlager)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/submit-comment-2/)
 * I need to chang the text in “the submit comment” button has been translated automatically
   to Danish.
 * The translation is wrong.
 * Any ideas how I change it ?

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

 *  [Madhusudan Pokharel](https://wordpress.org/support/users/madhusudan977/)
 * (@madhusudan977)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/submit-comment-2/#post-7064218)
 * Hello Carlager,
    To change ‘the submit comment’ to ‘indsende kommentar, just 
   add the below codes in ‘functions.php’ of child theme.
 *     ```
       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 'the submit comment' :
   
                       $translated_text = __( 'indsende kommentar', 'your-text -domain' );
                      break;
               }
           }
           return $translated_text;
       }
       ```
   
 * It is recommended to create child theme if you are going for the coding option.
   
   [https://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme](https://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
 *  Thread Starter [carlager](https://wordpress.org/support/users/carlager/)
 * (@carlager)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/submit-comment-2/#post-7064336)
 * Thanx a lot for this.
 * Problem was driving me crazy

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

The topic ‘Submit comment’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 2 participants
 * Last reply from: [carlager](https://wordpress.org/support/users/carlager/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/submit-comment-2/#post-7064336)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
