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
Actions
Added by beat about 15 years ago. Updated about 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
}