Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update copy of Subscriptions warning modal #5103

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: update

Update copy of warning modal appearing while deactivating Subscriptions extension.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<?php
printf(
// Translators: placeholders are opening and closing strong HTML tags.
esc_html__( 'By deactivating the %1$sWooCommerce Subscriptions%2$s plugin, your store will switch to %1$sSubscriptions powered by WooCommerce Payments%2$s.', 'woocommerce-payments' ),
esc_html__( 'By deactivating the %1$sWooCommerce Subscriptions%2$s plugin, your store will switch to using the subscriptions functionality %1$sbuilt into WooCommerce Payments%2$s.', 'woocommerce-payments' ),
'<strong>',
'</strong>'
);
Expand All @@ -30,12 +30,12 @@
<?php
printf(
// Translators: $1 and $2 placeholders are opening and closing strong HTML tags. $3 and $4 are opening and closing link HTML tags. $5 is an opening link HTML tag.
esc_html__( 'Existing subscriptions will %1$s%3$srenew manually%4$s%2$s - subscribers will need to log in to pay for renewal. Access to premium features will also be removed. %5$sLearn more.%4$s', 'woocommerce-payments' ),
esc_html__( 'Existing subscriptions will %1$s%3$srenew manually%4$s%2$s, meaning that subscribers will need to log in to pay for renewal. Access to the advanced features of the Subscriptions extension will be removed. %5$sLearn more.%4$s', 'woocommerce-payments' ),
'<strong>',
'</strong>',
'<a href="https://woocommerce.com/document/subscriptions/renewal-process/#section-4">',
'</a>',
'<a href="http://woocommerce.com/document/subscriptions/deactivation/">'
'<a href="https://woocommerce.com/document/subscriptions/deactivation/">'
);
?>
</p>
Expand Down