diff --git a/mercurial/templates/static/followlines.js b/mercurial/templates/static/followlines.js --- a/mercurial/templates/static/followlines.js +++ b/mercurial/templates/static/followlines.js @@ -213,7 +213,7 @@ document.addEventListener('DOMContentLoa var aAsc = document.createElement('a'); var url = targetUri + '?patch=&linerange=' + fromline + ':' + toline; aAsc.setAttribute('href', url); - aAsc.textContent = 'ascending'; + aAsc.textContent = 'older'; aDiv.appendChild(aAsc); if (!isHead) { @@ -222,7 +222,7 @@ document.addEventListener('DOMContentLoa // link to "descending" followlines var aDesc = document.createElement('a'); aDesc.setAttribute('href', url + '&descend='); - aDesc.textContent = 'descending'; + aDesc.textContent = 'newer'; aDiv.appendChild(aDesc); }