Update marketing packages and checkout copy
This commit is contained in:
@@ -524,7 +524,7 @@ function PackageCard({
|
||||
pkg.included_package_slug === 'starter'
|
||||
? t('shop.partner.tiers.starter', 'Starter')
|
||||
: pkg.included_package_slug === 'standard'
|
||||
? t('shop.partner.tiers.standard', 'Standard')
|
||||
? t('shop.partner.tiers.standard', 'Classic')
|
||||
: pkg.included_package_slug === 'pro'
|
||||
? t('shop.partner.tiers.premium', 'Premium')
|
||||
: pkg.included_package_slug;
|
||||
|
||||
@@ -694,7 +694,7 @@ export default function MobileBrandingPage() {
|
||||
{!brandingAllowed ? (
|
||||
<UpgradeCard
|
||||
title={t('events.branding.lockedTitle', 'Unlock branding')}
|
||||
body={t('events.branding.lockedBody', 'Upgrade to Standard or Premium to unlock event branding.')}
|
||||
body={t('events.branding.lockedBody', 'Upgrade to Classic or Premium to unlock event branding.')}
|
||||
actionLabel={t('events.branding.upgradeAction', 'Upgrade package')}
|
||||
onPress={() => navigate(adminPath('/mobile/billing/shop?feature=custom_branding'))}
|
||||
/>
|
||||
|
||||
@@ -245,7 +245,7 @@ export default function MobileEventFormPage() {
|
||||
}
|
||||
|
||||
if (slugValue === 'standard') {
|
||||
return 'Standard';
|
||||
return 'Classic';
|
||||
}
|
||||
|
||||
if (slugValue === 'pro') {
|
||||
|
||||
@@ -704,7 +704,7 @@ function resolveIncludedTierLabel(
|
||||
}
|
||||
|
||||
if (slug === 'standard') {
|
||||
return t('shop.partner.tiers.standard', 'Standard');
|
||||
return t('shop.partner.tiers.standard', 'Classic');
|
||||
}
|
||||
|
||||
if (slug === 'pro') {
|
||||
|
||||
@@ -24,7 +24,7 @@ const fixtures = vi.hoisted(() => ({
|
||||
activePackage: {
|
||||
id: 1,
|
||||
package_id: 1,
|
||||
package_name: 'Standard',
|
||||
package_name: 'Classic',
|
||||
package_type: 'reseller',
|
||||
included_package_slug: null,
|
||||
active: true,
|
||||
|
||||
@@ -68,7 +68,7 @@ vi.mock('../../api', () => ({
|
||||
{
|
||||
id: 1,
|
||||
package_id: 1,
|
||||
package_name: 'Standard',
|
||||
package_name: 'Classic',
|
||||
package_type: 'endcustomer',
|
||||
included_package_slug: null,
|
||||
active: true,
|
||||
@@ -84,7 +84,7 @@ vi.mock('../../api', () => ({
|
||||
activePackage: {
|
||||
id: 1,
|
||||
package_id: 1,
|
||||
package_name: 'Standard',
|
||||
package_name: 'Classic',
|
||||
package_type: 'endcustomer',
|
||||
included_package_slug: null,
|
||||
active: true,
|
||||
|
||||
Reference in New Issue
Block a user