Index: wp-admin/admin-ajax.php
===================================================================
--- wp-admin/admin-ajax.php	(revision 15489)
+++ wp-admin/admin-ajax.php	(working copy)
@@ -1249,11 +1249,11 @@
 
 	$taxonomy = !empty($_POST['taxonomy']) ? $_POST['taxonomy'] : false;
 	if ( ! $taxonomy )
-		die( __('Cheatin&#8217; uh?') );
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 	$tax = get_taxonomy($taxonomy);
 
 	if ( ! current_user_can( $tax->cap->edit_terms ) )
-		die( __('Cheatin&#8217; uh?') );
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	if ( ! isset($_POST['tax_ID']) || ! ( $id = (int) $_POST['tax_ID'] ) )
 		die(-1);
Index: wp-admin/edit-comments.php
===================================================================
--- wp-admin/edit-comments.php	(revision 15489)
+++ wp-admin/edit-comments.php	(working copy)
@@ -10,7 +10,7 @@
 require_once('./admin.php');
 
 if ( !current_user_can('edit_posts') )
-	wp_die(__('Cheatin&#8217; uh?'));
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 wp_enqueue_script('admin-comments');
 enqueue_comment_hotkeys_js();
Index: wp-admin/edit-link-categories.php
===================================================================
--- wp-admin/edit-link-categories.php	(revision 15489)
+++ wp-admin/edit-link-categories.php	(working copy)
@@ -15,7 +15,7 @@
 	$doaction = $_GET['action'] ? $_GET['action'] : $_GET['action2'];
 
 	if ( !current_user_can('manage_categories') )
-		wp_die(__('Cheatin&#8217; uh?'));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	if ( 'delete' == $doaction ) {
 		$cats = (array) $_GET['delete'];
Index: wp-admin/edit-tags.php
===================================================================
--- wp-admin/edit-tags.php	(revision 15489)
+++ wp-admin/edit-tags.php	(working copy)
@@ -20,7 +20,7 @@
 $tax = get_taxonomy($taxonomy);
 
 if ( ! current_user_can($tax->cap->manage_terms) )
-	wp_die(__('Cheatin&#8217; uh?'));
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 $title = $tax->labels->name;
 
@@ -45,7 +45,7 @@
 	check_admin_referer('add-tag');
 
 	if ( !current_user_can($tax->cap->edit_terms) )
-		wp_die(__('Cheatin&#8217; uh?'));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	$ret = wp_insert_term($_POST['tag-name'], $taxonomy, $_POST);
 	$location = 'edit-tags.php?taxonomy=' . $taxonomy;
@@ -83,7 +83,7 @@
 	check_admin_referer('delete-tag_' .  $tag_ID);
 
 	if ( !current_user_can($tax->cap->delete_terms) )
-		wp_die(__('Cheatin&#8217; uh?'));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	wp_delete_term( $tag_ID, $taxonomy);
 
@@ -97,7 +97,7 @@
 	check_admin_referer('bulk-tags');
 
 	if ( !current_user_can($tax->cap->delete_terms) )
-		wp_die(__('Cheatin&#8217; uh?'));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	$tags = (array) $_GET['delete_tags'];
 	foreach( $tags as $tag_ID ) {
@@ -137,7 +137,7 @@
 	check_admin_referer('update-tag_' . $tag_ID);
 
 	if ( !current_user_can($tax->cap->edit_terms) )
-		wp_die(__('Cheatin&#8217; uh?'));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	$ret = wp_update_term($tag_ID, $taxonomy, $_POST);
 
Index: wp-admin/edit.php
===================================================================
--- wp-admin/edit.php	(revision 15489)
+++ wp-admin/edit.php	(working copy)
@@ -20,7 +20,7 @@
 $post_type_object = get_post_type_object($post_type);
 
 if ( !current_user_can($post_type_object->cap->edit_posts) )
-	wp_die(__('Cheatin&#8217; uh?'));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 // Back-compat for viewing comments of an entry
 if ( $_redirect = intval( max( @$_GET['p'], @$_GET['attachment_id'], @$_GET['page_id'] ) ) ) {
Index: wp-admin/includes/bookmark.php
===================================================================
--- wp-admin/includes/bookmark.php	(revision 15489)
+++ wp-admin/includes/bookmark.php	(working copy)
@@ -27,7 +27,7 @@
  */
 function edit_link( $link_id = '' ) {
 	if (!current_user_can( 'manage_links' ))
-		wp_die( __( 'Cheatin&#8217; uh?' ));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	$_POST['link_url'] = esc_html( $_POST['link_url'] );
 	$_POST['link_url'] = esc_url($_POST['link_url']);
Index: wp-admin/link-category.php
===================================================================
--- wp-admin/link-category.php	(revision 15489)
+++ wp-admin/link-category.php	(working copy)
@@ -21,7 +21,7 @@
 	check_admin_referer('add-link-category');
 
 	if ( !current_user_can('manage_categories') )
-		wp_die(__('Cheatin&#8217; uh?'));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	if ( wp_insert_term($_POST['name'], 'link_category', $_POST ) ) {
 		wp_redirect('edit-link-categories.php?message=1#addcat');
@@ -36,7 +36,7 @@
 	check_admin_referer('delete-link-category_' .  $cat_ID);
 
 	if ( !current_user_can('manage_categories') )
-		wp_die(__('Cheatin&#8217; uh?'));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	$cat_name = get_term_field('name', $cat_ID, 'link_category');
 	$default_cat_id = get_option('default_link_category');
@@ -77,7 +77,7 @@
 	check_admin_referer('update-link-category_' . $cat_ID);
 
 	if ( !current_user_can('manage_categories') )
-		wp_die(__('Cheatin&#8217; uh?'));
+		wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 	$location = 'edit-link-categories.php';
 	if ( $referer = wp_get_original_referer() ) {
Index: wp-admin/nav-menus.php
===================================================================
--- wp-admin/nav-menus.php	(revision 15489)
+++ wp-admin/nav-menus.php	(working copy)
@@ -20,7 +20,7 @@
 
 // Permissions Check
 if ( ! current_user_can('edit_theme_options') )
-	wp_die( __( 'Cheatin&#8217; uh?' ) );
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 // Nav Menu CSS
 wp_admin_css( 'nav-menu' );
Index: wp-admin/options.php
===================================================================
--- wp-admin/options.php	(revision 15489)
+++ wp-admin/options.php	(working copy)
@@ -28,7 +28,7 @@
 	$option_page = 'options';
 
 if ( !current_user_can('manage_options') )
-	wp_die(__('Cheatin&#8217; uh?'));
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 // Handle admin email change requests
 if ( is_multisite() ) {
@@ -52,7 +52,7 @@
 }
 
 if ( is_multisite() && !is_super_admin() && 'update' != $action )
-	wp_die(__('Cheatin&#8217; uh?'));
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 $whitelist_options = array(
 	'general' => array( 'blogname', 'blogdescription', 'gmt_offset', 'date_format', 'time_format', 'start_of_week', 'timezone_string' ),
Index: wp-admin/plugins.php
===================================================================
--- wp-admin/plugins.php	(revision 15489)
+++ wp-admin/plugins.php	(working copy)
@@ -13,7 +13,7 @@
 		
 	if ( empty( $menu_perms['plugins'] ) ) { 
 		if ( ! is_super_admin() )
-			wp_die( __( 'Cheatin&#8217; uh?' ) );
+			wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 	}
 }
 
Index: wp-admin/press-this.php
===================================================================
--- wp-admin/press-this.php	(revision 15489)
+++ wp-admin/press-this.php	(working copy)
@@ -11,7 +11,7 @@
 header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
 
 if ( ! current_user_can('edit_posts') )
-	wp_die( __( 'Cheatin&#8217; uh?' ) );
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 /**
  * Press It form handler.
Index: wp-admin/sidebar.php
===================================================================
--- wp-admin/sidebar.php	(revision 15489)
+++ wp-admin/sidebar.php	(working copy)
@@ -16,7 +16,7 @@
 require_once('./admin.php');
 
 if ( ! current_user_can('edit_posts') )
-	wp_die(__('Cheatin&#8217; uh?'));
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 $post = get_default_post_to_edit();
 
Index: wp-admin/themes.php
===================================================================
--- wp-admin/themes.php	(revision 15489)
+++ wp-admin/themes.php	(working copy)
@@ -10,7 +10,7 @@
 require_once('./admin.php');
 
 if ( !current_user_can('switch_themes') && !current_user_can('edit_theme_options') )
-	wp_die( __( 'Cheatin&#8217; uh?' ) );
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 if ( current_user_can('switch_themes') && isset($_GET['action']) ) {
 	if ( 'activate' == $_GET['action'] ) {
@@ -21,7 +21,7 @@
 	} else if ( 'delete' == $_GET['action'] ) {
 		check_admin_referer('delete-theme_' . $_GET['template']);
 		if ( !current_user_can('delete_themes') )
-			wp_die( __( 'Cheatin&#8217; uh?' ) );
+			wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 		delete_theme($_GET['template']);
 		wp_redirect('themes.php?deleted=true');
 		exit;
Index: wp-admin/user-new.php
===================================================================
--- wp-admin/user-new.php	(revision 15489)
+++ wp-admin/user-new.php	(working copy)
@@ -10,10 +10,10 @@
 require_once('./admin.php');
 
 if ( !current_user_can('create_users') )
-	wp_die(__('Cheatin&#8217; uh?'));
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 if ( is_multisite() && !get_site_option( 'add_new_users' ) )
-	wp_die( __('Page disabled by the administrator') );
+	wp_die( __('This page has been disabled by the administrator') );
 
 /** WordPress Registration API */
 require_once( ABSPATH . WPINC . '/registration.php');
Index: wp-admin/users.php
===================================================================
--- wp-admin/users.php	(revision 15489)
+++ wp-admin/users.php	(working copy)
@@ -13,7 +13,7 @@
 require_once( ABSPATH . WPINC . '/registration.php');
 
 if ( !current_user_can('list_users') )
-	wp_die(__('Cheatin&#8217; uh?'));
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 $title = __('Users');
 $parent_file = 'users.php';
@@ -78,7 +78,7 @@
 
 		// If the user doesn't already belong to the blog, bail.
 		if ( is_multisite() && !is_user_member_of_blog( $id ) )
-			wp_die(__('Cheatin&#8217; uh?'));
+			wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 		$user = new WP_User($id);
 		$user->set_role($_REQUEST['new_role']);
Index: wp-admin/widgets.php
===================================================================
--- wp-admin/widgets.php	(revision 15489)
+++ wp-admin/widgets.php	(working copy)
@@ -13,7 +13,7 @@
 require_once(ABSPATH . 'wp-admin/includes/widgets.php');
 
 if ( ! current_user_can('edit_theme_options') )
-	wp_die( __( 'Cheatin&#8217; uh?' ));
+	wp_die(__('There was a problem loading this page, you may not have the necessary permissions, or may need to <a href="' . get_option('siteurl') . '/wp-login.php">' . __('login') . '</a>.'));
 
 wp_admin_css( 'widgets' );
 
