From 88f579b256181c0dc3b84185e3b540fdd6d37c1d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 26 May 2019 15:45:57 +0000 Subject: [PATCH] I18N: Merge duplicate "Loading..." strings. Props ramiy. Fixes #47248. git-svn-id: https://develop.svn.wordpress.org/trunk@45438 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/dashboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php index 9563fe37ab..c2589acc1a 100644 --- a/src/wp-admin/includes/dashboard.php +++ b/src/wp-admin/includes/dashboard.php @@ -994,7 +994,7 @@ function wp_dashboard_rss_output( $widget_id ) { * @return bool False on failure. True on success. */ function wp_dashboard_cached_rss_widget( $widget_id, $callback, $check_urls = array() ) { - $loading = '

' . __( 'Loading…' ) . '

' . __( 'This widget requires JavaScript.' ) . '

'; + $loading = '

' . __( 'Loading…' ) . '

' . __( 'This widget requires JavaScript.' ) . '

'; $doing_ajax = wp_doing_ajax(); if ( empty( $check_urls ) ) {