Skip to content

Commit

Permalink
BK2024 Change letter case and replace &
Browse files Browse the repository at this point in the history
  • Loading branch information
agileware-justin committed Sep 15, 2024
1 parent 8784b9d commit 2525cf6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/CRM/Elections/Page/Elections.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@
{assign var="electionProgressDate" value=$election.nomination_start_date|crmDate}
{/if}
{if $election.isNominationsInProgress}
{assign var="viewBtnTxt" value="View & Submit Nominations"}
{assign var="viewBtnTxt" value="View and submit Nominations"}
{assign var="electionProgressTxt" value="Nominations will close on "}
{assign var="electionProgressDate" value=$election.nomination_end_date|crmDate}
{/if}

{if $election.hasNominationsStarted and (!$election.isNominationsInProgress) and !$election.advertiseCandidatesStarted}
{assign var="viewBtnTxt" value="View The Nominations"}
{assign var="viewBtnTxt" value="View the Nominations"}
{assign var="electionProgressTxt" value="Advertise candidate will open on "}
{assign var="electionProgressDate" value=$election.advertise_candidates_date|crmDate}
{/if}

{if $election.advertiseCandidatesStarted and !$election.isVotingStarted}
{assign var="viewBtnTxt" value="View The Candidates"}
{assign var="viewBtnTxt" value="View the Candidates"}
{assign var="electionProgressTxt" value="Voting will open on "}
{assign var="electionProgressDate" value=$election.voting_start_date|crmDate}
{/if}

{if $election.isVotingStarted and !$election.isVotingEnded}
{assign var="viewBtnTxt" value="Vote in The Election"}
{assign var="viewBtnTxt" value="Vote in the Election"}
{assign var="electionProgressTxt" value="Voting will close on "}
{assign var="electionProgressDate" value=$election.voting_end_date|crmDate}
{if !$election.isUserAllowedToVote}
Expand All @@ -58,13 +58,13 @@
{/if}

{if $election.isVotingEnded and !$election.isResultsOut}
{assign var="viewBtnTxt" value="View The Candidates"}
{assign var="viewBtnTxt" value="View the Candidates"}
{assign var="electionProgressTxt" value="Election results will be available on "}
{assign var="electionProgressDate" value=$election.result_date|crmDate}
{/if}

{if $election.isResultsOut}
{assign var="viewBtnTxt" value="View Election Results"}
{assign var="viewBtnTxt" value="View Election results"}
{assign var="electionProgressTxt" value="Election results published on "}
{assign var="electionProgressDate" value=$election.result_date|crmDate}
{/if}
Expand Down

0 comments on commit 2525cf6

Please sign in to comment.