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

Side by Side Diff: components/chrome_apps/webstore_widget/app/main.html

Issue 2908353003: [i18n] components directory to $i18n{} (Closed)
Patch Set: handle blank cohort name Created 3 years, 6 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright 2015 The Chromium Authors. All rights reserved. 3 -- Copyright 2015 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 7
8 <html i18n-values="dir:textdirection;lang:language"> 8 <html dir="$i18n{textdirection}" lang="$i18n{language}">
9 <head> 9 <head>
10 <meta charset="utf-8"> 10 <meta charset="utf-8">
11 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"> 11 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css">
12 <link rel="stylesheet" href="chrome://resources/css/dialogs.css"> 12 <link rel="stylesheet" href="chrome://resources/css/dialogs.css">
13 <link rel="stylesheet" href="/app/main.css"> 13 <link rel="stylesheet" href="/app/main.css">
14 <link rel="stylesheet" href="/cws_widget/cws_widget_container.css"> 14 <link rel="stylesheet" href="/cws_widget/cws_widget_container.css">
15 <script src="/app/main.js"></script> 15 <script src="/app/main.js"></script>
16 </head> 16 </head>
17 <body> 17 <body>
18 <div class="title-area"> 18 <div class="title-area">
19 <span id="title" class="window-title"></span> 19 <span id="title" class="window-title"></span>
20 <span class="topbutton-bar"> 20 <span class="topbutton-bar">
21 <button id="minimize-button" class="minimize-button" tabindex="-1" 21 <button id="minimize-button" class="minimize-button" tabindex="-1"
22 aria-label="-"> 22 aria-label="-">
23 </button> 23 </button>
24 <button id="close-button" class="close-button" tabindex="-1" 24 <button id="close-button" class="close-button" tabindex="-1"
25 aria-label="x"> 25 aria-label="x">
26 </button> 26 </button>
27 </span> 27 </span>
28 </div> 28 </div>
29 <div id="widget-container-root"></div> 29 <div id="widget-container-root"></div>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698