merging from nihvivo-rel-1.1-maint branch: removing "new" from form headings in attempt to minimize user confusion NIHVIVO-1012

This commit is contained in:
nac26 2010-07-26 21:12:40 +00:00
parent a6b1e8453f
commit cc0aab3814
3 changed files with 6 additions and 6 deletions

View file

@ -214,8 +214,8 @@
request.setAttribute("title", "Edit \""+propDomainPublic+"\" entry for " + subject.getName());
submitButtonLabel = "Save changes";
} else {
request.setAttribute("title","Create a new \""+propDomainPublic+"\" entry for " + subject.getName());
submitButtonLabel = "Create new \""+propDomainPublic+"\" entry";
request.setAttribute("title","Create \""+propDomainPublic+"\" entry for " + subject.getName());
submitButtonLabel = "Create \""+propDomainPublic+"\" entry";
}
%>

View file

@ -235,8 +235,8 @@
request.setAttribute("title", "Edit \""+propDomainPublic+"\" entry for " + subject.getName());
submitButtonLabel = "Save changes";
} else {
request.setAttribute("title","Create a new \""+propDomainPublic+"\" entry for " + subject.getName());
submitButtonLabel = "Create new \""+propDomainPublic+"\" entry";
request.setAttribute("title","Create \""+propDomainPublic+"\" entry for " + subject.getName());
submitButtonLabel = "Create \""+propDomainPublic+"\" entry";
}
%>

View file

@ -191,8 +191,8 @@
title = "Edit <em>" + linkCategory + " link</em> for " + subjectName;
submitLabel = "Save changes";
} else {
title = "Create a new <em>" + linkCategory + " link</em> for " + subjectName;
submitLabel = "Create new link";
title = "Create <em>" + linkCategory + " link</em> for " + subjectName;
submitLabel = "Create link";
}
%>