diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-admin/options-writing.php --- a/wp/wp-admin/options-writing.php Tue Jun 09 11:14:17 2015 +0000 +++ b/wp/wp-admin/options-writing.php Mon Oct 14 17:39:30 2019 +0200 @@ -10,7 +10,7 @@ require_once( dirname( __FILE__ ) . '/admin.php' ); if ( ! current_user_can( 'manage_options' ) ) - wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) ); + wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) ); $title = __('Writing Settings'); $parent_file = 'options-general.php'; @@ -27,7 +27,7 @@ get_current_screen()->add_help_tab( array( 'id' => 'options-postemail', 'title' => __( 'Post Via Email' ), - 'content' => '
' . __( 'Post via email settings allow you to send your WordPress install an email with the content of your post. You must set up a secret e-mail account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.' ) . '
', + 'content' => '' . __( 'Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.' ) . '
', ) ); } @@ -42,20 +42,21 @@ get_current_screen()->set_help_sidebar( '' . __('For more information:') . '
' . - '' . __('Documentation on Writing Settings') . '
' . - '' . __('Support Forums') . '
' + '' . __('Documentation on Writing Settings') . '
' . + '' . __('Support Forums') . '
' ); include( ABSPATH . 'wp-admin/admin-header.php' ); ?>