Cleanup some wording in profile view template

This commit is contained in:
Lance Edgar 2023-06-17 02:27:09 -05:00
parent b1489c56e2
commit ba2b4bf12c

View file

@ -574,7 +574,7 @@
<div v-if="members.length"> <div v-if="members.length">
<div style="display: flex; justify-content: space-between;"> <div style="display: flex; justify-content: space-between;">
<p>{{ person.display_name }} is associated with <strong>{{ members.length }}</strong> member account(s)</p> <p>{{ person.display_name }} has <strong>{{ members.length }}</strong> member account{{ members.length == 1 ? '' : 's' }}</p>
</div> </div>
<br /> <br />
@ -644,7 +644,7 @@
</div> </div>
<div v-if="!members.length"> <div v-if="!members.length">
<p>{{ person.display_name }} has never had a member account.</p> <p>{{ person.display_name }} does not have a member account.</p>
</div> </div>
</b-tab-item> </b-tab-item>
@ -670,7 +670,7 @@
<div v-if="customers.length"> <div v-if="customers.length">
<div style="display: flex; justify-content: space-between;"> <div style="display: flex; justify-content: space-between;">
<p>{{ person.display_name }} has <strong>{{ customers.length }}</strong> customer account(s)</p> <p>{{ person.display_name }} has <strong>{{ customers.length }}</strong> customer account{{ customers.length == 1 ? '' : 's' }}</p>
</div> </div>
<br /> <br />
@ -751,7 +751,7 @@
</div> </div>
<div v-if="!customers.length"> <div v-if="!customers.length">
<p>{{ person.display_name }} has never had a customer account.</p> <p>{{ person.display_name }} does not have a customer account.</p>
</div> </div>
</b-tab-item> <!-- Customer --> </b-tab-item> <!-- Customer -->
@ -782,7 +782,7 @@
<div v-if="shoppers.length"> <div v-if="shoppers.length">
<div style="display: flex; justify-content: space-between;"> <div style="display: flex; justify-content: space-between;">
<p>{{ person.display_name }} is shopper for <strong>{{ shoppers.length }}</strong> customer account(s)</p> <p>{{ person.display_name }} is shopper for <strong>{{ shoppers.length }}</strong> customer account{{ shoppers.length == 1 ? '' : 's' }}</p>
</div> </div>
<br /> <br />
@ -942,7 +942,7 @@
</div> </div>
<p v-if="!employee.uuid"> <p v-if="!employee.uuid">
${person} has never been an employee. ${person} is not an employee.
</p> </p>
</div> </div>
@ -1098,7 +1098,7 @@
<div v-if="users.length"> <div v-if="users.length">
<p>{{ person.display_name }} is associated with <strong>{{ users.length }}</strong> user account(s)</p> <p>{{ person.display_name }} has <strong>{{ users.length }}</strong> user account{{ users.length == 1 ? '' : 's' }}</p>
<br /> <br />
<div id="users-accordion"> <div id="users-accordion">
@ -1141,7 +1141,7 @@
</div> </div>
<div v-if="!users.length"> <div v-if="!users.length">
<p>{{ person.display_name }} has never been a user.</p> <p>{{ person.display_name }} does not have a user account.</p>
</div> </div>
</b-tab-item><!-- User --> </b-tab-item><!-- User -->
</%def> </%def>