Actions
Feature proposal #1512
closedAdd title param to password field types for password verification field because translation of "Verify Password" was difficult due to string substitution
Updated by beat almost 15 years ago
r894 implements this:
_UE_VERIFY_SOMETHING now only used as default for passwords fields, and can be changed to anything in field params.
This is appart of system password field which now uses _UE_VPASS (and can not be overridden).
if ( $field->name == 'password' ) {
$verifyField->title = _UE_VPASS;
} else {
$verifyField->title = sprintf( getLangDefinition( $field->params->get( 'verifyPassTitle', '_UE_VERIFY_SOMETHING' ) ), getLangDefinition( $field->title ) ); // cbReplaceVars to be done only once later
}
Updated by beat over 14 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Actions