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

Side by Side Diff: chrome/browser/resources/chromeos/login/saml_interstitial.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 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 2
3 <!-- 3 <!--
4 UI for the SAML interstitial page. 4 UI for the SAML interstitial page.
5 Example: 5 Example:
6 <saml-interstitial></saml-interstitial> 6 <saml-interstitial></saml-interstitial>
7 7
8 Attributes: 8 Attributes:
9 'domain' - The enterprise domain the device is enrolled to. 9 'domain' - The enterprise domain the device is enrolled to.
10 'showDomainMessages' - If true, the messages showing the enrollment domain 10 'showDomainMessages' - If true, the messages showing the enrollment domain
(...skipping 21 matching lines...) Expand all
32 <style> 32 <style>
33 :host { 33 :host {
34 display: block; 34 display: block;
35 line-height: 150%; 35 line-height: 150%;
36 } 36 }
37 </style> 37 </style>
38 38
39 <gaia-card id="samlInterstitialCard" class="fit"> 39 <gaia-card id="samlInterstitialCard" class="fit">
40 <div id="samlInterstitialHeader" 40 <div id="samlInterstitialHeader"
41 class="header flex vertical layout end-justified start"> 41 class="header flex vertical layout end-justified start">
42 <h1 class="welcome-message">$i18n{loginWelcomeMessage}</h1> 42 <h1 class="welcome-message" i18n-content="loginWelcomeMessage">
43 </h1>
43 <p id="managedBy" class="enterprise-info" 44 <p id="managedBy" class="enterprise-info"
44 hidden$="[[!showDomainMessages_]]"> 45 hidden$="[[!showDomainMessages_]]">
45 </p> 46 </p>
46 </div> 47 </div>
47 48
48 <div class="footer flex vertical layout justified"> 49 <div class="footer flex vertical layout justified">
49 <!-- This message contains a <strong> tag inside. --> 50 <!-- This message contains a <strong> tag inside. -->
50 <html-echo id="message" hidden$="[[!showDomainMessages_]]"></html-echo> 51 <html-echo id="message" hidden$="[[!showDomainMessages_]]"></html-echo>
51 52
52 <gaia-input-form id="samlInterstitialForm" 53 <gaia-input-form id="samlInterstitialForm"
53 on-submit="onSamlPageNextClicked_" 54 on-submit="onSamlPageNextClicked_"
54 i18n-values="button-text:samlInterstitialNextBtn"> 55 i18n-values="button-text:samlInterstitialNextBtn">
55 <gaia-button id="changeAccountLink" type="link" 56 <gaia-button id="changeAccountLink" type="link"
56 on-tap="onSamlPageChangeAccountClicked_"> 57 on-tap="onSamlPageChangeAccountClicked_"
57 $i18n{samlInterstitialChangeAccountLink} 58 i18n-content="samlInterstitialChangeAccountLink">
58 </gaia-button> 59 </gaia-button>
59 </gaia-input-form> 60 </gaia-input-form>
60 61
61 <img id="logo-img" src="chrome://theme/IDR_LOGO_GOOGLE_COLOR_90" 62 <img id="logo-img" src="chrome://theme/IDR_LOGO_GOOGLE_COLOR_90"
62 class="self-center" alt=""> 63 class="self-center" alt="">
63 </div> 64 </div>
64 </gaia-card> 65 </gaia-card>
65 66
66 </template> 67 </template>
67 68
68 </dom-module> 69 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698