diff --git a/README.txt b/README.txt
index ea6da5c..2c70515 100644
--- a/README.txt
+++ b/README.txt
@@ -130,15 +130,15 @@ see My Workbench in the toolbar to the right of the Home icon.
 On the My Content tab, you can see three areas:
 
  - My Profile
- - Content I've Edited
+ - My Recently Edited Content
  - All Recent Content
 
 This is your content dashboard.  As soon as you Add or edit content, it will
-be displayed in the Content I've Edited block.
+be displayed in the My Recently Edited Content block.
 
 Notice the sub tabs:
 
- - Content I've Edited
+ - My Recently Edited Content
  - All Recent Content
 
 These go to full page lists with filters available to shorten the list of
diff --git a/views/workbench_edited.view.inc b/views/workbench_edited.view.inc
index df28b1b..a00f0c6 100644
--- a/views/workbench_edited.view.inc
+++ b/views/workbench_edited.view.inc
@@ -17,7 +17,7 @@ $view->disabled = FALSE; /* Edit this to true to make a default view disabled in
 
 /* Display: Defaults */
 $handler = $view->new_display('default', 'Defaults', 'default');
-$handler->display->display_options['title'] = 'Content I\'ve Edited';
+$handler->display->display_options['title'] = 'My Recently Edited Content';
 $handler->display->display_options['use_more_always'] = TRUE;
 $handler->display->display_options['use_more_text'] = 'view all';
 $handler->display->display_options['group_by'] = TRUE;
@@ -268,7 +268,7 @@ $handler->display->display_options['filters']['status']['expose']['remember'] =
 $handler = $view->new_display('page', 'Page', 'page_1');
 $handler->display->display_options['path'] = 'admin/workbench/content/edited';
 $handler->display->display_options['menu']['type'] = 'tab';
-$handler->display->display_options['menu']['title'] = 'Content I\'ve Edited';
+$handler->display->display_options['menu']['title'] = 'My Recently Edited Content';
 $handler->display->display_options['menu']['weight'] = '1';
 
 /* Display: Block */
@@ -297,7 +297,7 @@ $handler->display->display_options['filters']['uid_current']['relationship'] = '
 $handler->display->display_options['filters']['uid_current']['value'] = '1';
 $translatables['workbench_edited'] = array(
   t('Defaults'),
-  t('Content I\'ve Edited'),
+  t('My Recently Edited Content'),
   t('view all'),
   t('Apply'),
   t('Reset'),
diff --git a/workbench.pages.inc b/workbench.pages.inc
index 024b53d..15119b5 100644
--- a/workbench.pages.inc
+++ b/workbench.pages.inc
@@ -34,7 +34,7 @@ function workbench_content() {
   );
   // This right column is given a width of 65% by workbench.myworkbench.css.
   $output['workbench_edited'] = array(
-    '#title' => t('Content I\'ve Edited'),
+    '#title' => t('My Recently Edited Content'),
     '#view' => 'workbench_edited',
     '#view_display' => 'block_1',
     '#attributes' => array('class' => array('right', 'clearfix')),
