@automattic/calypso-products
Version:
This module contains information about the various products sold within calypso, such as product slugs, plan intervals, etc.
27 lines • 1.03 kB
JavaScript
import i18n from 'i18n-calypso';
/**
* Extracted functions to avoid Calypso apps from depending on the PLANS_LIST object.
* See: p7H4VZ-4S4-p2
*/
export const getPlanPersonalTitle = () =>
// translators: Personal is a plan name
i18n.translate('Personal');
export const getPlanPremiumTitle = () =>
// translators: Premium is a plan name
i18n.translate('Premium');
export const getPlanBusinessTitle = () =>
// translators: Business is a plan name
i18n.translate('Business');
export const getPlanEcommerceTitle = () =>
// translators: Commerce is a plan name
i18n.translate('Commerce');
export const getPlanBusinessTrialTitle = () =>
// translators: Business Trial is a plan name
i18n.translate('Business Trial');
export const getPlanBusinessTrialTagline = () =>
// translators: Business is a plan name
i18n.translate('Try all the features of our Business plan.');
export const getPlanCommerceTrialTitle = () =>
// translators: Commerce Trial is a plan name
i18n.translate('Commerce Trial');
//# sourceMappingURL=plans.js.map