Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1311949

    hi,
    i have a german form with checking privacy policy.
    the email is send with english “true”.
    we need german “wahr!
    where can i find the translation.
    in the language file there it is not.

    #1312631

    Hey Christian,

    Thank you for the inquiry.

    We could use this filter in the functions.php file to adjust the email message and replace the text “true” with “wahr”.

    
    function avf_form_message_mod_checkbox($message, $new_post, $form_params) {
        $message = str_replace('true', 'wahr', $message);
        return $message;
    }
    add_filter('avf_form_message', 'avf_form_message_mod_checkbox', 10, 3);
    

    Best regards,
    Ismael

    #1312644

    thanks. i will try.

    #1313551

    Hi,

    Alright. We will keep the thread open. Please let us know if the filter above helps.

    Best regards,
    Ismael

    #1313556

    it helps.

    #1313762

    Hi,

    Alright. Glad to know that it is working. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘missing translation’ is closed to new replies.