Skip to content

Commit

Permalink
correct some strings and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
helix84 committed Jun 17, 2013
1 parent cb719b5 commit 6e9f3e3
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions dspace-api/src/main/resources/Messages.properties
Expand Up @@ -866,7 +866,7 @@ jsp.statistics.report.info2 = Monthly report
jsp.statistics.report.title = Statistical Summary
jsp.submit.access.title = Access
jsp.submit.access.error_1 = Invalid Start Date Format
jsp.submit.access.error_2 = Missing Start tDate
jsp.submit.access.error_2 = Missing Start Date
jsp.submit.access.error_3 = Invalid Group Selected
jsp.submit.access.error_4 = Duplicate Policy
jsp.submit.access.error_5 = Duplicate Policy
Expand Down Expand Up @@ -1133,9 +1133,9 @@ jsp.tools.confirm-delete-item.title = Delete Item
jsp.tools.confirm-withdraw-item.question = Are you sure this item should be withdrawn from the archive?
jsp.tools.confirm-withdraw-item.title = Withdraw Item
jsp.tools.confirm-withdraw-item.withdraw.button = Withdraw
jsp.tools.confirm-privating-item.question = Are you sure this item should be gone private?
jsp.tools.confirm-privating-item.title = Privating Item
jsp.tools.confirm-privating-item.privating.button = Privating
jsp.tools.confirm-privating-item.question = Are you sure this item should be made private?
jsp.tools.confirm-privating-item.title = Make item Private
jsp.tools.confirm-privating-item.privating.button = Make item Private
jsp.tools.creative-commons-edit.heading1 = Add or Replace Creative Commons License
jsp.tools.creative-commons-edit.title = DSpace Distribution License
jsp.tools.edit-collection.button.delete = Delete this Collection...
Expand Down Expand Up @@ -1238,8 +1238,8 @@ jsp.tools.edit-item-form.unlock = Unlock the aut
jsp.tools.edit-item-form.move-up = Move up
jsp.tools.edit-item-form.move-down = Move down
jsp.tools.edit-item-form.order-update = Update bitstream order
jsp.tools.edit-item-form.privating-w-confirm.button = Privating...
jsp.tools.edit-item-form.publicize.button = Publicize
jsp.tools.edit-item-form.privating-w-confirm.button = Make item Private...
jsp.tools.edit-item-form.publicize.button = Make item Public
jsp.tools.eperson-list.close.button = Close
jsp.tools.eperson-list.heading = E-people {0}-{1} of {2}
jsp.tools.eperson-list.info1 = Clicking on the 'Add' button next to an e-person will add that e-person to the list on the main form.
Expand Down
Expand Up @@ -29,7 +29,7 @@
import javax.servlet.jsp.tagext.TagSupport;

/**
* Tag for display embargo settins
* Tag to display embargo settings
*
* @author Keiji Suzuki
* @version $Revision$
Expand All @@ -39,28 +39,28 @@ public class AccessSettingTag extends TagSupport
/** log4j category */
private static Logger log = Logger.getLogger(AccessSettingTag.class);

/** is enable advanced form? */
/** is advanced form enabled? */
private static final boolean advanced = ConfigurationManager.getBooleanProperty("xmlui.submission.restrictstep.enableAdvancedForm", false);

/** Name of restricted group */
/** Name of the restricted group */
private static final String restrictedGroup = ConfigurationManager.getProperty("xmlui.submission.restrictstep.groups");

/** the SubmittionInfo */
private transient SubmissionInfo subInfo = null;

/** DSpaceObject to be targeted */
/** the target DSpaceObject */
private transient DSpaceObject dso = null;

/** DSpaceObject to be targeted */
/** the target DSpaceObject */
private transient ResourcePolicy rp = null;

/** make disable open/embargo setting radio */
/** disable the radio button for open/embargo access */
private boolean embargo = false;

/** make embargo date and reason to hidden fields */
/** hide the embargo date and reason fields */
private boolean hidden = false;

/** make add policy button */
/** add the policy button */
private boolean addpolicy = false;


Expand Down
Expand Up @@ -28,7 +28,7 @@
import javax.servlet.jsp.tagext.TagSupport;

/**
* Tag for display embargo settins
* Tag to display embargo settings
*
* @author Keiji Suzuki
* @version $Revision$
Expand Down
Expand Up @@ -41,7 +41,7 @@ public class JSPAccessStep extends JSPStep
/** JSP which edits the selected resource policy to the user * */
private static final String EDIT_POLICY_JSP = "/submit/edit-policy.jsp";

/** is AdvancedEmbargo enable? */
/** is AdvancedEmbargo enabled? */
private static final boolean advanced = ConfigurationManager.getBooleanProperty("xmlui.submission.restrictstep.enableAdvancedForm", false);

/**
Expand Down
Expand Up @@ -49,7 +49,7 @@
* <li>If showJSP() was specified from doPreProcessing(), then the JSP
* specified will be displayed</li>
* <li>If showJSP() was not specified from doPreProcessing(), then the
* doProcessing() method is called an the step completes immediately</li>
* doProcessing() method is called and the step completes immediately</li>
* <li>Call doProcessing() method on appropriate AbstractProcessingStep after the user returns from the JSP, in order
* to process the user input</li>
* <li>Call doPostProcessing() method to determine if more user interaction is
Expand Down

0 comments on commit 6e9f3e3

Please sign in to comment.