diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index 317c0b8a1e2508b1d8b64bf468a8d5b0ab72ce09..7298a7ef6e6c86825595bbcb5a0c929b59c2c447 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -88,5 +88,4 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; }
 #navigation>ul>li:first-child { background:url('%webroot%/core/img/breadcrumb-start.svg') no-repeat 12.5em 0px; width:12.5em; padding-right:1em; position:fixed; }
 #navigation>ul>li:first-child+li { padding-top:2.9em; }
 
-#scanning-message{ top:40%; left:40%; position:absolute; display:none; }
-#notification span { cursor:pointer; font-weight:bold; margin-left:1em; }
\ No newline at end of file
+#scanning-message{ top:40%; left:40%; position:absolute; display:none; }
\ No newline at end of file
diff --git a/core/css/styles.css b/core/css/styles.css
index d032dcab2eac722affdcf451c7ddeecbded4cd79..52d6373d4e926f91039cc393b1b18849b1a80d58 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -109,6 +109,7 @@ label.infield { cursor: text !important; }
 .center { text-align: center; }
 
 #notification { z-index:101; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position:fixed; left:50%; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; }
+#notification span { cursor:pointer; font-weight:bold; margin-left:1em; }
 
 .action, .selectedActions a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; -webkit-transition:opacity 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; }
 .action { width: 16px; height: 16px; }
diff --git a/settings/js/users.js b/settings/js/users.js
index 79c95b3729eb2d6012cc91dfea45c91ba7112818..43b726fbfc87203b89f53a9b4f9534ec8b2b8478 100644
--- a/settings/js/users.js
+++ b/settings/js/users.js
@@ -27,7 +27,7 @@ UserList={
 		$('tr').filterAttr( 'data-uid', UserList.deleteUid ).hide();
 		
 		// Provide user with option to undo
-		$('#notification').text(t('files','undo delete user'));
+		$('#notification').html(t('users', 'deleted')+' '+uid+'<span class="undo">'+t('users', 'undo')+'</span>');
 		$('#notification').data('deleteuser',true);
 		$('#notification').fadeIn();