Skip to content

Commit

Permalink
Merge pull request #18874 from mlutfy/totalParticipantTs
Browse files Browse the repository at this point in the history
Participant Calculate/Fees: fix ts usage, simplify wording
  • Loading branch information
eileenmcnaughton authored Oct 29, 2020
2 parents d6789d2 + 99b30d6 commit 538388a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion templates/CRM/Price/Form/Calculate.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
{if ($extends eq 'Contribution') || ($extends eq 'Membership')}
<span id='amount_sum_label'>{ts}Total Amount{/ts}</span>
{else}
<span id='amount_sum_label'>{ts}Total Fee(s){/ts}{if $isAdditionalParticipants} {ts}for this participant{/ts}{/if}</span>
{if $isAdditionalParticipants}
<span id='amount_sum_label'>{ts}Total for this participant{/ts}</span>
{else}
<span id='amount_sum_label'>{ts}Total{/ts}</span>
{/if}
{/if}
</div>
<div class="content calc-value" {if $hideTotal}style="display:none;"{/if} id="pricevalue"></div>
Expand Down

0 comments on commit 538388a

Please sign in to comment.