Copy refinements for tiers

- changed 'Products' to 'Tiers'
- changed 'A segment' to 'Specific tiers'
This commit is contained in:
Peter Zimon 2021-08-20 12:14:37 +02:00
parent dfb0acf1a1
commit 95359d56f2
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
<label>Products</label>
<label>Tiers</label>
<div class="gh-product-cards">
{{#each this.products as |product productIdx|}}
<div class="gh-product-card">

View File

@ -25,7 +25,7 @@ export default Component.extend({
this.availableVisibilities = VISIBILITIES;
if (this.feature.get('multipleProducts')) {
this.availableVisibilities.push(
{label: 'A segment', name: 'filter'}
{label: 'Specific tier(s)', name: 'filter'}
);
}
},

View File

@ -30,7 +30,7 @@ export default class SettingsMembersDefaultPostAccess extends Component {
}];
if (this.feature.get('multipleProducts')) {
defaultOptions.push({
name: 'A segment',
name: 'Specific tier(s)',
description: 'Members with any of the selected tiers',
value: 'filter',
icon: 'members-segment',

View File

@ -338,7 +338,7 @@ export default class MembersAccessController extends Controller {
if (this.settings.get('errors').length !== 0) {
return;
}
// When no filer is selected in `A Segment` option
// When no filer is selected in `Specific tier(s)` option
if (!this.settings.get('defaultContentVisibility')) {
return;
}