| Index: chrome/browser/resources/about_sys/about_sys.html
|
| diff --git a/chrome/browser/resources/about_sys/about_sys.html b/chrome/browser/resources/about_sys/about_sys.html
|
| index 9b1cd36485ecf54cf4a7ddc03f2bfdeb4fc805d0..796eb293e28f17895e6a45f62be3584932f8e39e 100644
|
| --- a/chrome/browser/resources/about_sys/about_sys.html
|
| +++ b/chrome/browser/resources/about_sys/about_sys.html
|
| @@ -1,8 +1,8 @@
|
| <!doctype html>
|
| -<html id="t" i18n-values="dir:textdirection;lang:language">
|
| +<html id="t" dir="$i18n{textdirection}" lang="$i18n{language}">
|
| <head>
|
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
| - <title i18n-content="title"></title>
|
| + <title>$i18n{title}</title>
|
| <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
|
| <link rel="stylesheet" href="about_sys.css">
|
| <script src="chrome://resources/js/util.js"></script>
|
| @@ -12,16 +12,16 @@
|
| </head>
|
| <body>
|
| <div id="header">
|
| - <h1 i18n-content="title"></h1>
|
| - <p i18n-content="description"></p>
|
| + <h1>$i18n{title}</h1>
|
| + <p>$i18n{description}</p>
|
| </div>
|
| <div id="content">
|
| - <h2 id="tableTitle" i18n-content="tableTitle"></h2>
|
| + <h2 id="tableTitle">$i18n{tableTitle}</h2>
|
| <div id="anchor" jscontent="anchor"></div>
|
| - <button id="expandAll" class="global-button" i18n-content="expandAllBtn">
|
| + <button id="expandAll" class="global-button">$i18n{expandAllBtn}</button>
|
| + <button id="collapseAll" class="global-button">
|
| + $i18n{collapseAllBtn}
|
| </button>
|
| - <button id="collapseAll" class="global-button"
|
| - i18n-content="collapseAllBtn"></button>
|
| <p id="status"></p>
|
| <table class="list" id="details">
|
| <tr jsselect="details">
|
|
|