-
-
Save kjohnson/d1c7f661238054bcac128ffe9aeefa51 to your computer and use it in GitHub Desktop.
Translate "Fields marked with an * are required"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'ninja_forms_i18n_front_end', 'my_custom_ninja_forms_i18n_front_end' ); | |
function my_custom_ninja_forms_i18n_front_end( $strings ) { | |
$strings['fieldsMarkedRequired'] = 'Polja označena * su obavezna'; | |
return $strings; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment