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

Side by Side Diff: chrome/browser/resources/settings/about_page/about_page.html

Issue 2147063002: MD Settings: About page, localize remaining strings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit Created 4 years, 5 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/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> 2 <link rel="import" href="/about_page/about_page_browser_proxy.html">
3 <link rel="import" href="/i18n_setup.html"> 3 <link rel="import" href="/i18n_setup.html">
4 <link rel="import" href="/icons.html"> 4 <link rel="import" href="/icons.html">
5 <link rel="import" href="/lifetime_browser_proxy.html"> 5 <link rel="import" href="/lifetime_browser_proxy.html">
6 <link rel="import" href="/settings_page/main_page_behavior.html"> 6 <link rel="import" href="/settings_page/main_page_behavior.html">
7 <link rel="import" href="/settings_page/settings_animated_pages.html"> 7 <link rel="import" href="/settings_page/settings_animated_pages.html">
8 <link rel="import" href="/settings_page/settings_section.html"> 8 <link rel="import" href="/settings_page/settings_section.html">
9 <link rel="import" href="/settings_page_css.html"> 9 <link rel="import" href="/settings_page_css.html">
10 <link rel="import" href="/settings_shared_css.html"> 10 <link rel="import" href="/settings_shared_css.html">
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 </div> 137 </div>
138 <if expr="_google_chrome"> 138 <if expr="_google_chrome">
139 <div id="reportIssue" class="settings-box" actionable 139 <div id="reportIssue" class="settings-box" actionable
140 on-tap="onReportIssueTap_"> 140 on-tap="onReportIssueTap_">
141 $i18n{aboutReportAnIssue} 141 $i18n{aboutReportAnIssue}
142 </div> 142 </div>
143 </if> 143 </if>
144 <if expr="chromeos"> 144 <if expr="chromeos">
145 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" 145 <div class="settings-box" on-tap="onDetailedBuildInfoTap_"
146 actionable> 146 actionable>
147 <!-- TODO(dpapad): Localize string. --> 147 $i18n{aboutDetailedBuildInfo}
148 Detailed build info
149 </div> 148 </div>
150 </if> 149 </if>
151 <div class="settings-box product-info copyable"> 150 <div class="settings-box product-info copyable">
152 <div class="info-section"> 151 <div class="info-section">
153 <div class="secondary">$i18n{aboutProductTitle}</div> 152 <div class="secondary">$i18n{aboutProductTitle}</div>
154 <div class="secondary">$i18n{aboutProductCopyright}</div> 153 <div class="secondary">$i18n{aboutProductCopyright}</div>
155 </div> 154 </div>
156 155
157 <div class="info-section"> 156 <div class="info-section">
158 <div class="secondary">$i18nRaw{aboutProductLicense}</div> 157 <div class="secondary">$i18nRaw{aboutProductLicense}</div>
159 <if expr="chromeos"> 158 <if expr="chromeos">
160 <div class="secondary">$i18nRaw{aboutProductOsLicense}</div> 159 <div class="secondary">$i18nRaw{aboutProductOsLicense}</div>
161 </if> 160 </if>
162 </div> 161 </div>
163 <if expr="_google_chrome"> 162 <if expr="_google_chrome">
164 <div class="secondary">$i18nRaw{aboutProductTos}</div> 163 <div class="secondary">$i18nRaw{aboutProductTos}</div>
165 </if> 164 </if>
166 </div> 165 </div>
167 <if expr="chromeos"> 166 <if expr="chromeos">
168 <div class="settings-box product-info" id="regulatoryInfo" 167 <div class="settings-box product-info" id="regulatoryInfo"
169 hidden$="[[!shouldShowRegulatoryInfo_(regulatoryInfo_)]]"> 168 hidden$="[[!shouldShowRegulatoryInfo_(regulatoryInfo_)]]">
170 <img src="[[regulatoryInfo_.url]]" alt="[[regulatoryInfo_.text]]"> 169 <img src="[[regulatoryInfo_.url]]" alt="[[regulatoryInfo_.text]]">
171 </div> 170 </div>
172 </if> 171 </if>
173 </neon-animatable> 172 </neon-animatable>
174 <if expr="chromeos"> 173 <if expr="chromeos">
175 <template is="dom-if" name="detailed-build-info"> 174 <template is="dom-if" name="detailed-build-info">
176 <settings-subpage page-title="Detailed build information"> 175 <settings-subpage page-title="$i18n{aboutDetailedBuildInfo}">
177 <settings-detailed-build-info></settings-detailed-build-info> 176 <settings-detailed-build-info></settings-detailed-build-info>
178 </settings-subpage> 177 </settings-subpage>
179 </template> 178 </template>
180 </if> 179 </if>
181 </settings-animated-pages> 180 </settings-animated-pages>
182 </settings-section> 181 </settings-section>
183 </div> 182 </div>
184 </template> 183 </template>
185 <script src="about_page.js"></script> 184 <script src="about_page.js"></script>
186 </dom-module> 185 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | chrome/browser/resources/settings/about_page/detailed_build_info.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698