The default message of Password Protection can be inappropriate since it start with “This survey…”. For most of cases, this statement is true but it is not necessarily correct for all of cases.

JavaScript can be used to change this message. You have to go to “Look & Feel” and click “edit” under “Header”. You will see editor window pops up. Because you are adding JavsScript code not wordings. You have click source code icon, “<>”. Then add the codes below after editing as you need.

<script>
Qualtrics.SurveyEngine.addOnload(function() {
  var pwLabel = jQuery("label.QuestionText[for=QR\\~Password]");
  if(pwLabel.length == 1) pwLabel.html("This Contest requires a password.");
});
</script>