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

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

Issue 1519883003: 1) Add basic configuration (network connection, language, keyboard layout, timezone) setup page. 2)… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the i18n-content HTML format in the html files Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/host-pairing-screen.html
diff --git a/chrome/browser/resources/chromeos/login/host-pairing-screen.html b/chrome/browser/resources/chromeos/login/host-pairing-screen.html
index ef6e82e5cc88229e89abf686c26a0c19e91e4fa9..dc9fb84d06a029224228a321f556efb49ec93e67 100644
--- a/chrome/browser/resources/chromeos/login/host-pairing-screen.html
+++ b/chrome/browser/resources/chromeos/login/host-pairing-screen.html
@@ -45,22 +45,32 @@
<neon-animated-pages attr-for-selected="name" selected="[[C.page]]"
entry-animation="fade-in-animation" exit-animation="fade-out-animation">
<host-pairing-page name="welcome">
- <div class="title" i18n-content="login_HostPairingScreen_welcomeTitle">
+ <div class="title" i18n-content="loginHostPairingScreenWelcomeTitle">
</div>
- <div i18n-content="login_HostPairingScreen_welcomeText"></div>
+ <div i18n-content="loginHostPairingScreenWelcomeText"></div>
</host-pairing-page>
<host-pairing-page name="code-confirmation">
<div class="title"
- i18n-content="login_HostPairingScreen_confirmationTitle">
+ i18n-content="loginHostPairingScreenConfirmationTitle">
</div>
<div id="code">{{C.code}}</div>
</host-pairing-page>
+ <host-pairing-page name="setup-basic-configuration">
+ <div class="title"
+ i18n-content="loginHostPairingScreenSetupBasicConfigTitle">
+ </div>
+ </host-pairing-page>
+ <host-pairing-page name="setup-network-error">
+ <div class="title"
+ i18n-content="loginHostPairingScreenSetupNetworkErrorTitle">
+ </div>
+ </host-pairing-page>
<host-pairing-page name="update">
- <div class="title" i18n-content="login_HostPairingScreen_updatingTitle">
+ <div class="title" i18n-content="loginHostPairingScreenUpdatingTitle">
</div>
</host-pairing-page>
<host-pairing-page name="enrollment-introduction">
- <div class="title" i18n-content="login_HostPairingScreen_enrollTitle">
+ <div class="title" i18n-content="loginHostPairingScreenEnrollTitle">
</div>
</host-pairing-page>
<host-pairing-page name="enrollment">
@@ -73,14 +83,14 @@
</host-pairing-page>
<host-pairing-page name="enrollment-error">
<div class="title"
- i18n-content="login_HostPairingScreen_enrollmentErrorTitle">
+ i18n-content="loginHostPairingScreenEnrollmentErrorTitle">
</div>
- <div i18n-content="login_HostPairingScreen_errorNeedsRestart"></div>
+ <div i18n-content="loginHostPairingScreenErrorNeedsRestart"></div>
</host-pairing-page>
<host-pairing-page name="pairing-done">
- <div class="title" i18n-content="login_HostPairingScreen_doneTitle">
+ <div class="title" i18n-content="loginHostPairingScreenDoneTitle">
</div>
- <div i18n-content="login_HostPairingScreen_doneText"></div>
+ <div i18n-content="loginHostPairingScreenDoneText"></div>
</host-pairing-page>
</neon-animated-pages>
<paper-icon-item id="device-indicator">

Powered by Google App Engine
This is Rietveld 408576698