• Resolved rcastros

    (@rcastros)


    The translation of a couple of strings in the registration page doesn’t work. This is because the string has an extra “.” at the end. The extra dot prevents the string from being found in the localization files.

    Examples:
    In functions.php:
    line 633:
    $password_strength_description = ‘<br>’. sprintf( __( ‘The password must have a minimum strength of %s.’, ‘profile-builder’ )…

    should be:
    $password_strength_description = ‘<br>’. sprintf( __( ‘The password must have a minimum strength of %s’, ‘profile-builder’ )

    line 622:
    return sprintf(__(‘Minimum length of %d characters.’, ‘profile-builder’), $wppb_generalSettings[‘minimum_password_length’]);

    should be:
    return sprintf(__(‘Minimum length of %d characters’, ‘profile-builder’), $wppb_generalSettings[‘minimum_password_length’]);

Viewing 1 replies (of 1 total)
  • Paul

    (@paulplapsa)

    Hello,

    Thank you for bringing this issue to our attention! I was able to confirm that this is a bug and have submitted a report. You can expect a bug fix to be releases in one of the next few versions of the plugin.

    Best Regards,
    Paul

Viewing 1 replies (of 1 total)
  • The topic ‘Translation of some strings doesn’t work’ is closed to new replies.