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

Unified Diff: chrome/browser/resources/task_manager/main.html

Issue 8505004: TaskManager: Fix to make format of i18n-content values to be of JavaScriptCase (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed merge conflicts Created 9 years, 1 month 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 | chrome/browser/resources/task_manager/main.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/task_manager/main.html
diff --git a/chrome/browser/resources/task_manager/main.html b/chrome/browser/resources/task_manager/main.html
index 7d722dc642aed54c3ff34391273fbe03831e873d..20bc62f27d981e71c71f0b26d3fe102c5f8316b4 100644
--- a/chrome/browser/resources/task_manager/main.html
+++ b/chrome/browser/resources/task_manager/main.html
@@ -7,14 +7,14 @@
<html i18n-values="dir:textdirection;">
<head>
<meta charset="utf-8">
- <title i18n-content="TITLE"></title>
+ <title i18n-content="title"></title>
<script src="chrome://tasks/includes.js"></script>
<script src="chrome://tasks/main.js"></script>
<script src="chrome://tasks/strings.js"></script>
<link rel="stylesheet" href="task_manager.css">
</head>
<body>
- <div class="dialog-title" i18n-content="TITLE"
+ <div class="dialog-title" i18n-content="title"
visibleif='this.opt_.isShowTitle'></div>
<div class="dialog-body">
<div class="list-container">
@@ -23,12 +23,12 @@
</div>
<div class="dialog-footer">
<div class="footer-left-container">
- <a href="#" id="about-memory-link" i18n-content="ABOUT_MEMORY_LINK"></a>
+ <a href="#" id="about-memory-link" i18n-content="aboutMemoryLink"></a>
</div>
<div class="footer-right-container">
<button id="kill-process"
- i18n-content="KILL_CHROMEOS" disabled></button>
- <button id="close-window" i18n-content="CLOSE_WINDOW"
+ i18n-content="killChromeOS" disabled></button>
+ <button id="close-window" i18n-content="closeWindow"
visibleif='this.opt_.isShowCloseButton'></button>
</div>
</div>
« no previous file with comments | « no previous file | chrome/browser/resources/task_manager/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698