Commit d091396344e for woocommerce

commit d091396344edb6cac1432e095cead3cf0528c351
Author: Seun Olorunsola <30554163+triple0t@users.noreply.github.com>
Date:   Wed Mar 25 08:31:54 2026 +0100

    Shorten email editor reset action label for consistency with site templates (#63828)

    * Shorten email editor reset action label for consistency with site templates

    * Shorten reset button label for the email post content

diff --git a/plugins/woocommerce/changelog/update-email-post-reset-content-action-label b/plugins/woocommerce/changelog/update-email-post-reset-content-action-label
new file mode 100644
index 00000000000..9a05528356f
--- /dev/null
+++ b/plugins/woocommerce/changelog/update-email-post-reset-content-action-label
@@ -0,0 +1,4 @@
+Significance: patch
+Type: update
+
+Shorten the email editor reset action label from "Reset content to default" to "Reset" for consistency with site template resets and to reduce i18n overhead.
diff --git a/plugins/woocommerce/client/admin/client/wp-admin-scripts/email-editor-integration/reset-notification-email-content.tsx b/plugins/woocommerce/client/admin/client/wp-admin-scripts/email-editor-integration/reset-notification-email-content.tsx
index 9c96ce326a7..74deef4a27d 100644
--- a/plugins/woocommerce/client/admin/client/wp-admin-scripts/email-editor-integration/reset-notification-email-content.tsx
+++ b/plugins/woocommerce/client/admin/client/wp-admin-scripts/email-editor-integration/reset-notification-email-content.tsx
@@ -42,7 +42,7 @@ const getResetNotificationEmailContentAction = () => {
 	 */
 	const resetNotificationEmailContent = {
 		id: 'reset-notification-email-content',
-		label: __( 'Reset content to default', 'woocommerce' ),
+		label: __( 'Reset', 'woocommerce' ),
 		supportsBulk: false,
 		icon: backup,
 		isEligible( item: PostWithPermissions ) {
@@ -169,7 +169,7 @@ const getResetNotificationEmailContentAction = () => {
 							disabled={ isBusy }
 							__next40pxDefaultSize
 						>
-							{ __( 'Reset to default', 'woocommerce' ) }
+							{ __( 'Reset', 'woocommerce' ) }
 						</Button>
 					</HStack>
 				</VStack>