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

Unified Diff: chrome/browser/resources/chromeos/diagnostics/main.html

Issue 10825291: Diagnostics UI: more UI implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase @ 151975. Created 8 years, 4 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
Index: chrome/browser/resources/chromeos/diagnostics/main.html
diff --git a/chrome/browser/resources/chromeos/diagnostics/main.html b/chrome/browser/resources/chromeos/diagnostics/main.html
index b9c07cc415144c4ce9a7d3d950389ebd6ea91960..8438d8cb0782595b8520f1f473fd6ae94a0421f2 100644
--- a/chrome/browser/resources/chromeos/diagnostics/main.html
+++ b/chrome/browser/resources/chromeos/diagnostics/main.html
@@ -1,25 +1,32 @@
<!DOCTYPE HTML>
<html>
<head>
- <title>diagnostics</title>
+ <title i18n-content="diagnostics"></title>
<meta charset="utf-8">
<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
<link rel="stylesheet" href="main.css">
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="chrome://resources/js/local_strings.js"></script>
<script src="chrome://resources/js/util.js"></script>
+ <script src="chrome://diagnostics/strings.js"></script>
<script src="chrome://diagnostics/main.js"></script>
</head>
- <body>
+ <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<div class="navigation">
- <h1>Diagnostics</h1>
+ <h1 i18n-content="diagnostics"></h1>
<ul>
- <li class="selected">Connectivity</li>
+ <li class="selected" i18n-content="connectivity"></li>
</ul>
</div>
<div class="page">
<header>
- <h1>Connectivity</h1>
+ <h1 i18n-content="connectivity"></h1>
</header>
- <div id='connectivity-status'></div>
+ <div id="loading" i18n-content="loading"></div>
+ <div id="adapter-selection"></div>
+ <div id="connectivity-status"></div>
</div>
</body>
+ <script src="chrome://resources/js/i18n_template.js"></script>
+ <script src="chrome://resources/js/i18n_process.js"></script>
</html>
« no previous file with comments | « chrome/browser/resources/chromeos/diagnostics/main.css ('k') | chrome/browser/resources/chromeos/diagnostics/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698