Commit d7b84196 authored by Dave Schuyler's avatar Dave Schuyler Committed by Commit Bot

[i18n] change identity internals to use $i18n{}

This CL changes the identity internals from using the old i18n-content
to the new $i18n{} replacement.

Bug: 677338
Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation
Change-Id: Ia603e5463eaff981a6bf7902d8eff36642602f5d
Reviewed-on: https://chromium-review.googlesource.com/872431Reviewed-by: default avatarScott Chen <scottchen@chromium.org>
Commit-Queue: Dave Schuyler <dschuyler@chromium.org>
Cr-Commit-Position: refs/heads/master@{#530648}
parent 095e6ceb
<!doctype html> <!doctype html>
<html i18n-values="dir:textdirection;lang:language"> <html dir="$i18n{textdirection}" lang="$i18n{language}">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title i18n-content="tokenCacheHeader"></title> <title>$i18n{tokenCacheHeader}</title>
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<link rel="stylesheet" href="identity_internals.css"> <link rel="stylesheet" href="identity_internals.css">
<script src="chrome://resources/js/cr.js"></script> <script src="chrome://resources/js/cr.js"></script>
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<script src="identity_internals.js"></script> <script src="identity_internals.js"></script>
</head> </head>
<body> <body>
<h2 class="header" i18n-content="tokenCacheHeader"></h2> <h2 class="header">$i18n{tokenCacheHeader}</h2>
<div id="token-list"></div> <div id="token-list"></div>
<script src="chrome://resources/js/i18n_template.js"></script> <script src="chrome://resources/js/i18n_template.js"></script>
</body> </body>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment