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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_eula.html

Issue 2688413008: Revert of [i18n] chromeos login i18n-content to $i18n{} (Closed)
Patch Set: 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 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i conset-svg.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i conset-svg.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
10 10
(...skipping 13 matching lines...) Expand all
24 </iron-iconset-svg> 24 </iron-iconset-svg>
25 25
26 <dom-module name="oobe-eula-md"> 26 <dom-module name="oobe-eula-md">
27 <template> 27 <template>
28 <link rel="stylesheet" href="oobe_eula.css"> 28 <link rel="stylesheet" href="oobe_eula.css">
29 <link rel="stylesheet" href="oobe_dialog_parameters.css"> 29 <link rel="stylesheet" href="oobe_dialog_parameters.css">
30 <oobe-dialog hidden="[[!eulaLoadingScreenShown]]" 30 <oobe-dialog hidden="[[!eulaLoadingScreenShown]]"
31 has-buttons> 31 has-buttons>
32 <iron-icon icon="oobe-eula:googleg" class="oobe-icon"></iron-icon> 32 <iron-icon icon="oobe-eula:googleg" class="oobe-icon"></iron-icon>
33 <div class="header"> 33 <div class="header">
34 <h1 class="title">$i18n{termsOfServiceLoading}</h1> 34 <h1 class="title" i18n-content="termsOfServiceLoading"></h1>
35 </div> 35 </div>
36 </oobe-dialog> 36 </oobe-dialog>
37 <oobe-dialog hidden="[[!eulaScreenShown]]" 37 <oobe-dialog hidden="[[!eulaScreenShown]]"
38 has-buttons> 38 has-buttons>
39 <iron-icon icon="oobe-eula:googleg" class="oobe-icon"></iron-icon> 39 <iron-icon icon="oobe-eula:googleg" class="oobe-icon"></iron-icon>
40 <div class="header"> 40 <div class="header">
41 <h1 class="title">$i18n{oobeEulaSectionTitle}</h1> 41 <h1 class="title" i18n-content="oobeEulaSectionTitle"></h1>
42 </div> 42 </div>
43 <div class="footer flex layout vertical"> 43 <div class="footer flex layout vertical">
44 <iframe id="crosEulaFrame" class="flex" src="chrome://terms" 44 <iframe id="crosEulaFrame" class="flex" src="chrome://terms"
45 on-load="onFrameLoad_"> 45 on-load="onFrameLoad_">
46 </iframe> 46 </iframe>
47 <a id="installationSettings" href="#" 47 <a id="installationSettings" href="#"
48 on-tap="onInstallationSettingsClicked_"> 48 on-tap="onInstallationSettingsClicked_"
49 $i18n{eulaSystemInstallationSettings} 49 i18n-content="eulaSystemInstallationSettings">
50 </a> 50 </a>
51 <div id="logging"> 51 <div id="logging">
52 <paper-checkbox aria-labelledby="usage-stats-label" id="usageStats" 52 <paper-checkbox aria-labelledby="usage-stats-label" id="usageStats"
53 checked="{{usageStatsChecked}}" on-change="onUsageChanged_"> 53 checked="{{usageStatsChecked}}" on-change="onUsageChanged_">
54 <label id="usage-stats-label">$i18n{checkboxLogging}</label> 54 <label id="usage-stats-label" i18n-content="checkboxLogging">
55 <a id="" href="#" on-tap="onUsageStatsHelpLinkClicked_"> 55 </label>
56 $i18n{learnMore} 56 <a id="" href="#" i18n-content="learnMore"
57 on-tap="onUsageStatsHelpLinkClicked_">
57 </a> 58 </a>
58 </paper-checkbox> 59 </paper-checkbox>
59 </div> 60 </div>
60 </div> 61 </div>
61 <div class="bottom-buttons flex layout horizontal"> 62 <div class="bottom-buttons flex layout horizontal">
62 <oobe-back-button on-tap="onEulaBackButtonPressed_"> 63 <oobe-back-button on-tap="onEulaBackButtonPressed_">
63 </oobe-back-button> 64 </oobe-back-button>
64 <div class="flex"> 65 <div class="flex">
65 </div> 66 </div>
66 <oobe-text-button id="eula-accept-button" inverse on-tap="eulaAccepted_" 67 <oobe-text-button id="eula-accept-button" inverse on-tap="eulaAccepted_"
67 disabled="[[acceptButtonDisabled]]"> 68 disabled="[[acceptButtonDisabled]]">
68 <div id="accept-button-text"> 69 <div i18n-content="oobeEulaAcceptAndContinueButtonText"
69 $i18n{oobeEulaAcceptAndContinueButtonText} 70 id="accept-button-text">
70 </div> 71 </div>
71 </oobe-text-button> 72 </oobe-text-button>
72 </div> 73 </div>
73 </oobe-dialog> 74 </oobe-dialog>
74 </template> 75 </template>
75 </dom-module> 76 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698