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

Side by Side Diff: components/sync/driver/resources/index.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 <html i18n-values="dir:textdirection;lang:language"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <!-- If you change the title, make sure you also update 4 <!-- If you change the title, make sure you also update
5 chrome/test/functional/special_tabs.py. --> 5 chrome/test/functional/special_tabs.py. -->
6 <meta charset="utf-8"> 6 <meta charset="utf-8">
7 <title>Sync Internals</title> 7 <title>Sync Internals</title>
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
9 <link rel="stylesheet" href="chrome://resources/css/list.css"> 9 <link rel="stylesheet" href="chrome://resources/css/list.css">
10 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 10 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
11 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 11 <link rel="stylesheet" href="chrome://resources/css/tree.css">
12 <link rel="stylesheet" href="about.css"> 12 <link rel="stylesheet" href="about.css">
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 <include src="user_events.html"> 95 <include src="user_events.html">
96 </tabpanel> 96 </tabpanel>
97 </tabpanels> 97 </tabpanels>
98 </tabbox> 98 </tabbox>
99 99
100 <script src="chrome://resources/js/i18n_template.js"></script> 100 <script src="chrome://resources/js/i18n_template.js"></script>
101 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 101 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
102 <script src="chrome://sync-internals/sync_index.js"></script> 102 <script src="chrome://sync-internals/sync_index.js"></script>
103 </body> 103 </body>
104 </html> 104 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698