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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.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/oobe_screen_oauth_enrollment.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html
index f811e070b33ffd59db8dde61bcc60694bc89fb9b..41a1c3d9ceb2ee799245660778800cc40efa1329 100644
--- a/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html
@@ -27,8 +27,8 @@
</div>
<div id="oauth-enroll-step-success" role="alert">
<notification-card id="oauth-enroll-success-card" type="success"
- i18n-values="button-label:oauthEnrollDone"
- i18n-content="oauthEnrollSuccess">
+ i18n-values="button-label:oauthEnrollDone">
+ $i18n{oauthEnrollSuccess}
</notification-card>
</div>
<div id="oauth-enroll-step-abe-success" role="alert">
@@ -39,18 +39,20 @@
<div id="oauth-enroll-step-attribute-prompt">
<gaia-card id="oauth-enroll-attribute-prompt-card" class="fit">
<div class="header flex vertical layout end-justified">
- <h1 class="welcome-message" style="text-transform:capitalize"
- i18n-content="oauthEnrollScreenTitle"></h1>
- <p class="enterprise-info"
- i18n-content="oauthEnrollDeviceInformation"></p>
+ <h1 class="welcome-message" style="text-transform:capitalize">
+ $i18n{oauthEnrollScreenTitle}
+ </h1>
+ <p class="enterprise-info">$i18n{oauthEnrollDeviceInformation}</p>
</div>
<div class="footer flex vertical layout justified">
<div class="oauth-enroll-step-message">
- <span id="oauth-enroll-attribute-prompt-message"
- i18n-content="oauthEnrollAttributeExplanation"></span>
+ <span id="oauth-enroll-attribute-prompt-message">
+ $i18n{oauthEnrollAttributeExplanation}
+ </span>
<a href="#" id="oauth-enroll-learn-more-link"
- class="oauth-enroll-link"
- i18n-content="oauthEnrollExplainAttributeLink"></a>
+ class="oauth-enroll-link">
+ $i18n{oauthEnrollExplainAttributeLink}
+ </a>
<gaia-input-form id="oauth-enroll-attribute-input"
i18n-values="button-text:oauthEnrollNextBtn">
<gaia-input id="oauth-enroll-asset-id" type="text"
@@ -59,8 +61,8 @@
<gaia-input id="oauth-enroll-location" type="text"
i18n-values="label:oauthEnrollLocationLabel">
</gaia-input>
- <gaia-button type="link" id="oauth-enroll-skip-button"
- i18n-content="oauthEnrollSkip">
+ <gaia-button type="link" id="oauth-enroll-skip-button">
+ $i18n{oauthEnrollSkip}
</gaia-button>
</gaia-input-form>
</div>

Powered by Google App Engine
This is Rietveld 408576698