Cleanup some wording in profile view template
This commit is contained in:
parent
b1489c56e2
commit
ba2b4bf12c
|
@ -574,7 +574,7 @@
|
|||
<div v-if="members.length">
|
||||
|
||||
<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>
|
||||
|
||||
<br />
|
||||
|
@ -644,7 +644,7 @@
|
|||
</div>
|
||||
|
||||
<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>
|
||||
|
||||
</b-tab-item>
|
||||
|
@ -670,7 +670,7 @@
|
|||
<div v-if="customers.length">
|
||||
|
||||
<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>
|
||||
|
||||
<br />
|
||||
|
@ -751,7 +751,7 @@
|
|||
</div>
|
||||
|
||||
<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>
|
||||
|
||||
</b-tab-item> <!-- Customer -->
|
||||
|
@ -782,7 +782,7 @@
|
|||
<div v-if="shoppers.length">
|
||||
|
||||
<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>
|
||||
|
||||
<br />
|
||||
|
@ -942,7 +942,7 @@
|
|||
</div>
|
||||
|
||||
<p v-if="!employee.uuid">
|
||||
${person} has never been an employee.
|
||||
${person} is not an employee.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
@ -1098,7 +1098,7 @@
|
|||
|
||||
<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 />
|
||||
<div id="users-accordion">
|
||||
|
||||
|
@ -1141,7 +1141,7 @@
|
|||
</div>
|
||||
|
||||
<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>
|
||||
</b-tab-item><!-- User -->
|
||||
</%def>
|
||||
|
|
Loading…
Reference in a new issue