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

Side by Side Diff: chrome/browser/resources/chromeos/login/host-pairing-screen.html

Issue 2694353002: Revert of [i18n] chromeos login i18n-content to $i18n{} (Closed)
Patch Set: review changes, plus similar changes' Created 3 years, 10 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 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/device-icons .html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/device-icons .html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-in-animation.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-in-animation.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-out-animation.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-out-animation.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.html">
(...skipping 17 matching lines...) Expand all
28 </dom-module> 28 </dom-module>
29 29
30 <dom-module name="host-pairing-screen"> 30 <dom-module name="host-pairing-screen">
31 31
32 <link rel="stylesheet" href="oobe_screen_host_pairing.css"> 32 <link rel="stylesheet" href="oobe_screen_host_pairing.css">
33 33
34 <template> 34 <template>
35 <neon-animated-pages attr-for-selected="name" selected="[[C.page]]" 35 <neon-animated-pages attr-for-selected="name" selected="[[C.page]]"
36 entry-animation="fade-in-animation" exit-animation="fade-out-animation"> 36 entry-animation="fade-in-animation" exit-animation="fade-out-animation">
37 <host-pairing-page name="welcome"> 37 <host-pairing-page name="welcome">
38 <div class="title">$i18n{loginHostPairingScreenWelcomeTitle}</div> 38 <div class="title" i18n-content="loginHostPairingScreenWelcomeTitle">
39 <div>$i18n{loginHostPairingScreenWelcomeText}</div> 39 </div>
40 <div i18n-content="loginHostPairingScreenWelcomeText"></div>
40 </host-pairing-page> 41 </host-pairing-page>
41 <host-pairing-page name="initialization-error"> 42 <host-pairing-page name="initialization-error">
42 <div class="title"> 43 <div class="title"
43 $i18n{loginHostPairingScreenInitializationErrorTitle} 44 i18n-content="loginHostPairingScreenInitializationErrorTitle">
44 </div> 45 </div>
45 <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div> 46 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div>
46 </host-pairing-page> 47 </host-pairing-page>
47 <host-pairing-page name="code-confirmation"> 48 <host-pairing-page name="code-confirmation">
48 <div class="title">$i18n{loginHostPairingScreenConfirmationTitle}</div> 49 <div class="title"
50 i18n-content="loginHostPairingScreenConfirmationTitle">
51 </div>
49 <div id="code">{{C.code}}</div> 52 <div id="code">{{C.code}}</div>
50 </host-pairing-page> 53 </host-pairing-page>
51 <host-pairing-page name="connection-error"> 54 <host-pairing-page name="connection-error">
52 <div class="title"> 55 <div class="title"
53 $i18n{loginHostPairingScreenConnectionErrorTitle} 56 i18n-content="loginHostPairingScreenConnectionErrorTitle">
54 </div> 57 </div>
55 <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div> 58 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div>
56 </host-pairing-page> 59 </host-pairing-page>
57 <host-pairing-page name="setup-basic-configuration"> 60 <host-pairing-page name="setup-basic-configuration">
58 <div class="title"> 61 <div class="title"
59 $i18n{loginHostPairingScreenSetupBasicConfigTitle} 62 i18n-content="loginHostPairingScreenSetupBasicConfigTitle">
60 </div> 63 </div>
61 </host-pairing-page> 64 </host-pairing-page>
62 <host-pairing-page name="setup-network-error"> 65 <host-pairing-page name="setup-network-error">
63 <div class="title"> 66 <div class="title"
64 $i18n{loginHostPairingScreenSetupNetworkErrorTitle} 67 i18n-content="loginHostPairingScreenSetupNetworkErrorTitle">
65 </div> 68 </div>
66 <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div> 69 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div>
67 </host-pairing-page> 70 </host-pairing-page>
68 <host-pairing-page name="update"> 71 <host-pairing-page name="update">
69 <div class="title">$i18n{loginHostPairingScreenUpdatingTitle}</div> 72 <div class="title" i18n-content="loginHostPairingScreenUpdatingTitle">
73 </div>
70 </host-pairing-page> 74 </host-pairing-page>
71 <host-pairing-page name="enrollment-introduction"> 75 <host-pairing-page name="enrollment-introduction">
72 <div class="title">$i18n{loginHostPairingScreenEnrollTitle}</div> 76 <div class="title" i18n-content="loginHostPairingScreenEnrollTitle">
77 </div>
73 </host-pairing-page> 78 </host-pairing-page>
74 <host-pairing-page name="enrollment"> 79 <host-pairing-page name="enrollment">
75 <div class="title"> 80 <div class="title">
76 <!-- 'enrollmentTitle' contains <strong> tag. We need to wrap it in 81 <!-- 'enrollmentTitle' contains <strong> tag. We need to wrap it in
77 'html-echo' to prevent HTML escaping. --> 82 'html-echo' to prevent HTML escaping. -->
78 <html-echo content="[[getEnrollmentStepTitle_(C.enrollmentDomain)]]"> 83 <html-echo content="[[getEnrollmentStepTitle_(C.enrollmentDomain)]]">
79 </html-echo> 84 </html-echo>
80 </div> 85 </div>
81 </host-pairing-page> 86 </host-pairing-page>
82 <host-pairing-page name="enrollment-error"> 87 <host-pairing-page name="enrollment-error">
83 <div class="title"> 88 <div class="title"
84 $i18n{loginHostPairingScreenEnrollmentErrorTitle} 89 i18n-content="loginHostPairingScreenEnrollmentErrorTitle">
85 </div> 90 </div>
86 <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div> 91 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div>
87 </host-pairing-page> 92 </host-pairing-page>
88 <host-pairing-page name="pairing-done"> 93 <host-pairing-page name="pairing-done">
89 <div class="title">$i18n{loginHostPairingScreenDoneTitle}</div> 94 <div class="title" i18n-content="loginHostPairingScreenDoneTitle">
90 <div>$i18n{loginHostPairingScreenDoneText}</div> 95 </div>
96 <div i18n-content="loginHostPairingScreenDoneText"></div>
91 </host-pairing-page> 97 </host-pairing-page>
92 </neon-animated-pages> 98 </neon-animated-pages>
93 <paper-icon-item id="device-indicator"> 99 <paper-icon-item id="device-indicator">
94 <iron-icon icon="device:bluetooth"></iron-icon> 100 <iron-icon icon="device:bluetooth"></iron-icon>
95 <div id="device-label">{{C.deviceName}}</div> 101 <div id="device-label">{{C.deviceName}}</div>
96 </paper-icon-item> 102 </paper-icon-item>
97 <div id="illustration"></div> 103 <div id="illustration"></div>
98 </template> 104 </template>
99 </dom-module> 105 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/header_bar.html ('k') | chrome/browser/resources/chromeos/login/lock.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698