From aad703799a66d277af636f1a875633da40168412 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Mon, 6 Jul 2020 21:32:15 +0000 Subject: [PATCH] I18N: Fix typo in [48348]. Props swizzzpidy. See #50578. git-svn-id: https://develop.svn.wordpress.org/trunk@48351 602fd350-edb4-49c9-b593-d223f7449a82 --- src/js/_enqueues/admin/edit-comments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/_enqueues/admin/edit-comments.js b/src/js/_enqueues/admin/edit-comments.js index 943e03c34e..5967262b25 100644 --- a/src/js/_enqueues/admin/edit-comments.js +++ b/src/js/_enqueues/admin/edit-comments.js @@ -218,7 +218,7 @@ var getCount, updateCount, updateCountText, updatePending, updateApproved, } else { regExMatch = titleRegEx.exec( newTitle ); if ( regExMatch ) { - newTitle = newTitle.replace( regExMatch[0], __( 'Comments11' ) ); + newTitle = newTitle.replace( regExMatch[0], __( 'Comments' ) ); } } document.title = newTitle;