diff --git a/mercurial/templates/coal/map b/mercurial/templates/coal/map
--- a/mercurial/templates/coal/map
+++ b/mercurial/templates/coal/map
@@ -181,7 +181,7 @@ indexentry = '
{name|escape} |
{description} |
{contact|obfuscate} |
- {lastchange|age} ago |
+ {lastchange|age} |
{archives%indexarchiveentry} |
\n'
indexarchiveentry = ' ↓{type|escape}'
diff --git a/mercurial/templates/gitweb/graph.tmpl b/mercurial/templates/gitweb/graph.tmpl
--- a/mercurial/templates/gitweb/graph.tmpl
+++ b/mercurial/templates/gitweb/graph.tmpl
@@ -63,7 +63,7 @@ graph.edge = function(x0, y0, x1, y1, co
var revlink = '';
revlink += '_DESC';
revlink += ' _TAGS';
-revlink += '_DATE ago, by _USER';
+revlink += '_DATE, by _USER';
graph.vertex = function(x, y, color, parity, cur) {
diff --git a/mercurial/templates/monoblue/graph.tmpl b/mercurial/templates/monoblue/graph.tmpl
--- a/mercurial/templates/monoblue/graph.tmpl
+++ b/mercurial/templates/monoblue/graph.tmpl
@@ -60,7 +60,7 @@
var revlink = '';
revlink += '_DESC';
- revlink += '_TAGS_DATE ago, by _USER';
+ revlink += '_TAGS_DATE, by _USER';
graph.vertex = function(x, y, color, parity, cur) {
diff --git a/mercurial/templates/paper/graph.tmpl b/mercurial/templates/paper/graph.tmpl
--- a/mercurial/templates/paper/graph.tmpl
+++ b/mercurial/templates/paper/graph.tmpl
@@ -71,7 +71,7 @@ graph.edge = function(x0, y0, x1, y1, co
var revlink = '';
revlink += '_DESC';
-revlink += '_TAGS_DATE ago, by _USER';
+revlink += '_TAGS_DATE, by _USER';
graph.vertex = function(x, y, color, parity, cur) {
diff --git a/mercurial/templates/spartan/graph.tmpl b/mercurial/templates/spartan/graph.tmpl
--- a/mercurial/templates/spartan/graph.tmpl
+++ b/mercurial/templates/spartan/graph.tmpl
@@ -55,7 +55,7 @@ graph.edge = function(x0, y0, x1, y1, co
var revlink = '';
revlink += '_DESC';
-revlink += '_DATE ago, by _USER';
+revlink += '_DATE, by _USER';
graph.vertex = function(x, y, color, parity, cur) {
diff --git a/mercurial/templates/spartan/map b/mercurial/templates/spartan/map
--- a/mercurial/templates/spartan/map
+++ b/mercurial/templates/spartan/map
@@ -168,7 +168,7 @@ indexentry = '
{name|escape} |
{description} |
{contact|obfuscate} |
- {lastchange|age} ago |
+ {lastchange|age} |
RSS
Atom
diff --git a/tests/test-hgweb-commands.out b/tests/test-hgweb-commands.out
--- a/tests/test-hgweb-commands.out
+++ b/tests/test-hgweb-commands.out
@@ -775,7 +775,7 @@ graph.edge = function(x0, y0, x1, y1, co
var revlink = '';
revlink += '_DESC';
revlink += ' _TAGS';
-revlink += '_DATE ago, by _USER';
+revlink += '_DATE, by _USER';
graph.vertex = function(x, y, color, parity, cur) {
diff --git a/tests/test-hgweb-empty.out b/tests/test-hgweb-empty.out
--- a/tests/test-hgweb-empty.out
+++ b/tests/test-hgweb-empty.out
@@ -235,7 +235,7 @@ graph.edge = function(x0, y0, x1, y1, co
var revlink = '';
revlink += '_DESC';
-revlink += '_TAGS_DATE ago, by _USER';
+revlink += '_TAGS_DATE, by _USER';
graph.vertex = function(x, y, color, parity, cur) {
|