Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3433)

Unified Diff: chrome/browser/resources/about_sys/about_sys.html

Issue 2906993002: [i18n] about-sys to $i18n{} (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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">
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698