diff --git a/locale/en_US/author.xml b/locale/en_US/author.xml index 92be098..a7964d8 100644 --- a/locale/en_US/author.xml +++ b/locale/en_US/author.xml @@ -19,7 +19,9 @@ Step 1. Starting the Submission Step 3. Entering the Submission's Metadata Step 2. Entering the Submission's Metadata + Step 3. Uploading Supplementary Files Step 2. Uploading the Submission + Step 3. Uploading the Submission Step 4. Uploading Supplementary Files Step 4a. Add a Supplementary File Step 5. Confirming the Submission @@ -31,7 +33,7 @@ 3. Upload Submission 4. Upload Supplementary Files 3. Upload Supplementary Files - Step 3a. Uploading Supplementary Files + 3a. Uploading Supplementary Files 5. Confirmation 4. Confirmation You can complete this submission at a later date by selecting Active Submissions from the Author home. diff --git a/templates/author/submit/step2.tpl b/templates/author/submit/step2.tpl index d9f5476..e1060ab 100644 --- a/templates/author/submit/step2.tpl +++ b/templates/author/submit/step2.tpl @@ -8,7 +8,12 @@ * * $Id$ *} -{assign var="pageTitle" value="author.submit.step2"} + +{if !$showAbstractSteps} + {assign var="pageTitle" value="author.submit.step2NoAbstracts"} +{else} + {assign var="pageTitle" value="author.submit.step2"} +{/if} {include file="author/submit/submitHeader.tpl"}
diff --git a/templates/author/submit/step4.tpl b/templates/author/submit/step4.tpl index 1a1fd66..84a20be 100644 --- a/templates/author/submit/step4.tpl +++ b/templates/author/submit/step4.tpl @@ -8,8 +8,10 @@ * * $Id$ *} -{if $showAbstractSteps} - {assign var="pageTitle" value="author.submit.supplementaryFilesAbstractOnly"} +{if $showAbstractSteps && $currentSchedConf->getSetting('acceptSupplementaryReviewMaterials') && !$showPaperSteps} + {assign var="pageTitle" value="author.submit.step4AbstOnly"} +{elseif $showAbstractSteps && $currentSchedConf->getSetting('acceptSupplementaryReviewMaterials')} + {assign var="pageTitle" value="author.submit.step4"} {else} {assign var="pageTitle" value="author.submit.step4"} {/if} diff --git a/templates/author/submit/step5.tpl b/templates/author/submit/step5.tpl index 55391f0..a1f75b3 100644 --- a/templates/author/submit/step5.tpl +++ b/templates/author/submit/step5.tpl @@ -8,10 +8,12 @@ * * $Id$ *} -{if $currentSchedConf->getSetting('acceptSupplementaryReviewMaterials') && !$showAbstractSteps} -{assign var="pageTitle" value="author.submit.step5"} +{if $showAbstractSteps && $currentSchedConf->getSetting('acceptSupplementaryReviewMaterials') && !$showPaperSteps} + {assign var="pageTitle" value="author.submit.step5SkipSupp"} +{elseif $currentSchedConf->getSetting('acceptSupplementaryReviewMaterials') && !$showAbstractSteps} + {assign var="pageTitle" value="author.submit.step5"} {else} -{assign var="pageTitle" value="author.submit.step5SkipSupp"} + {assign var="pageTitle" value="author.submit.step5"} {/if} {include file="author/submit/submitHeader.tpl"}