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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_eula.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 <!-- 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-content="termsOfServiceLoading"></h1> 34 <h1 class="title">$i18n{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-content="oobeEulaSectionTitle"></h1> 41 <h1 class="title">$i18n{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-content="eulaSystemInstallationSettings"> 49 $i18n{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-content="checkboxLogging"> 54 <label id="usage-stats-label">$i18n{checkboxLogging}</label>
55 </label> 55 <a id="" href="#" on-tap="onUsageStatsHelpLinkClicked_">
56 <a id="" href="#" i18n-content="learnMore" 56 $i18n{learnMore}
57 on-tap="onUsageStatsHelpLinkClicked_">
58 </a> 57 </a>
59 </paper-checkbox> 58 </paper-checkbox>
60 </div> 59 </div>
61 </div> 60 </div>
62 <div class="bottom-buttons flex layout horizontal"> 61 <div class="bottom-buttons flex layout horizontal">
63 <oobe-back-button on-tap="onEulaBackButtonPressed_"> 62 <oobe-back-button on-tap="onEulaBackButtonPressed_">
64 </oobe-back-button> 63 </oobe-back-button>
65 <div class="flex"> 64 <div class="flex">
66 </div> 65 </div>
67 <oobe-text-button id="eula-accept-button" inverse on-tap="eulaAccepted_" 66 <oobe-text-button id="eula-accept-button" inverse on-tap="eulaAccepted_"
68 disabled="[[acceptButtonDisabled]]"> 67 disabled="[[acceptButtonDisabled]]">
69 <div i18n-content="oobeEulaAcceptAndContinueButtonText" 68 <div id="accept-button-text">
70 id="accept-button-text"> 69 $i18n{oobeEulaAcceptAndContinueButtonText}
71 </div> 70 </div>
72 </oobe-text-button> 71 </oobe-text-button>
73 </div> 72 </div>
74 </oobe-dialog> 73 </oobe-dialog>
75 </template> 74 </template>
76 </dom-module> 75 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698