From 0ad7b1a1695e3038ec14f3911291b69717c9a2ac Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 7 Mar 2019 10:16:49 +0000 Subject: [PATCH] Theme Editor: Capitalize "Think very carefully about your site crashing..." message for consistency with other strings. Props immeet94. Fixes #46436. git-svn-id: https://develop.svn.wordpress.org/trunk@44811 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/theme-editor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/theme-editor.php b/src/wp-admin/theme-editor.php index 8135ddb90a..bf3dcd0677 100644 --- a/src/wp-admin/theme-editor.php +++ b/src/wp-admin/theme-editor.php @@ -36,7 +36,7 @@ get_current_screen()->add_help_tab( '
  • ' . __( 'Screen reader users: when in forms mode, you may need to press the Esc key twice.' ) . '
  • ' . '' . '

    ' . __( 'After typing in your edits, click Update File.' ) . '

    ' . - '

    ' . __( 'Advice: think very carefully about your site crashing if you are live-editing the theme currently in use.' ) . '

    ' . + '

    ' . __( 'Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.' ) . '

    ' . /* translators: %s: link to codex article about child themes */ '

    ' . sprintf( __( 'Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.' ), __( 'https://codex.wordpress.org/Child_Themes' ) ) . '

    ' . ( is_network_admin() ? '

    ' . __( 'Any edits to files from this screen will be reflected on all sites in the network.' ) . '

    ' : '' ),