diff -r 7e16181545e1 -r ee4defc9321a includes/clientside/static/autofill.js --- a/includes/clientside/static/autofill.js Mon Jan 21 19:54:29 2008 -0500 +++ b/includes/clientside/static/autofill.js Mon Jan 21 23:02:16 2008 -0500 @@ -116,7 +116,7 @@ var tr = document.createElement('tr'); var th = document.createElement('th'); - th.appendChild(document.createTextNode('Username suggestions')); + th.appendChild(document.createTextNode($lang.get('user_autofill_heading_suggestions'))); tr.appendChild(th); table.appendChild(tr); @@ -125,7 +125,7 @@ var tr = document.createElement('tr'); var td = document.createElement('td'); td.className = 'row1'; - td.appendChild(document.createTextNode('No suggestions')); + td.appendChild(document.createTextNode($lang.get('user_autofill_msg_no_suggestions'))); td.afobj = autofill; tr.appendChild(td); table.appendChild(tr); @@ -315,9 +315,9 @@ if ( state_td.parentNode.nextSibling ) { // Ooh boy, DOM stuff can be so complicated... - // --> - // - // user user + // → + // ↑ ↓ + // user user var newstate = state_td.parentNode.nextSibling.firstChild.firstChild.nodeValue; if ( !newstate ) @@ -368,9 +368,9 @@ if ( state_td.parentNode.previousSibling && state_td.parentNode.previousSibling.firstChild.tagName != 'TH' ) { // Ooh boy, DOM stuff can be so complicated... - // <-- - // - // user user + // ← + // ↓ ↑ + // user user var newstate = state_td.parentNode.previousSibling.firstChild.firstChild.nodeValue; if ( !newstate )