PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Translation function calls

  1. A lot __() function calls in the User Registration Add-ON don't have the second domain parameter:

    $form = self::add_validation_failure($config['meta']['username'], $form, __('This username is already registered') );
    $form = self::add_validation_failure($config['meta']['username'], $form, __('The username can only contain alphanumeric characters (A-Z, 0-9), underscores, dashes and spaces') );
    $form = self::add_validation_failure($config['meta']['username'], $form, __('The username can only contain alphanumeric characters (A-Z, 0-9), underscores and dashes') );
    $form = self::add_validation_failure($config['meta']['username'], $form, __('The username can not be empty') );
    $form = self::add_validation_failure($config['meta']['email'], $form, __('This email address is already registered') );
    $form = self::add_validation_failure($config['meta']['email'], $form, __('The email address can not be empty') );
    $form = self::add_validation_failure($config['meta']['password'], $form, __('Passwords may not contain the character "\"') );

    These strings are not available in the default WordPress (3.2+) translations.

    Posted 12 years ago on Wednesday July 13, 2011 | Permalink
  2. I've forwarded this post to our developer that handles the User Registration Add-On so he can take a look.

    Posted 12 years ago on Wednesday July 13, 2011 | Permalink