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

Side by Side Diff: chrome/browser/resources/chromeos/login/saml_interstitial.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 <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-content="loginWelcomeMessage"> 42 <h1 class="welcome-message">$i18n{loginWelcomeMessage}</h1>
43 </h1>
44 <p id="managedBy" class="enterprise-info" 43 <p id="managedBy" class="enterprise-info"
45 hidden$="[[!showDomainMessages_]]"> 44 hidden$="[[!showDomainMessages_]]">
46 </p> 45 </p>
47 </div> 46 </div>
48 47
49 <div class="footer flex vertical layout justified"> 48 <div class="footer flex vertical layout justified">
50 <!-- This message contains a <strong> tag inside. --> 49 <!-- This message contains a <strong> tag inside. -->
51 <html-echo id="message" hidden$="[[!showDomainMessages_]]"></html-echo> 50 <html-echo id="message" hidden$="[[!showDomainMessages_]]"></html-echo>
52 51
53 <gaia-input-form id="samlInterstitialForm" 52 <gaia-input-form id="samlInterstitialForm"
54 on-submit="onSamlPageNextClicked_" 53 on-submit="onSamlPageNextClicked_"
55 i18n-values="button-text:samlInterstitialNextBtn"> 54 i18n-values="button-text:samlInterstitialNextBtn">
56 <gaia-button id="changeAccountLink" type="link" 55 <gaia-button id="changeAccountLink" type="link"
57 on-tap="onSamlPageChangeAccountClicked_" 56 on-tap="onSamlPageChangeAccountClicked_">
58 i18n-content="samlInterstitialChangeAccountLink"> 57 $i18n{samlInterstitialChangeAccountLink}
59 </gaia-button> 58 </gaia-button>
60 </gaia-input-form> 59 </gaia-input-form>
61 60
62 <img id="logo-img" src="chrome://theme/IDR_LOGO_GOOGLE_COLOR_90" 61 <img id="logo-img" src="chrome://theme/IDR_LOGO_GOOGLE_COLOR_90"
63 class="self-center" alt=""> 62 class="self-center" alt="">
64 </div> 63 </div>
65 </gaia-card> 64 </gaia-card>
66 65
67 </template> 66 </template>
68 67
69 </dom-module> 68 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698