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

Unified 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 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 7459c237c155c9ddf1e1e0333b17184d32419fc5..e24f870bf2e3c428ae0bd4450d2b85093ce87080 100644
--- a/chrome/browser/resources/chromeos/login/host-pairing-screen.html
+++ b/chrome/browser/resources/chromeos/login/host-pairing-screen.html
@@ -35,46 +35,41 @@
<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="loginHostPairingScreenWelcomeTitle">
- </div>
- <div i18n-content="loginHostPairingScreenWelcomeText"></div>
+ <div class="title">$i18n{loginHostPairingScreenWelcomeTitle}</div>
+ <div>$i18n{loginHostPairingScreenWelcomeText}</div>
</host-pairing-page>
<host-pairing-page name="initialization-error">
- <div class="title"
- i18n-content="loginHostPairingScreenInitializationErrorTitle">
+ <div class="title">
+ $i18n{loginHostPairingScreenInitializationErrorTitle}
</div>
- <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div>
+ <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div>
</host-pairing-page>
<host-pairing-page name="code-confirmation">
- <div class="title"
- i18n-content="loginHostPairingScreenConfirmationTitle">
- </div>
+ <div class="title">$i18n{loginHostPairingScreenConfirmationTitle}</div>
<div id="code">{{C.code}}</div>
</host-pairing-page>
<host-pairing-page name="connection-error">
- <div class="title"
- i18n-content="loginHostPairingScreenConnectionErrorTitle">
+ <div class="title">
+ $i18n{loginHostPairingScreenConnectionErrorTitle}
</div>
- <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div>
+ <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div>
</host-pairing-page>
<host-pairing-page name="setup-basic-configuration">
- <div class="title"
- i18n-content="loginHostPairingScreenSetupBasicConfigTitle">
+ <div class="title">
+ $i18n{loginHostPairingScreenSetupBasicConfigTitle}
</div>
</host-pairing-page>
<host-pairing-page name="setup-network-error">
- <div class="title"
- i18n-content="loginHostPairingScreenSetupNetworkErrorTitle">
+ <div class="title">
+ $i18n{loginHostPairingScreenSetupNetworkErrorTitle}
</div>
- <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div>
+ <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div>
</host-pairing-page>
<host-pairing-page name="update">
- <div class="title" i18n-content="loginHostPairingScreenUpdatingTitle">
- </div>
+ <div class="title">$i18n{loginHostPairingScreenUpdatingTitle}</div>
</host-pairing-page>
<host-pairing-page name="enrollment-introduction">
- <div class="title" i18n-content="loginHostPairingScreenEnrollTitle">
- </div>
+ <div class="title">$i18n{loginHostPairingScreenEnrollTitle}</div>
</host-pairing-page>
<host-pairing-page name="enrollment">
<div class="title">
@@ -85,15 +80,14 @@
</div>
</host-pairing-page>
<host-pairing-page name="enrollment-error">
- <div class="title"
- i18n-content="loginHostPairingScreenEnrollmentErrorTitle">
+ <div class="title">
+ $i18n{loginHostPairingScreenEnrollmentErrorTitle}
</div>
- <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div>
+ <div>$i18n{loginHostPairingScreenErrorNeedRestartText}</div>
</host-pairing-page>
<host-pairing-page name="pairing-done">
- <div class="title" i18n-content="loginHostPairingScreenDoneTitle">
- </div>
- <div i18n-content="loginHostPairingScreenDoneText"></div>
+ <div class="title">$i18n{loginHostPairingScreenDoneTitle}</div>
+ <div>$i18n{loginHostPairingScreenDoneText}</div>
</host-pairing-page>
</neon-animated-pages>
<paper-icon-item id="device-indicator">
@@ -103,4 +97,3 @@
<div id="illustration"></div>
</template>
</dom-module>
-
« 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