From 06ed23578c1cf75133b5d57d9acc527f71f53f29 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 2 Nov 2020 01:15:11 +0000 Subject: [PATCH] Upgrade/Install: Switch "Check again" link on WordPress Updates screen to sentence case. This brings some consistency with other text links on the screen, e.g. "View version details" for plugins or themes. Follow-up to [49150]. Props afercia. See #51523. git-svn-id: https://develop.svn.wordpress.org/trunk@49471 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/update-core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/update-core.php b/src/wp-admin/update-core.php index 589da630f7..c195521314 100644 --- a/src/wp-admin/update-core.php +++ b/src/wp-admin/update-core.php @@ -978,7 +978,7 @@ if ( 'upgrade-core' === $action ) { echo '

'; /* translators: 1: Date, 2: Time. */ printf( __( 'Last checked on %1$s at %2$s.' ), date_i18n( __( 'F j, Y' ), $last_update_check ), date_i18n( __( 'g:i a' ), $last_update_check ) ); - echo ' ' . __( 'Check Again' ) . ''; + echo ' ' . __( 'Check again.' ) . ''; echo '

'; if ( current_user_can( 'update_core' ) ) {