diff --git a/core/modules/ckeditor/js/ckeditor.admin.js b/core/modules/ckeditor/js/ckeditor.admin.js
index e0a90a3285f5da4a7f501419ff95687eb37f5886..338ae6ef6a4d3d14dab0929c1887cbd62ad4e62b 100644
--- a/core/modules/ckeditor/js/ckeditor.admin.js
+++ b/core/modules/ckeditor/js/ckeditor.admin.js
@@ -151,7 +151,7 @@ Drupal.behaviors.ckeditorAdmin = {
         redrawToolbarGradient();
       }
       // Post the update to the aria-live message element.
-      $messages.text(Drupal.t('row removed. @count row@plural remaining.', {'@count': ($rows.length - 1), '@plural': ((($rows.length - 1) === 1 ) ? '' : 's')}));
+      $messages.text(Drupal.formatPlural($rows.length - 1, 'row removed. 1 row remaining.', 'row removed. @count rows remaining.'));
       event.preventDefault();
     }