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

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

Issue 2626123002: [i18n] chromeos login i18n-content to $i18n{} (Closed)
Patch Set: nit Created 3 years, 11 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-content="loginHostPairingScreenWelcomeTitle"> 38 <div class="title">$i18n{loginHostPairingScreenWelcomeTitle}</div>
39 </div> 39 <div>$i18n{loginHostPairingScreenWelcomeText}</div>
40 <div i18n-content="loginHostPairingScreenWelcomeText"></div>
41 </host-pairing-page> 40 </host-pairing-page>
42 <host-pairing-page name="initialization-error"> 41 <host-pairing-page name="initialization-error">
43 <div class="title" 42 <div class="title">
44 i18n-content="loginHostPairingScreenInitializationErrorTitle"> 43 $i18n{loginHostPairingScreenInitializationErrorTitle}
45 </div> 44 </div>
46 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div> 45 <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div>
47 </host-pairing-page> 46 </host-pairing-page>
48 <host-pairing-page name="code-confirmation"> 47 <host-pairing-page name="code-confirmation">
49 <div class="title" 48 <div class="title">$i18n{loginHostPairingScreenConfirmationTitle}</div>
50 i18n-content="loginHostPairingScreenConfirmationTitle">
51 </div>
52 <div id="code">{{C.code}}</div> 49 <div id="code">{{C.code}}</div>
53 </host-pairing-page> 50 </host-pairing-page>
54 <host-pairing-page name="connection-error"> 51 <host-pairing-page name="connection-error">
55 <div class="title" 52 <div class="title">
56 i18n-content="loginHostPairingScreenConnectionErrorTitle"> 53 $i18n{loginHostPairingScreenConnectionErrorTitle}
57 </div> 54 </div>
58 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div> 55 <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div>
59 </host-pairing-page> 56 </host-pairing-page>
60 <host-pairing-page name="setup-basic-configuration"> 57 <host-pairing-page name="setup-basic-configuration">
61 <div class="title" 58 <div class="title">
62 i18n-content="loginHostPairingScreenSetupBasicConfigTitle"> 59 $i18n{loginHostPairingScreenSetupBasicConfigTitle}
63 </div> 60 </div>
64 </host-pairing-page> 61 </host-pairing-page>
65 <host-pairing-page name="setup-network-error"> 62 <host-pairing-page name="setup-network-error">
66 <div class="title" 63 <div class="title">
67 i18n-content="loginHostPairingScreenSetupNetworkErrorTitle"> 64 $i18n{loginHostPairingScreenSetupNetworkErrorTitle}
68 </div> 65 </div>
69 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div> 66 <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div>
70 </host-pairing-page> 67 </host-pairing-page>
71 <host-pairing-page name="update"> 68 <host-pairing-page name="update">
72 <div class="title" i18n-content="loginHostPairingScreenUpdatingTitle"> 69 <div class="title">$i18n{loginHostPairingScreenUpdatingTitle}</div>
73 </div>
74 </host-pairing-page> 70 </host-pairing-page>
75 <host-pairing-page name="enrollment-introduction"> 71 <host-pairing-page name="enrollment-introduction">
76 <div class="title" i18n-content="loginHostPairingScreenEnrollTitle"> 72 <div class="title">$i18n{loginHostPairingScreenEnrollTitle}</div>
77 </div>
78 </host-pairing-page> 73 </host-pairing-page>
79 <host-pairing-page name="enrollment"> 74 <host-pairing-page name="enrollment">
80 <div class="title"> 75 <div class="title">
81 <!-- 'enrollmentTitle' contains <strong> tag. We need to wrap it in 76 <!-- 'enrollmentTitle' contains <strong> tag. We need to wrap it in
82 'html-echo' to prevent HTML escaping. --> 77 'html-echo' to prevent HTML escaping. -->
83 <html-echo content="[[getEnrollmentStepTitle_(C.enrollmentDomain)]]"> 78 <html-echo content="[[getEnrollmentStepTitle_(C.enrollmentDomain)]]">
84 </html-echo> 79 </html-echo>
85 </div> 80 </div>
86 </host-pairing-page> 81 </host-pairing-page>
87 <host-pairing-page name="enrollment-error"> 82 <host-pairing-page name="enrollment-error">
88 <div class="title" 83 <div class="title">
89 i18n-content="loginHostPairingScreenEnrollmentErrorTitle"> 84 $i18n{loginHostPairingScreenEnrollmentErrorTitle}
90 </div> 85 </div>
91 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div> 86 <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div>
92 </host-pairing-page> 87 </host-pairing-page>
93 <host-pairing-page name="pairing-done"> 88 <host-pairing-page name="pairing-done">
94 <div class="title" i18n-content="loginHostPairingScreenDoneTitle"> 89 <div class="title">$i18n{loginHostPairingScreenDoneTitle}</div>
95 </div> 90 <div>$i18n{loginHostPairingScreenDoneText}</div>
96 <div i18n-content="loginHostPairingScreenDoneText"></div>
97 </host-pairing-page> 91 </host-pairing-page>
98 </neon-animated-pages> 92 </neon-animated-pages>
99 <paper-icon-item id="device-indicator"> 93 <paper-icon-item id="device-indicator">
100 <iron-icon icon="device:bluetooth"></iron-icon> 94 <iron-icon icon="device:bluetooth"></iron-icon>
101 <div id="device-label">{{C.deviceName}}</div> 95 <div id="device-label">{{C.deviceName}}</div>
102 </paper-icon-item> 96 </paper-icon-item>
103 <div id="illustration"></div> 97 <div id="illustration"></div>
104 </template> 98 </template>
105 </dom-module> 99 </dom-module>
106
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/header_bar.html ('k') | chrome/browser/resources/chromeos/login/html-echo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698