diff --git a/code/request_handling.js b/code/request_handling.js
index 37e11bad..f3582e77 100644
--- a/code/request_handling.js
+++ b/code/request_handling.js
@@ -39,20 +39,21 @@ window.requests.abort = function() {
 // to website. Updates info in layer chooser.
 window.renderUpdateStatus = function() {
 
-  var t = '
portals: ';
+  var t = '
portals: ';
   var minlvl = getMinPortalLevel();
   if(minlvl === 0)
     t += 'all';
   else
     t+= 'L'+minlvl+'+';
+  t +='';
 
   t += ' map: ';
   if(mapRunsUserAction)
-    t += 'paused';
+    t += 'pausedIdle';
   else if(window.activeRequests.length > 0)
-    t += window.activeRequests.length + ' updates';
+    t += window.activeRequests.length + ' requests';
   else if(window.requests._quickRefreshPending)
     t += 'refreshing';
   else