From 9f4c2fcbaeaaf99820e9a865f193215f3e6de684 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 26 May 2019 14:40:51 +0000 Subject: [PATCH] I18N: Merge duplicate "Try Again" strings. Props ramiy. Fixes #47251. Built from https://develop.svn.wordpress.org/trunk@45433 git-svn-id: http://core.svn.wordpress.org/trunk@45244 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-theme-install-list-table.php | 2 +- wp-admin/setup-config.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/class-wp-theme-install-list-table.php b/wp-admin/includes/class-wp-theme-install-list-table.php index 475056d8ec..4e0a9deffc 100644 --- a/wp-admin/includes/class-wp-theme-install-list-table.php +++ b/wp-admin/includes/class-wp-theme-install-list-table.php @@ -148,7 +148,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { $api = themes_api( 'query_themes', $args ); if ( is_wp_error( $api ) ) { - wp_die( $api->get_error_message() . '

' . __( 'Try again' ) . '' ); + wp_die( $api->get_error_message() . '

' . __( 'Try Again' ) . '' ); } $this->items = $api->themes; diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php index ebb1c4bbfa..cab6ab8101 100644 --- a/wp-admin/setup-config.php +++ b/wp-admin/setup-config.php @@ -272,7 +272,7 @@ switch ( $step ) { $install .= '?language=en_US'; } - $tryagain_link = '

' . __( 'Try again' ) . ''; + $tryagain_link = '

' . __( 'Try Again' ) . ''; if ( empty( $prefix ) ) { wp_die( __( 'ERROR: "Table Prefix" must not be empty.' ) . $tryagain_link ); diff --git a/wp-includes/version.php b/wp-includes/version.php index ff1ed7686e..a081c60c6e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45432'; +$wp_version = '5.3-alpha-45433'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.